/* =========================================================
   Stuttering Therapy Services
   Palette  : Earthy · Warm · Calm · Approachable
              Terracotta · Deep brown · Warm cream
   A11y     : WCAG 2.1 AA verified throughout
   Fonts    : Lora (headings) · Nunito (body)
   Shapes   : △ ○ □ used as recurring design motif
   ========================================================= */

/* ── Design Tokens ──────────────────────────────────────── */
:root {
  /* Text — warm earthy darks                                 */
  --ink:   #1e1914;   /* headings   ~17:1 on --bg ✓ AAA      */
  --body:  #3d3527;   /* body text  ~8.4:1 on --bg ✓ AA      */
  --muted: #6e6254;   /* secondary  ~5.1:1 on --bg ✓ AA      */

  /* Terracotta — primary action colour                       */
  --terra-900: #5c2610;   /* deepest — used in dark sections  */
  --terra-800: #7a3515;   /* dark     ~7.5:1 on --bg ✓ AAA   */
  --terra-700: #9e4b22;   /* buttons  ~5.6:1 on --bg ✓ AA    */
  --terra-600: #ba6035;   /* medium (decorative / large text) */
  --terra-200: #e8c0a0;   /* mid tint                         */
  --terra-100: #f4dfd0;   /* light tint                       */
  --terra-50:  #faf3ec;   /* very light bg                    */

  /* Deep warm brown — dark sections (no green)               */
  --forest-900: #2a1e12;  /* footer, dark bg — deep warm brown*/
  --forest-800: #3d2c1a;  /* dark warm brown panels           */
  --forest-700: #6b4226;  /* hover/active ~4.9:1 on --bg ✓ AA*/
  --forest-600: #8a5632;
  --forest-200: #e0c9b0;  /* warm light brown tint            */
  --forest-100: #f0e4d4;  /* very light warm brown            */
  --forest-50:  #faf3ec;  /* warm tint bg (same as terra-50)  */

  /* Warm sand — decorative (eyebrow lines, rules, dots)      */
  --sand-500: #a08868;
  --sand-400: #b89e82;    /* logo-gray-warmed — echo #959595  */
  --sand-200: #ddd0bf;
  --sand-100: #f0e8dd;

  /* Surfaces — warm cream, never cold white                  */
  --bg:       #faf7f2;   /* page bg — warm cream              */
  --bg-alt:   #f0e8da;   /* alternate section — warm stone    */
  --bg-card:  #ffffff;   /* cards — white for contrast        */
  --border:   #e2d8c8;   /* warm sandy border                 */
  --border-md:#cfc5b2;   /* medium warm border                */

  /* Spacing (4-px base) */
  --s1:4px; --s2:8px; --s3:12px; --s4:16px; --s5:20px;
  --s6:24px; --s8:32px; --s10:40px; --s12:48px;
  --s16:64px; --s20:96px;

  /* Shape */
  --r-sm:  8px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 36px;

  /* Shadow — warm earthy tint                                */
  --sh-xs: 0 1px 4px rgba(30,25,20,.07);
  --sh-sm: 0 2px 10px rgba(30,25,20,.09);
  --sh:    0 4px 20px rgba(30,25,20,.10);
  --sh-lg: 0 8px 36px rgba(30,25,20,.13);

  --nav-h: 70px;
  --container: 1100px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
p   { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Accessibility: Skip Link ────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s4);
  z-index: 9999;
  padding: var(--s3) var(--s5);
  background: var(--forest-900);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border-radius: var(--r-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: var(--s4); }

/* ── Accessibility: Focus Visible ───────────────────────── */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--terra-700);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.site-nav    :focus-visible { outline-color: var(--terra-200); }
.site-footer :focus-visible { outline-color: var(--terra-200); }

/* ── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  color: var(--ink);
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.2rem); }
h4 { font-size: 1rem; font-weight: 700; font-family: 'Nunito', system-ui, sans-serif; }

/* ── Layout Helpers ─────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s6); }
.section        { padding: var(--s20) 0; }
.section--alt   { background: var(--bg-alt); }
.section--white { background: var(--bg); }

.section__header { text-align: center; margin-bottom: var(--s16); }
/* △ ○ □ shape row above section titles */
.section__header::before {
  content: '△  ○  □';
  display: block;
  font-size: .8rem;
  color: var(--sand-400);
  letter-spacing: .2em;
  margin-bottom: var(--s5);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra-700);
  margin-bottom: var(--s4);
  font-family: 'Nunito', system-ui, sans-serif;
}
/* △ ○ □ — three logo shapes as eyebrow decoration */
.eyebrow::before {
  content: '△ ○ □';
  font-size: .65rem;
  color: var(--sand-400);
  letter-spacing: .08em;
  font-style: normal;
  margin-right: var(--s1);
}
.section__title    { margin-bottom: var(--s4); }
.section__subtitle { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s var(--ease), box-shadow .18s, transform .18s;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
  min-height: 48px;
}
.btn--primary {
  background: var(--terra-700);
  color: #fff;
  border-color: var(--terra-700);
}
.btn--primary:hover {
  background: var(--terra-800);
  border-color: var(--terra-800);
  box-shadow: var(--sh);
  transform: translateY(-1px);
}
.btn--terra {
  background: var(--terra-700);
  color: #fff;
  border-color: var(--terra-700);
}
.btn--terra:hover {
  background: var(--terra-800);
  border-color: var(--terra-800);
  box-shadow: var(--sh);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--terra-700);
  border-color: var(--terra-700);
}
.btn--outline:hover { background: var(--terra-50); }
.btn--outline-cream {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.45);
}
.btn--outline-cream:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.85);
}

/* ── Top Bar ─────────────────────────────────────────────── */
.top-bar {
  background: var(--forest-900);
  padding: 8px 0;
  font-size: .78rem;
}
.top-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  justify-content: flex-end;
  gap: var(--s6);
  color: rgba(255,255,255,.55);
}
.top-bar__inner a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .15s;
}
.top-bar__inner a:hover { color: #fff; }

/* ── ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--bg-alt);
  border-bottom: 2px solid var(--terra-600);
}
.site-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
}
.site-nav__logo img { height: 42px; width: auto; }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.site-nav__link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 var(--s3);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--body);
  border-radius: 0;
  position: relative;
  transition: color .15s;
  font-family: 'Nunito', system-ui, sans-serif;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px; left: var(--s3); right: var(--s3);
  height: 2px;
  background: var(--terra-600);
  transform: scaleX(0);
  transition: transform .2s var(--ease);
  transform-origin: left;
}
.site-nav__link:hover { color: var(--ink); }
.site-nav__link:hover::after { transform: scaleX(1); }
.site-nav__link.active {
  color: var(--terra-700);
  font-weight: 700;
}
.site-nav__link.active::after { transform: scaleX(1); }
.site-nav__cta { margin-left: var(--s4); font-size: .88rem; padding: 10px 20px; min-height: 44px; }

/* Hamburger */
.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: var(--s3);
}
.site-nav__toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s;
}
.site-nav.nav-open .site-nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.nav-open .site-nav__toggle span:nth-child(2) { opacity: 0; }
.site-nav.nav-open .site-nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── ═══════════════════════════════════════════════════════
   HERO — centered layout with image strip
   ═══════════════════════════════════════════════════════ */
.hero {
  background: var(--bg);
  overflow: hidden;
}
.hero__center {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--s20) var(--s6) var(--s12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
}
.hero__brand-logo {
  height: 90px;
  width: auto;
  display: block;
  margin-bottom: var(--s2);
}
.hero__tagline {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra-700);
  margin-bottom: 0;
}
.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.0;
  letter-spacing: -.03em;
  margin-bottom: 0;
}
.hero__title em {
  font-style: normal;
  color: var(--terra-700);
  display: block;
}
.hero__text {
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}
.hero__actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--s2);
}
.hero__image-strip {
  width: 100%;
  height: 420px;
  overflow: hidden;
  display: block;
}
.hero__image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Hero logo mark — kept for any legacy use */
.hero__brand {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s2);
}
.hero__brand-mark {
  height: 72px;
  width: auto;
  opacity: .85;
}
/* keep .hero__location for any legacy use */
.hero__location {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0;
}

