/* ============================================================
   NHPI Motion Prototype — "Quiet Signal"
   Tokens: ink · navy · slate · paper · gold · pulse
   (bronze = text-safe gold derivative for light surfaces)
   ============================================================ */

/* Self-hosted fonts (latin subsets, variable) — no third-party critical chain */
@font-face {
  font-family: "Newsreader"; font-style: normal; font-weight: 400 700;
  font-display: swap; src: url("../fonts/Newsreader-var.woff2") format("woff2");
}
@font-face {
  font-family: "Newsreader"; font-style: italic; font-weight: 600;
  font-display: swap; src: url("../fonts/Newsreader-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Public Sans"; font-style: normal; font-weight: 400 700;
  font-display: swap; src: url("../fonts/PublicSans-var.woff2") format("woff2");
}

:root {
  --ink:   #0E1B2C;
  --navy:  #1C2F4A;
  --slate: #4A5A70;
  --paper: #FAF8F3;
  --gold:  #C9A96E;
  --pulse: #8FB8CE;

  --bronze: #7A6236;            /* gold, darkened for AA text on light (≥4.5:1 on paper AND mist) */
  --mist: #F0EEE7;              /* derived warm panel tint */
  --line-light: rgba(28, 47, 74, 0.10);
  --text-on-dark: #E9EEF4;
  --sub-on-dark: #C7D2DF;
  --focus-light: #2E6E8E;       /* focus ring on light surfaces */

  --font-display: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-body: "Public Sans", -apple-system, "Segoe UI", sans-serif;

  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --sect-y: clamp(4rem, 9vw, 7.5rem);
  --wrap: 1200px;
}

/* ---------- Reset-lite ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; display: block; }
ul { padding: 0; }
a { color: inherit; }

/* ---------- Focus (always visible, AA vs surface) ---------- */
:focus-visible {
  outline: 3px solid var(--focus-light);
  outline-offset: 2px;
  border-radius: 4px;
}
.site-head :focus-visible, .hero :focus-visible, .journey :focus-visible,
.final :focus-visible, .site-foot :focus-visible, .sticky-bar :focus-visible,
.centers :focus-visible, .insurance :focus-visible, .lobby-band :focus-visible,
.xteam-dark :focus-visible {
  outline-color: var(--pulse);
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute; 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: 1rem; top: -4rem; z-index: 200;
  background: var(--gold); color: var(--ink);
  font-weight: 600; text-decoration: none;
  padding: 0.8rem 1.3rem; border-radius: 0 0 10px 10px;
  transition: top 0.15s ease-out;
}
.skip-link:focus { top: 0; }

.eyebrow {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bronze);
}
.eyebrow-dark { color: var(--pulse); }

