/* =====================================================================
   BUILDING BLOCKS — EARLY INTERVENTION
   Shared stylesheet. Mobile-first, no JavaScript.
   Built on the BounceBox design tokens. Swap the values below for your
   own and the whole site re-skins.
   ===================================================================== */

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

/* ------------------------------------------------------------------ */
/* 1. DESIGN TOKENS — edit these to re-brand                          */
/* ------------------------------------------------------------------ */
:root {
  /* Brand palette */
  --color-coral:        #FF6B6B;
  --color-coral-hover:  #E85D5D;
  --color-teal:         #4ECDC4;
  --color-teal-hover:   #3DBEB5;
  --color-sunshine:     #FFE66D;
  --color-blueberry:    #60A5FA;
  --color-grape:        #8B5CF6;
  --color-lime:         #84CC16;
  --color-tangerine:    #FB923C;
  --color-pink:         #F472B6;

  /* Semantic roles */
  --color-primary:        var(--color-coral);
  --color-primary-hover:  var(--color-coral-hover);
  --color-secondary:      var(--color-teal);
  --color-secondary-hover:var(--color-teal-hover);

  /* Surfaces */
  --surface-base:        #FFFFFF;
  --surface-muted:       #F9FAFB;
  --surface-tint-coral:  #FFF5F5;
  --surface-tint-teal:   #F0FBFA;
  --surface-tint-sun:    #FFFCEC;
  --surface-ink:         #1F3247;   /* deep calm navy for footers/bands */

  /* Text */
  --content-primary:   #2D2D2D;
  --content-secondary: #6B7280;
  --content-inverse:   #FFFFFF;

  /* Borders */
  --border-soft:   #E9ECF1;
  --border-strong: #D4D9E0;

  /* Typography */
  --font-display: 'Titan One', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, -apple-system, sans-serif;

  --text-h1: clamp(2.25rem, 1.4rem + 3.4vw, 3.75rem);
  --text-h2: clamp(1.9rem, 1.4rem + 1.9vw, 2.65rem);
  --text-h3: clamp(1.35rem, 1.1rem + 0.9vw, 1.75rem);
  --text-h4: 1.25rem;
  --text-body: 1.0625rem;
  --text-small: 0.9375rem;

  /* Spacing (8px base) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(31, 50, 71, 0.07);
  --shadow-md: 0 8px 22px rgba(31, 50, 71, 0.10);
  --shadow-lg: 0 18px 44px rgba(31, 50, 71, 0.16);
  --shadow-coral: 0 10px 24px rgba(255, 107, 107, 0.34);
  --shadow-teal:  0 10px 24px rgba(78, 205, 196, 0.32);

  --maxw: 1200px;
  --header-h: 84px;
}

/* ------------------------------------------------------------------ */
/* 2. RESET & BASE                                                     */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--content-primary);
  background: var(--surface-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3 { line-height: 1.12; font-weight: 400; }
h1 { font-family: var(--font-display); font-size: var(--text-h1); letter-spacing: -0.01em; }
h2 { font-family: var(--font-display); font-size: var(--text-h2); }
h3 { font-family: var(--font-display); font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); font-weight: 700; line-height: 1.3; }
p  { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--color-blueberry);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute; left: var(--space-md); top: -100px;
  background: var(--color-primary); color: #fff; padding: 12px 20px;
  border-radius: var(--radius-pill); z-index: 200; font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: var(--space-md); }

