/* ==========================================================================
   Maine Foam Parties — Design System
   Palette pulled from brand assets:
     Navy      #0D3B66  (from "PARTIES" lettering)
     Navy Deep #082744  (footer / dark bg)
     Sky Blue  #4FA8F0  (from "PARTIES" letter fill)
     Gold      #FFD24C -> #F2891D (gradient, from "MAINE" lettering)
     Cream     #FBF7F0  (base background — warm, not stark white)
     Foam Grey #E7EFF6  (bubble/cloud fields)
     Brown     #5B3A22  (moose fur — grounding neutral for dark text alt)
   Type:
     Display — Baloo 2 (chunky/rounded, echoes the bubble-letter logo)
     Body    — Figtree (warm rounded-sans, friendly, legible)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Figtree:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root {
  --navy: #0D3B66;
  --navy-deep: #082744;
  --navy-soft: #16507F;
  --sky: #4FA8F0;
  --sky-soft: #DCEEFD;
  --gold-1: #FFD24C;
  --gold-2: #F2891D;
  --cream: #FBF7F0;
  --foam: #E7EFF6;
  --foam-2: #F3F8FC;
  --brown: #5B3A22;
  --ink: #12314A;
  --white: #FFFFFF;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 30px rgba(13, 59, 102, 0.12);
  --shadow-pop: 0 14px 34px rgba(242, 137, 29, 0.28);

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.4em;
  line-height: 1.08;
  letter-spacing: 0.2px;
}

h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 700; }

p { margin: 0 0 1em; }

.container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-2);
  background: #FFF3DD;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.gold-text {
  color: #FDC63C;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.55),
    0 5px 18px rgba(0, 0, 0, 0.4);
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  overflow: visible;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  isolation: isolate;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  color: var(--navy-deep);
  box-shadow: var(--shadow-pop);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(242,137,29,0.36); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(13,59,102,0.28);
}
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-soft); }

/* signature micro-interaction: foam-burst bubbles on primary buttons */
.btn-primary .bubble {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  pointer-events: none;
  opacity: 0;
  z-index: -1;
}
.btn-primary.pop .bubble { animation: bubble-pop 0.7s ease-out forwards; }

@keyframes bubble-pop {
  0%   { opacity: 0.95; transform: translate(-50%, 0) scale(0.4); }
  70%  { opacity: 0.55; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary.pop .bubble { animation: none; display: none; }
  html { scroll-behavior: auto; }
}

/* Nav ---------------------------------------------------------------------*/

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13,59,102,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.nav-logo img { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .mobile-phone-item { display: none; }

.nav-links a {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  padding: 6px 2px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-2); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  margin: 5px 0;
  transition: all 0.2s ease;
}

/* Foam cloud decorative shapes -------------------------------------------- */

.foam-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: -1px;
}

.foam-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.foam-field .bub {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
}
.foam-field.on-light .bub {
  background: rgba(13,59,102,0.07);
}
.foam-field.on-gold .bub {
  background: rgba(255,255,255,0.4);
}

/* Scattered floating bubble clusters — decorative soap-bubble clumps placed
   at a few corners per section, rather than a uniform strip or dot-field */
.bubble-decor {
  position: absolute;
  z-index: 6;
  pointer-events: auto;
  cursor: pointer;
  opacity: 0.95;
  filter: drop-shadow(0 6px 10px rgba(8, 39, 68, 0.12));
  animation: bubble-float 7s ease-in-out infinite;
}
.bubble-decor.popped {
  animation: bubble-pop-out 0.45s ease-out forwards;
  animation-delay: 0s !important;
  animation-duration: 0.45s !important;
  pointer-events: none;
}
@keyframes bubble-pop-out {
  0%   { transform: scale(1); opacity: 0.95; }
  35%  { transform: scale(1.22); opacity: 0.75; }
  100% { transform: scale(0); opacity: 0; }
}
.bubble-decor svg { display: block; width: 100%; height: 100%; }

/* One-time "Pop me!" hint on the first cluster a visitor sees, so the
   click-to-pop interaction is discoverable rather than a hidden easter egg */