.section-head {
  max-width: var(--wrap); margin: 0 auto;
  padding: 0 var(--pad-x) 2.6rem;
  text-align: center;
}
.section-head h2 { margin-top: 0.5rem; }
.section-sub { color: var(--slate); max-width: 46rem; margin: 0.8rem auto 0; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.55rem); color: var(--navy); }
h3 { font-size: 1.22rem; color: var(--navy); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.8rem 1.7rem;
  border-radius: 9px; border: 1.5px solid transparent;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  cursor: pointer;
}
.btn-sm { min-height: 44px; padding: 0.55rem 1.15rem; font-size: 0.92rem; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn-ghost-dark { border-color: var(--slate); color: var(--ink); }
@media (prefers-reduced-motion: no-preference) {
  .btn { transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease; }
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: translateY(0); }
}
.btn-gold:hover { background: #BE9A58; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: #fff; }
.btn-ghost-dark:hover { background: rgba(28, 47, 74, 0.07); }

.text-link {
  color: var(--focus-light); font-weight: 600;
  text-decoration: underline; text-decoration-color: rgba(46, 110, 142, 0.35);
  text-underline-offset: 3px;
}
.text-link:hover { text-decoration-color: currentColor; }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 160; /* above the mobile menu (150) and quick-action bar (120) */
  background: rgba(14, 27, 44, 0.97);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-head-inner {
  max-width: 1360px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.3rem var(--pad-x);
}
.wordmark { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.wordmark-mark {
  font-family: var(--font-display); font-weight: 600; font-size: 1.35rem;
  color: var(--gold); letter-spacing: 0.02em;
}
.wordmark-name {
  font-size: 0.72rem; line-height: 1.25; letter-spacing: 0.09em;
  text-transform: uppercase; color: #D8E0EA; font-weight: 600;
}
.head-nav { display: flex; gap: 1.5rem; margin-left: auto; align-items: center; }
.head-nav a {
  color: #D8E0EA; text-decoration: none; font-size: 0.95rem; font-weight: 500;
  padding: 0.4rem 0.1rem; border-bottom: 2px solid transparent;
}
.head-nav a:hover { color: #fff; border-bottom-color: var(--gold); }

/* "Why Us" gets the gold outline so the experience page draws the eye */
.head-nav a.nav-whyus, .head-whyus {
  border: 1.5px solid var(--gold); border-radius: 999px;
  color: var(--gold); font-weight: 600;
  padding: 0.32rem 0.85rem; border-bottom: 1.5px solid var(--gold);
}
.head-nav a.nav-whyus:hover, .head-whyus:hover {
  background: var(--gold); color: var(--ink); border-bottom-color: var(--gold);
}
.mobile-menu a.menu-whyus { color: var(--gold); }
.head-actions { display: flex; align-items: center; gap: 1.2rem; }
.head-portal, .head-phone {
  color: #D8E0EA; text-decoration: none; font-size: 0.93rem; font-weight: 500;
  padding: 0.55rem 0.2rem;
}
.head-portal:hover, .head-phone:hover { color: #fff; }
.head-phone { font-variant-numeric: tabular-nums; }

@media (max-width: 1180px) { .head-nav { display: none; } .head-actions { margin-left: auto; } }
@media (max-width: 820px) { .head-portal, .head-phone { display: none; } .wordmark-name { display: none; } }

/* "Why Us" stays visible in the compact mobile bar, between the mark and the CTA */
.head-whyus { display: none; }
@media (max-width: 820px) {
  .head-whyus {
    display: inline-block; color: #D8E0EA; text-decoration: none;
    font-size: 0.95rem; font-weight: 600; padding: 0.55rem 0.1rem;
    white-space: nowrap;
  }
  .head-whyus:hover { color: #fff; }
  .head-actions { gap: 0.85rem; }
  .head-actions .btn-sm { white-space: nowrap; padding-inline: 0.9rem; }
  .site-head-inner { gap: 1rem; }
}
@media (max-width: 379px) { .head-whyus { font-size: 0.88rem; } .head-actions { gap: 0.6rem; } }

/* ---------- Mobile menu (shown wherever the full nav is hidden) ---------- */
.menu-toggle { display: none; }
@media (max-width: 1180px) {
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; margin-left: 0.2rem; flex: none;
    background: none; border: 0; border-radius: 8px;
    color: #D8E0EA; cursor: pointer;
  }
  .menu-toggle:hover { color: #fff; }
  .menu-toggle svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
  .menu-toggle .icon-close { display: none; }
  .menu-toggle[aria-expanded="true"] .icon-bars { display: none; }
  .menu-toggle[aria-expanded="true"] .icon-close { display: block; }
}
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(14, 27, 44, 0.985);
  overflow-y: auto;
  padding: 6.5rem var(--pad-x) 3rem;
}
.mobile-menu ul { list-style: none; max-width: 30rem; margin: 0 auto; }
.mobile-menu li + li { border-top: 1px solid rgba(255, 255, 255, 0.09); }
.mobile-menu a:not(.btn) {
  display: block; padding: 0.95rem 0.2rem;
  color: #E9EEF4; text-decoration: none;
  font-size: 1.25rem; font-weight: 600;
}
.mobile-menu a:not(.btn):hover { color: var(--gold); }
.mobile-menu-cta { width: 100%; max-width: 30rem; margin: 1.7rem auto 0; display: flex; }
.mobile-menu :focus-visible { outline-color: var(--pulse); }
body.menu-open { overflow: hidden; }
body.menu-open .sticky-bar { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .mobile-menu:not([hidden]) { animation: menu-in 0.22s ease-out; }
}
@keyframes menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
@media (min-width: 1181px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
  min-height: min(92vh, 60rem);
  display: flex; align-items: center;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(110% 90% at 28% 42%, rgba(14, 27, 44, 0.62) 0%, rgba(14, 27, 44, 0.18) 55%, rgba(14, 27, 44, 0) 100%),
    linear-gradient(to bottom, rgba(14, 27, 44, 0.35), rgba(14, 27, 44, 0) 22%, rgba(14, 27, 44, 0) 72%, rgba(14, 27, 44, 0.55));
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--wrap); width: 100%;
  margin: 0 auto; padding: clamp(5rem, 12vh, 8rem) var(--pad-x);
}
.hero-eyebrow { color: var(--pulse); }
.hero-title {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  font-weight: 600; line-height: 1.07; color: #fff;
  max-width: 17em;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  margin-top: 1.3rem; max-width: 36rem;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--sub-on-dark);
}
.hero-ctas { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-trust { margin-top: 1.4rem; font-size: 0.9rem; color: #93A3B8; }

/* ---------- Awards ---------- */
.awards { background: var(--paper); border-bottom: 1px solid var(--line-light); }
.awards-inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 2.2rem var(--pad-x);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.award-col { display: flex; align-items: center; justify-content: center; gap: 0.9rem; text-align: left; }
.award-col + .award-col { border-left: 1px solid rgba(201, 169, 110, 0.38); padding-left: 2rem; }
.award-icon { width: 30px; height: 30px; flex: none; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.award-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: #5C6B80; margin-bottom: 0.15rem;
}
.award-title { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--navy); line-height: 1.3; }
@media (max-width: 900px) {
  .awards-inner { grid-template-columns: 1fr; gap: 1.1rem; }
  .award-col { justify-content: flex-start; }
  .award-col + .award-col { border-left: 0; padding-left: 0; border-top: 1px solid rgba(201, 169, 110, 0.30); padding-top: 1.1rem; }
}

/* ---------- Centers (dark band — backgrounds alternate section to section) ---------- */
.centers { padding: var(--sect-y) 0; background: var(--navy); }
.centers .section-head h2 { color: #fff; }
.center-grid {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.center-card {
  display: flex; flex-direction: column; gap: 0.55rem;
  background: #fff; border: 1px solid var(--line-light); border-radius: 14px;
  padding: 1.7rem 1.6rem 1.5rem;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(14, 27, 44, 0.04);
}
.center-icon { width: 34px; height: 34px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 0.3rem; }
.center-card p { color: var(--slate); font-size: 0.97rem; }
.best-for {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--bronze) !important; margin-top: 0.2rem;
}
.card-more {
  margin-top: auto; padding-top: 0.7rem;
  font-weight: 600; font-size: 0.95rem; color: var(--focus-light);
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat; background-size: 0% 2px; background-position: 0 100%;
  width: fit-content; padding-bottom: 2px;
}
@media (prefers-reduced-motion: no-preference) {
  .center-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
  .card-more { transition: background-size 0.25s ease; }
  .center-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -12px rgba(14, 27, 44, 0.18); }
}
.center-card:hover .card-more { background-size: 100% 2px; }
@media (max-width: 980px) { .center-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .center-grid { grid-template-columns: 1fr; } }

/* ---------- Journey ---------- */
.journey { background: var(--navy); }
.journey-panel {
  background: var(--navy); /* opaque even when pinned as its own layer */
  max-width: 1280px; margin: 0 auto;
  padding: var(--sect-y) var(--pad-x);
  display: flex; flex-direction: column; justify-content: center;
}
.journey-pin.has-scrub .journey-panel { min-height: 100svh; }
.journey .section-head { padding-bottom: 1.6rem; }
.journey h2 { color: #fff; }
.journey-track { position: relative; margin-top: 2.4rem; }
.journey-line {
  position: absolute; left: 0; right: 0; top: -34px;
  width: 100%; height: 120px; overflow: visible;
}
.journey-path-base, .journey-path { fill: none; stroke-width: 2.5; stroke-linecap: round; }
.journey-path-base { stroke: rgba(255, 255, 255, 0.13); }
.journey-path { stroke: var(--pulse); filter: drop-shadow(0 0 6px rgba(143, 184, 206, 0.55)); }
.journey-steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  margin-top: 4.2rem;
}
.step {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px; padding: 1.5rem 1.4rem;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--pulse); color: var(--pulse);
  font-weight: 600; font-size: 1rem; margin-bottom: 0.8rem;
  font-family: var(--font-display);
}
.step h3 { color: #fff; }
.step p { margin-top: 0.45rem; color: var(--text-on-dark); font-size: 0.96rem; }
.journey-note {
  margin-top: 2.6rem; text-align: center;
  font-family: var(--font-display); font-style: italic;
  color: var(--sub-on-dark); font-size: 1.05rem;
}
@media (max-width: 900px) {
  .journey-line { display: none; }
  .journey-steps { grid-template-columns: 1fr; gap: 1rem; margin-top: 1.6rem; }
  .step { border-left: 3px solid var(--pulse); border-radius: 10px; }
}

/* ---------- Why ---------- */
.why { padding: var(--sect-y) 0; background: var(--mist); }
.stats {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.stat { text-align: center; padding: 1.6rem 1.2rem 1.8rem; background: #fff; border: 1px solid var(--line-light); border-radius: 14px; }
.stat-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.7rem, 4.5vw, 3.7rem); color: var(--navy); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-x { font-size: 0.6em; margin-left: 0.05em; color: var(--gold); }
.stat-label { margin-top: 0.7rem; color: var(--slate); font-size: 0.95rem; max-width: 24rem; margin-inline: auto; }
.why-grid {
  max-width: var(--wrap); margin: 1.4rem auto 0; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.why-card {
  background: #fff; border: 1px solid var(--line-light); border-radius: 14px;
  padding: 1.5rem 1.4rem;
}
.why-card-wide { grid-column: span 2; background: var(--navy); border-color: var(--navy); }
@media (min-width: 981px) {
  /* 6 grid slots, 5 cards: let the last two span 2 so both rows sit full */
  .why-grid .why-card:nth-last-child(-n+2) { grid-column: span 2; }
}
.why-card-wide h3 { color: var(--gold); }
.why-card-wide p { color: var(--text-on-dark); }
.why-card h3 { font-size: 1.08rem; }
.why-card p { margin-top: 0.45rem; color: var(--slate); font-size: 0.95rem; }
@media (max-width: 980px) {
  .stats { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card-wide { grid-column: span 2; }
}
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } .why-card-wide { grid-column: span 1; } }

/* ---------- Providers ---------- */
.providers { padding: var(--sect-y) 0; background: var(--paper); }
.prov-strip {
  list-style: none;
  max-width: 1280px; margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.3rem;
}
.prov-card {
  background: #fff; border: 1px solid var(--line-light); border-radius: 14px;
  padding: 1.6rem 1.1rem; text-align: center;
}
.prov-card img {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 1rem; border: 2px solid rgba(201, 169, 110, 0.5);
}
.prov-card h3 { font-size: 1.05rem; }
.prov-role { margin-top: 0.4rem; color: var(--slate); font-size: 0.85rem; line-height: 1.45; }
.prov-badge {
  margin-top: 0.7rem; padding-top: 0.7rem;
  border-top: 1px solid rgba(201, 169, 110, 0.35);
  font-size: 0.78rem; color: var(--bronze); font-weight: 600; line-height: 1.45;
}
.prov-link-row { text-align: center; margin-top: 2.2rem; }
@media (prefers-reduced-motion: no-preference) {
  .prov-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
  .prov-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -12px rgba(14, 27, 44, 0.16); }
}
@media (max-width: 1080px) { .prov-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .prov-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .prov-strip { grid-template-columns: 1fr; } }

/* ---------- Insurance + Privia (dark band — backgrounds alternate) ---------- */
.insurance { padding: var(--sect-y) 0 0; background: var(--navy); }
.insurance .section-head h2 { color: #fff; }
.insurance .section-sub { color: var(--sub-on-dark); }
.insurance .text-link { color: var(--pulse); text-decoration-color: rgba(143, 184, 206, 0.45); }
.plan-chips {
  list-style: none;
  max-width: 56rem; margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem;
}
.plan-chips li {
  border: 1px solid rgba(74, 90, 112, 0.35); border-radius: 999px;
  padding: 0.5rem 1.1rem; font-size: 0.94rem; color: var(--navy); font-weight: 500;
  background: #fff;
}
.ins-verify { text-align: center; margin-top: 1.6rem; color: var(--slate); padding: 0 var(--pad-x); }
.insurance .ins-verify { color: var(--text-on-dark); }
.privia-band {
  margin-top: 3.6rem;
  border-top: 1px solid rgba(201, 169, 110, 0.35);
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
  padding: 1.7rem var(--pad-x); text-align: center;
  background: #fff;
}
.privia-name {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 500;
  color: var(--navy); letter-spacing: 0.04em; margin-top: 0.2rem;
}
.privia-name span { color: var(--bronze); font-style: italic; }

/* ---------- Location ---------- */
.location { padding: var(--sect-y) 0; background: var(--paper); }
.loc-grid {
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center;
}
.loc-info h2 { margin-top: 0.5rem; }
.loc-info address {
  font-style: normal; margin-top: 1.4rem; font-size: 1.05rem; line-height: 1.7;
}
.loc-line { margin-top: 0.5rem; }
.loc-fax { color: var(--slate); }
.loc-cta {
  background: var(--navy); border-radius: 18px;
  padding: 2.2rem 2rem; text-align: center;
  display: flex; flex-direction: column; gap: 0.9rem; align-items: center;
}
.loc-cta .btn { width: 100%; max-width: 22rem; }
.loc-cta .btn-ghost-dark { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.loc-cta .btn-ghost-dark:hover { background: rgba(255, 255, 255, 0.09); }
.loc-amenities { color: var(--sub-on-dark); font-size: 0.92rem; margin-bottom: 0.4rem; }
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } }

/* ---------- Final CTA ---------- */
.final {
  position: relative; overflow: hidden;
  background: var(--ink); text-align: center;
  padding: clamp(4.5rem, 10vw, 7rem) var(--pad-x);
}
.final-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.final-inner { position: relative; z-index: 2; max-width: 44rem; margin: 0 auto; }
.final h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.final p { margin-top: 1rem; color: var(--sub-on-dark); }
.final .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.site-foot { background: var(--ink); color: #C9D4E2; padding: 3.5rem var(--pad-x) 2rem; font-size: 0.95rem; }
.foot-grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
}
.foot-name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: #fff; margin-bottom: 0.7rem; }
.foot-h { font-weight: 600; color: #fff; margin-bottom: 0.6rem; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.site-foot ul { list-style: none; }
.site-foot li { margin-top: 0.35rem; }
.site-foot a { color: #C9D4E2; text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; }
.site-foot p + p { margin-top: 0.45rem; }
.foot-privia { margin-top: 1.2rem; color: var(--gold); font-weight: 500; }
.foot-emergency {
  max-width: var(--wrap); margin: 2.6rem auto 0;
  padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center; font-size: 0.88rem; color: #AFC0D6;   /* AA on ink — models the audit F7 fix */
}
.foot-copy { text-align: center; margin-top: 0.8rem; font-size: 0.82rem; color: #8B9BB0; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ---------- Mobile sticky bar ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(14, 27, 44, 0.96);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; min-height: 56px; padding: 7px 0 8px;
  color: #D8E0EA; text-decoration: none; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.04em;
}
.sticky-bar a:active { background: rgba(201, 169, 110, 0.22); }
.sticky-bar svg { width: 22px; height: 22px; fill: currentColor; }
@media (min-width: 768px) { .sticky-bar { display: none; } }
@media (max-width: 767px) { body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); } }

/* ============================================================
   Interior pages (site build additions)
   ============================================================ */
.wordmark-logo { height: 64px; width: auto; } /* the no-buffer mark spans the bar end to end */

.page-hero {
  background: var(--ink);
  background-image: radial-gradient(90% 130% at 78% -20%, rgba(143, 184, 206, 0.16) 0%, rgba(143, 184, 206, 0) 60%);
  padding: clamp(3.2rem, 7vw, 5rem) var(--pad-x);
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 600;
}
.page-hero .page-sub {
  margin: 0.9rem auto 0; max-width: 42rem;
  color: var(--sub-on-dark); font-size: 1.08rem;
}
.page-hero .eyebrow { color: var(--pulse); margin-bottom: 0.6rem; }

.section-pad { padding: var(--sect-y) 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-narrow { max-width: 50rem; margin: 0 auto; padding: 0 var(--pad-x); }

.prose h2 { margin-top: 2.4rem; font-size: 1.55rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: 0.9rem; color: var(--ink); }
.prose p strong { color: var(--navy); }
.prose .muted { color: var(--slate); }

/* Contact info cards */
.info-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem;
}
.info-card {
  background: #fff; border: 1px solid var(--line-light); border-radius: 14px;
  padding: 1.5rem 1.4rem;
}
.info-card h3 { font-size: 0.82rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bronze); }
.info-card p { margin-top: 0.55rem; color: var(--ink); line-height: 1.55; }
.info-card p + p { margin-top: 0.35rem; }
.info-card .muted { color: var(--slate); font-size: 0.92rem; }
@media (max-width: 980px) { .info-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .info-cards { grid-template-columns: 1fr; } }

/* Provider bio cards */
.prov-bios { display: grid; gap: 1.4rem; }
.prov-bio {
  display: grid; grid-template-columns: 168px 1fr; gap: 1.8rem;
  background: #fff; border: 1px solid var(--line-light); border-radius: 16px;
  padding: 1.9rem;
  align-items: start;
}
.prov-bio img {
  width: 168px; height: 168px; border-radius: 14px; object-fit: cover; object-position: center 20%;
  border: 2px solid rgba(201, 169, 110, 0.45);
}
.prov-bio h3 { font-size: 1.35rem; }
.prov-bio .prov-role { margin-top: 0.25rem; color: var(--slate); font-weight: 500; font-size: 0.98rem; }
.prov-bio .prov-badge { border: 0; padding: 0.15rem 0 0; margin-top: 0.4rem; }
.prov-bio .bio-text { margin-top: 0.8rem; color: var(--ink); }
.prov-bio .bio-meta { margin-top: 0.8rem; font-size: 0.9rem; color: var(--slate); line-height: 1.6; }
.prov-bio .bio-meta strong { color: var(--navy); font-weight: 600; }
@media (max-width: 700px) {
  .prov-bio { grid-template-columns: 1fr; }
  .prov-bio img { width: 128px; height: 128px; }
}
.prov-group { margin-top: 3rem; }
.prov-group:first-of-type { margin-top: 0; }
.prov-group > h2 { text-align: center; margin-bottom: 1.6rem; }

/* Lobby band (dark, caption above the photo) */
.lobby-band { background: var(--navy); padding: var(--sect-y) 0; }
.lobby-cap {
  text-align: center; margin-bottom: 1rem;
  color: var(--text-on-dark); font-size: 0.98rem;
}

/* Photo treatments */
.photo-band { padding: 0 var(--pad-x); max-width: var(--wrap); margin: 0 auto; }
.photo-band figure { margin: 0; }
.photo-band img {
  width: 100%; height: auto; border-radius: 18px;
  box-shadow: 0 18px 44px -18px rgba(14, 27, 44, 0.35);
}
.photo-band figcaption { margin-top: 0.7rem; text-align: center; font-size: 0.9rem; color: var(--slate); }

.gallery-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.gallery-row img {
  width: 100%; height: 220px; object-fit: cover; border-radius: 14px;
}
@media (max-width: 800px) { .gallery-row { grid-template-columns: 1fr; } .gallery-row img { height: 200px; } }

/* Location split */
.split-2 { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.4rem; align-items: center; }
@media (max-width: 900px) { .split-2 { grid-template-columns: 1fr; } }

.mist-band { background: var(--mist); }

/* 6-up provider strip (site) */
.prov-strip { grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.prov-strip .prov-card { padding: 1.3rem 0.9rem; }
.prov-strip .prov-card img { width: 84px; height: 84px; }
.prov-strip .prov-card h3 { font-size: 0.98rem; }
.prov-strip .prov-role { font-size: 0.8rem; }
@media (max-width: 1200px) { .prov-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .prov-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .prov-strip { grid-template-columns: 1fr; } }

/* Center pages */
.cond-cols { list-style: none; columns: 3 230px; column-gap: 2.2rem; }
.cond-cols li {
  break-inside: avoid; margin: 0 0 0.55rem; padding-left: 1.35rem;
  position: relative; color: var(--ink);
}
.cond-cols li::before {
  content: ''; position: absolute; left: 0; top: 0.5em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pulse); box-shadow: 0 0 6px rgba(143, 184, 206, 0.6);
}
.treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
@media (min-width: 901px) { .treat-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.treat-card {
  background: #fff; border: 1px solid var(--line-light); border-radius: 14px;
  padding: 1.5rem 1.4rem;
}
.treat-card h3 { font-size: 1.08rem; }
.treat-card ul { list-style: none; margin-top: 0.7rem; }
.treat-card li { color: var(--slate); font-size: 0.93rem; padding: 0.22rem 0; border-top: 1px solid rgba(28, 47, 74, 0.06); }
.treat-card li:first-child { border-top: 0; }
@media (max-width: 900px) { .treat-grid { grid-template-columns: 1fr; } }

.visit-steps { list-style: none; display: grid; gap: 1.1rem; max-width: 46rem; margin: 0 auto; }
.visit-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 1.1rem; align-items: start; }
.num-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--focus-light); color: var(--focus-light);
  font-family: var(--font-display); font-weight: 600;
}
.visit-steps h3 { font-size: 1.08rem; }
.visit-steps p { margin-top: 0.25rem; color: var(--slate); font-size: 0.97rem; }

