/*
 * Arlington Autism Center — site styles
 *
 * Rebuilt from the five per-page <style> blocks the original site carried.
 * Those copies had drifted slightly apart; this file is the merged superset,
 * with media queries collected by breakpoint at the end.
 */

/* Design tokens ----------------------------------------------------------- */

:root {
  --bg: #F6F3EC;
  --bg-alt: #EFE9DB;
  --surface: #FFFFFF;
  --surface-line: #E4DCC8;
  --ink: #23262B;
  --ink-soft: #5B5F66;
  --ink-faint: #85888D;
  --gold: #9C6B18;
  --gold-bright: #C99A3E;
  --gold-tint: #F3E6C8;
  --teal: #2B5F58;
  --teal-dark: #1F4842;
  --teal-tint: #E4EEEB;
  --white: #FFFFFF;
  --gradient-hero: linear-gradient(135deg,rgba(246,243,236,0.92) 0%,rgba(237,232,220,0.88) 100%);
  --gradient-surface: linear-gradient(180deg,#FFFFFF 0%,#FDFCFA 100%);
  --gradient-teal: linear-gradient(160deg,#2B5F58 0%,#1F4842 100%);
  --gradient-gold: linear-gradient(135deg,#C99A3E 0%,#9C6B18 100%);
  --gradient-footer: linear-gradient(180deg,#23262B 0%,#1A1D22 100%);
  --gradient-warm: linear-gradient(180deg,#F6F3EC 0%,#EDE8DE 100%);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(35,38,43,0.04);
  --shadow-md: 0 4px 12px -4px rgba(35,38,43,0.08),0 2px 4px rgba(35,38,43,0.04);
  --shadow-card: 0 1px 3px rgba(35,38,43,0.03),0 8px 24px -10px rgba(35,38,43,0.12);
  --shadow-card-hover: 0 12px 32px -12px rgba(35,38,43,0.18),0 4px 8px rgba(35,38,43,0.06);
  --shadow-float: 0 24px 48px -16px rgba(35,38,43,0.22),0 8px 16px rgba(35,38,43,0.08);
  --shadow-badge: 0 8px 24px -6px rgba(35,38,43,0.16),0 2px 6px rgba(35,38,43,0.06);
  --max: 1120px;
  --pad-card: 28px;
  --ease-out: cubic-bezier(0.22,0.61,0.36,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* Base & resets ----------------------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  background-image: var(--gradient-warm);
  background-attachment: fixed;
  color: var(--ink);
  font-family: 'Figtree',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  font-family: 'Petrona',Georgia,serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.55em;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.3rem,4.6vw,3.5rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.75rem,3.1vw,2.45rem);
}

h3 {
  font-size: clamp(1.22rem,1.9vw,1.55rem);
}

p {
  margin: 0 0 1.15em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--teal-dark);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--teal);
}

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.55;
}

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

/* Layout ------------------------------------------------------------------ */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link --------------------------------------------------------------- */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  z-index: 999;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

/* Header & navigation ----------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,243,236,0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(228,220,200,0.55);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset,var(--shadow-sm);
  transition: box-shadow 0.3s ease,background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Petrona',serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.8;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 8px 2px;
  border-bottom: 2.5px solid transparent;
  transition: color 0.25s ease,border-color 0.25s ease,transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--gold-bright);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  display: none;
  transition: color 0.2s ease;
}

.header-phone:hover {
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  cursor: pointer;
  transition: border-color 0.2s ease,background 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--ink-soft);
  background: var(--bg-alt);
}

.nav-toggle svg {
  display: block;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.22s var(--ease-out),box-shadow 0.22s var(--ease-out),background 0.25s ease,border-color 0.25s ease;
  font-family: 'Figtree',sans-serif;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(255,255,255,0.12) 0%,transparent 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: var(--gradient-teal);
  background-color: var(--teal);
  color: #fff;
  box-shadow: 0 2px 8px -2px rgba(43,95,88,0.35),0 1px 2px rgba(43,95,88,0.2);
}

.btn-primary:hover {
  background: var(--gradient-teal);
  background-color: var(--teal-dark);
  box-shadow: 0 6px 20px -6px rgba(43,95,88,0.45),0 2px 6px rgba(43,95,88,0.25);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-on-dark {
  background: var(--gradient-gold);
  background-color: var(--gold-bright);
  color: #2A1E06;
  box-shadow: 0 2px 8px -2px rgba(201,154,62,0.35);
}

.btn-on-dark:hover {
  background: linear-gradient(135deg,#DCAE55 0%,#B8892E 100%);
  background-color: #DCAE55;
  box-shadow: 0 6px 20px -6px rgba(201,154,62,0.45);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 18px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Motion & reveals -------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease-out),transform 0.75s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.growth-line-path {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1.6s var(--ease-out);
}

.growth-line.is-visible .growth-line-path {
  stroke-dashoffset: 0;
}

/* Home hero --------------------------------------------------------------- */

.hero {
  padding: 64px 0 84px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%,rgba(228,238,235,0.5) 0%,transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: linear-gradient(135deg,var(--teal-tint) 0%,rgba(228,238,235,0.6) 100%);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid rgba(43,95,88,0.08);
  backdrop-filter: blur(4px);
}

.hero h1 {
  margin-bottom: 24px;
}

.hero .lede {
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-note {
  margin-top: 24px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  transition: box-shadow 0.4s var(--ease-out),transform 0.5s var(--ease-out);
}

.hero-media:hover {
  box-shadow: 0 32px 64px -20px rgba(35,38,43,0.28),0 12px 24px rgba(35,38,43,0.1);
  transform: translateY(-2px);
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 60%,rgba(35,38,43,0.06) 100%);
  pointer-events: none;
  border-radius: inherit;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3.1;
}

.hero-badge {
  position: absolute;
  left: -20px;
  bottom: -20px;
  background: var(--gradient-surface);
  background-color: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-badge);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  border: 1px solid rgba(228,220,200,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease-spring),box-shadow 0.35s ease;
  z-index: 2;
}

.hero-badge:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
}