.bubble-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
  z-index: 2;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  pointer-events: none;
  animation: bubble-hint-bounce 1.6s ease-in-out infinite;
  text-shadow:
    -1.5px -1.5px 0 #fff,
     1.5px -1.5px 0 #fff,
    -1.5px  1.5px 0 #fff,
     1.5px  1.5px 0 #fff,
     0 3px 8px rgba(13,59,102,0.25);
}
@keyframes bubble-hint-bounce {
  0%, 100% { transform: translate(-50%, -50%) rotate(-9deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(-9deg) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .bubble-hint { animation: none; }
}

.bubble-decor.size-sm { width: 220px; height: 220px; }
.bubble-decor.size-xs { width: 170px; height: 170px; }
.bubble-decor.size-md { width: 280px; height: 280px; }
.bubble-decor.size-lg { width: 350px; height: 350px; }

.bubble-decor.pos-tl { top: 6%; left: 3%; }
.bubble-decor.pos-tr { top: 8%; right: 4%; }
.bubble-decor.pos-bl { bottom: 6%; left: 5%; }
.bubble-decor.pos-br { bottom: 8%; right: 3%; }
.bubble-decor.pos-mid-l { top: 42%; left: 1%; }
.bubble-decor.pos-mid-r { top: 38%; right: 2%; }

.bubble-decor.delay-1 { animation-delay: -1.5s; }
.bubble-decor.delay-2 { animation-delay: -3.2s; }
.bubble-decor.delay-3 { animation-delay: -4.8s; }

@keyframes bubble-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .bubble-decor { animation: none; }
  .bubble-decor.popped { animation: none; opacity: 0; }
}

@media (max-width: 720px) {
  .bubble-decor.size-lg { width: 230px; height: 230px; }
  .bubble-decor.size-md { width: 190px; height: 190px; }
  .bubble-decor.size-sm { width: 150px; height: 150px; }
  .bubble-decor.pos-mid-l, .bubble-decor.pos-mid-r { display: none; }
}

/* Sections ------------------------------------------------------------- */

section { position: relative; }

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* Hero --------------------------------------------------------------------*/

.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  min-height: 520px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8,39,68,0.9) 0%, rgba(8,39,68,0.68) 24%, rgba(8,39,68,0.28) 45%, rgba(8,39,68,0) 60%);
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-text {
  max-width: 640px;
  text-align: left;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin-bottom: 0.28em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.hero h1 .h1-sub {
  display: block;
  font-size: 0.5em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.3em;
  text-shadow: 0 3px 14px rgba(0,0,0,0.35);
}

.hero p.lede {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  margin: 0 0 1.5em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.5);
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 6px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.trust-row .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.trust-row .item svg { flex-shrink: 0; }

/* Mascot's new supporting role: a small brand badge tucked in the hero
   corner, instead of the full-size illustration competing with the photo */
.mascot-badge {
  position: absolute;
  right: clamp(16px, 4vw, 56px);
  bottom: 0;
  z-index: 3;
  width: clamp(90px, 11vw, 140px);
  transform: translateY(28%);
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.35));
  animation: float 5s ease-in-out infinite;
}
.mascot-badge img { width: 100%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .mascot-badge { animation: none; }
}

@media (max-width: 720px) {
  .mascot-badge { display: none; }
}

/* Trust strip band ---------------------------------------------------------*/

.strip {
  background: var(--white);
  border-top: 6px solid var(--gold-2);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.strip-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(13,59,102,0.08);
}
.strip-item:last-child { border-right: none; }
.strip-item .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 800;
  display: block;
}
.strip-item .label {
  font-size: 0.92rem;
  color: var(--brown);
  font-weight: 600;
}