/* ── Hero — split grid: cream left, photo right ──────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px, 82vh, 820px);
  overflow: hidden;
}
.hero__bg {
  grid-column: 1 / -1;
  grid-row: 1;
  position: relative;
  overflow: hidden;
  display: contents; /* let img fill the right cell via absolute */
}
/* photo lives in its own right column */
.hero__photo-col {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  position: relative;
}
.hero__photo-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
/* soft fade where cream meets photo */
.hero__photo-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-alt) 0%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}
.hero__content {
  grid-column: 1;
  grid-row: 1;
  background: var(--bg-alt);
  padding: var(--s20) var(--s10) var(--s20)
    max(var(--s8), calc((100vw - 1100px) / 2 + var(--s8)));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s5);
}
.hero__logo {
  height: clamp(100px, 11vw, 160px);
  width: auto;
  display: block;
  margin-bottom: var(--s3);
}
.hero__heading {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0;
  max-width: 440px;
}
.hero__desc {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 0;
}
.hero__actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-top: var(--s3);
}
/* Ghost button for secondary CTA */
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-md);
}
.btn--ghost:hover {
  background: rgba(30,25,20,.06);
  border-color: var(--sand-500);
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: auto 280px; }
  .hero__content { grid-column: 1; grid-row: 1; padding: var(--s12) var(--s6); }
  .hero__photo-col { grid-column: 1; grid-row: 2; }
  .hero__photo-col::before { background: linear-gradient(to bottom, var(--bg-alt) 0%, transparent 40%); }
}

/* ── Why text grid (2-col paragraphs) ───────────────────── */
.why-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8) var(--s16);
}
.why-text-grid p {
  font-size: 1.02rem;
  color: var(--body);
  line-height: 1.85;
  margin: 0;
}
/* ── △ ○ □ Shapes divider ────────────────────────────────── */
.shapes-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  padding: var(--s10) 0;
  background: var(--bg);
}
.shapes-divider__tri {
  display: block;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid var(--terra-200);
}
.shapes-divider__circ {
  display: block;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--terra-200);
}
.shapes-divider__sq {
  display: block;
  width: 18px; height: 18px;
  border: 2px solid var(--terra-200);
}
@media (max-width: 640px) {
  .why-text-grid { grid-template-columns: 1fr; }
}

/* ── Stats ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--forest-900);
  padding: var(--s10) 0;
}
.stats-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.stat {
  text-align: center;
  padding: var(--s6) var(--s4);
  background: var(--forest-900);
}
.stat__num   { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; color: #fff; line-height: 1; margin-bottom: var(--s2); }
.stat__label { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.35; }

/* ── Service cards (2×2 grid) ────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s12);
  box-shadow: var(--sh-xs);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.card__icon {
  width: 60px; height: 60px;
  background: var(--forest-50);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s6);
}
.card__icon svg { width: 30px; height: 30px; color: var(--forest-700); }
.card h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: var(--s3); line-height: 1.3; }
.card p  { font-size: 1rem; color: var(--body); line-height: 1.7; margin: 0; }

/* ── Open feature grid (homepage — no card boxes) ──────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid var(--border);
  counter-reset: pillar;
}
.why-item {
  padding: var(--s10) var(--s8);
  border-right: 1.5px solid var(--border);
  border-top: none;
  counter-increment: pillar;
  position: relative;
  transition: background .2s var(--ease);
}
.why-item:last-child { border-right: none; }
.why-item:hover { background: var(--bg); }
.why-item::before {
  content: counter(pillar, decimal-leading-zero);
  display: block;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--border-md);
  line-height: 1;
  margin-bottom: var(--s6);
  letter-spacing: -.02em;
}
.why-item__icon { display: none; }
.why-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s3);
  line-height: 1.3;
}
.why-item p {
  font-size: .92rem;
  color: var(--body);
  line-height: 1.7;
  margin: 0;
}

/* ── Logo-shape decorations (△ ○ □ behind images) ────────── */
.geo {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: .22;
}
.geo--tri  { width: 180px; height: 156px; top: -40px; right: -30px; }
.geo--circ { width: 200px; height: 200px; bottom: -30px; left: -40px; }
.geo--circ-sm { width: 120px; height: 120px; bottom: auto; left: auto; top: -30px; right: -30px; }
.geo--sq   { width: 160px; height: 160px; bottom: -30px; right: -30px; left: auto; }