.team-mini { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 260px)); justify-content: center; gap: 1.2rem; }
.callout-band {
  background: var(--navy); border-radius: 18px; color: var(--text-on-dark);
  padding: 2.2rem 2rem;
}
.callout-band h3 { color: var(--gold); font-size: 1.3rem; }
.callout-band p { margin-top: 0.7rem; }

/* Capability proof band (light — backgrounds alternate section to section) */
.capability-band {
  background: var(--mist);
  padding: var(--sect-y) var(--pad-x);
  text-align: center;
}
.capability-band h2 { color: var(--navy); }
.capability-band .band-sub { margin: 0.9rem auto 0; max-width: 46rem; color: var(--slate); }
.cap-grid {
  list-style: none;
  max-width: 62rem; margin: 2.2rem auto 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem;
}
.cap-grid li {
  background: #fff;
  border: 1px solid rgba(28, 47, 74, 0.24);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  color: var(--ink); font-size: 0.95rem; font-weight: 500;
}
.capability-band .band-note {
  margin: 2rem auto 0; max-width: 40rem;
  font-family: var(--font-display); font-style: italic;
  color: var(--bronze); font-size: 1.12rem;
}

/* FAQ accordions (native details/summary) */
.faq-list { display: grid; gap: 0.9rem; max-width: 50rem; margin: 0 auto; }
.faq-list details { background: #fff; border: 1px solid var(--line-light); border-radius: 14px; }
.faq-list summary {
  list-style: none; cursor: pointer;
  padding: 1.15rem 3.2rem 1.15rem 1.4rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--navy);
  position: relative; border-radius: 14px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; position: absolute; right: 1.3rem; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; line-height: 1; color: var(--bronze);
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list .faq-a { padding: 0 1.4rem 1.3rem; color: var(--slate); }
.faq-list .faq-a p + p { margin-top: 0.6rem; }

/* Linking resource cards */
.resource-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.resource-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  background: #fff; border: 1px solid var(--line-light); border-radius: 14px;
  padding: 1.6rem 1.5rem; text-decoration: none;
}
.resource-card h3 { font-size: 1.12rem; }
.resource-card p { color: var(--slate); font-size: 0.94rem; }
.resource-card .card-more { margin-top: auto; padding-top: 0.6rem; }
@media (prefers-reduced-motion: no-preference) {
  .resource-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
  .resource-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -12px rgba(14, 27, 44, 0.16); }
}
.resource-card:hover .card-more { background-size: 100% 2px; }
@media (max-width: 980px) { .resource-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .resource-cards { grid-template-columns: 1fr; } }

