/* =====================================================================
   My Nova Baby — Design System
   Palette: "Premium & Modern"  |  Type: Baloo 2 + Work Sans
   Visual direction: Wealthfront-style restraint, warm maternal palette.
   ===================================================================== */

/* ----------  Design tokens  ---------- */
:root {
  /* Brand palette */
  --deep-blue:     #0A1E4D;   /* primary / anchor / headings / footer */
  --emerald:       #2FA36B;   /* secondary accent / CTAs / icons      */
  --emerald-dark:  #268257;   /* CTA hover                            */
  --lavender:      #C5B3F6;   /* accent / tags / illustration         */
  --lavender-soft: #EEE9FC;   /* lavender tint background             */
  --mint:          #E6F7F1;   /* light background sections            */
  --mint-deep:     #D3F0E4;   /* mint accent / borders                */
  --gold:          #F2C572;   /* sparing accent / badges / highlights */
  --gold-soft:     #FDF3DF;

  /* Neutrals */
  --ink:      #16213D;        /* body text (softened deep blue)       */
  --ink-mute: #566079;        /* secondary text                       */
  --line:     #E7EAF1;        /* hairline borders                     */
  --surface:  #FFFFFF;
  --surface-2:#FBFBFE;
  --bg:       #FFFFFF;

  /* Type */
  --font-display: "Bricolage Grotesque", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radii & shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(10, 30, 77, .05);
  --shadow-md: 0 12px 30px -12px rgba(10, 30, 77, .18);
  --shadow-lg: 0 30px 60px -20px rgba(10, 30, 77, .28);

  /* Layout */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 9vw, 112px);
  --header-h: 76px;
}

/* ----------  Reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--lavender); outline-offset: 3px; border-radius: 4px; }

/* ----------  Typography  ---------- */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  color: var(--deep-blue);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
/* All heading tags use Baloo 2; buttons/UI accents stay on the display font (Bricolage) */
h1, h2, h3, h4, h5, h6 { font-family: "Baloo 2", "Trebuchet MS", system-ui, sans-serif; letter-spacing: -0.01em; line-height: 1.15; }
h4 { font-size: 1.1rem; }
p  { color: var(--ink-mute); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emerald);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--emerald);
  border-radius: 2px;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-mute); }

/* ----------  Layout helpers  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface-2); }
.section--mint { background: var(--mint); }
.section--lav  { background: var(--lavender-soft); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow.center { justify-content: center; }
.section-head p { margin-top: .9rem; }

.grid { display: grid; gap: clamp(20px, 2.4vw, 30px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.stack > * + * { margin-top: 1rem; }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: .8rem 1.5rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--emerald); color: #fff; box-shadow: 0 10px 22px -10px rgba(47,163,107,.75); }
.btn-primary:hover { background: var(--emerald-dark); box-shadow: 0 14px 26px -10px rgba(47,163,107,.85); }
.btn-secondary { background: transparent; color: var(--deep-blue); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--deep-blue); background: #fff; }
.btn-gold { background: var(--gold); color: var(--deep-blue); }
.btn-gold:hover { filter: brightness(1.04); }
.btn-light { background: #fff; color: var(--deep-blue); }
.btn-ghost-light { background: rgba(255,255,255,.10); color:#fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); border-color:#fff; }
.btn-lg { padding: .95rem 1.9rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ----------  Badges / tags / chips  ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 600;
  padding: .42rem .85rem; border-radius: var(--r-pill);
  background: var(--mint); color: var(--emerald-dark);
}
.badge-gold { background: var(--gold-soft); color: #9a6a12; }
.badge-lav  { background: var(--lavender-soft); color: #6a4fb0; }
.badge svg { width: 1rem; height: 1rem; }

.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .9rem; font-weight: 500; color: var(--ink);
  padding: .55rem 1rem; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); }

/* ----------  Header / nav  ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand .mark { width: 40px; height: 40px; flex: none; display: block; }
.brand .wordmark { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--deep-blue); letter-spacing: -.02em; line-height: 1; white-space: nowrap; }
.brand .wordmark span { color: var(--emerald); }
.brand .wordmark small { display:block; font-family: var(--font-body); font-weight:600; font-size:.6rem; letter-spacing:.28em; text-transform:uppercase; color: var(--ink-mute); margin-top:2px; }
.brand-logo { height: 46px; width: auto; display: block; }
@media (max-width: 520px){ .brand-logo { height: 40px; } }
.footer-logo { height: 54px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  font-weight: 500; font-size: .96rem; color: var(--ink);
  padding: .5rem .8rem; border-radius: var(--r-sm);
  transition: color .15s ease, background-color .15s ease;
}
.nav-links a:hover { color: var(--deep-blue); background: var(--surface-2); }
.nav-links a.active { color: var(--emerald-dark); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: #fff;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--deep-blue); transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-links, .nav .nav-cta { display: none; }
  .nav-drawer {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 1rem var(--gutter) 1.6rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    z-index: 55;
  }
  .nav-open .nav-drawer { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-drawer a { display: block; padding: .9rem .4rem; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--line); }
  .nav-drawer a.active { color: var(--emerald-dark); font-weight: 600; }
  .nav-drawer .btn { margin-top: 1.1rem; width: 100%; }
}
@media (min-width: 941px) { .nav-drawer { display: none; } }

/* ----------  Hero  ---------- */
.hero { position: relative; padding-top: clamp(48px, 7vw, 84px); padding-bottom: clamp(56px, 8vw, 96px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 55% at 82% 6%, var(--lavender-soft) 0%, transparent 60%),
    radial-gradient(55% 50% at 4% 92%, var(--mint) 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-copy h1 { margin-top: 1.1rem; }
.hero-copy .lede { margin-top: 1.25rem; max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .6rem .7rem; margin-top: 2rem; }

.hero-art { position: relative; }
.hero-art .art-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); padding: clamp(18px,2.4vw,26px);
}
.hero-art .float {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: .8rem 1rem; display: flex; align-items: center; gap: .7rem;
  font-weight: 600; font-size: .92rem; color: var(--deep-blue);
}
.hero-art .float .ic { width: 38px; height: 38px; border-radius: 12px; display:grid; place-items:center; flex:none; }
.hero-art .float-1 { top: 6%; left: -6%; }
.hero-art .float-2 { bottom: 8%; right: -5%; }
@media (max-width: 520px) { .hero-art .float { display: none; } }