.hero-badge-stars {
  color: var(--gold);
  line-height: 1;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.hero-badge-stars .star-empty {
  color: var(--surface-line);
}

.hero-badge-text {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

.hero-badge-text strong {
  color: var(--ink);
  display: block;
  font-size: 0.95rem;
}

/* Section bands ----------------------------------------------------------- */

.band {
  padding: 88px 0;
  position: relative;
}

.band-alt {
  background: var(--bg-alt);
  background-image: linear-gradient(180deg,#EFE9DB 0%,#E8E2D4 100%);
  border-top: 1px solid rgba(228,220,200,0.4);
  border-bottom: 1px solid rgba(228,220,200,0.4);
}

.band + .band-alt,
.band-alt + .band {
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head .eyebrow {
  margin-bottom: 16px;
}

.draw-underline {
  position: relative;
  white-space: nowrap;
}

.draw-underline::after {
  content: '';
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: -4px;
  height: 8px;
  background: linear-gradient(90deg,var(--gold-bright) 0%,rgba(201,154,62,0.5) 100%);
  opacity: 0.55;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: -1;
}

.check-list svg path {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  transition: stroke-dashoffset 0.5s ease;
}

.check-list.reveal.is-visible li:nth-child(1) svg path {
  transition-delay: 0.05s;
}

.check-list.reveal.is-visible li:nth-child(2) svg path {
  transition-delay: 0.2s;
}

.check-list.reveal.is-visible li:nth-child(3) svg path {
  transition-delay: 0.35s;
}

.check-list.reveal.is-visible li:nth-child(4) svg path {
  transition-delay: 0.5s;
}

.check-list.reveal.is-visible svg path {
  stroke-dashoffset: 0;
}

.rating-circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rating-circle svg {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  overflow: visible;
}

.rating-circle .circle-path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.1s var(--ease-out);
}

.reveal.is-visible .rating-circle .circle-path {
  stroke-dashoffset: 0;
}

/* Statistics -------------------------------------------------------------- */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--pad-card);
  background: var(--gradient-surface);
  background-color: var(--surface);
  border: 1px solid rgba(228,220,200,0.6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease-out),box-shadow 0.35s var(--ease-out);
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.stat-num {
  font-family: 'Petrona',serif;
  font-weight: 600;
  font-size: 2.7rem;
  color: var(--teal-dark);
  line-height: 1;
  background: linear-gradient(135deg,var(--teal-dark) 0%,var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.growth-line-onload {
  opacity: 0.9;
}

.parallax-media img {
  transition: transform 1s var(--ease-out);
}

/* Signs grid -------------------------------------------------------------- */

.signs-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--surface-line);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.sign-item {
  background: var(--gradient-surface);
  background-color: var(--surface);
  padding: var(--pad-card);
  transition: background 0.25s ease;
}

.sign-item:hover {
  background: #FDFCFA;
}

.sign-item h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.sign-item p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Service pillars --------------------------------------------------------- */

.pillars {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

.pillar-feature {
  grid-row: span 2;
  background: var(--gradient-teal);
  background-color: var(--teal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px -12px rgba(43,95,88,0.35),0 4px 8px rgba(43,95,88,0.15);
  transition: box-shadow 0.4s ease,transform 0.4s var(--ease-out);
}

.pillar-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%,rgba(255,255,255,0.08) 0%,transparent 60%);
  pointer-events: none;
}

.pillar-feature:hover {
  box-shadow: 0 20px 48px -14px rgba(43,95,88,0.45),0 6px 12px rgba(43,95,88,0.2);
  transform: translateY(-2px);
}

.pillar-feature h3 {
  color: #fff;
  font-size: 1.65rem;
}

.pillar-feature p {
  color: rgba(255,255,255,0.9);
}

.pillar-feature .pillar-tag {
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.pillar-small {
  background: var(--gradient-surface);
  background-color: var(--surface);
  border: 1px solid rgba(228,220,200,0.55);
  border-radius: var(--radius-md);
  padding: var(--pad-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease-out),transform 0.3s var(--ease-out),border-color 0.3s ease;
}

.pillar-small:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-color: rgba(228,220,200,0.8);
}

.pillar-small .pillar-tag {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}

.pillar-wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg,var(--gold-tint) 0%,#EDE6D4 100%);
  background-color: var(--gold-tint);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(201,154,62,0.12);
  box-shadow: var(--shadow-sm);
}

.pillar-wide h3 {
  margin-bottom: 8px;
}

.pillar-link {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease,color 0.2s ease;
}

.pillar-link:hover {
  gap: 12px;
}

.pillar-feature .pillar-link {
  color: #fff;
}

.pillar-feature .pillar-link:hover {
  color: var(--gold-bright);
}

/* Reviews ----------------------------------------------------------------- */

.reviews-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.reviews-strip .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.reviews-strip .stars .star-empty {
  color: var(--surface-line);
}

.reviews-strip .rating-num {
  font-weight: 800;
  font-size: 1.25rem;
  font-family: 'Petrona',serif;
}

.reviews-strip .source-link {
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.reviews-strip .source-link:hover {
  color: var(--ink);
}

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

.review-card {
  background: var(--gradient-surface);
  background-color: var(--surface);
  border: 1px solid rgba(228,220,200,0.55);
  border-radius: var(--radius-md);
  padding: var(--pad-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.35s var(--ease-out),transform 0.35s var(--ease-out),border-color 0.3s ease;
}

.review-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-color: rgba(228,220,200,0.85);
}

.review-card .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.review-card .stars .star-empty {
  color: var(--surface-line);
}

.review-card p {
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.55;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(228,220,200,0.35);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--teal-tint) 0%,#D8E8E4 100%);
  background-color: var(--teal-tint);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Petrona',serif;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.review-sub {
  font-size: 0.8rem;
  color: var(--ink-faint);
}

/* Process steps ----------------------------------------------------------- */

.process-list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}

.process-item {
  position: relative;
  padding-top: 8px;
}

.process-num {
  font-family: 'Petrona',serif;
  font-size: 2.7rem;
  color: var(--surface-line);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  transition: color 0.4s ease;
}

.process-item:hover .process-num {
  color: var(--teal-tint);
}

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

.faq-list {
  border-top: 1px solid rgba(228,220,200,0.6);
}

.faq-item {
  border-bottom: 1px solid rgba(228,220,200,0.6);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 8px;
  font-family: 'Petrona',serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease,background 0.2s ease;
  border-radius: var(--radius-sm);
}

.faq-q:hover {
  color: var(--teal-dark);
  background: rgba(228,238,235,0.25);
}

.faq-q .plus {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out),opacity 0.25s ease;
}