/* ── Feature sections (photo side-panel + floating card) ─── */
/*   Photo occupies 60% of width on one side; card floats on  */
/*   the cream half. Less zoom than full-bleed approach.       */
.feat {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-alt);
}
/* Default: photo anchored to the LEFT, 62% wide */
.feat__bg {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 62%;
}
.feat__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Soft fade from photo into cream on the right edge */
.feat__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 58%, var(--bg-alt) 92%);
}
/* Flip: photo anchored to the RIGHT */
.feat--flip .feat__bg {
  left: auto;
  right: 0;
}
.feat--flip .feat__bg::after {
  background: linear-gradient(to left, transparent 58%, var(--bg-alt) 92%);
}
/* Card floats on cream side */
.feat__card {
  position: relative;
  z-index: 1;
  width: min(480px, 44%);
  margin-left: auto;
  margin-right: max(var(--s8), calc((100vw - var(--container)) / 2 + var(--s8)));
  display: flex;
  flex-direction: column;
  gap: var(--s6);
  padding: var(--s12) 0;
}
.feat--flip .feat__card {
  margin-left: max(var(--s8), calc((100vw - var(--container)) / 2 + var(--s8)));
  margin-right: auto;
}

/* ── Split sections ─────────────────────────────────────── */
.split { padding: var(--s20) 0; overflow: hidden; }
.split--alt { background: var(--bg-alt); }
.split__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: grid;
  grid-template-columns: 58% 42%;
  gap: var(--s12);
  align-items: center;
}
.split--flip .split__inner { direction: rtl; }
.split--flip .split__content { direction: ltr; }
.split__media { position: relative; direction: ltr; }
.split__media::after { display: none; }
.split__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.split__content { display: flex; flex-direction: column; gap: var(--s6); }
.split__content h2 { margin-bottom: var(--s3); }

.feature-list { display: flex; flex-direction: column; gap: var(--s5); margin-top: var(--s3); }
.feature-item {
  display: flex;
  gap: var(--s5);
  align-items: flex-start;
  padding: 0;
}
/* Feature marks cycle through △ ○ □ — the three logo shapes */
.feature-item__mark {
  flex-shrink: 0;
  width: 10px; height: 10px;
  margin-top: 7px;
  background: transparent;
  border-radius: 50%;
  border: 2px solid var(--sand-400);
}
/* △ triangle — first in each group */
.feature-list .feature-item:nth-child(3n+1) .feature-item__mark {
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 11px solid var(--terra-600);
  border-top: none;
  border-radius: 0;
  background: transparent;
  margin-top: 6px;
  flex-shrink: 0;
}
/* ○ circle — second */
.feature-list .feature-item:nth-child(3n+2) .feature-item__mark {
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--terra-600);
  background: transparent;
  width: 12px; height: 12px;
  margin-top: 5px;
}
/* □ square — third */
.feature-list .feature-item:nth-child(3n+3) .feature-item__mark {
  flex-shrink: 0;
  border-radius: 0;
  border: 2px solid var(--terra-600);
  background: transparent;
  width: 12px; height: 12px;
  margin-top: 5px;
}
.feature-item h4 { font-size: 1rem; color: var(--ink); margin-bottom: var(--s1); line-height: 1.3; }
.feature-item p  { font-size: .93rem; color: var(--muted); margin: 0; line-height: 1.7; }

/* ── Statement band ─────────────────────────────────────── */
.statement-band {
  background: var(--forest-900);
  padding: var(--s16) 0;
  overflow: hidden;
  position: relative;
}
.statement-band__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  align-items: center;
  gap: var(--s10);
  justify-content: center;
}
.statement-band__shape {
  flex-shrink: 0;
  width: 60px;
  height: auto;
  color: rgba(184,158,130,.35);
}
.statement-band__shape--sq { width: 48px; }
.statement-band__quote {
  font-size: clamp(1.15rem, 2.8vw, 1.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -.01em;
  text-align: center;
  margin: 0;
}

/* ── CTA banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--forest-900);
  padding: var(--s20) 0;
}
.cta-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  gap: var(--s8);
}
.cta-banner__text h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: var(--s4); }
.cta-banner__text p  { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: var(--s8); }
.cta-banner__actions { display: flex; gap: var(--s3); justify-content: center; flex-wrap: wrap; }

/* ── Team showcase (homepage) ───────────────────────────── */
.team-showcase { padding: var(--s20) 0; }
.team-showcase__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--s12);
  gap: var(--s8);
}
.team-showcase__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 0;
}
.team-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.team-mini-card {
  display: block;
  text-decoration: none;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s, border-color .15s;
}
.team-mini-card:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--terra-200); }
.team-mini-card__photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.team-mini-card__info { padding: var(--s4) var(--s5); }
.team-mini-card__name { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.team-mini-card__role { font-size: .75rem; color: var(--muted); line-height: 1.4; margin: 0; }

/* ── Approach section (homepage) ────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}
.approach-lead { display: flex; flex-direction: column; gap: var(--s5); }
.approach-lead h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -.02em; line-height: 1.2; }
.approach-lead p { color: var(--body); line-height: 1.75; }
.approach-lead__actions { display: flex; gap: var(--s3); flex-wrap: wrap; margin-top: var(--s2); }
.approach-features { margin-top: var(--s4); }

/* ── CTA split (homepage) ────────────────────────────────── */
.cta-split {
  background: var(--forest-900);
  padding: var(--s20) 0;
}
.cta-split__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}
.cta-split__text h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: var(--s4);
}
.cta-split__text p { color: rgba(255,255,255,.7); margin-bottom: var(--s8); font-size: 1.05rem; }
.cta-split__actions { display: flex; gap: var(--s3); flex-wrap: wrap; }
.cta-split__contact { padding-top: var(--s2); }
.cta-split__contact-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--s4);
  align-items: start;
  padding: var(--s4) 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cta-split__contact-item:last-child { border-bottom: none; }