/* Card grid ------------------------------------------------------------ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(13,59,102,0.06);
}
.info-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--sky-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.info-card h3 { font-size: 1.08rem; margin-bottom: 0.4em; }
.info-card p { font-size: 0.95rem; color: #3D5975; margin-bottom: 0; }

/* Photo gallery placeholders --------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-photo {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-photo:hover img { transform: scale(1.05); }

.gallery-slot {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  background: repeating-linear-gradient(135deg, var(--foam) 0 18px, var(--foam-2) 18px 36px);
  border: 2px dashed #B9CFE2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6E8AA4;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  padding: 16px;
}

/* Section: two-col with mascot ------------------------------------------ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Pricing cards ---------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(13,59,102,0.06);
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-color: var(--gold-2);
  transform: scale(1.04);
  box-shadow: 0 22px 50px rgba(242,137,29,0.22);
}

.price-card .tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.price-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.price-card .price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  margin: 10px 0 4px;
}
.price-card .price span { font-size: 1rem; color: #6E8AA4; font-weight: 600; }
.price-card .desc { color: #52708A; font-size: 0.94rem; margin-bottom: 20px; }

.price-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  flex-grow: 1;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.price-list li svg { flex-shrink: 0; margin-top: 2px; }

.price-note-band {
  position: relative;
  background: var(--foam-2);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid #D8E6F1;
}

/* FAQ accordion ----------------------------------------------------------*/

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(13,59,102,0.06);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--navy);
}

.faq-q .plus {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sky-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
}
.faq-q .plus::before { width: 14px; height: 3px; }
.faq-q .plus::after { width: 3px; height: 14px; transition: opacity 0.2s ease; }

.faq-item.open .faq-q .plus { background: linear-gradient(180deg, var(--gold-1), var(--gold-2)); transform: rotate(180deg); }
.faq-item.open .faq-q .plus::after { opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: #3D5975;
  font-size: 0.98rem;
}

/* Contact ------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.form-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid #DCE6EE;
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--foam-2);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: var(--white);
}
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.field-row .field { min-width: 0; }

.form-msg {
  display: none;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--foam-2);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid #D8E6F1;
}
.form-msg.show { display: block; }
.form-msg.error {
  background: #FDECEC;
  color: #A02525;
  border-color: #F3C6C6;
}
.btn[disabled] { opacity: 0.65; cursor: not-allowed; }

.contact-info-card {
  position: relative;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: fit-content;
}

/* A small cluster that sits ON TOP of the card, overlapping its corner,
   rather than only in the page background behind everything */
.bubble-decor.splash {
  animation-duration: 6s;
}
.contact-info-card h3 { color: var(--white); }
.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-line .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-line a, .contact-line span.txt { color: rgba(255,255,255,0.92); font-weight: 600; }

.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover { background: var(--gold-2); transform: translateY(-2px); }

/* CTA band -----------------------------------------------------------*/

.cta-band {
  background: linear-gradient(120deg, var(--gold-1), var(--gold-2));
  border-radius: var(--radius-lg);
  padding: 56px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--navy-deep); margin-bottom: 6px; }
.cta-band p { color: #5C3A0E; margin-bottom: 0; font-weight: 600; }

/* Footer --------------------------------------------------------------- */

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--gold-1); }
.footer-logo img { height: 44px; margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}

/* Page header (for FAQ/Pricing/Contact interior pages) ------------------ */

.page-hero {
  background: radial-gradient(120% 160% at 85% 0%, var(--navy-soft) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 64px 0 54px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.7rem); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; }

/* Responsive ------------------------------------------------------------ */

@media (max-width: 980px) {
  .hero { min-height: auto; display: block; }
  .hero-photo { position: relative; inset: auto; height: 240px; }
  .hero-overlay { display: none; }
  .hero-content { position: static; background: var(--navy); padding: 32px 0 40px; transform: none; }
  .hero-text { text-align: center; max-width: 100%; margin: 0 auto; }
  .hero p.lede { margin-left: auto; margin-right: auto; }
  .hero-cta-row, .trust-row { justify-content: center; }
  .split { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-explore-cluster { right: -20px !important; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(13,59,102,0.08); }
  .strip-item:last-child { border-bottom: none; }
}

@media (max-width: 720px) {
  .nav-logo { margin-left: 8px; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 20px 24px 26px;
    gap: 16px;
    box-shadow: var(--shadow-soft);
  }
  .nav.open .nav-phone { display: none; }
  .nav-links .mobile-phone-item { display: block !important; border-top: 1px solid rgba(13,59,102,0.1); margin-top: 6px; padding-top: 14px; }
  .nav-links .mobile-phone-item a { color: var(--gold-2); }
  .card-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 26px; }
  .hero-photo { height: 200px; }
}