.faq-q .plus::before {
  width: 100%;
  height: 2.5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-q .plus::after {
  width: 2.5px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item[data-open="true"] .plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-a-inner {
  padding: 0 8px 24px;
  color: var(--ink-soft);
  max-width: 68ch;
  line-height: 1.6;
}

/* Reassurance / CTA panel ------------------------------------------------- */

.reassurance {
  background: var(--gradient-teal);
  background-color: var(--teal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px -12px rgba(43,95,88,0.35),0 4px 12px rgba(43,95,88,0.15);
}

.reassurance::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%,rgba(255,255,255,0.06) 0%,transparent 55%);
  pointer-events: none;
}

.reassurance blockquote {
  font-family: 'Petrona',serif;
  font-size: clamp(1.35rem,2.7vw,2rem);
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.reassurance cite {
  font-style: normal;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Cards & splits ---------------------------------------------------------- */

.card {
  background: var(--gradient-surface);
  background-color: var(--surface);
  border: 1px solid rgba(228,220,200,0.55);
  border-radius: var(--radius-md);
  padding: var(--pad-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease-out),transform 0.3s var(--ease-out),border-color 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  border-color: rgba(228,220,200,0.85);
}

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

.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  width: 100%;
  object-fit: cover;
  transition: box-shadow 0.4s ease,transform 0.5s var(--ease-out);
}

.split img:hover {
  box-shadow: 0 32px 64px -16px rgba(35,38,43,0.22);
  transform: translateY(-2px);
}

.split-reverse .split-media {
  order: 2;
}

/* Check lists ------------------------------------------------------------- */

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--teal);
}