.cta-split__contact-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  padding-top: 2px;
}
.cta-split__contact-item a,
.cta-split__contact-item p {
  font-size: .93rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}
.cta-split__contact-item a:hover { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* ── Page hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--bg-alt);
  padding: var(--s16) 0 var(--s12);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
/* △ shape — top right */
.page-hero::before {
  content: '';
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 120px solid var(--border);
  opacity: .82;
  pointer-events: none;
}
/* ○ shape — further right */
.page-hero::after {
  content: '';
  position: absolute;
  right: calc(6% + 180px);
  top: 50%;
  transform: translateY(-50%);
  width: 90px; height: 90px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  opacity: .82;
  pointer-events: none;
}
/* □ shape via inner pseudo */
.page-hero__inner::before {
  content: '';
  position: absolute;
  right: calc(6% + 310px);
  top: 50%;
  transform: translateY(-50%);
  width: 70px; height: 70px;
  border: 1.5px solid var(--border);
  opacity: .82;
  pointer-events: none;
}
/* Two extra shapes on the left side */
.page-hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* small ○ — left area, upper */
.page-hero__shapes::before {
  content: '';
  position: absolute;
  left: 5%;
  top: 30%;
  width: 52px; height: 52px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  opacity: .82;
}
/* small □ — left area, lower */
.page-hero__shapes::after {
  content: '';
  position: absolute;
  left: calc(5% + 80px);
  bottom: 18%;
  width: 38px; height: 38px;
  border: 1.5px solid var(--border);
  opacity: .82;
}

.page-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: var(--s6);
  font-family: 'Nunito', system-ui, sans-serif;
}
.breadcrumb a { color: var(--terra-700); transition: color .15s; }
.breadcrumb a:hover { color: var(--terra-800); }
.breadcrumb__sep { color: var(--border-md); }
.page-hero__title { color: var(--ink); font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.page-hero__sub   { color: var(--muted); margin-top: var(--s4); font-size: 1.05rem; line-height: 1.7; }

/* ── ═══════════════════════════════════════════════════════
   CLINICIANS
   ═══════════════════════════════════════════════════════ */
.clinicians-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.clinician-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.clinician-card:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.clinician-card__img-wrap {
  height: 210px;
  background: var(--forest-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  border-bottom: 1px solid var(--border);
}
.clinician-card__img-wrap svg { width: 56px; height: 56px; color: var(--gray-400); }
.clinician-card__img-wrap span { font-size: .75rem; color: var(--muted); font-weight: 500; }
.clinician-card__photo { width: 100%; height: 210px; object-fit: cover; object-position: top; }
.clinician-card__body { padding: var(--s6); }
.clinician-card__rule {
  display: block;
  width: 28px; height: 3px;
  background: var(--sand-400);
  border-radius: 2px;
  margin-bottom: var(--s4);
}
.clinician-card__name { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.clinician-card__role { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--terra-700); margin-bottom: var(--s4); }
.clinician-card__bio  { font-size: .9rem; color: var(--body); line-height: 1.65; margin: 0; }
.clinician-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--terra-700);
  margin-top: var(--s4);
  text-decoration: none;
  transition: gap .15s var(--ease), color .15s;
}
.clinician-card__link:hover { color: var(--terra-800); gap: 8px; }
/* Stretched link — makes the whole card clickable */
.clinician-card { position: relative; }
.clinician-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
}