/* ----------  Trust / logo strip  ---------- */
.marquee-note { text-align:center; color: var(--ink-mute); font-size:.85rem; font-weight:600; letter-spacing:.04em; text-transform:uppercase; margin-bottom:1.3rem; }
.trust-row { display:flex; flex-wrap:wrap; gap: 1rem 2.4rem; align-items:center; justify-content:center; }
.trust-row .item { display:flex; align-items:center; gap:.6rem; color: var(--ink-mute); font-weight:600; }
.trust-row .item svg { width:22px; height:22px; color: var(--emerald); }

/* ----------  Cards  ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 30px);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 1.15rem;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .98rem; }
.icon-mint { background: var(--mint); color: var(--emerald-dark); }
.icon-lav  { background: var(--lavender-soft); color: #6a4fb0; }
.icon-gold { background: var(--gold-soft); color: #a9760f; }
.icon-blue { background: #EAF0FF; color: var(--deep-blue); }

.card-link { display:inline-flex; align-items:center; gap:.4rem; margin-top:1.1rem; font-weight:600; color: var(--emerald-dark); font-family: var(--font-display); }
.card-link svg { width: 1em; height: 1em; transition: transform .18s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

/* ----------  Steps  ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-top: .5rem; }
.step .num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--deep-blue); color: #fff; margin-bottom: 1rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { font-size: .98rem; }

/* ----------  Split (image + text)  ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-copy .btn { margin-top: 1.6rem; }
.check-list li { position: relative; padding-left: 2rem; margin-top: .85rem; color: var(--ink); font-weight: 500; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .12em;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232FA36B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* ----------  Media / photo placeholders  ---------- */
.media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--mint) 0%, var(--lavender-soft) 100%);
  border: 1px solid var(--line);
  min-height: 320px; display: grid; place-items: center;
}
.media .ph {
  text-align: center; color: var(--ink-mute); font-size: .85rem; font-weight: 600;
  display: flex; flex-direction: column; align-items: center; gap: .6rem; padding: 1rem;
}
.media .ph svg { width: 40px; height: 40px; color: var(--emerald); opacity: .7; }
.media--tall { min-height: 460px; }