/* Breadcrumbs & page hero ------------------------------------------------- */

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--ink-faint);
  padding: 16px 0 0;
}

.breadcrumbs a {
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--ink-soft);
  text-decoration: underline;
}

.breadcrumbs .sep {
  margin: 0 8px;
}

.page-hero {
  padding: 32px 0 60px;
}

.page-hero h1 {
  max-width: 20ch;
}

.page-hero .lede {
  margin-top: 16px;
}

/* Insurance pills --------------------------------------------------------- */

.insurance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.insurance-pill {
  background: var(--gradient-surface);
  background-color: var(--surface);
  border: 1px solid rgba(228,220,200,0.55);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease,transform 0.2s ease,border-color 0.2s ease;
}

.insurance-pill:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  border-color: rgba(228,220,200,0.85);
}

/* Coverage note ----------------------------------------------------------- */

.coverage-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--gold-tint);
  border: 1px solid rgba(156,107,24,0.35);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  color: var(--ink);
}

.coverage-note svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--gold);
}

.coverage-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.coverage-note strong {
  color: var(--gold);
}

.coverage-note a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
}

/* Clinician card ---------------------------------------------------------- */

.clinician-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--gradient-surface);
  background-color: var(--surface);
  border: 1px solid rgba(228,220,200,0.55);
  border-radius: var(--radius-md);
  padding: var(--pad-card);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease,transform 0.3s var(--ease-out);
}