/* ------------------------------------------------------------------ */
/* 3. LAYOUT HELPERS                                                   */
/* ------------------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--space-lg); }
.section { padding-block: var(--space-3xl); }
.section--tight { padding-block: var(--space-2xl); }
.bg-muted { background: var(--surface-muted); }
.bg-coral { background: var(--surface-tint-coral); }
.bg-teal  { background: var(--surface-tint-teal); }
.bg-sun   { background: var(--surface-tint-sun); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-small); font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--color-primary);
  background: var(--surface-tint-coral); padding: 7px 16px;
  border-radius: var(--radius-pill);
}
.eyebrow.teal { color: var(--color-teal-hover); background: var(--surface-tint-teal); }
.eyebrow.grape { color: var(--color-grape); background: #F3EEFE; }
.eyebrow.tang { color: #D9772B; background: #FFF3E8; }

.section-head { max-width: 760px; margin-bottom: var(--space-2xl); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: var(--space-md); }
.section-head p { margin-top: var(--space-md); color: var(--content-secondary); font-size: 1.125rem; }

.lead { font-size: 1.2rem; color: var(--content-secondary); }
.muted { color: var(--content-secondary); }
.center { text-align: center; }

/* ------------------------------------------------------------------ */
/* 4. BUTTONS                                                          */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 28px;
  font-weight: 600; font-size: 1.0625rem; line-height: 1;
  border: none; border-radius: var(--radius-pill); cursor: pointer;
  transition: transform .15s cubic-bezier(.34,1.56,.64,1), background .2s, box-shadow .2s;
  text-align: center;
}
.btn:active { transform: scale(0.96); }
.btn svg { width: 20px; height: 20px; }

.btn-primary { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-coral); }
.btn-primary:hover { background: var(--color-primary-hover); }