/* ── Clinician card grid (clinicians page) ───────────────── */
.clinicians-section { padding-top: 0; }
.clinicians-intro {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s16) var(--s6) var(--s8);
}
.clinicians-list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6) var(--s16);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s8) var(--s8);
}
.clinician-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.clinician-row__img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
  margin: 0 auto var(--s5);
}
.clinician-row__body {
  padding: 0 var(--s3) var(--s4);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.clinician-row__role {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra-700);
  margin-bottom: var(--s2);
}
.clinician-row__name {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: var(--s4);
}
.clinician-row__bio {
  font-size: .93rem;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: var(--s5);
  flex: 1;
}
.clinician-row__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--terra-700);
  text-decoration: none;
  transition: gap .15s var(--ease), color .15s;
  margin-top: auto;
}
.clinician-row__link:hover { color: var(--terra-800); gap: 8px; }
.clinician-row__link::after { content: ''; position: absolute; inset: 0; }

/* ── Clinician profile page ──────────────────────────────── */
.clinician-profile {
  padding: var(--s16) 0 var(--s20);
  background: var(--bg);
}
.clinician-profile__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--s12);
  align-items: start;
}
.clinician-profile__photo {
  width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  display: block;
}
.clinician-profile__content { display: flex; flex-direction: column; gap: var(--s5); }
.clinician-profile__name { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; color: var(--ink); letter-spacing: -.02em; margin-bottom: 0; }
.clinician-profile__role { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--terra-700); margin-bottom: var(--s2); }
.clinician-profile__divider { width: 40px; height: 3px; background: var(--sand-400); border-radius: 2px; margin: var(--s2) 0 var(--s4); }
.clinician-profile__bio p { font-size: 1rem; line-height: 1.8; color: var(--body); margin-bottom: var(--s4); }
.clinician-profile__quals {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s2);
}
.clinician-profile__qual {
  padding: 5px 14px;
  background: var(--terra-50);
  border: 1px solid var(--terra-200);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--terra-800);
}
.clinician-profile__actions { display: flex; gap: var(--s3); flex-wrap: wrap; margin-top: var(--s3); }

/* Also meet section */
.also-meet { padding: var(--s16) 0; }
.also-meet__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s5);
  margin-top: var(--s8);
}
.also-meet-card {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 0 0 var(--s5);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  transition: border-color .15s;
}
.also-meet-card:hover { border-color: var(--terra-600); }
.also-meet-card__img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin: 0 auto var(--s3);
  display: block;
}
.also-meet-card__name { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.also-meet-card__role { font-size: .75rem; color: var(--muted); }

/* Responsive clinician list + profile */
@media (max-width: 960px) {
  .clinicians-list { grid-template-columns: repeat(2, 1fr); }
  .clinician-profile__inner { grid-template-columns: 1fr; gap: var(--s8); }
  .clinician-profile__photo { max-width: 360px; }
  .also-meet__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .also-meet__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Team panel */
.team-panel {
  background: var(--forest-900);
  padding: var(--s16) 0;
}
.team-panel__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}
.team-panel__content h2 { color: #fff; margin-bottom: var(--s5); }
.team-panel__content p  { color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: var(--s6); }
.team-panel__img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }

/* ── ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq-section { padding: var(--s16) var(--s6) var(--s20); background: var(--bg); }

.faq-wrap {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--s12);
  align-items: start;
}

/* Sidebar */
.faq-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + var(--s6));
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.faq-intro-card {
  border-left: 3px solid var(--terra-600);
  padding: 0 0 0 var(--s5);
}
.faq-intro-card h2 { font-size: 1.15rem; margin-bottom: var(--s3); color: var(--ink); }
.faq-intro-card p  { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.65; }
.faq-intro-card a  { color: var(--terra-800); text-decoration: underline; text-underline-offset: 2px; }

.faq-cta-card {
  border-left: 3px solid var(--terra-600);
  padding: 0 0 0 var(--s5);
}
.faq-cta-card h3 { color: var(--ink); margin-bottom: var(--s3); font-size: 1.05rem; }
.faq-cta-card p  { color: var(--muted); margin-bottom: var(--s5); font-size: .88rem; line-height: 1.6; }