.clinician-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.clinician-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--gold-tint) 0%,#EDE6D4 100%);
  background-color: var(--gold-tint);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Petrona',serif;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
}

/* Contact & forms --------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.form-row label {
  font-weight: 700;
  font-size: 0.92rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(228,220,200,0.7);
  font-family: 'Figtree',sans-serif;
  font-size: 0.98rem;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.25s ease,box-shadow 0.25s ease,background 0.25s ease;
  box-shadow: inset 0 1px 2px rgba(35,38,43,0.03);
}

.form-row input:hover,
.form-row select:hover,
.form-row textarea:hover {
  border-color: rgba(228,220,200,1);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(43,95,88,0.08),inset 0 1px 2px rgba(35,38,43,0.03);
  outline: none;
}

.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  background: linear-gradient(135deg,var(--teal-tint) 0%,#D8E8E4 100%);
  background-color: var(--teal-tint);
  border: 1px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.form-success.is-visible {
  display: block;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-error {
  background: #FEF3F2;
  border: 1px solid #E5A8A4;
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 12px 0 0;
}

.form-error p {
  color: #B0413D;
  font-size: 0.9rem;
  margin: 0;
}

.form-error a {
  color: #B0413D;
  text-decoration: underline;
}

/* Contact info card ------------------------------------------------------- */

.info-card {
  background: linear-gradient(180deg,var(--bg-alt) 0%,#E8E2D4 100%);
  background-color: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: var(--pad-card);
  border: 1px solid rgba(228,220,200,0.5);
}

.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(228,220,200,0.5);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-row strong {
  display: block;
  font-size: 0.95rem;
}

.info-row span,
.info-row a {
  color: var(--ink-soft);
  font-size: 0.93rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-row a:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(228,220,200,0.6);
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

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

.site-footer {
  background: var(--gradient-footer);
  background-color: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 72px 0 32px;
  margin-top: 48px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,transparent 0%,rgba(255,255,255,0.1) 50%,transparent 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  color: #fff;
  font-family: 'Petrona',serif;
  font-weight: 600;
  font-size: 1.22rem;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #fff;
  font-family: 'Figtree',sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color 0.2s ease,transform 0.2s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.72);
}

.footer-blurb {
  max-width: 32ch;
  font-size: 0.93rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.04);
  transition: color 0.2s ease,border-color 0.2s ease,background 0.2s ease,transform 0.2s ease;
}

.footer-social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Mobile navigation ------------------------------------------------------- */

.mobile-nav {
  display: none !important;
  border-top: 1px solid var(--surface-line);
  background: linear-gradient(180deg,var(--bg) 0%,var(--bg-alt) 100%);
  background-color: var(--bg);
}

.mobile-nav.is-open {
  display: block !important;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 28px 24px;
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(228,220,200,0.4);
  transition: color 0.2s ease,padding-left 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--teal-dark);
  padding-left: 4px;
}

.mobile-nav .btn {
  margin-top: 16px;
}

/* Utilities --------------------------------------------------------------- */

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.mt-0 {
  margin-top: 0;
}

.text-teal {
  color: var(--teal-dark);
}

.small-note {
  font-size: 0.87rem;
  color: var(--ink-faint);
}

.reveal.d0 {
  transition-delay: 0s;
}

.reveal.d1 {
  transition-delay: 0.05s;
}

.reveal.d2 {
  transition-delay: 0.1s;
}

.reveal.d3 {
  transition-delay: 0.15s;
}

.reveal.d4 {
  transition-delay: 0.2s;
}

.reveal.d5 {
  transition-delay: 0.25s;
}

