/* ==========================================================================
   Connected Path Clinicians — Shared Design System
   Extracted from the approved homepage prototype (CPC_Homepage_Prototype_v3).
   Every page on the site imports this single stylesheet. Do not fork it —
   add new components here so every page stays visually consistent.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ---- Color tokens (from approved prototype — source of truth) ---- */
  --blue: #1A6BB5;       --blue-light: #E8F2FB;  --blue-mid: #4A90D9;
  --yellow: #F5C518;     --yellow-soft: #FEF7DC; --yellow-mid: #FFD95A;
  --green: #3AAA5C;      --green-dark: #1B4332;  --green-soft: #D8F3DC; --green-mid: #52B788;
  /* AA-safe green for text / filled-button use only. #3AAA5C measures 2.96:1 on white —
     below the brief's 4.5:1 requirement — so anywhere green carries text or sits behind
     white button text, use --green-text instead. #3AAA5C itself is unchanged and still
     used everywhere it's purely decorative (puzzle pieces, borders, accent bars, the
     Tebra widget button per the brief's literal color spec). */
  --green-text: #2D8049;
  /* Same AA-safe treatment for red and orange — building the service pages surfaced that
     --red (2.82:1 as white-on-red button text) and --orange (2.82:1 on white) also fall
     short of 4.5:1. --blue-mid measures 3.34:1 as text too. Decorative-only uses (bars,
     tag backgrounds, icons) keep the original bright brand hues; anywhere these carry
     text or sit behind white button text, use the *-text variant. */
  --red-text: #C93510;
  --orange-text: #A6501A;
  --yellow-text: #8A6E00;
  --red: #E8441A;        --red-soft: #FDEEE9;    --orange: #F07832;
  --white: #FFFFFF;      --off-white: #F8FBF9;   --near-black: #1A1A1A; --gray: #585858; --border: #DDE8E2;

  /* ---- Type ---- */
  --font-d: "Nunito", sans-serif;      /* display / headings / buttons */
  --font-b: "Nunito Sans", sans-serif; /* body / captions */

  /* ---- Shape ---- */
  --pill: 999px;
  --card: 18px;

  /* ---- Shadow ---- */
  --sh-sm: 0 2px 16px rgba(0,0,0,0.07);
  --sh-md: 0 8px 32px rgba(0,0,0,0.12);

  /* ---- 8px spacing grid (Visual Identity Tokens) ---- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;
  --space-2xl: 104px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--white); color: var(--near-black); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---- Accessibility utilities ---- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  background: var(--green-dark); color: #fff; font-family: var(--font-d); font-weight: 700;
  font-size: 14px; padding: 12px 22px; border-radius: var(--pill); text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* Visible keyboard focus state on every interactive element */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--green-text);
  outline-offset: 2px;
  border-radius: 4px;
}