/* Accordion list */
.faq-list { display: flex; flex-direction: column; gap: var(--s3); }

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.open {
  border-color: var(--terra-400);
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s5) var(--s6);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: var(--s4);
  transition: background .15s;
}
.faq-question:hover { background: var(--terra-50); }
.faq-item.open .faq-question { background: var(--terra-50); }

.faq-question__text {
  font-family: 'Lora', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}

.faq-question__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease), background .15s, border-color .15s;
}
.faq-question__icon svg { width: 13px; height: 13px; color: var(--terra-700); }
.faq-item.open .faq-question__icon {
  background: var(--terra-700);
  border-color: var(--terra-700);
  transform: rotate(45deg);
}
.faq-item.open .faq-question__icon svg { color: #fff; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.open .faq-answer { max-height: 1000px; }
.faq-answer__body {
  padding: var(--s4) var(--s6) var(--s6);
  border-top: 1px solid var(--border);
  font-size: .94rem;
  color: var(--body);
  line-height: 1.75;
}
.faq-answer__body p    { margin-bottom: var(--s3); }
.faq-answer__body ul   { padding-left: var(--s5); list-style: disc; margin: var(--s3) 0; }
.faq-answer__body li   { margin-bottom: var(--s2); }
.faq-answer__body em   { font-style: italic; }
.faq-answer__body strong { color: var(--ink); }

/* Fees table */
.fees-table {
  width: 100%; border-collapse: collapse;
  font-size: .88rem; margin: var(--s5) 0;
  border-radius: var(--r); overflow: hidden;
  box-shadow: var(--sh-xs);
}
.fees-table th, .fees-table td { padding: 10px 14px; text-align: left; }
.fees-table thead { background: var(--ink); }
.fees-table th    { color: #fff; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.fees-table tbody tr { border-bottom: 1px solid var(--border); }
.fees-table tbody tr:last-child { border: none; }
.fees-table tbody tr:nth-child(even) { background: var(--terra-50); }
.fees-table td:last-child { font-weight: 700; color: var(--terra-700); }

/* ── ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
.contact-section {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--s16) var(--s6) var(--s20);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--s12);
  align-items: start;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}
.contact-panel h2 { margin-bottom: var(--s1); }
.contact-panel__intro { color: var(--muted); font-size: .93rem; line-height: 1.7; margin-bottom: var(--s2); }

.contact-item {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}
.contact-item__icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: var(--terra-50);
  border: 1px solid var(--terra-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.contact-item__icon svg { width: 15px; height: 15px; color: var(--terra-700); }
.contact-item__label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 2px; }
.contact-item__value { font-size: .93rem; font-weight: 500; color: var(--ink); }
.contact-item__value a { color: var(--terra-700); text-decoration: underline; text-underline-offset: 2px; }
.contact-item__value a:hover { color: var(--terra-800); }

.contact-map {
  margin-top: var(--s4);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe { width: 100%; height: 180px; display: block; border: none; }

/* Form column */
.contact-form-col {
  display: flex;
  flex-direction: column;
}
.contact-form-col h2 { margin-bottom: var(--s2); }
.form-intro   { color: var(--muted); margin-bottom: var(--s8); font-size: .93rem; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.form-group   { margin-bottom: var(--s5); }
.form-label   { display: block; font-size: .8rem; font-weight: 600; color: var(--ink); margin-bottom: var(--s2); }
.form-input, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .93rem;
  color: var(--ink);
  background: var(--bg-alt);
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
  min-height: 48px;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--terra-700);
  box-shadow: 0 0 0 3px rgba(158,75,34,.12);
  background: var(--bg);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit   { width: 100%; font-size: .97rem; min-height: 52px; }
.form-note     { font-size: .78rem; color: var(--muted); text-align: center; margin-top: var(--s3); }
.form-message {
  display: none;
  padding: var(--s4) var(--s5);
  border-radius: var(--r-sm);
  margin-top: var(--s5);
  font-size: .9rem;
  font-weight: 600;
  border: 1.5px solid;
}
.form-message--success { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.form-message--error   { background: #fef2f2; color: #991b1b; border-color: #fecaca; }

/* Team strip */
.team-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s16) 0;
}
.team-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}
.team-strip__quote {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: var(--s5);
  padding-left: var(--s6);
  border-left: 4px solid var(--sand-400);
}
.team-strip__attr { font-size: .88rem; color: var(--muted); padding-left: var(--s6); }
.team-strip__attr strong { color: var(--ink); font-weight: 600; }
.team-strip__img  { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh); }

/* ── ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: var(--s16) 0 0;
}
.site-footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6) var(--s12);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s10);
}
.footer-brand img { height: 40px; width: auto; margin-bottom: var(--s4); }
.footer-brand p { font-size: .88rem; color: var(--muted); line-height: 1.7; max-width: 210px; }
.footer-col__hd {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: var(--s4);
}
.footer-col a {
  display: block; font-size: .88rem; color: var(--body);
  margin-bottom: var(--s3); transition: color .15s;
  text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 2px;
}
.footer-col a:hover { color: var(--terra-700); text-decoration-color: var(--terra-200); }
.footer-contact-row { font-size: .88rem; color: var(--body); margin-bottom: var(--s3); line-height: 1.5; }
.footer-contact-row a { display: inline; font-weight: 600; color: var(--terra-800); text-decoration: underline; text-underline-offset: 2px; }
.footer-contact-row a:hover { color: var(--terra-700); }
.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding: var(--s5) var(--s6);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--muted);
}

/* ── ═══════════════════════════════════════════════════════
   404
   ═══════════════════════════════════════════════════════ */
.error-page {
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: var(--s10) var(--s6);
}
.error-page__num { font-size: clamp(5rem, 18vw, 9rem); font-weight: 700; color: var(--terra-200); line-height: 1; }
.error-page h1   { margin-bottom: var(--s4); }
.error-page p    { color: var(--muted); max-width: 340px; margin: 0 auto var(--s8); }

/* ── ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .site-nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: var(--s1);
    background: var(--bg);
    padding: var(--s3) var(--s4) var(--s5);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh);
  }
  .site-nav__links.nav-open { display: flex; }
  .site-nav__link { width: 100%; padding: 12px var(--s4); font-size: .95rem; }
  .site-nav__cta  { margin: var(--s2) 0 0; width: 100%; justify-content: center; }
  .site-nav__toggle { display: flex; }

  .hero__image-strip { height: 280px; }
  .team-showcase__header { flex-direction: column; align-items: flex-start; }
  .team-showcase__grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: 1fr; gap: var(--s10); }
  .cta-split__inner { grid-template-columns: 1fr; gap: var(--s10); }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .cards-grid        { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr 1fr; }
  .why-item          { border-right: 1.5px solid var(--border); }
  .why-item:nth-child(2n) { border-right: none; }
  .split__inner      { grid-template-columns: 1fr; gap: var(--s10); }
  .split--flip .split__inner { direction: ltr; }
  .feat { flex-direction: column; min-height: auto; }
  .feat__bg { position: relative; inset: auto; height: 300px; width: 100%; flex-shrink: 0; }
  .feat__bg img { position: absolute; inset: 0; }
  .feat__bg::after,
  .feat--flip .feat__bg::after { display: none; }
  .feat__card,
  .feat--flip .feat__card { width: 100%; margin: 0; padding: var(--s10) var(--s6); background: var(--bg-alt); }
  .clinicians-grid   { grid-template-columns: repeat(2, 1fr); }
  .team-panel__inner { grid-template-columns: 1fr; gap: var(--s8); }
  .team-strip__inner { grid-template-columns: 1fr; gap: var(--s8); }
  .contact-section   { grid-template-columns: 1fr; }
  .contact-form-col  { padding: var(--s10) var(--s6); }
  .cta-banner__inner { flex-direction: column; align-items: center; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }
}

@media (max-width: 600px) {
  .section { padding: var(--s12) 0; }
  .hero__center { padding: var(--s12) var(--s4) var(--s8); }
  .hero__image-strip { height: 220px; }
  .team-showcase__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none; }
  .clinicians-grid    { grid-template-columns: 1fr; }
  .clinician-row { grid-template-columns: 1fr; padding: var(--s8) 0; }
  .clinician-row__img { width: 100%; height: 260px; }
  .clinician-row__body { padding: var(--s4) 0 0; }
  .form-row           { grid-template-columns: 1fr; }
  .form-card          { padding: var(--s6); }
  .site-footer__grid  { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; gap: var(--s2); text-align: center; }
  .faq-wrap           { grid-template-columns: 1fr; }
  .faq-sidebar        { position: static; }
  .faq-cta-card       { padding: var(--s6) var(--s5); }
  .top-bar            { display: none; }
  .statement-band__shape { display: none; }
  .contact-info       { grid-template-columns: 1fr; }
}