.reveal.d6 {
  transition-delay: 0.3s;
}

.reveal.d7 {
  transition-delay: 0.35s;
}

.reveal.d8 {
  transition-delay: 0.4s;
}

.section-gap-lg {
  margin-top: 64px;
}

.note-spaced {
  margin-top: 16px;
}

.signs-note {
  margin-top: 32px;
  max-width: 60ch;
  font-size: 1.04rem;
}

.check-list-spaced {
  margin: 24px 0;
}

.check-list-narrow {
  max-width: 60ch;
}

.form-heading {
  margin-bottom: 8px;
}

.form-subnote {
  margin-bottom: 24px;
}

.growth-line {
  width: 100%;
  height: 44px;
  display: block;
  margin-top: 12px;
}

.cta-reassurance {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.cta-reassurance h2 {
  color: #fff;
  margin-bottom: 8px;
}

.cta-reassurance p {
  color: rgba(255,255,255,0.88);
  margin: 0;
  max-width: 52ch;
}

.clinician-card h3 {
  margin-bottom: 4px;
}

.clinician-card .small-note {
  margin-bottom: 16px;
}

/* Keyframes -------------------------------------------------------------- */

@keyframes drawUnderline {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

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

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .draw-underline::after {
    transform: scaleX(1);
  }

  .reveal.d0,
  .reveal.d1,
  .reveal.d2,
  .reveal.d3,
  .reveal.d4,
  .reveal.d5,
  .reveal.d6,
  .reveal.d7,
  .reveal.d8 {
    transition-delay: 0s;
  }
}

@media (prefers-reduced-motion:no-preference) {
  .draw-underline::after {
    animation: drawUnderline 0.9s var(--ease-out) 1.1s both;
  }

  .parallax-media img {
    transform: scale(1.04);
  }

  .parallax-media.is-visible img {
    transform: scale(1);
  }
}

@media (max-width:1120px) {
  .main-nav ul {
    gap: 16px;
  }
}

@media (max-width:860px) {
  .main-nav ul {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta .btn-primary {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-badge {
    left: 12px;
    bottom: -14px;
    padding: 16px;
    max-width: 260px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .signs-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .pillar-feature {
    grid-row: auto;
    min-height: 320px;
  }

  .pillar-wide {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-reverse .split-media {
    order: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:640px) {
  .band {
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reassurance {
    padding: 44px 28px;
  }

  .cta-reassurance {
    grid-template-columns: 1fr;
  }

  .signs-grid {
    grid-template-columns: 1fr;
  }

  .form-two {
    grid-template-columns: 1fr;
  }
}

@media (min-width:1121px) {
  .header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
}

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

.contact-form label {
  display: block;
  margin: 4px 0 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
  padding: 13px 16px;
  border: 1.5px solid rgba(228, 220, 200, 0.7);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-family: 'Figtree', sans-serif;
  font-size: 0.98rem;
  box-shadow: inset 0 1px 2px rgba(35, 38, 43, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(43, 95, 88, 0.08);
  outline: none;
}

.contact-form input[aria-invalid="true"],
.contact-form input:not(:placeholder-shown):invalid {
  border-color: #C0524E;
  box-shadow: 0 0 0 4px rgba(192, 82, 78, 0.08);
}

.contact-form .form-row {
  margin-bottom: 0;
}

.field-error {
  min-height: 1px;
  margin: 0 0 16px;
  color: #B0413D;
  font-size: 0.82rem;
}

.field-error:empty {
  margin-bottom: 12px;
}

.sms-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 20px;
  color: #4A4A4A;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
}

.sms-consent input {
  flex-shrink: 0;
  width: auto;
  min-width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  box-shadow: none;
}

.sms-consent a {
  color: var(--teal);
  text-decoration: underline;
}

/* Spam trap. Kept out of view without display:none, which some bots detect. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error[hidden] {
  display: none;
}

.contact-form[hidden] {
  display: none;
}