.puzzle-layer { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.color-bar { height: 5px; background: linear-gradient(90deg, var(--blue) 0%, var(--green) 28%, var(--yellow) 62%, var(--red) 100%); position: relative; z-index: 10; }

/* ==========================================================================
   NAV
   ========================================================================== */
nav.site-nav {
  position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-bottom: 1.5px solid var(--border); padding: 0 48px; display: flex; align-items: center;
  justify-content: space-between; height: 84px; box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.nav-logo { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.nav-logo img { height: 60px; width: 60px; object-fit: contain; flex-shrink: 0; }
.nav-logo-name { font-family: var(--font-d); font-weight: 900; font-size: 21px; color: var(--green-dark); display: block; line-height: 1.15; letter-spacing: -0.4px; }
.nav-logo-sub { font-family: var(--font-d); font-weight: 600; font-size: 12px; color: var(--green-mid); display: block; }
.nav-center { display: flex; gap: 32px; }
.nav-center a { font-family: var(--font-b); font-size: 14.5px; font-weight: 600; color: var(--near-black); text-decoration: none; transition: color .2s; position: relative; padding: 4px 0; }
.nav-center a::after { content: ""; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transition: transform .2s; border-radius: 2px; }
.nav-center a:hover, .nav-center a:focus-visible { color: var(--green-text); }
.nav-center a:hover::after, .nav-center a:focus-visible::after { transform: scaleX(1); }
.nav-center a[aria-current="page"] { color: var(--green-text); }
.nav-center a[aria-current="page"]::after { transform: scaleX(1); }
.nav-right { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px; width: 44px; height: 44px;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-toggle-bars { position: relative; width: 24px; height: 18px; }
.nav-toggle-bars span {
  position: absolute; left: 0; width: 100%; height: 2.5px; background: var(--green-dark); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 8px; }
.nav-toggle-bars span:nth-child(3) { top: 16px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; background: var(--green-dark); z-index: 300; display: flex; flex-direction: column;
  padding: 24px 32px 40px; transform: translateX(100%); transition: transform .3s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-top { display: flex; justify-content: flex-end; margin-bottom: 40px; }
.mobile-nav-close { background: none; border: none; color: #fff; font-size: 28px; line-height: 1; cursor: pointer; padding: 8px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 40px; }
.mobile-nav-links a { font-family: var(--font-d); font-weight: 700; font-size: 24px; color: #fff; text-decoration: none; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-nav-ctas { display: flex; flex-direction: column; gap: 12px; }
body.nav-open { overflow: hidden; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-d); font-weight: 700; border-radius: var(--pill); border: 2px solid transparent; text-decoration: none; cursor: pointer; transition: all .22s ease; white-space: nowrap; line-height: 1; }
.btn-nav { font-size: 13px; padding: 9px 18px; }
.btn-hero { font-size: 16px; height: 54px; min-width: 220px; padding: 0 36px; }
.btn-md { font-size: 15px; padding: 13px 28px; }
.btn-lg { font-size: 16px; padding: 15px 32px; }
.btn-green { background: var(--green-text); color: #fff; border-color: var(--green-text); box-shadow: 0 4px 16px rgba(58,170,92,.28); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: #1458A0; transform: translateY(-2px); }
.btn-red { background: var(--red-text); color: #fff; border-color: var(--red-text); box-shadow: 0 4px 16px rgba(232,68,26,.30); }
.btn-red:hover { background: #C93510; transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); color: var(--near-black); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-mid); transform: translateY(-2px); }
.btn-og { background: transparent; color: var(--green-text); border-color: var(--green-text); }
.btn-og:hover { background: var(--green-soft); }
.btn-ob { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-ob:hover { background: var(--blue-light); }
.btn-ow { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ow:hover { background: rgba(255,255,255,.12); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ==========================================================================
   HERO (homepage)
   ========================================================================== */
.hero { background: linear-gradient(145deg,#EAF7EF 0%,#FFFFFF 40%,#EDF4FC 100%); padding: 88px 48px 0; position: relative; overflow: hidden; }
.hero-frost { position: absolute; inset: 0; background: rgba(255,255,255,0.42); pointer-events: none; z-index: 1; }
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }

.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-family: var(--font-d); font-weight: 700; font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
.eyebrow-butterfly { font-size: 22px; line-height: 1; }
.eyebrow-dots { display: flex; gap: 6px; align-items: center; }
.edot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.edot-g { background: var(--green); } .edot-b { background: var(--blue); }
.edot-y { background: var(--yellow); } .edot-r { background: var(--red); }
.eyebrow-rule { width: 1px; height: 16px; background: var(--border); }

.hero-headline { font-family: var(--font-d); font-weight: 900; font-size: 40px; line-height: 1.22; color: var(--near-black); margin-bottom: 24px; letter-spacing: -0.4px; }
.hl-green { color: var(--green-text); }
.hl-blue { color: var(--blue); }
.hero-sub { font-size: 18px; color: var(--gray); max-width: 640px; line-height: 1.75; margin-bottom: 36px; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }

/* ---- Generic interior page hero (About, and future pages) ---- */
.page-hero { background: linear-gradient(145deg,#EAF7EF 0%,#FFFFFF 45%,#EDF4FC 100%); padding: 76px 48px 96px; position: relative; overflow: hidden; }
.page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; text-align: center; }
.page-hero-headline { font-family: var(--font-d); font-weight: 900; font-size: clamp(32px,4.2vw,52px); line-height: 1.18; color: var(--near-black); margin-bottom: 20px; letter-spacing: -0.5px; }
/* Contact page's headline runs long and ends on a short word ("are."); a
   slightly smaller max size gives it more room per line so the last word
   doesn't strand alone on its own line. Scoped so it doesn't affect other
   interior-page heroes, which don't have this wrapping issue. */
.page-hero-headline.tight { font-size: clamp(30px,3.7vw,44px); }
.page-hero-sub { font-size: 18px; color: var(--gray); line-height: 1.78; max-width: 680px; margin: 0 auto; }
/* When a hero paragraph is immediately followed by CTA buttons (e.g. the
   Referral Partners hero), page-hero-sub's margin:0 auto leaves no bottom
   gap, so the buttons crowd the text. Add breathing room only in that case. */
.page-hero-sub + .hero-ctas { margin-top: 32px; }

/* Dual-pathway hero tones — echo the homepage pathway-split panel gradients
   (build brief §6, Sprint 3: "visually echo the prototype's pathway-split
   hero panels") on the For Families / For Referral Partners pages. */
.page-hero.family-tone { background: linear-gradient(150deg,#FFFCE8 0%,#FFF7CC 55%,#EAF7EF 100%); }
.page-hero.partner-tone { background: linear-gradient(150deg,#EBF4FF 0%,#D8ECFF 55%,#F7FAF8 100%); }
.page-hero.partner-tone .page-hero-headline { color: var(--near-black); }

/* ---- Structured "partner" card — Visual Identity spec: white bg, left-border
   Cobalt Blue, sharper radius, document-like feel (referral-partner pages) ---- */
.partner-card { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--blue); border-radius: 8px; padding: 30px 32px; box-shadow: var(--sh-sm); }
.partner-card h3 { font-family: var(--font-d); font-weight: 800; font-size: 18px; color: var(--near-black); margin-bottom: 10px; }
.partner-card p { font-size: 15.5px; color: var(--gray); line-height: 1.72; }
.partner-card-list { display: flex; flex-direction: column; gap: 18px; }

/* ---- Structured credentials table (referral-partner clinical team) ---- */
.cred-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--sh-sm); }
.cred-table caption { text-align: left; font-family: var(--font-d); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.cred-table th, .cred-table td { text-align: left; padding: 18px 22px; border-bottom: 1px solid var(--border); vertical-align: top; }
.cred-table thead th { background: var(--blue-light); color: var(--blue); font-family: var(--font-d); font-weight: 700; font-size: 12.5px; letter-spacing: .5px; text-transform: uppercase; }
.cred-table tbody th { font-family: var(--font-d); font-weight: 800; font-size: 15.5px; color: var(--near-black); width: 30%; }
.cred-table tbody th span { display: block; font-family: var(--font-b); font-weight: 600; font-size: 12.5px; color: var(--blue); margin-top: 4px; }
.cred-table td { font-size: 14.5px; color: var(--gray); line-height: 1.68; }
.cred-table tbody tr:last-child th, .cred-table tbody tr:last-child td { border-bottom: none; }

/* ---- Scannable list column (population / referral sources / geography) ---- */
.info-list-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.info-list h3 { font-family: var(--font-d); font-weight: 800; font-size: 15px; color: var(--blue); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 14px; }
.info-list ul { list-style: none; }
.info-list li { font-size: 14.5px; color: var(--near-black); line-height: 1.6; padding-left: 20px; position: relative; margin-bottom: 10px; }
.info-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

/* ---- Quote color variants (family = yellow accent, partner = blue accent) ---- */
.pull-quote.on-yellow { background: rgba(245,197,24,0.16); color: var(--near-black); border-left-color: var(--green); }
.pull-quote.on-blue { background: var(--blue-light); color: var(--near-black); border-left-color: var(--blue); font-style: normal; }

/* ---- Checkmark-style diff card (For Families "Why CPC" — replaces the 01–04
   numerals with a check, and locks the accent to the family palette) ---- */
.diff-grid.tone-family .diff-card:nth-child(odd)::before { background: var(--green); }
.diff-grid.tone-family .diff-card:nth-child(even)::before { background: var(--yellow); }
.diff-grid.tone-family .diff-card:nth-child(odd) .diff-num { color: var(--green); }
.diff-grid.tone-family .diff-card:nth-child(even) .diff-num { color: var(--yellow-text); }

/* ---- Numbered step card (For Families "What Happens Next") ---- */
.step-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step-card { background: var(--white); border-radius: 18px; padding: 30px 24px; box-shadow: var(--sh-sm); border: 2px solid var(--border); position: relative; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--green-text); color: #fff; font-family: var(--font-d); font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step-card h3 { font-family: var(--font-d); font-weight: 800; font-size: 16.5px; color: var(--near-black); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ==========================================================================
   PATHWAY SPLIT
   ========================================================================== */
.pathway-split { display: grid; grid-template-columns: 1fr 1fr; border-radius: 28px 28px 0 0; overflow: hidden; box-shadow: 0 -8px 40px rgba(0,0,0,0.10); position: relative; z-index: 2; }
.pathway-panel { padding: 48px 52px 56px; text-decoration: none; display: block; position: relative; overflow: hidden; transition: filter .2s; }
.pathway-panel:hover, .pathway-panel:focus-visible { filter: brightness(0.95); }
.pathway-panel::after { content: ""; position: absolute; bottom: 0; right: 0; width: 140px; height: 140px; border-radius: 140px 0 0 0; opacity: 0.18; }
.pathway-panel.family { background: linear-gradient(150deg,#FFFCE8 0%,#FFF7CC 100%); }
.pathway-panel.family::after { background: var(--yellow); }
.pathway-panel.partner { background: linear-gradient(150deg,#EBF4FF 0%,#D8ECFF 100%); border-left: 2px solid rgba(255,255,255,.7); }
.pathway-panel.partner::after { background: var(--blue); }
.pathway-puzzle { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.pathway-panel.family .pathway-puzzle { background: rgba(245,197,24,0.20); }
.pathway-panel.partner .pathway-puzzle { background: rgba(26,107,181,0.13); }
.pathway-puzzle svg { width: 36px; height: 36px; }
.pathway-panel.family .pathway-puzzle svg { color: var(--yellow); }
.pathway-panel.partner .pathway-puzzle svg { color: var(--blue); }
.pathway-label { font-family: var(--font-d); font-weight: 900; font-size: 24px; margin-bottom: 10px; line-height: 1.15; }
.pathway-panel.family .pathway-label { color: var(--near-black); }
.pathway-panel.partner .pathway-label { color: var(--blue); }
.pathway-tagline { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.pathway-panel.family .pathway-tagline { color: rgba(176,136,0,0.85); }
.pathway-panel.partner .pathway-tagline { color: var(--blue); }
.pathway-desc { font-size: 15px; color: var(--gray); line-height: 1.65; margin-bottom: 28px; max-width: 290px; }
.pathway-cta-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-d); font-weight: 800; font-size: 14px; border-radius: var(--pill); padding: 13px 26px; transition: all .22s; border: none; cursor: pointer; text-decoration: none; }
.pathway-panel.family .pathway-cta-btn { background: var(--yellow); color: var(--near-black); box-shadow: 0 4px 14px rgba(245,197,24,.38); }
.pathway-panel.family:hover .pathway-cta-btn, .pathway-panel.family:focus-visible .pathway-cta-btn { background: var(--yellow-mid); transform: translateX(4px); }
.pathway-panel.partner .pathway-cta-btn { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(26,107,181,.32); }
.pathway-panel.partner:hover .pathway-cta-btn, .pathway-panel.partner:focus-visible .pathway-cta-btn { background: #1458A0; transform: translateX(4px); }
.pathway-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: rgba(255,255,255,.9); z-index: 2; transform: translateX(-50%); }

/* ==========================================================================
   SECTIONS (generic)
   ========================================================================== */
.sec { padding: 96px 48px; position: relative; overflow: hidden; }
.sec-in { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.sec-in.narrow { max-width: 820px; }
.sec-frost { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.diff-frost { background: rgba(248,251,249,0.55); }
.svc-frost { background: rgba(255,255,255,0.55); }
.story-frost { background: rgba(22,46,34,0.55); }
.access-frost { background: rgba(248,251,249,0.55); }
.cta-frost { background: rgba(22,46,34,0.52); }
.white-frost { background: rgba(255,255,255,0.55); }

.eyebrow { font-family: var(--font-d); font-weight: 700; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ""; display: inline-block; width: 24px; height: 3px; border-radius: 3px; flex-shrink: 0; }
.ey-g { color: var(--green-text); } .ey-g::before { background: var(--green); }
.ey-b { color: var(--blue); } .ey-b::before { background: var(--blue); }
.ey-y { color: var(--yellow-text); } .ey-y::before { background: var(--yellow); }
.ey-r { color: var(--red-text); } .ey-r::before { background: var(--red); }
.ey-o { color: var(--orange-text); } .ey-o::before { background: var(--orange); }
.ey-w { color: rgba(255,255,255,.6); } .ey-w::before { background: var(--green-mid); }
.sec-title { font-family: var(--font-d); font-weight: 900; font-size: clamp(28px,3.4vw,44px); color: var(--near-black); line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
.sec-title.on-dark { color: #fff; }
.sec-sub { font-size: 17.5px; color: var(--gray); max-width: 640px; line-height: 1.78; margin-bottom: 60px; }
.sec-sub.on-dark { color: rgba(255,255,255,.82); }
.sec-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Multi-paragraph prose block (service-page intro/approach copy) */
.prose { font-size: 16.5px; color: var(--gray); line-height: 1.82; max-width: 760px; }
.prose p { margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { font-family: var(--font-d); font-weight: 800; font-size: 18px; color: var(--near-black); margin: 8px 0 10px; }
.prose.center { margin-left: auto; margin-right: auto; text-align: center; }

.diff-bg { background: var(--off-white); }
.svc-bg { background: var(--white); }
.story-bg { background: linear-gradient(150deg,var(--green-dark) 0%,#122E22 100%); }
.access-bg { background: var(--off-white); }
.cta-bg { background: linear-gradient(145deg,var(--green-text) 0%,var(--green-dark) 100%); }
.white-bg { background: var(--white); }

/* ==========================================================================
   DIFFERENTIATOR / VALUE CARDS
   ========================================================================== */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.diff-card { background: var(--white); border-radius: 22px; padding: 38px 34px; border: 2px solid transparent; box-shadow: var(--sh-sm); transition: all .25s; position: relative; overflow: hidden; }
.diff-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; border-radius: 22px 0 0 22px; }
.diff-card:nth-child(4n+1)::before { background: var(--green); }
.diff-card:nth-child(4n+2)::before { background: var(--yellow); }
.diff-card:nth-child(4n+3)::before { background: var(--blue); }
.diff-card:nth-child(4n+4)::before { background: var(--red); }
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--border); }
.diff-num { font-family: var(--font-d); font-weight: 900; font-size: 52px; line-height: 1; margin-bottom: 10px; opacity: 0.18; letter-spacing: -2px; }
.diff-card:nth-child(4n+1) .diff-num { color: var(--green); }
.diff-card:nth-child(4n+2) .diff-num { color: var(--yellow); }
.diff-card:nth-child(4n+3) .diff-num { color: var(--blue); }
.diff-card:nth-child(4n+4) .diff-num { color: var(--red); }
.diff-card h3 { font-family: var(--font-d); font-weight: 800; font-size: 19px; color: var(--near-black); margin-bottom: 12px; }
.diff-card p { font-size: 15.5px; color: var(--gray); line-height: 1.72; }

/* Single-column values list variant (used on About) */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-card { border-radius: 20px; padding: 32px 26px 28px; border: 2px solid var(--border); background: rgba(255,255,255,0.92); text-decoration: none; display: block; transition: all .22s; box-shadow: var(--sh-sm); position: relative; overflow: hidden; }
.svc-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 20px 20px 0 0; }
.svc-c1 .svc-bar { background: var(--blue); } .svc-c2 .svc-bar { background: var(--yellow); }
.svc-c3 .svc-bar { background: var(--green); } .svc-c4 .svc-bar { background: var(--red); }
.svc-c5 .svc-bar { background: var(--orange); } .svc-c6 .svc-bar { background: var(--blue-mid); }
.svc-card:hover, .svc-card:focus-visible { border-color: transparent; box-shadow: var(--sh-md); transform: translateY(-5px); }
.svc-tag { display: inline-block; font-family: var(--font-d); font-weight: 700; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: var(--pill); margin-bottom: 14px; margin-top: 6px; }
.t-bl { background: var(--blue-light); color: var(--blue); } .t-yw { background: var(--yellow-soft); color: var(--yellow-text); }
.t-gr { background: var(--green-soft); color: var(--green-dark); } .t-rd { background: var(--red-soft); color: var(--red-text); }
.t-or { background: #FEF0E6; color: var(--orange-text); }
.svc-card h3 { font-family: var(--font-d); font-weight: 800; font-size: 17px; color: var(--near-black); margin-bottom: 8px; line-height: 1.3; }
.svc-card p { font-size: 14.5px; color: var(--gray); line-height: 1.65; }
.svc-arrow { margin-top: 20px; font-family: var(--font-d); font-weight: 700; font-size: 13px; color: var(--green-text); }

/* ==========================================================================
   STORY / TEAM TEASER (dark section)
   ========================================================================== */
.story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: start; }
.story-eyebrow { font-family: var(--font-d); font-weight: 700; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--green-mid); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.story-eyebrow::before { content: ""; display: inline-block; width: 24px; height: 3px; background: var(--green-mid); border-radius: 3px; }
.story-title { font-family: var(--font-d); font-weight: 900; font-size: clamp(26px,3vw,40px); color: #fff; margin-bottom: 24px; line-height: 1.15; }
.story-body { font-size: 16.5px; color: rgba(255,255,255,.82); line-height: 1.82; margin-bottom: 18px; }
.story-quote, .pull-quote { border-left: 4px solid var(--green-mid); padding: 18px 22px; margin: 32px 0; background: rgba(255,255,255,.08); border-radius: 0 12px 12px 0; font-family: var(--font-d); font-weight: 700; font-size: 18.5px; color: rgba(255,255,255,.95); font-style: italic; line-height: 1.55; }
.pull-quote.on-light { background: var(--green-soft); color: var(--green-dark); border-left-color: var(--green); }
.story-right { display: flex; flex-direction: column; gap: 20px; padding-top: 16px; }

.founder-card { background: rgba(255,255,255,.09); border: 1.5px solid rgba(255,255,255,.14); border-radius: 20px; padding: 30px 28px; }
.founder-avatar { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-weight: 900; font-size: 20px; color: #fff; margin-bottom: 14px; overflow: hidden; }
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; }
.av-mc { background: linear-gradient(135deg,var(--blue) 0%,var(--green) 100%); }
.av-ac { background: linear-gradient(135deg,#F5C518 0%,var(--red) 100%); }
.founder-name { font-family: var(--font-d); font-weight: 800; font-size: 17px; color: #fff; margin-bottom: 3px; }
.founder-creds { font-size: 12px; color: var(--green-mid); font-weight: 600; margin-bottom: 3px; }
.founder-role { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 12px; }
.founder-bio { font-size: 14px; color: rgba(255,255,255,.76); line-height: 1.68; }

/* ---- Large founder profile card (About page — light background) ---- */
.profile-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.profile-card { background: var(--white); border-radius: 24px; padding: 44px; box-shadow: var(--sh-sm); border: 1px solid var(--border); display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.profile-photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.profile-photo { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; box-shadow: var(--sh-md); border: 4px solid var(--white); outline: 2px solid var(--border); flex-shrink: 0; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.profile-name { font-family: var(--font-d); font-weight: 900; font-size: 24px; color: var(--near-black); margin-bottom: 4px; }
.profile-creds { font-family: var(--font-b); font-weight: 700; font-size: 13.5px; color: var(--green-mid); margin-bottom: 2px; }
.profile-role { font-family: var(--font-d); font-weight: 700; font-size: 13.5px; color: var(--blue); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 18px; }
.profile-bio { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 22px; }
.profile-cred-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.profile-cred-list li { font-size: 14px; color: var(--near-black); padding-left: 22px; position: relative; line-height: 1.5; }
.profile-cred-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green-text); font-weight: 700; }

/* ==========================================================================
   ACCESS / INFO CARDS
   ========================================================================== */
.access-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.access-card { background: rgba(255,255,255,0.90); border-radius: 20px; padding: 32px 24px; text-align: center; box-shadow: var(--sh-sm); border: 2px solid var(--border); transition: all .22s; position: relative; overflow: hidden; }
.access-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.access-card:nth-child(4n+1)::before { background: var(--green); }
.access-card:nth-child(4n+2)::before { background: var(--blue); }
.access-card:nth-child(4n+3)::before { background: var(--yellow); }
.access-card:nth-child(4n+4)::before { background: var(--orange); }
.access-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.access-icon-wrap { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; }
.access-card:nth-child(4n+1) .access-icon-wrap { background: var(--green-soft); }
.access-card:nth-child(4n+2) .access-icon-wrap { background: var(--blue-light); }
.access-card:nth-child(4n+3) .access-icon-wrap { background: var(--yellow-soft); }
.access-card:nth-child(4n+4) .access-icon-wrap { background: #FEF0E6; }
.access-card h4 { font-family: var(--font-d); font-weight: 800; font-size: 15px; color: var(--near-black); margin-bottom: 8px; }
.access-card p { font-size: 13.5px; color: var(--gray); line-height: 1.6; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.cta-section { text-align: center; padding: 100px 48px; position: relative; overflow: hidden; }
.cta-inner { max-width: 740px; margin: 0 auto; position: relative; z-index: 2; }
.cta-eyebrow { font-family: var(--font-d); font-weight: 700; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--green-mid); margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.cta-eyebrow::before, .cta-eyebrow::after { content: ""; display: inline-block; width: 24px; height: 2px; background: var(--green-mid); border-radius: 2px; }
.cta-headline { font-family: var(--font-d); font-weight: 900; font-size: clamp(30px,4vw,50px); color: #fff; margin-bottom: 18px; line-height: 1.12; letter-spacing: -0.5px; }
.cta-sub { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 16px; line-height: 1.72; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-tagline { font-family: var(--font-d); font-weight: 700; font-size: 17px; color: rgba(255,255,255,.6); margin-bottom: 48px; font-style: italic; }
.cta-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.cta-pill { font-family: var(--font-d); font-weight: 700; font-size: 12px; padding: 7px 18px; border-radius: var(--pill); border: 1.5px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer { background: #111; color: rgba(255,255,255,.58); padding: 68px 48px 32px; }
.foot-in { max-width: 1100px; margin: 0 auto; }
.foot-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
.foot-brand { display: flex; flex-direction: column; gap: 16px; }
.foot-logo-row { display: flex; align-items: center; gap: 12px; }
.foot-logo-row img { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.foot-logo-name { font-family: var(--font-d); font-weight: 800; font-size: 15px; color: #fff; }
.foot-logo-sub { font-size: 11px; color: rgba(255,255,255,.35); font-family: var(--font-d); font-weight: 600; display: block; margin-top: 1px; }
.foot-tag { font-size: 13.5px; color: rgba(255,255,255,.42); line-height: 1.72; max-width: 240px; }
.foot-contact a { color: var(--green-mid); text-decoration: none; font-size: 14px; font-weight: 600; display: block; margin-bottom: 5px; }
.foot-contact a:hover, .foot-contact a:focus-visible { color: #fff; }
.foot-col h4 { font-family: var(--font-d); font-weight: 700; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14px; color: rgba(255,255,255,.52); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.foot-col a:hover, .foot-col a:focus-visible { color: #fff; }
hr.foot-line { border: none; border-top: 1px solid rgba(255,255,255,.07); margin-bottom: 24px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.foot-bottom p { font-size: 11.5px; color: rgba(255,255,255,.24); max-width: 560px; line-height: 1.6; }
.foot-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-legal a { font-size: 11.5px; color: rgba(255,255,255,.24); text-decoration: none; }
.foot-legal a:hover, .foot-legal a:focus-visible { color: rgba(255,255,255,.6); }

/* ==========================================================================
   TEBRA BOOKING WIDGET
   Tebra's vendor script (assets/js/tebra-widget.js) injects its own
   <style> tag with corrected brand colors at runtime — see build brief
   §5. No CSS needed here; kept out intentionally to avoid a competing
   .booking-button definition.
   ========================================================================== */

/* ==========================================================================
   FORMS (Contact page — family inquiry + referral forms)
   Visual Identity Tokens §Forms & Inputs
   ========================================================================== */
.form-card { background: var(--white); border-radius: 24px; padding: 44px; box-shadow: var(--sh-md); border: 1px solid var(--border); }
.form-card.tone-blue { border-top: 6px solid var(--blue); }
.form-card.tone-green { border-top: 6px solid var(--green); }
.form-intro { font-size: 16px; color: var(--gray); line-height: 1.78; margin-bottom: 32px; max-width: 640px; }
.form-intro p { margin-bottom: 14px; }
.form-intro p:last-child { margin-bottom: 0; }

.form-fieldset { border: none; padding: 0; margin: 0 0 36px; }
.form-fieldset:last-of-type { margin-bottom: 0; }
.form-legend { font-family: var(--font-d); font-weight: 800; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); padding: 0 0 16px; margin-bottom: 20px; border-bottom: 2px solid var(--border); width: 100%; display: block; }
.form-card.tone-green .form-legend { color: var(--green-text); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }

.field label, .field legend.field-label { font-family: var(--font-b); font-weight: 600; font-size: 14px; color: var(--near-black); margin-bottom: 6px; display: block; }
.field .required-mark { color: var(--red-text); margin-left: 2px; }
.field .field-hint { font-size: 12.5px; color: var(--gray); margin-top: 5px; }

.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="number"],
.field select, .field textarea {
  border: 1.5px solid var(--gray); border-radius: 10px; padding: 12px 16px; font-family: var(--font-b); font-size: 16px;
  color: var(--near-black); background: var(--white); width: 100%; transition: border-color .18s, box-shadow .18s;
}
.field input::placeholder, .field textarea::placeholder { color: #6B6B6B; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green-text); box-shadow: 0 0 0 4px rgba(45,128,73,0.15); outline: none;
}
.form-card.tone-blue .field input:focus, .form-card.tone-blue .field select:focus, .form-card.tone-blue .field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26,107,181,0.15);
}
.field textarea { resize: vertical; min-height: 110px; font-family: var(--font-b); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23585858'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5' stroke='%23585858' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

fieldset.field { border: none; padding: 0; margin: 0; }
.option-group { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.option-group.stacked { flex-direction: column; gap: 10px; }
.option { display: flex; align-items: center; gap: 9px; font-size: 15px; color: var(--near-black); font-family: var(--font-b); cursor: pointer; }
.option input[type="radio"], .option input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--green-text); flex-shrink: 0; cursor: pointer; }
.form-card.tone-blue .option input[type="radio"], .form-card.tone-blue .option input[type="checkbox"] { accent-color: var(--blue); }

.hipaa-notice { font-family: var(--font-b); font-size: 13px; color: var(--gray); line-height: 1.65; background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px; margin-top: 28px; }
.form-card.tone-blue .hipaa-notice { background: var(--blue-light); border-color: #C7DFF5; }

.honeypot-field { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- Legal page draft banner + prose ---- */
.draft-banner { display: flex; gap: 14px; align-items: flex-start; background: var(--red-soft); border: 1.5px solid var(--red-text); border-radius: 14px; padding: 20px 24px; margin-bottom: 40px; }
.draft-banner-icon { font-size: 22px; flex-shrink: 0; line-height: 1.3; }
.draft-banner h2 { font-family: var(--font-d); font-weight: 800; font-size: 15px; color: var(--red-text); margin-bottom: 4px; }
.draft-banner p { font-size: 14px; color: var(--near-black); line-height: 1.6; }
.legal-prose h2 { font-family: var(--font-d); font-weight: 800; font-size: 21px; color: var(--near-black); margin: 34px 0 12px; }
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p, .legal-prose li { font-size: 15.5px; color: var(--gray); line-height: 1.78; margin-bottom: 14px; }
.legal-prose ul { padding-left: 22px; margin-bottom: 14px; }
.legal-updated { font-size: 13px; color: var(--gray); margin-bottom: 28px; }

.form-submit-row { margin-top: 32px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-status { font-size: 14px; color: var(--gray); }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.is-visible { display: block; }
.form-success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--green-soft); color: var(--green-text); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 30px; }
.form-card.tone-blue .form-success-icon { background: var(--blue-light); color: var(--blue); }
.form-success h3 { font-family: var(--font-d); font-weight: 800; font-size: 22px; color: var(--near-black); margin-bottom: 10px; }
.form-success p { font-size: 15.5px; color: var(--gray); line-height: 1.7; max-width: 480px; margin: 0 auto; }
.form-body.is-hidden { display: none; }

.pathway-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.pathway-select-card { display: block; text-decoration: none; border-radius: 22px; padding: 32px 30px; transition: transform .2s, box-shadow .2s; box-shadow: var(--sh-sm); }
.pathway-select-card:hover, .pathway-select-card:focus-visible { transform: translateY(-4px); box-shadow: var(--sh-md); }
.pathway-select-card.family { background: linear-gradient(150deg,#FFFCE8 0%,#FFF7CC 100%); }
.pathway-select-card.partner { background: linear-gradient(150deg,#EBF4FF 0%,#D8ECFF 100%); }
.pathway-select-card h3 { font-family: var(--font-d); font-weight: 800; font-size: 19px; color: var(--near-black); margin-bottom: 8px; }
.pathway-select-card.partner h3 { color: var(--blue); }
.pathway-select-card p { font-size: 14.5px; color: var(--gray); margin-bottom: 18px; line-height: 1.6; }
.pathway-select-card .pathway-cta-btn { background: var(--yellow); color: var(--near-black); box-shadow: 0 4px 14px rgba(245,197,24,.38); }
.pathway-select-card.partner .pathway-cta-btn { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(26,107,181,.32); }

/* ---- Direct contact block ---- */
.contact-block-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.contact-block-card { background: var(--white); border-radius: 18px; padding: 28px 26px; border: 2px solid var(--border); text-align: center; }
.contact-block-card h3 { font-family: var(--font-d); font-weight: 800; font-size: 14px; letter-spacing: .5px; text-transform: uppercase; color: var(--green-text); margin-bottom: 10px; }
.contact-block-card p { font-size: 15px; color: var(--near-black); line-height: 1.6; }
.contact-block-card a { color: var(--blue); text-decoration: none; font-weight: 700; }
.contact-block-card a:hover { text-decoration: underline; }

/* ---- Insurance & Fees: payer status table + FAQ ---- */
.payer-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--sh-sm); }
.payer-table th, .payer-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.payer-table thead th { background: var(--green-soft); color: var(--green-dark); font-family: var(--font-d); font-weight: 700; font-size: 12.5px; letter-spacing: .5px; text-transform: uppercase; }
.payer-table tbody tr:last-child th, .payer-table tbody tr:last-child td { border-bottom: none; }
.payer-table td { font-size: 14.5px; color: var(--near-black); }
.payer-status { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-d); font-weight: 700; font-size: 12.5px; padding: 5px 14px; border-radius: var(--pill); background: var(--yellow-soft); color: var(--yellow-text); }

.faq-item { background: var(--white); border: 2px solid var(--border); border-radius: 16px; padding: 4px 26px; margin-bottom: 14px; }
.faq-item summary { font-family: var(--font-d); font-weight: 800; font-size: 16px; color: var(--near-black); padding: 20px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--green-text); flex-shrink: 0; transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 15px; color: var(--gray); line-height: 1.72; padding-bottom: 22px; margin: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1000px) {
  nav.site-nav { padding: 0 24px; }
  .nav-center { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 72px 24px 0; }
  .page-hero { padding: 56px 24px 72px; }
  .pathway-split { grid-template-columns: 1fr; border-radius: 24px 24px 0 0; }
  .pathway-panel { padding: 36px 30px 42px; } .pathway-divider { display: none; }
  .sec { padding: 72px 24px; }
  .diff-grid { grid-template-columns: 1fr; } .svc-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 44px; }
  .access-grid { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; } footer { padding: 48px 24px 28px; }
  .hero-headline { font-size: 32px; }
  .profile-card { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 36px 28px; }
  .profile-cred-list { grid-template-columns: 1fr; justify-content: center; text-align: left; max-width: 320px; margin: 0 auto; }
  .step-grid { grid-template-columns: 1fr 1fr; }
  .info-list-grid { grid-template-columns: 1fr; gap: 32px; }
  .cred-table, .cred-table thead, .cred-table tbody, .cred-table th, .cred-table td, .cred-table tr { display: block; width: 100%; }
  .cred-table thead { display: none; }
  .cred-table tbody tr { margin-bottom: 18px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
  .cred-table tbody th, .cred-table tbody td { border-bottom: 1px solid var(--border); width: auto; }
  .form-card { padding: 32px 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .pathway-selector { grid-template-columns: 1fr; }
  .contact-block-grid { grid-template-columns: 1fr; }
}
@media (max-width:600px) {
  .hero-ctas { flex-direction: column; align-items: stretch; } .btn-hero { min-width: unset; width: 100%; }
  .svc-grid { grid-template-columns: 1fr; } .access-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; } .cta-btns { flex-direction: column; align-items: stretch; }
  .step-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 26px; }
  .booking-button { width: 3.75rem; height: 3.75rem; bottom: 1rem; right: 1rem; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit-row .btn { width: 100%; }
}
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