.policy-table { max-width: 34rem; margin: 1rem auto 0; border-collapse: collapse; width: 100%; }
.policy-table td { padding: 0.6rem 0.8rem; border-top: 1px solid var(--line-light); color: var(--ink); }
.policy-table td:last-child { text-align: right; color: var(--navy); font-weight: 600; }

/* Alzheimer's signature band (light — backgrounds alternate; gold accents kept) */
.alz-band {
  background: var(--paper);
  border-top: 1px solid rgba(201, 169, 110, 0.5);
  border-bottom: 1px solid rgba(201, 169, 110, 0.5);
  padding: var(--sect-y) var(--pad-x);
  text-align: center;
}
.alz-band .eyebrow { color: var(--bronze); }
.alz-band h2 { color: var(--navy); font-size: clamp(1.9rem, 3.6vw, 2.9rem); max-width: 24em; margin: 0.6rem auto 0; }
.alz-band h2 em { font-style: italic; color: var(--bronze); }
.alz-band .alz-claim {
  margin: 1.2rem auto 0; max-width: 44rem;
  color: var(--ink); font-size: 1.12rem;
}
.alz-band .alz-note { margin: 0.8rem auto 0; max-width: 40rem; color: var(--slate); font-size: 0.98rem; }
.alz-chips { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin: 1.8rem auto 0; max-width: 50rem; }
.alz-chips li {
  background: #fff;
  border: 1px solid rgba(138, 111, 61, 0.5); border-radius: 999px;
  padding: 0.5rem 1.1rem; color: var(--bronze); font-size: 0.92rem; font-weight: 600;
}
.alz-band .hero-ctas { justify-content: center; margin-top: 2rem; }