/* Video placeholder */
.video-ph {
  position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(135deg, #0A1E4D 0%, #16307a 100%);
  min-height: 380px; display: grid; place-items: center; color: #fff; text-align: center;
}
.video-ph .play {
  width: 78px; height: 78px; border-radius: 50%; background: rgba(255,255,255,.16);
  display: grid; place-items: center; margin: 0 auto 1rem; border: 2px solid rgba(255,255,255,.4);
  transition: transform .2s ease, background-color .2s ease;
}
.video-ph:hover .play { transform: scale(1.06); background: rgba(255,255,255,.24); }
.video-ph .play svg { width: 30px; height: 30px; margin-left: 4px; }
.video-ph small { color: rgba(255,255,255,.7); }

/* ----------  Stats  ---------- */
.stat { text-align: center; }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.1rem, 4vw, 2.9rem); color: var(--deep-blue); line-height: 1; }
.stat .n span { color: var(--emerald); }
.stat p { margin-top: .5rem; font-size: .95rem; }

/* ----------  Testimonials  ---------- */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-sm); height: 100%;
  display: flex; flex-direction: column;
}
.quote-card .stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 1rem; }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 1.06rem; color: var(--ink); line-height: 1.6; font-weight: 500; flex: 1; }
.quote-card .who { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; }
.quote-card .avatar { width: 46px; height: 46px; border-radius: 50%; display:grid; place-items:center; font-family: var(--font-display); font-weight: 700; color: #fff; flex:none; }
.quote-card .who .name { font-weight: 700; color: var(--deep-blue); font-family: var(--font-display); font-size: 1rem; }
.quote-card .who .role { font-size: .85rem; color: var(--ink-mute); }

/* ----------  FAQ accordion  ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; margin-bottom: .8rem; overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: transparent; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 1.15rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--deep-blue);
}
.faq-q .ico { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--mint); display: grid; place-items: center; transition: transform .25s ease, background-color .2s ease; }
.faq-q .ico::before, .faq-q .ico::after { content:""; position:absolute; width:12px; height:2px; border-radius:2px; background: var(--emerald-dark); transition: transform .25s ease; }
.faq-q .ico { position: relative; }
.faq-item.open .faq-q .ico::after { transform: rotate(90deg); opacity: 0; }
.faq-item.open .faq-q .ico { background: var(--emerald); }
.faq-item.open .faq-q .ico::before, .faq-item.open .faq-q .ico::after { background:#fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 1.3rem 1.25rem; color: var(--ink-mute); }

/* ----------  CTA band  ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  background: linear-gradient(130deg, #0A1E4D 0%, #16307a 62%, #234099 100%);
  border-radius: var(--r-xl); padding: clamp(38px, 6vw, 72px);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-inner::before, .cta-inner::after {
  content:""; position:absolute; border-radius:50%; filter: blur(10px); opacity:.4;
}
.cta-inner::before { width: 240px; height:240px; background: var(--lavender); top:-90px; right:-40px; }
.cta-inner::after  { width: 200px; height:200px; background: var(--emerald); bottom:-90px; left:-30px; opacity:.35; }
.cta-inner > * { position: relative; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255,255,255,.82); max-width: 46ch; margin: 1rem auto 0; }
.cta-inner .hero-actions { justify-content: center; margin-top: 2rem; }

/* ----------  Forms  ---------- */
.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,3vw,38px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.1rem; }
.field label { display:block; font-weight:600; color: var(--deep-blue); font-size:.92rem; margin-bottom:.45rem; }
.field .req { color: var(--emerald-dark); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface-2); transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--emerald); background: #fff;
  box-shadow: 0 0 0 4px rgba(47,163,107,.12);
}
.field-row { display:grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px){ .field-row { grid-template-columns: 1fr; gap: 0; } }
.form-note { font-size:.85rem; color: var(--ink-mute); margin-top:.4rem; }
.form-success { display:none; text-align:center; padding: 1rem; }
.form-success.show { display:block; }
.form-success .tick { width:64px; height:64px; border-radius:50%; background:var(--mint); display:grid; place-items:center; margin:0 auto 1rem; }
.form-success .tick svg { width:32px; height:32px; color: var(--emerald); }

/* ----------  Contact info blocks  ---------- */
.info-item { display:flex; gap:1rem; align-items:flex-start; }
.info-item .ic { width:48px; height:48px; border-radius:14px; background:var(--mint); color:var(--emerald-dark); display:grid; place-items:center; flex:none; }
.info-item .ic svg { width:22px; height:22px; }
.info-item h4 { margin-bottom:.2rem; }
.info-item a, .info-item p { color: var(--ink-mute); font-size:.98rem; }
.info-item a:hover { color: var(--emerald-dark); }