.btn-secondary { background: var(--color-secondary); color: #06403c; box-shadow: var(--shadow-teal); }
.btn-secondary:hover { background: var(--color-secondary-hover); }

.btn-ghost { background: transparent; color: var(--color-primary); box-shadow: inset 0 0 0 3px var(--color-primary); }
.btn-ghost:hover { background: var(--surface-tint-coral); }

.btn-white { background: #fff; color: var(--color-primary); box-shadow: var(--shadow-md); }
.btn-white:hover { background: var(--surface-tint-coral); }

.btn-lg { min-height: 60px; padding: 18px 36px; font-size: 1.15rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-md); }

/* ------------------------------------------------------------------ */
/* 5. TOP UTILITY BAR                                                  */
/* ------------------------------------------------------------------ */
.topbar {
  background: var(--surface-ink); color: #cbd6e2;
  font-size: 0.85rem;
}
.topbar .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; padding-block: 9px; }
.topbar a { color: #cbd6e2; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; flex: none; }
.topbar .tb-spacer { margin-left: auto; }

/* ------------------------------------------------------------------ */
/* 6. HEADER / NAV (CSS-only mobile menu via checkbox)                */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 2px solid var(--border-soft);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: var(--space-md); }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brand .bname { font-family: var(--font-display); font-size: 1.3rem; line-height: 1; color: var(--content-primary); white-space: nowrap; }
.brand .bsub { display: block; font-family: var(--font-body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; color: var(--color-teal-hover); text-transform: uppercase; margin-top: 4px; }

.nav-toggle, .nav-toggle-label { display: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 16px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 1rem; color: var(--content-primary);
  transition: background .18s, color .18s;
}
.nav a:hover { background: var(--surface-tint-coral); color: var(--color-primary); }
.nav a[aria-current="page"] { color: var(--color-primary); background: var(--surface-tint-coral); }
.nav .nav-cta { margin-left: 8px; white-space: nowrap; }

.nav-toggle-label {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  border: 2px solid var(--border-soft); cursor: pointer;
  align-items: center; justify-content: center; color: var(--content-primary);
}
.nav-toggle-label:hover { background: var(--surface-muted); }

/* ------------------------------------------------------------------ */
/* 7. HERO                                                             */
/* ------------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; padding-block: var(--space-3xl); }
.hero-grid { display: grid; gap: var(--space-2xl); align-items: center; }
.hero h1 { margin-block: var(--space-md); }
.hero .accent-line { color: var(--color-tangerine); display: block; }
.hero p.lead { margin-bottom: var(--space-xl); max-width: 36ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: var(--space-xl); color: var(--content-secondary); font-size: var(--text-small); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.hero-trust svg { width: 20px; height: 20px; color: var(--color-teal); flex: none; }

/* Hero media: a framed photo placeholder with floating block confetti */
.hero-media { position: relative; }

/* Photo placeholder frames — replace the inner content with your own <img> */
.ph {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background:
    radial-gradient(circle at 30% 25%, rgba(78,205,196,.16), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(255,107,107,.14), transparent 55%),
    var(--surface-muted);
  color: var(--content-secondary); text-align: center;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 2px dashed var(--border-strong);
}
.ph svg { width: 46px; height: 46px; color: var(--color-teal); opacity: .85; }
.ph span { font-size: var(--text-small); font-weight: 600; padding-inline: 16px; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* When a real photo fills a placeholder, drop the dashed hint border */
.ph:has(img) { border: none; background: var(--surface-muted); }
.ph-photo { /* when a real <img> is dropped in, it covers the hint */ }
.hero-media .ph { aspect-ratio: 4 / 4.4; box-shadow: var(--shadow-lg); border-style: solid; border-color: #fff; }

/* floating decorative blocks */
.float-block { position: absolute; border-radius: 14px; box-shadow: var(--shadow-md); display: grid; place-items: center; font-family: var(--font-display); color: #fff; transform: rotate(-8deg); }
.fb-1 { width: 76px; height: 76px; background: var(--color-coral); top: -26px; left: -22px; font-size: 2rem; }
.fb-2 { width: 64px; height: 64px; background: var(--color-teal); bottom: 40px; right: -24px; transform: rotate(10deg); font-size: 1.7rem; }
.fb-3 { width: 56px; height: 56px; background: var(--color-sunshine); color: #8a6d00; bottom: -22px; left: 40px; transform: rotate(6deg); font-size: 1.5rem; }

/* confetti dots */
.confetti { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.confetti i { position: absolute; border-radius: 50%; opacity: .5; }

/* ------------------------------------------------------------------ */
/* 8. CARDS & GRIDS                                                    */
/* ------------------------------------------------------------------ */
.grid { display: grid; gap: var(--space-lg); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

.card {
  background: #fff; border: 2px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--color-teal); }
.card h3, .card h4 { margin-bottom: 10px; }
.card p { color: var(--content-secondary); font-size: var(--text-small); }

/* icon medallion */
.medallion {
  width: 64px; height: 64px; border-radius: 20px;
  display: grid; place-items: center; margin-bottom: var(--space-md);
  color: #fff; box-shadow: var(--shadow-sm);
}
.medallion svg { width: 32px; height: 32px; }
.m-coral { background: var(--color-coral); }
.m-teal  { background: var(--color-teal); }
.m-sun   { background: var(--color-sunshine); color: #8a6d00; }
.m-grape { background: var(--color-grape); }
.m-tang  { background: var(--color-tangerine); }
.m-blue  { background: var(--color-blueberry); }
.m-lime  { background: var(--color-lime); }
.m-pink  { background: var(--color-pink); }

/* small inline link with arrow */
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--color-primary); margin-top: var(--space-md); }
.link-arrow svg { width: 18px; height: 18px; transition: transform .2s; }
.card:hover .link-arrow svg, .link-arrow:hover svg { transform: translateX(4px); }

/* service card with top color rail */
.svc-card { position: relative; overflow: hidden; }
.svc-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; }
.svc-card.r-coral::before { background: var(--color-coral); }
.svc-card.r-teal::before  { background: var(--color-teal); }
.svc-card.r-sun::before   { background: var(--color-sunshine); }
.svc-card.r-grape::before { background: var(--color-grape); }
.svc-card.r-tang::before  { background: var(--color-tangerine); }
.svc-card.r-blue::before  { background: var(--color-blueberry); }

/* feature list with checks */
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: var(--text-small); }
.checklist li::before {
  content: ""; flex: none; width: 24px; height: 24px; margin-top: 1px; border-radius: 50%;
  background: var(--color-teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* ------------------------------------------------------------------ */
/* 9. PROCESS TIMELINE                                                 */
/* ------------------------------------------------------------------ */
.timeline { display: grid; gap: var(--space-lg); counter-reset: step; }
.tl-step {
  position: relative; background: #fff; border: 2px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: var(--space-xl);
  padding-left: 92px; box-shadow: var(--shadow-sm);
}
.tl-step .tl-num {
  counter-increment: step; position: absolute; left: 24px; top: 24px;
  width: 48px; height: 48px; border-radius: var(--radius-pill);
  display: grid; place-items: center; color: #fff; font-family: var(--font-display);
  font-size: 1.4rem; box-shadow: var(--shadow-sm);
}
.tl-step .tl-num::before { content: counter(step); }
.tl-step:nth-child(1) .tl-num { background: var(--color-coral); }
.tl-step:nth-child(2) .tl-num { background: var(--color-tangerine); }
.tl-step:nth-child(3) .tl-num { background: var(--color-teal); }
.tl-step:nth-child(4) .tl-num { background: var(--color-grape); }
.tl-step:nth-child(5) .tl-num { background: var(--color-blueberry); }
.tl-step h4 { margin-bottom: 8px; }
.tl-step p { color: var(--content-secondary); font-size: var(--text-small); }

/* ------------------------------------------------------------------ */
/* 10. STATS BAND                                                      */
/* ------------------------------------------------------------------ */
.stats-band { background: var(--surface-ink); color: #fff; position: relative; overflow: hidden; }
.stats-band .wrap { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.6rem, 1.6rem + 3vw, 3.6rem); line-height: 1; }
.stat .num.c1 { color: var(--color-sunshine); }
.stat .num.c2 { color: var(--color-teal); }
.stat .num.c3 { color: var(--color-coral); }
.stat .lbl { margin-top: 10px; color: #cbd6e2; font-weight: 600; letter-spacing: .02em; }

/* ------------------------------------------------------------------ */
/* 11. MILESTONE AGE-BANDS                                             */
/* ------------------------------------------------------------------ */
.age-card { padding: 0; overflow: hidden; }
.age-card .age-top { padding: var(--space-lg) var(--space-xl); color: #fff; display: flex; align-items: baseline; gap: 12px; }
.age-card .age-top .age-range { font-family: var(--font-display); font-size: 1.6rem; }
.age-card .age-top .age-label { font-weight: 600; opacity: .92; }
.age-card.a1 .age-top { background: var(--color-coral); }
.age-card.a2 .age-top { background: var(--color-teal); }
.age-card.a3 .age-top { background: var(--color-grape); }
.age-card .age-body { padding: var(--space-xl); }
.age-card .age-body ul { display: grid; gap: 10px; }
.age-card .age-body li { display: flex; gap: 10px; font-size: var(--text-small); color: var(--content-secondary); }
.age-card .age-body li svg { width: 18px; height: 18px; color: var(--color-tangerine); flex: none; margin-top: 3px; }

/* ------------------------------------------------------------------ */
/* 12. TESTIMONIALS                                                    */
/* ------------------------------------------------------------------ */
.quote-card { background: #fff; border: 2px solid var(--border-soft); border-radius: var(--radius-lg); padding: var(--space-xl); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--space-md); }
.quote-card .stars { display: flex; gap: 3px; color: var(--color-sunshine); }
.quote-card .stars svg { width: 20px; height: 20px; }
.quote-card blockquote { font-size: 1.05rem; line-height: 1.55; color: var(--content-primary); }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-card .who .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-size: 1.1rem; flex: none; }
.quote-card .who .nm { font-weight: 700; font-size: var(--text-small); }
.quote-card .who .rl { font-size: 0.82rem; color: var(--content-secondary); }

/* ------------------------------------------------------------------ */
/* 13. FAQ ACCORDION (pure CSS details/summary)                       */
/* ------------------------------------------------------------------ */
.faq { display: grid; gap: var(--space-md); max-width: 820px; margin-inline: auto; }
.faq details { background: #fff; border: 2px solid var(--border-soft); border-radius: var(--radius-md); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq details[open] { border-color: var(--color-teal); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; font-size: 1.08rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--surface-tint-coral); color: var(--color-primary); display: grid; place-items: center; transition: transform .2s, background .2s; }
.faq summary .chev svg { width: 18px; height: 18px; }
.faq details[open] summary .chev { transform: rotate(45deg); background: var(--color-teal); color: #fff; }
.faq details > div { padding: 0 24px 22px; color: var(--content-secondary); }

/* ------------------------------------------------------------------ */
/* 14. CTA BAND                                                        */
/* ------------------------------------------------------------------ */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--color-coral), #ff8585); color: #fff; border-radius: var(--radius-xl); padding: clamp(2.5rem, 1rem + 6vw, 4.5rem); text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { margin: var(--space-md) auto var(--space-xl); max-width: 52ch; color: #fff; opacity: .95; font-size: 1.15rem; }
.cta-band .btn-row { justify-content: center; }
.cta-band .confetti i { opacity: .35; }

/* ------------------------------------------------------------------ */
/* 15. FORMS                                                           */
/* ------------------------------------------------------------------ */
.form-card { background: #fff; border: 2px solid var(--border-soft); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 3vw, 2.5rem); box-shadow: var(--shadow-md); }
.field { display: grid; gap: 8px; margin-bottom: var(--space-lg); }
.field label { font-weight: 600; font-size: var(--text-small); }
.field .req { color: var(--color-primary); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; min-height: 52px;
  background: var(--surface-muted); border: 2px solid var(--border-soft);
  border-radius: var(--radius-md); transition: border-color .18s, background .18s, box-shadow .18s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--border-strong); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--color-primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(255,107,107,.18);
}
.field .hint { font-size: 0.82rem; color: var(--content-secondary); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 0 var(--space-lg); }
.checkbox-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: var(--space-lg); }
.checkbox-row input { width: 24px; height: 24px; min-height: auto; accent-color: var(--color-teal); margin-top: 2px; flex: none; }
.checkbox-row label { font-size: var(--text-small); color: var(--content-secondary); }

/* contact info list */
.info-list { display: grid; gap: var(--space-md); }
.info-row { display: flex; gap: 16px; align-items: flex-start; }
.info-row .ic { width: 50px; height: 50px; border-radius: 16px; background: var(--surface-tint-teal); color: var(--color-teal-hover); display: grid; place-items: center; flex: none; }
.info-row .ic svg { width: 24px; height: 24px; }
.info-row .lbl { font-size: 0.8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--content-secondary); font-weight: 700; }
.info-row a, .info-row p { font-weight: 600; }

/* placeholder chip note */
.ph-note { font-size: 0.8rem; color: var(--color-tangerine); font-weight: 600; }

/* ------------------------------------------------------------------ */
/* 16. SERVICE AREAS                                                   */
/* ------------------------------------------------------------------ */
.area-cols { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.area-list a {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  background: #fff; border: 2px solid var(--border-soft); border-radius: var(--radius-md);
  font-weight: 600; font-size: var(--text-small); transition: border-color .18s, transform .18s, background .18s;
}
.area-list a:hover { border-color: var(--color-teal); transform: translateX(4px); background: var(--surface-tint-teal); }
.area-list a svg { width: 18px; height: 18px; color: var(--color-coral); flex: none; }
.pinwrap { background: var(--surface-tint-teal); border-radius: var(--radius-lg); border: 2px solid var(--border-soft); padding: var(--space-lg); }

/* chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: var(--radius-pill); background: #fff; border: 2px solid var(--border-soft); font-size: var(--text-small); font-weight: 600; }
.chip svg { width: 15px; height: 15px; color: var(--color-teal); }

/* ------------------------------------------------------------------ */
/* 17. SPLIT / FEATURE ROWS                                            */
/* ------------------------------------------------------------------ */
.split { display: grid; gap: var(--space-2xl); align-items: center; }
.split .ph { aspect-ratio: 4/3; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.value h4 { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.value .vic { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; color: #fff; flex: none; }
.value .vic svg { width: 22px; height: 22px; }
.value p { color: var(--content-secondary); font-size: var(--text-small); }

/* page hero (interior) */
.page-hero { background: var(--surface-tint-teal); position: relative; overflow: hidden; padding-block: var(--space-3xl); }
.page-hero .wrap { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 { margin-block: var(--space-md); }
.page-hero p { font-size: 1.2rem; color: var(--content-secondary); max-width: 60ch; }
.breadcrumb { font-size: var(--text-small); color: var(--content-secondary); font-weight: 600; }
.breadcrumb a:hover { color: var(--color-primary); }

/* ------------------------------------------------------------------ */
/* 18. FOOTER                                                          */
/* ------------------------------------------------------------------ */
.site-footer { background: var(--surface-ink); color: #aebccb; padding-block: var(--space-3xl) var(--space-xl); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); }
.footer-brand .brand .bname { color: #fff; }
.footer-brand p { margin-top: var(--space-md); font-size: var(--text-small); max-width: 34ch; }
.footer-col h5 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--space-md); font-weight: 700; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: var(--text-small); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--space-2xl); padding-top: var(--space-lg); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: 0.82rem; }
.footer-bottom a:hover { color: #fff; }

/* ------------------------------------------------------------------ */
/* 19. MISC                                                            */
/* ------------------------------------------------------------------ */
.pill-tag { display: inline-block; padding: 6px 14px; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 700; }
.divider { height: 2px; border: none; border-top: 2px dashed var(--border-soft); margin-block: var(--space-2xl); }

/* ------------------------------------------------------------------ */
/* 20. RESPONSIVE                                                      */
/* ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  /* mobile nav */
  .nav-toggle-label { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(330px, 84vw);
    flex-direction: column; align-items: stretch; gap: 6px;
    background: #fff; padding: 96px var(--space-lg) var(--space-lg);
    box-shadow: var(--shadow-lg); transform: translateX(100%);
    transition: transform .25s ease; overflow-y: auto;
  }
  .nav a { padding: 14px 18px; font-size: 1.1rem; }
  .nav .nav-cta { margin-left: 0; margin-top: 8px; }
  .nav-toggle:checked ~ .nav { transform: translateX(0); }
  .nav-toggle:checked ~ .nav-overlay { opacity: 1; pointer-events: auto; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(31,50,71,.4); opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 90; }
  .nav { z-index: 95; }
}

@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .ph { order: 2; }
  .area-cols { grid-template-columns: 1.1fr 0.9fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .area-list { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* ------------------------------------------------------------------ */
/* 21. TWO-SERVICE FEATURE CARDS                                       */
/* ------------------------------------------------------------------ */
.svc-feature { display: flex; flex-direction: column; }
.svc-feature .who-leads {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-size: 0.82rem; font-weight: 700; letter-spacing: .01em;
  padding: 8px 15px; border-radius: var(--radius-pill); margin-bottom: var(--space-md);
}
.svc-feature .who-leads svg { width: 16px; height: 16px; flex: none; }
.who-leads.lead-specialist { background: var(--surface-tint-coral); color: var(--color-primary); }
.who-leads.lead-parent { background: var(--surface-tint-teal); color: var(--color-teal-hover); }
.svc-feature .svc-sub { font-weight: 700; font-size: var(--text-small); color: var(--content-primary); margin-bottom: 12px; }
.svc-feature .checklist { margin-top: 4px; }

.key-diff {
  margin-top: var(--space-xl);
  background: var(--surface-tint-sun); border: 2px dashed #F0D98A;
  border-radius: var(--radius-lg); padding: var(--space-lg) var(--space-xl);
  display: flex; gap: 16px; align-items: flex-start;
}
.key-diff svg { width: 30px; height: 30px; color: #C9971B; flex: none; }
.key-diff p { color: var(--content-primary); font-size: var(--text-small); margin: 0; }

/* ------------------------------------------------------------------ */
/* 22. ABOUT — OWNER / FOUNDER SECTION                                 */
/* ------------------------------------------------------------------ */
.owner-creds { margin-top: var(--space-lg); background: #fff; }
.owner-creds h4 { margin-bottom: var(--space-md); }
.owner-philosophy {
  margin-top: var(--space-lg); padding: var(--space-md) 0 var(--space-md) var(--space-lg);
  border-left: 4px solid var(--color-grape);
  font-size: 1.15rem; font-style: italic; line-height: 1.5; color: var(--content-primary);
}
.owner-philosophy cite { display: block; margin-top: 10px; font-size: var(--text-small); font-style: normal; font-weight: 700; color: var(--content-secondary); }