/* ----------  Page hero (inner pages)  ---------- */
.page-hero { position: relative; padding-block: clamp(52px, 7vw, 88px); overflow:hidden; }
.page-hero::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background: radial-gradient(60% 120% at 100% 0%, var(--lavender-soft) 0, transparent 55%), linear-gradient(180deg,#fff, var(--mint));
}
.page-hero .container { max-width: 760px; }
.page-hero h1 { margin-top: 1rem; }
.page-hero p { margin-top: 1.1rem; font-size: clamp(1.05rem,1.6vw,1.2rem); }
.breadcrumb { font-size:.85rem; color: var(--ink-mute); font-weight:600; }
.breadcrumb a:hover { color: var(--emerald-dark); }

/* ----------  Social feed placeholder  ---------- */
.social-tile { aspect-ratio: 1/1; border-radius: var(--r-md); border:1px solid var(--line); background: linear-gradient(135deg,var(--mint),var(--lavender-soft)); display:grid; place-items:center; color: var(--ink-mute); position:relative; overflow:hidden; }
.social-tile svg { width: 30px; height:30px; color:#fff; opacity:.85; }
.social-tile::after { content:""; position:absolute; inset:0; background:rgba(10,30,77,.06); }

/* ----------  Footer  ---------- */
.site-footer { background: var(--deep-blue); color: #fff; padding-top: clamp(48px,7vw,80px); }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 48px); padding-bottom: 3rem; }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .wordmark { color:#fff; font-family:var(--font-display); font-weight:800; font-size:1.35rem; }
.footer-brand .wordmark span { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,.62); margin-top:1rem; max-width: 34ch; font-size:.95rem; }
.footer-col h4 { color:#fff; font-size:.95rem; letter-spacing:.03em; text-transform:uppercase; margin-bottom:1.1rem; opacity:.85; }
.footer-col li { margin-bottom:.7rem; font-size:.96rem; }
.footer-social { display:flex; gap:.6rem; margin-top:1.2rem; }
.footer-social a { width:40px; height:40px; border-radius:12px; background:rgba(255,255,255,.08); display:grid; place-items:center; transition: background-color .2s ease, transform .2s ease; }
.footer-social a:hover { background: var(--emerald); transform: translateY(-2px); }
.footer-social svg { width:18px; height:18px; color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); padding-block:1.6rem; display:flex; flex-wrap:wrap; gap:.6rem 1.4rem; align-items:center; justify-content:space-between; }
.footer-bottom p, .footer-bottom a { color: rgba(255,255,255,.55); font-size:.86rem; }
.footer-bottom .links { display:flex; gap:1.2rem; flex-wrap:wrap; }
.made-by { display:inline-flex; align-items:center; gap:.35rem; }
.made-by a { color: var(--gold); font-weight:600; }
.made-by a:hover { color:#fff; }
.footer-legal { display:flex; flex-wrap:wrap; gap:.5rem 1.1rem; margin-top:.55rem; }
.footer-legal a { font-size:.9rem; }

/* ----------  Floating WhatsApp / chat  ---------- */
.whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  display: grid; place-items: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.07) translateY(-2px); }
.whatsapp-fab svg { width: 32px; height: 32px; color: #fff; }
.whatsapp-fab .pulse { position:absolute; inset:0; border-radius:50%; box-shadow:0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(37,211,102,.45);} 70%{ box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow:0 0 0 0 rgba(37,211,102,0);} }
.whatsapp-fab .tip {
  position:absolute; right: 72px; top:50%; transform: translateY(-50%);
  background:#fff; color:var(--deep-blue); font-weight:600; font-size:.85rem;
  padding:.55rem .85rem; border-radius:12px; box-shadow: var(--shadow-md); white-space:nowrap;
  opacity:0; pointer-events:none; transition: opacity .2s ease, transform .2s ease;
}
.whatsapp-fab:hover .tip { opacity:1; transform: translateY(-50%) translateX(-2px); }
@media (max-width:520px){ .whatsapp-fab .tip { display:none; } }

/* ----------  Utilities  ---------- */
.text-center { text-align:center; }
.mt-0 { margin-top:0; } .mt-1{ margin-top:.5rem;} .mt-2{margin-top:1rem;} .mt-3{margin-top:1.5rem;} .mt-4{margin-top:2rem;}
.mb-0 { margin-bottom:0; }
.reveal { opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; } }
.divider { height:1px; background: var(--line); border:0; margin:0; }
.eq-grid > * { height: 100%; }

/* ----------  Dark mode awareness (subtle)  ---------- */
@media (prefers-color-scheme: dark) {
  /* The site commits to its warm light identity; we keep it light but
     ensure the browser UI/form controls render pleasantly. */
  :root { color-scheme: light; }
}
