/* BCB page CSS — Homepage
   Drop this file into:
     wp-content/themes/bcb-child-theme/assets/pages/homepage.css
   The child theme auto-loads it on the matching page.
   See /build/BUILD_GUIDE.md for details. */

  /* ─── Hero — immersive full-bleed rotator (home) ──────────
     Photo behind a dark scrim, white display type lower-left;
     manual prev/next, no auto-advance, full-hero swap per slide.
     Prototype .frame--tablet/--desktop map to @640 / @1024. */
  /* Scope beats the sitewide `body.full-width-content section` padding (0,1,1)
     which otherwise leaves ~72px of transparent section padding above the dark
     band, showing the pink page gradient as a strip under the nav (L-015). */
  body.full-width-content .hero--immersive { padding: 0; background: transparent; }
  .hero__band {
    position: relative; overflow: hidden; isolation: isolate;
    background: var(--navy-700);
    display: flex; flex-direction: column; justify-content: center;
    min-height: 480px;
    touch-action: pan-y pinch-zoom; user-select: none;
  }
  .hero__bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: 50% 30%;
    z-index: -2;
    transition: opacity 360ms var(--ease-out);
  }
  .hero__band.is-swiping .hero__bg { transition: none; }
  /* Text is vertically centered, so this is center-weighted (darkest through the
     middle where the copy sits) rather than bottom-weighted. */
  .hero__scrim {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg,
      rgba(16,21,31,0.44) 0%, rgba(16,21,31,0.34) 24%,
      rgba(12,16,24,0.60) 52%, rgba(12,16,24,0.86) 100%);
  }
  .hero__band-inner { position: relative; width: 100%; }
  /* Rotator controls grouped at the BOTTOM-RIGHT of the picture:
     prev arrow, slide counter, next arrow. */
  .hero__ctrls {
    position: absolute; right: 16px; bottom: 16px; z-index: 2;
    display: flex; align-items: center; gap: 12px;
  }
  .hero__idx {
    font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.05em;
    color: rgba(255,255,255,0.9); text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  }
    .hero__arrow {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.16);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
  }
  .hero__arrow:hover { background: rgba(255,255,255,0.30); }
  /* flex:0 0 auto — the svg is a flex child and would shrink to a sliver (L-036). */
  .hero__arrow svg { width: 22px; height: 22px; flex: 0 0 auto; }
  /* Extra bottom padding on mobile lifts the centered copy/CTA up so it clears
     the rotator arrows pinned at the bottom-right. */
  .hero__content { padding: 30px 22px 80px; }
  .hero__content .hero__eyebrow {
    font-family: var(--font-accent); font-weight: 800; font-size: 12.5px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--pink-200); margin: 0 0 12px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.7), 0 0 2px rgba(0,0,0,0.5);
  }
  .hero__content .hero__title {
    font-family: var(--font-display); font-weight: 800;
    font-size: 38px; line-height: 1.05; letter-spacing: -0.025em;
    color: #fff; margin: 0 0 14px; text-wrap: balance;
    text-shadow: 0 2px 18px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4);
  }
  .hero__content .hero__lede {
    font-size: 16px; font-weight: 500; line-height: 1.55; color: rgba(255,255,255,0.95);
    margin: 0 0 22px; max-width: 33ch; text-wrap: pretty;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
  }
  .hero__cta { align-self: flex-start; white-space: nowrap; }
  /* Copy fade as slide changes */
  [data-hero-copy] { transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out); }
  [data-hero-copy].is-leaving { opacity: 0; transform: translateY(8px); }

  /* ─── Proof strip — centered under the band ─────────────── */
  .hero--immersive .hero__proof {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    padding: 22px 24px;
  }
  .hero__proof-item {
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid rgba(62, 80, 104, 0.10);
  }
  .hero__proof-item:last-child { border-right: 0; }
  .hero__proof-num {
    display: block;
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1;
    color: var(--pink-500);
    letter-spacing: -0.01em;
    margin-bottom: 6px;
  }
  .hero__proof-label {
    display: block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 11px;
    line-height: 1.3;
    color: var(--navy-400);
    letter-spacing: 0.02em;
  }
  @media (max-width: 720px) {
    .hero--immersive .hero__proof { grid-template-columns: repeat(3, 1fr); padding: 18px 20px; row-gap: 14px; }
    .hero__proof-num { font-size: clamp(18px, 5vw, 24px); }
    .hero__proof-label { font-size: 10px; line-height: 1.3; }
    .hero__proof-item { padding: 0 6px; }
    .hero__proof-item:nth-child(3) { border-right: 0; }
    .hero__proof-item:nth-child(4) { border-right: 1px solid rgba(62, 80, 104, 0.10); }
  }
  @media (max-width: 480px) {
    .hero--immersive .hero__proof { grid-template-columns: repeat(2, 1fr); }
    .hero__proof-num { font-size: 22px; }
    .hero__proof-item { border-right: 0 !important; border-bottom: 1px solid rgba(62, 80, 104, 0.10); padding: 10px 8px; margin: 0 !important; }
    .hero__proof-item:nth-child(odd) { border-right: 1px solid rgba(62, 80, 104, 0.10) !important; }
    .hero__proof-item:nth-last-child(-n+2) { border-bottom: 0; }
    .hero__proof-item:nth-child(5) { grid-column: 1 / -1; border-right: 0 !important; border-top: 1px solid rgba(62, 80, 104, 0.10); padding-top: 12px; }
  }

  /* ─── Hero immersive: tablet + desktop ──────────────────── */
  @media (min-width: 640px) {
    .hero__band { min-height: 540px; }
    .hero__ctrls { bottom: 24px; right: 32px; }
    .hero__content { padding: 40px 40px; max-width: 600px; }
    .hero__content .hero__title { font-size: 46px; }
    .hero__content .hero__lede { font-size: 18px; max-width: 40ch; }
    .hero__cta { height: 56px; padding: 0 34px; }
  }
  @media (min-width: 1024px) {
    .hero__band { min-height: 660px; }
    .hero__scrim {
      background:
        linear-gradient(102deg, rgba(12,16,24,0.82) 0%, rgba(16,21,31,0.46) 40%, rgba(16,21,31,0.10) 72%, rgba(16,21,31,0) 100%),
        linear-gradient(180deg, rgba(16,21,31,0) 52%, rgba(12,16,24,0.66) 100%);
    }
    .hero__band-inner { max-width: 1240px; margin: 0 auto; }
    .hero__content { padding: 0 60px; max-width: 660px; }
    .hero__content .hero__eyebrow { font-size: 13px; margin-bottom: 16px; }
    .hero__content .hero__title { font-size: 62px; line-height: 1.02; margin-bottom: 20px; }
    .hero__content .hero__lede { font-size: 19px; line-height: 1.6; max-width: 46ch; margin-bottom: 28px; }
    .hero__cta { height: 58px; padding: 0 38px; }
    .hero__ctrls { top: auto; bottom: 70px; right: max(60px, calc(50% - 620px + 60px)); }
    .hero__arrow { width: 50px; height: 50px; }
    .hero__arrow svg { width: 24px; height: 24px; }
  }

  /* ─── Home: Explore wayfinding row (below the hero band) ─── */
  .home-explore { background: transparent; padding: clamp(8px, 2vw, 20px) 22px clamp(28px, 4vw, 40px); }
  .home-explore__inner { max-width: 1240px; margin: 0 auto; }
  .home-explore__label {
    font-family: var(--font-accent); font-weight: 700; font-size: 11px;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink-500);
    margin: 0 0 14px;
  }
  .home-explore__row { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .home-explore__card {
    display: block; text-decoration: none;
    background: var(--card-lift-bg);
    -webkit-backdrop-filter: var(--card-lift-blur); backdrop-filter: var(--card-lift-blur);
    border: 1px solid rgba(62, 80, 104, 0.10);
    border-radius: 18px; padding: 18px 20px;
    transition: transform var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur-fast);
  }
  .home-explore__card:hover {
    transform: translateY(-2px);
    border-color: var(--pink-400);
    box-shadow: var(--shadow-md);
  }
  .home-explore__card h2 {
    font-family: var(--font-display); font-weight: 700; font-size: 18px;
    color: var(--navy-600); margin: 0 0 6px;
  }
  .home-explore__card p { font-size: 14px; line-height: 1.5; color: var(--navy-500); margin: 0; }
  @media (min-width: 640px) {
    .home-explore__row { grid-template-columns: repeat(3, 1fr); }
  }
  /* Mobile-only wayfinding row: the full top nav covers this on desktop (nav hamburger collapses at <=980px). */
  @media (min-width: 981px) {
    .home-explore { display: none; }
  }

  /* ─── Section 3 — Care Team note (collapse/expand) ──────────
     Single visible toggle by default. Clicking expands a region
     containing the painting + heading + H2 + body + CTA.
     Animation: max-height + opacity, 250ms ease.
     No-JS fallback in <noscript> shows the region and hides the
     toggle so empathic content remains reachable without JS. */
  .reassure {
    background: var(--pink-soft);
    padding: clamp(40px, 6vw, 80px) 32px;
  }
  .reassure__shell {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
  }
  .reassure__shell .reassure__inner { text-align: left; }
  .reassure__toggle {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--pink-800); color: var(--white);
    border: 0; cursor: pointer;
    padding: 16px 28px; border-radius: var(--radius-pill);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.2;
    transition: background var(--dur-fast);
  }
  .reassure__toggle:hover { background: var(--pink-900); }
  .reassure__toggle:focus-visible {
    outline: 2px solid var(--pink-300);
    outline-offset: 3px;
  }
  .reassure__toggle .arrow { transition: transform var(--dur-base); }
  .reassure__toggle[aria-expanded="true"] .arrow { transform: rotate(90deg); }
  .reassure__region {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition:
      max-height 250ms ease,
      opacity 250ms ease,
      visibility 0s linear 250ms;
  }
  .reassure__region[data-open="true"] {
    max-height: 2400px;
    opacity: 1;
    visibility: visible;
    margin-top: 32px;
    transition:
      max-height 250ms ease,
      opacity 250ms ease,
      visibility 0s;
  }
  .reassure__inner {
    display: grid;
    grid-template-columns: clamp(220px, 26vw, 360px) 1fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
  }
  .reassure__art {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-photo);
    rotate: -2deg;
  }
  .reassure__art img { width: 100%; height: auto; display: block; }
  .reassure__art figcaption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
    color: var(--white);
    padding: 32px 16px 14px;
    font-family: var(--font-accent);
    font-weight: 700; font-size: 11px;
    letter-spacing: 0.1em; text-transform: uppercase;
  }
  .reassure__copy { max-width: 640px; }
  .reassure__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--pink-700);
    margin: 0 0 16px;
  }
  .reassure__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.022em;
    color: var(--pink-800);
    margin: 0 0 24px;
    text-wrap: balance;
  }
  .reassure__body p {
    font-size: 17px; line-height: 1.65;
    color: var(--navy-600);
    margin: 0 0 16px;
  }
  .reassure__cta { margin-top: 12px; }

  @media (max-width: 860px) {
    .reassure__inner { grid-template-columns: 1fr; }
    .reassure__art { width: 70%; margin: 0 auto; }
  }

  /* ─── Section 2 — Referral (B1) callout box ──────────────
     Mirrors the Triage callout pattern: gradient-transparent
     outer band + translucent white inner card (tier-2 backdrop
     blur via the .trusted__inner rule lower in this file). */
  .trusted {
    padding: clamp(72px, 10vw, 128px) 32px;
    background: var(--sky-tint);
  }
  .trusted__inner {
    max-width: 1000px; margin: 0 auto;
    background: var(--sky-100);
    border-radius: var(--radius-xl);
    padding: clamp(40px, 6vw, 72px);
  }
  .trusted__heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--navy-700);
    margin: 0 0 20px;
    text-wrap: balance;
  }
  .trusted__body p {
    font-size: 17px; line-height: 1.65;
    color: var(--navy-600);
    margin: 0 0 18px;
  }
  .trusted__highlight {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.2;
    color: var(--pink-500);
    margin: 0 0 18px !important;
    letter-spacing: -0.01em;
  }
    .trusted__stat {
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 24px;
  }
  .trusted__stat:last-child { border-bottom: 0; padding-bottom: 0; }
  .trusted__stat-num {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1;
    color: var(--pink-500);
    letter-spacing: -0.01em;
    display: block;
    margin-bottom: 8px;
  }
  .trusted__stat-label {
    font-size: 14px; line-height: 1.4;
    color: var(--navy-500);
  }
  .trusted__sub {
    font-style: italic;
    color: var(--navy-500);
    font-size: 17px;
    margin: 24px 0 16px !important;
  }
  .trusted__cta { margin-top: 8px; }

  /* ─── Section 4 — Co-location partners (cleaved) ───────────
     Standalone band of partner cards. Each card links to the
     BCB location it co-locates with. */
  .partners {
    padding: clamp(48px, 7vw, 80px) 32px;
    background: var(--white);
  }
  .partners__inner {
    max-width: 1080px;
    margin: 0 auto;
  }
  .partners__label {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy-400);
    margin: 0 0 24px;
    text-align: center;
  }
  .partners__row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px 32px;
    align-items: center;
  }
  @media (max-width: 1000px) {
    .partners__row { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .partners__row { grid-template-columns: 1fr; }
  }
  .partners__card {
    display: inline-flex; align-items: center; gap: 14px;
    text-decoration: none;
    color: var(--navy-500);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    transition: color var(--dur-fast);
  }
  .partners__card:hover { color: var(--pink-500); }
  .partners__card img {
    width: 56px; height: 56px;
    object-fit: contain;
    background: var(--white);
    border: 1px solid rgba(62, 80, 104, 0.10);
    border-radius: 12px;
    padding: 4px;
    flex-shrink: 0;
    filter: grayscale(1) opacity(0.78);
    transition: filter var(--dur-fast);
  }
  .partners__card:hover img { filter: none; }
  .partners__card small {
    display: block;
    font-weight: 500;
    font-size: 11px;
    color: var(--navy-400);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 3px;
  }

  /* ─── Three-stat callouts — stats over a full-width photo ───
     Full-bleed image + dark scrim; the three numbers sit as white
     text over it (no card chrome). Reuses the .trusted__stat
     markup but strips the old tile/border treatment in-section.
     Image is swappable via the <img> src in the snippet. */
  .stat-callouts {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 0;
  }
  /* Fade the photo + scrim top/bottom edges so the band blends into
     the sections above and below instead of cutting a hard line. */
  .stat-callouts__media,
  .stat-callouts__scrim {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 120px, #000 calc(100% - 120px), transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 120px, #000 calc(100% - 120px), transparent 100%);
  }
  .stat-callouts__media { position: absolute; inset: 0; z-index: -2; }
  .stat-callouts__media img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
  }
  .stat-callouts__scrim {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(90deg,
      rgba(16, 21, 31, 0.82) 0%,
      rgba(16, 21, 31, 0.62) 55%,
      rgba(16, 21, 31, 0.42) 100%);
  }
  .stat-callouts__inner {
    max-width: 1080px; margin: 0 auto;
    padding: clamp(64px, 9vw, 120px) 32px;
  }
  .stat-callouts__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--pink-300);
    margin: 0 0 28px;
  }
  .stat-callouts__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 56px);
  }
  .stat-callouts .trusted__stat {
    border: 0; padding: 0;
    background: transparent;
    color: var(--white);
  }
  .stat-callouts__rule {
    width: 56px; height: 3px;
    background: var(--pink-300);
    border: 0; border-radius: 2px;
    margin: 0 0 14px;
  }
  .stat-callouts .trusted__stat-num {
    color: var(--white);
    font-size: clamp(48px, 5.5vw, 72px);
    margin-bottom: 12px;
  }
  .stat-callouts .trusted__stat-label {
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
  }
  .stat-callouts .trusted__stat-label em { color: rgba(255, 255, 255, 0.7) !important; }
  @media (max-width: 760px) {
    .stat-callouts__row { grid-template-columns: 1fr; gap: 28px; }
    .stat-callouts__scrim {
      background: linear-gradient(180deg,
        rgba(16, 21, 31, 0.55) 0%,
        rgba(16, 21, 31, 0.82) 100%);
    }
  }

  /* ─── Section 5 — Services Grid (6 cards, 3x2 desktop) ─────
     Converted from a carousel layout. .services__viewport /
     .services__track / .services__nav / .services__dots are now
     unused but their CSS rules are retained as dead-but-harmless
     so prior versions of the markup would still render.
     The new layout is a CSS grid (.services__grid). */
  .services {
    padding: clamp(72px, 10vw, 128px) 32px;
    background: var(--white);
  }
  .services__head {
    max-width: 880px; margin: 0 auto clamp(40px, 5vw, 64px);
    text-align: center;
  }
  .services__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--pink-500);
    margin: 0 0 16px;
  }
  .services__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.1; letter-spacing: -0.022em;
    color: var(--pink-500);
    margin: 0;
    text-wrap: balance;
  }
  .services__grid {
    max-width: 1320px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 1100px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 720px) {
    .services__grid { grid-template-columns: 1fr; gap: 16px; }
  }
  /* Carousel container/track/nav left in CSS for backward
     compatibility but no longer in the markup. */
      .service-card {
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex; flex-direction: column; gap: 20px;
    transition: box-shadow var(--dur-base), transform var(--dur-base);
  }
  .service-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
  }
  .service-card__num {
    font-family: var(--font-accent);
    font-weight: 800; font-size: 13px;
    letter-spacing: 0.12em;
    color: var(--sky-600);
    text-transform: uppercase;
  }
  .service-card__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -0.018em;
    color: var(--navy-700);
    margin: 0;
    text-wrap: balance;
  }
  .service-card__body {
    font-size: 15px; line-height: 1.6;
    color: var(--navy-500);
    margin: 0;
  }
  .service-card__list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 8px;
    border-top: 1px solid var(--gray-100);
    padding-top: 18px;
  }
  .service-card__list li {
    font-size: 14px; line-height: 1.45;
    color: var(--navy-500);
    padding-left: 18px;
    position: relative;
  }
  .service-card__list li::before {
    content: ""; position: absolute;
    left: 0; top: 8px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--pink-300);
  }
    /* Service card CTA — mirrors .who__path-cta visual treatment.
     Pink uppercase, pink-200 underline at rest, pink-500 underline
     on hover. Arrow appended via ::after content. */
  .service-card__cta {
    margin-top: auto;
    align-self: flex-start;
    font-family: var(--font-accent);
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--pink-500);
    text-decoration: none;
    border-bottom: 2px solid var(--pink-200);
    padding-bottom: 2px;
    transition: color var(--dur-fast), border-bottom-color var(--dur-fast);
  }
  .service-card__cta:hover { color: var(--pink-700); border-bottom-color: var(--pink-500); }
  .service-card__cta::after { content: " \2192"; }
  .service-card__cta:focus-visible {
    outline: 2px solid var(--pink-500);
    outline-offset: 3px;
  }
              
  /* "X of Y" counter sitting next to the dots. Same visual treatment
     as the hero's slide chip (League Spartan, uppercase, narrow). */
  
  @media (max-width: 1100px) {
    .service-card { flex-basis: calc((100% - 24px) / 2); }
  }
  @media (max-width: 720px) {
    /* One full card visible at a time on mobile, no next-card peek. */
        .service-card { flex-basis: 100%; }
  }

  /* ─── Section 5 — Advanced Care ─────────────────────────── */
  .advanced {
    padding: clamp(64px, 9vw, 112px) 32px;
    background: var(--navy-500); color: var(--white);
  }
  .advanced__inner {
    max-width: 980px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px, 2.4vw, 28px);
    align-items: start;
  }
  .advanced__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--sky-300);
    margin: 0 0 16px;
  }
  .advanced__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0;
    text-wrap: balance;
  }
  .advanced__body p {
    font-size: 17px; line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin: 0 0 18px;
  }
  .advanced__list {
    list-style: none; padding: 0; margin: 0 0 28px;
    display: grid; gap: 12px;
  }
  .advanced__list li {
    padding-left: 22px;
    position: relative;
    font-size: 16px; line-height: 1.5;
    color: rgba(255,255,255,0.92);
  }
  .advanced__list li::before {
    content: ""; position: absolute;
    left: 0; top: 9px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--sky-400);
  }
  .advanced .btn--primary { background: var(--pink-500); }
  .advanced .btn--primary:hover { background: var(--pink-400); }

  /* ─── Section 6 — Who We Help ─────────────────────────────── */
  .who {
    background: var(--pink-50);
    padding: clamp(64px, 9vw, 112px) 32px;
  }
  .who__inner { max-width: 1200px; margin: 0 auto; }
  .who__head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
  .who__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 13px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--pink-500);
    margin: 0 0 16px;
  }
  .who__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--pink-500);
    margin: 0 0 20px;
  }
  .who__intro {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6; color: var(--navy-500);
    margin: 0 0 12px;
    text-wrap: pretty;
  }
  .who__paths {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .who__path {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    border: 1px solid rgba(194, 99, 138, 0.10);
    display: flex; flex-direction: column;
  }
  .who__path-title {
    font-family: var(--font-display);
    font-weight: 700; font-size: 24px;
    color: var(--pink-500);
    margin: 0 0 14px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .who__path-lede {
    font-size: 15px; line-height: 1.6;
    color: var(--navy-600);
    margin: 0 0 18px;
  }
  .who__path-list {
    list-style: none; padding: 0;
    margin: 0 0 20px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .who__path-list li {
    font-size: 14px; line-height: 1.5;
    color: var(--navy-500);
    padding-left: 22px;
    position: relative;
  }
  .who__path-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 12px; height: 2px;
    background: var(--pink-500);
    border-radius: 1px;
  }
  .who__path-out {
    font-size: 15px; line-height: 1.55;
    color: var(--navy-700);
    margin: 0 0 22px;
    font-weight: 500;
  }
  .who__path-cta {
    margin-top: auto;
    align-self: flex-start;
    font-family: var(--font-accent);
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--pink-500);
    text-decoration: none;
    border-bottom: 2px solid var(--pink-200);
    padding-bottom: 4px;
    transition: border-color var(--dur-fast), color var(--dur-fast);
  }
  .who__path-cta:hover { color: var(--pink-700); border-bottom-color: var(--pink-500); }
  .who__path-cta::after { content: " \2192"; }
  @media (max-width: 860px) { .who__paths { grid-template-columns: 1fr; } }

  /* ─── Section 7 — Find an Office ──────────────────────────── */
  .offices {
    background: transparent;  /* floats on the page gradient like M&C; was white (the deleted navy band used to mask it) */
    padding: clamp(72px, 10vw, 128px) 32px;
    position: relative; overflow: hidden;
  }
    .offices__inner { max-width: 1200px; margin: 0 auto; position: relative; }
  .offices__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
  .offices__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 13px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--pink-500);
    margin: 0 0 16px;
  }
  .offices__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--pink-500);
    margin: 0 0 22px;
  }
  .offices__intro {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6; color: var(--navy-600);
    margin: 0 0 10px;
    text-wrap: pretty;
  }
  .offices__trust {
    font-size: 14px; line-height: 1.5;
    color: var(--navy-400);
    margin: 0;
    font-style: italic;
  }
  .offices__cols {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .offices__col-title {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 14px;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--navy-700);
    padding-bottom: 14px;
    border-bottom: 2px solid var(--pink-500);
    margin: 0 0 18px;
  }
  .offices__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
  .offices__office {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-radius: var(--radius-lg);
    text-decoration: none; color: var(--navy-700);
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
  }
  .offices__office:hover {
    background: var(--pink-50);
    border-color: rgba(194, 99, 138, 0.25);
    transform: translateX(2px);
  }
  .offices__office-name { transition: color var(--dur-fast); }
  .offices__office-thumb {
    width: 64px; height: 64px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-100);
    flex-shrink: 0;
    position: relative;
  }
  .offices__office-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
    .offices__office-thumb--home {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--pink-50), var(--sky-100));
    color: var(--pink-500);
  }
  .offices__office-thumb--home svg { width: 28px; height: 28px; }
  .offices__office-info {
    display: block;
    flex: 1; min-width: 0;
  }
  .offices__office:hover .offices__office-name { color: var(--pink-500); }
  .offices__office-name {
    font-family: var(--font-sans);
    font-weight: 700; font-size: 15px;
    color: var(--pink-500);
    display: block; margin-bottom: 2px;
  }
  .offices__office-area {
    font-size: 13px; color: var(--navy-400);
    line-height: 1.4;
  }
  .offices__note {
    font-size: 13px; color: var(--navy-400);
    font-style: italic; margin: 12px 0 0;
  }
  /* Foot link to the full Locations overview (light section; the #locations
     in-page jump under the hero is unchanged; this is an additional path
     to /locations/). */
  .offices__foot { text-align: center; margin-top: 44px; }
  .offices__all {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-accent); font-weight: 700;
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--pink-600); text-decoration: none;
    border-bottom: 2px solid var(--pink-200);
    padding-bottom: 4px;
    transition: color var(--dur-fast), border-color var(--dur-fast);
  }
  .offices__all:hover { color: var(--pink-700); border-color: var(--pink-500); }
  .offices__all:focus-visible { outline: 3px solid var(--pink-300); outline-offset: 3px; }
  @media (max-width: 860px) { .offices__cols { grid-template-columns: 1fr; gap: 40px; } }

  /* ─── Section 8 — One Team. One Plan. One Place. ──────────── */
  .oneteam {
    background: var(--sky-100);
    padding: clamp(72px, 10vw, 128px) 32px;
  }
  .oneteam__inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px); align-items: center;
  }
  .oneteam__art {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden; aspect-ratio: 3 / 2;
    background: var(--sky-200);
    box-shadow: var(--shadow-photo);
  }
  .oneteam__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .oneteam__art::after {
    content: "";
    position: absolute; inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 80px 12px rgba(31, 45, 64, 0.32);
    background: radial-gradient(
      ellipse at center,
      rgba(0,0,0,0) 55%,
      rgba(31, 45, 64, 0.18) 100%
    );
  }
  .oneteam__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 13px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--pink-500);
    margin: 0 0 16px;
  }
  .oneteam__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 3.6vw, 48px);
    line-height: 1.05; letter-spacing: -0.025em;
    color: var(--pink-500);
    margin: 0 0 28px;
  }
  .oneteam__body p {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.65; color: var(--navy-700);
    margin: 0 0 16px;
    text-wrap: pretty;
  }
  @media (max-width: 860px) {
    .oneteam__inner { grid-template-columns: 1fr; }
    .oneteam__art { order: -1; aspect-ratio: 3 / 2; max-height: 400px; }
  }

  /* ─── Paintings teaser strip ──────────────────────────── */
  .paintings-teaser {
    background: transparent;
    padding: var(--sec-pad-y) 32px;
  }
  .paintings-teaser__inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
    /* Light frosted CTA card (Case-A) — matches the closer boxes on the
       other pages; the page now ends light and dissolves into the navy
       footer via .footer-ombre-blend. */
    background: var(--card-lift-bg);
    -webkit-backdrop-filter: var(--card-lift-blur);
    backdrop-filter: var(--card-lift-blur);
    border: 1px solid rgba(62, 80, 104, 0.10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card-lift);
    padding: clamp(32px, 4vw, 56px);
  }
  .paintings-teaser__copy {
    max-width: 460px;
  }
  .paintings-teaser__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pink-500);
    margin: 0 0 16px;
  }
  .paintings-teaser__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--pink-500);
    margin: 0 0 16px;
    text-wrap: balance;
  }
  .paintings-teaser__body {
    font-size: 17px;
    line-height: 1.6;
    color: var(--navy-600);
    margin: 0 0 24px;
    text-wrap: pretty;
  }
  .paintings-teaser__cta {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--pink-500);
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    padding-bottom: 4px;
    transition: color var(--dur-fast), gap var(--dur-fast);
  }
  .paintings-teaser__cta:hover { color: var(--pink-700); gap: 14px; }
  .paintings-teaser__strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .paintings-teaser__tile {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: var(--shadow-md);
    transition: transform var(--dur-base), box-shadow var(--dur-base);
  }
  .paintings-teaser__tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
  }
  .paintings-teaser__tile img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .paintings-teaser__tile:nth-child(2) { transform: translateY(20px); }
  .paintings-teaser__tile:nth-child(2):hover { transform: translateY(16px); }
  .paintings-teaser__tile:nth-child(4) { transform: translateY(20px); }
  .paintings-teaser__tile:nth-child(4):hover { transform: translateY(16px); }
  @media (max-width: 860px) {
    .paintings-teaser__inner { grid-template-columns: 1fr; }
    .paintings-teaser__strip { grid-template-columns: repeat(4, 1fr); }
    .paintings-teaser__tile:nth-child(2),
    .paintings-teaser__tile:nth-child(4) { transform: none; }
  }

  /* ─── Section 9 — Getting Started ─────────────────────────── */
  .gs {
    background: var(--white);
    padding: clamp(72px, 10vw, 128px) 32px;
  }
  .gs__inner { max-width: 1100px; margin: 0 auto; }
  .gs__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
  .gs__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 13px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--pink-500);
    margin: 0 0 16px;
  }
  .gs__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--pink-500);
    margin: 0 0 20px;
  }
  .gs__sub {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6; color: var(--navy-500);
    margin: 0;
    text-wrap: pretty;
  }
  .gs__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .gs__step {
    background: var(--pink-50);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
  }
  .gs__step-num {
    font-family: var(--font-accent);
    font-weight: 800; font-size: 13px;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--pink-500);
    margin: 0 0 12px;
  }
  .gs__step-title {
    font-family: var(--font-display);
    font-weight: 700; font-size: 22px;
    color: var(--pink-500);
    margin: 0 0 12px; line-height: 1.2;
  }
  .gs__step-body {
    font-size: 15px; line-height: 1.6;
    color: var(--navy-500); margin: 0 0 12px;
  }
  .gs__step-note {
    font-size: 13px; line-height: 1.55;
    color: var(--navy-400); font-style: italic;
    margin: 12px 0 0; padding-top: 12px;
    border-top: 1px solid rgba(194, 99, 138, 0.15);
  }
  .gs__cta { text-align: center; margin-top: 48px; }
  @media (max-width: 860px) { .gs__steps { grid-template-columns: 1fr; } }

  /* ─── Section 10 — Insurance ──────────────────────────────── */
  .insurance {
    background: var(--sky-100);
    padding: clamp(64px, 9vw, 96px) 32px;
  }
  .insurance__inner {
    max-width: 880px; margin: 0 auto;
    text-align: center;
  }
  .insurance__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 13px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--pink-500);
    margin: 0 0 16px;
  }
  .insurance__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--pink-500);
    margin: 0 0 24px;
  }
  .insurance__body {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.65; color: var(--navy-700);
    margin: 0 0 32px;
    text-wrap: pretty;
  }
  .insurance__carriers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 780px;
    margin: 0 auto 32px;
  }
  .insurance__carrier {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: var(--navy-700);
    text-align: center;
    line-height: 1.25;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  }
  .insurance__carrier:hover,
  .insurance__carrier:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 30, 60, 0.08);
    border-color: var(--sky-300, #9ec9e0);
    color: var(--navy-900);
  }
  .insurance__carrier-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 100%;
  }
  .insurance__carrier-logo img {
    max-height: 100%;
    max-width: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .insurance__carrier-name {
    display: block;
  }
  .insurance__carrier small {
    display: block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    color: var(--navy-400);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 4px;
  }
  @media (max-width: 720px) {
    .insurance__carriers { grid-template-columns: repeat(2, 1fr); }
  }

  /* ─── Section 11 — Triage ─────────────────────────────────── */
  .triage {
    background: var(--white);
    padding: clamp(72px, 10vw, 128px) 32px;
  }
  .triage__inner {
    max-width: 1000px; margin: 0 auto;
    background: var(--pink-50);
    border-radius: var(--radius-xl);
    padding: clamp(40px, 6vw, 72px);
  }
  .triage__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 13px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--pink-500);
    margin: 0 0 16px;
  }
  .triage__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--pink-500);
    margin: 0 0 28px;
    text-wrap: balance;
  }
  .triage__body p {
    font-size: 16px; line-height: 1.65;
    color: var(--navy-700);
    margin: 0 0 16px;
  }
  .triage__list {
    margin: 0 0 16px; padding-left: 22px;
  }
  .triage__list li {
    font-size: 16px; line-height: 1.65;
    color: var(--navy-700); margin-bottom: 6px;
  }
  .triage__fee {
    font-size: 15px; line-height: 1.55;
    color: var(--navy-500);
    background: var(--white);
    border-left: 3px solid var(--pink-500);
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    margin: 24px 0 32px;
  }
  .triage__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
  .triage__phone {
    font-size: 14px; color: var(--navy-500);
  }
  .triage__phone a { color: var(--navy-700); font-weight: 600; text-decoration: none; }
  .triage__phone a:hover { color: var(--pink-500); }

  /* ─── Section 12 — Patient Stories ────────────────────────── */
  .stories {
    background: var(--gray-50);
    padding: clamp(72px, 10vw, 128px) 32px;
  }
  .stories__inner { max-width: 1200px; margin: 0 auto; }
  .stories__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
  .stories__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 13px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--pink-500);
    margin: 0 0 16px;
  }
  .stories__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--pink-500);
    margin: 0 0 24px;
  }
  .stories__intro {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.65;
    color: var(--navy-600);
    margin: 0;
    text-wrap: pretty;
  }

  /* ─── Story disclosure (inline expansion) ────────────────────
     Each trigger toggles its own body (multi-open, not accordion).
     Bodies live in the DOM at all times (SEO-indexable); CSS hides
     them by default; JS toggles data-open. <noscript> in HTML
     section overrides to show all bodies when JS is off. */
                                /* ─── Patient Stories grid (3x2 desktop, card pattern) ─────
     Mirrors the Services + Who We Help card visual treatment.
     Each card has title + teaser + CTA visible by default;
     body, calibrating note, attribution (+ Vimeo for card 6)
     reveal on CTA click via the same data-open pattern used
     by Care Team. Multi-open; <noscript> in section markup
     forces all bodies visible if JS is off. */
  .stories__grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 1100px) {
    .stories__grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 720px) {
    .stories__grid { grid-template-columns: 1fr; gap: 16px; }
  }
  .story-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    display: flex; flex-direction: column; gap: 16px;
    transition: box-shadow var(--dur-base), transform var(--dur-base);
  }
  .story-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
  }
  .story-card__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.018em;
    color: var(--navy-700);
    margin: 0;
    text-wrap: balance;
  }
  .story-card__teaser {
    font-size: 15px;
    line-height: 1.55;
    color: var(--navy-500);
    margin: 0;
    text-wrap: pretty;
  }
  /* Story-card CTA: button styled like .service-card__cta link,
     with native button-element resets. Acts as the disclosure
     trigger (aria-expanded toggled by JS). */
  .story-card__cta {
    margin-top: auto;
    align-self: flex-start;
    background: transparent;
    border: 0;
    border-bottom: 2px solid var(--pink-200);
    padding: 0 0 2px;
    cursor: pointer;
    font-family: var(--font-accent);
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--pink-500);
    transition: color var(--dur-fast), border-bottom-color var(--dur-fast);
  }
  .story-card__cta:hover { color: var(--pink-700); border-bottom-color: var(--pink-500); }
  .story-card__cta::after { content: " \2192"; }
  .story-card__cta:focus-visible {
    outline: 2px solid var(--pink-500);
    outline-offset: 3px;
  }
  /* Collapsed body — same animation as .reassure__region. */
  .story-card__body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition:
      max-height 250ms ease,
      opacity 250ms ease,
      visibility 0s linear 250ms;
  }
  .story-card__body[data-open="true"] {
    max-height: 6000px;
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
    transition:
      max-height 250ms ease,
      opacity 250ms ease,
      visibility 0s;
  }
  .story-card__content {
    padding-top: 8px;
  }
  .story-card__content p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--navy-600);
    margin: 0 0 14px;
  }
  .story-card__calibrate {
    border-left: 3px solid var(--pink-300);
    padding: 6px 0 6px 16px;
    margin: 16px 0;
    font-style: italic;
  }
  .story-card__calibrate p {
    color: var(--navy-500);
    margin: 0;
    font-size: 14px;
  }
  .story-card__credit {
    font-family: var(--font-accent) !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    letter-spacing: 0.02em;
    color: var(--navy-400) !important;
    font-style: normal !important;
    margin: 16px 0 0 !important;
  }
  /* Vimeo lazy-load placeholder: 16:9 box with play affordance.
     JS replaces the inner content with an iframe on first expand. */
  .story-card__video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--navy-700);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 0 0 16px;
  }
  .story-card__video::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 60%),
      linear-gradient(135deg, rgba(31,45,64,0.6) 0%, rgba(31,45,64,0.9) 100%);
    pointer-events: none;
  }
  .story-card__video::after {
    content: "▸ Play video";
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.85);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
  }
  .story-card__video iframe,
  .story-card__video noscript iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  /* Once iframe is injected, hide the gradient/play affordance. */
  .story-card__video[data-vimeo-loaded="true"]::before,
  .story-card__video[data-vimeo-loaded="true"]::after {
    display: none;
  }

  /* Closing line + CTA below the story cards */
    
  /* ─── Story modal ────────────────────────────────────── */
  .storymodal {
    position: fixed; inset: 0;
    z-index: 200;
    display: none;
    align-items: center; justify-content: center;
    padding: clamp(16px, 3vw, 40px);
  }
  .storymodal.is-open { display: flex; }
  .storymodal__backdrop {
    position: absolute; inset: 0;
    background: rgba(16, 21, 31, 0.78);
    backdrop-filter: blur(6px);
    cursor: pointer;
  }
  .storymodal__panel {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 720px;
    width: 100%;
    max-height: 88vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    animation: storymodal-in 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  @keyframes storymodal-in {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .storymodal__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    border: 0; padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy-500);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    z-index: 2;
    transition: background 0.15s, transform 0.15s;
  }
  .storymodal__close:hover { background: var(--white); transform: scale(1.06); }
  .storymodal__close svg { width: 18px; height: 18px; }
  .storymodal__inner {
    padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 56px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .storymodal__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--pink-500);
    margin: 0 0 16px;
  }
  .storymodal__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy-700);
    margin: 0 0 24px;
    text-wrap: balance;
  }
  .storymodal__body p {
    font-size: 16px; line-height: 1.7;
    color: var(--navy-700);
    margin: 0 0 16px;
  }
  .storymodal__body p:last-child { margin-bottom: 0; }
  .storymodal__credential {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(62, 80, 104, 0.12);
    font-style: italic;
    font-size: 14px; line-height: 1.55;
    color: var(--navy-400);
  }
  body.modal-open { overflow: hidden; }

  /* ─── Section 13 — Team ───────────────────────────────────── */
  .team {
    padding: clamp(72px, 10vw, 128px) 32px;
  }
  .team__inner { max-width: 1200px; margin: 0 auto; }
  .team__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
  .team__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 13px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--pink-500);
    margin: 0 0 16px;
  }
  .team__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--navy-700);
    margin: 0 0 16px;
  }
  .team__sub {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.55; color: var(--navy-500);
    margin: 0;
  }
  .team__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-bottom: 40px;
  }
  .team__card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px) saturate(110%);
    -webkit-backdrop-filter: blur(8px) saturate(110%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(62, 80, 104, 0.08);
    box-shadow: 0 1px 3px rgba(31, 45, 64, 0.05), 0 12px 32px rgba(31, 45, 64, 0.08);
  }
  a.team__card--link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur-fast);
  }
  a.team__card--link:hover {
    transform: translateY(-2px);
    border-color: rgba(62, 80, 104, 0.18);
    box-shadow: 0 2px 4px rgba(31, 45, 64, 0.08), 0 18px 40px rgba(31, 45, 64, 0.12);
  }
  a.team__card--link:focus-visible {
    outline: 2px solid var(--pink-500);
    outline-offset: 3px;
  }
  .team__photo {
    aspect-ratio: 1 / 1; background: var(--navy-700);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.4); font-size: 12px;
    text-align: center; padding: 12px;
  }
  .team__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .team__info { padding: 18px 18px 22px; }
  .team__name {
    font-family: var(--font-display);
    font-weight: 700; font-size: 17px;
    color: var(--navy-700);
    margin: 0 0 4px; line-height: 1.2;
  }
  .team__role {
    font-family: var(--font-sans);
    font-size: 13px; color: var(--pink-600);
    margin: 0; letter-spacing: 0.02em;
  }
  .team__cta { text-align: center; }
  @media (max-width: 1100px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 720px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }

  /* ─── Section 14 — Reviews ────────────────────────────────── */
  .reviews {
    background: var(--white);
    padding: clamp(32px, 4.5vw, 56px) 32px clamp(28px, 3.5vw, 44px);
  }
  /* Reviews widget header: center + enlarge the 5-star / 669-review
     rating so it reads as the section's focal point. */
  .sbr-feed .sb-feed-header {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px;
    margin: 0 auto 22px !important;
  }
  .sbr-feed .sb-feed-header-rating {
    font-size: 34px !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px;
  }
  .sbr-feed .sb-feed-header-rating-icons { font-size: 1.5em !important; line-height: 1 !important; }
  .sbr-feed .sb-feed-header-rating-subtext { font-size: 15px !important; }
  /* Hide the widget's own black "Reviews" heading — it duplicates the
     pink section eyebrow/title above the feed. */
  .sbr-feed .sb-feed-header-heading { display: none !important; }
  .reviews__inner { max-width: 960px; margin: 0 auto; text-align: center; }
  .reviews__eyebrow {
    font-family: var(--font-accent);
    font-weight: 700; font-size: 13px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--pink-500);
    margin: 0 0 16px;
  }
  .reviews__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--pink-500);
    margin: 0 0 28px;
  }
  .reviews__body p {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.65; color: var(--navy-500);
    margin: 0 0 16px;
    text-wrap: pretty;
  }
  .reviews__widget-slot {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px dashed var(--gray-300);
    padding: 56px 32px;
    margin-top: 40px;
    color: var(--navy-400);
    font-family: var(--font-accent);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ─── Section 15 — Footer placeholder ─────────────────────── */
    
  /* ─── (legacy placeholder) ────────────────────────────────── */
  .placeholder {
    padding: 80px 32px;
    background: var(--gray-50);
    text-align: center;
    border-top: 1px dashed var(--gray-300);
  }
    
  /* ═══════════════════════════════════════════════════════════
     OPTION C — CONTINUOUS GRADIENT, MONOTONIC PINK → NAVY
     ═══════════════════════════════════════════════════════════ */
  body.page-homepage {
    background:
      linear-gradient(
        to bottom,
        #FFF6F1 0%,
        #FFE9EE 10%,
        #FFD9E0 22%,
        #FCDED6 35%,
        #F4E0D8 48%,
        #E8DFE2 60%,
        #D2DDE8 72%,
        #92A6BC 84%,
        #4A5C72 92%,
        #1F2D40 100%
      ) no-repeat;
    background-attachment: fixed;
  }
  .hero, .reassure, .trusted, .partners, .stat-callouts,
  .services, .advanced, .who, .oneteam, .gs,
  .insurance, .triage, .stories, .reviews,
  .team, .footer-ph {
    background: transparent !important;
  }

  /* ─── Reviews widget (Smash Balloon, light mode) ───────────
     Reviews + Team are now mid-page on the gradient (dark
     navy band removed). Widget sits as a transparent shell;
     each individual review becomes a translucent white card
     to lift off the gradient. */
  .sbr-feed {
    background: transparent !important;
    padding: 12px 16px 20px !important;
    margin: 0 !important;
  }
  @media (min-width: 721px) {
    .sbr-feed {
      padding-top: 16px !important;
      padding-bottom: 24px !important;
      padding-left: clamp(20px, 3vw, 40px) !important;
      padding-right: clamp(20px, 3vw, 40px) !important;
    }
    .reviews { padding-bottom: 24px !important; }
  }
  .sbr-feed .sb-feed-container,
  .sbr-feed .sb-carousel-wrap {
    background: transparent !important;
  }
  /* Strip widget's all-caps treatment everywhere */
  .sbr-feed,
  .sbr-feed *:not(svg):not(path):not(circle):not(rect) {
    text-transform: none !important;
    letter-spacing: 0 !important;
  }
  /* Text color: navy by default; stars stay pink (rule below). */
  .sbr-feed,
  .sbr-feed h1, .sbr-feed h2, .sbr-feed h3, .sbr-feed h4,
  .sbr-feed p, .sbr-feed span, .sbr-feed a,
  .sbr-feed [class*="title"],
  .sbr-feed [class*="header"],
  .sbr-feed [class*="meta"],
  .sbr-feed [class*="summary"],
  .sbr-feed [class*="count"],
  .sbr-feed [class*="reviewer"],
  .sbr-feed [class*="author"] {
    color: var(--navy-700) !important;
  }
  .sbr-feed *:not(svg):not(path):not(circle):not(rect) {
    color: var(--navy-700) !important;
    opacity: 1 !important;
  }
  .sbr-feed [class*="meta"],
  .sbr-feed [class*="date"],
  .sbr-feed time {
    color: var(--navy-500) !important;
  }
  /* Stars stay brand pink so the rating reads instantly. */
  .sbr-feed [class*="star"],
  .sbr-feed svg[class*="star"],
  .sbr-feed [class*="rating"] svg,
  .sbr-feed [class*="rating"] [class*="star"] {
    color: var(--pink-500) !important;
    fill: var(--pink-500) !important;
  }
  /* "Write a Review" button: brand pink with white text. */
  .sbr-feed [class*="write-review"],
  .sbr-feed [class*="write_review"],
  .sbr-feed [class*="cta-button"],
  .sbr-feed a[href*="writereview"],
  .sbr-feed button[class*="review"] {
    background: var(--pink-500) !important;
    color: var(--white) !important;
    border: 0 !important;
  }
  .sbr-feed [class*="write-review"] *,
  .sbr-feed [class*="write_review"] *,
  .sbr-feed [class*="cta-button"] *,
  .sbr-feed a[href*="writereview"] * {
    color: var(--white) !important;
  }
  .sbr-feed [class*="write-review"]:hover,
  .sbr-feed [class*="write_review"]:hover,
  .sbr-feed [class*="cta-button"]:hover,
  .sbr-feed a[href*="writereview"]:hover {
    background: var(--pink-600) !important;
  }
  /* Pagination dots brand pink */
  .sbr-feed .sb-pagination button[aria-current="true"],
  .sbr-feed .sb-dots .is-active,
  .sbr-feed [class*="pagination"] [class*="active"] {
    background: var(--pink-500) !important;
  }
  /* Carousel arrows: positioned at the bottom of the widget so
     they do not overlap review text. No pill background. */
  .sbr-feed [class*="prev"],
  .sbr-feed [class*="next"],
  .sbr-feed [class*="arrow"],
  .sbr-feed button[aria-label*="rev" i],
  .sbr-feed button[aria-label*="ext" i] {
    top: auto !important;
    bottom: 8px !important;
    transform: none !important;
    z-index: 5 !important;
    color: var(--navy-700) !important;
    background: transparent !important;
    border: 0 !important;
  }
  .sbr-feed [class*="prev"],
  .sbr-feed button[aria-label*="rev" i] {
    left: 24% !important;
    right: auto !important;
  }
  .sbr-feed [class*="next"],
  .sbr-feed button[aria-label*="ext" i] {
    right: 24% !important;
    left: auto !important;
  }
  .sbr-feed [class*="carousel"],
  .sbr-feed .sb-carousel-wrap {
    padding-bottom: 40px !important;
  }
  /* Reviewer avatar: keep circular, but soften the gray background
     ring the widget paints behind partially-transparent avatars. */
  .sbr-feed .sb-item-author-img,
  .sbr-feed [class*="author-img"],
  .sbr-feed [class*="avatar"] {
    background: transparent !important;
  }

  /* SECTION 5 (Advanced) — lightened for monotonic descent */
  .advanced { color: var(--navy-700) !important; }
  .advanced .advanced__eyebrow { color: var(--pink-500) !important; }
  .advanced .advanced__title { color: var(--navy-700) !important; }
  .advanced .advanced__body p,
  .advanced .advanced__list li,
  .advanced .advanced__sub { color: var(--navy-600) !important; }
  .advanced .advanced__list li::before { background: var(--pink-500) !important; }
  /* Lead-in line under the H2: slightly emphasized, sets up the
     section without dropping straight into body copy. */
  .advanced__lead {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.4;
    color: var(--pink-600) !important;
    margin: 0 0 20px;
    font-style: italic;
    text-wrap: balance;
  }
  /* Advanced section CTA — mirrors .service-card__cta. */
  .advanced__cta {
    display: inline-block;
    margin-top: 12px;
    align-self: flex-start;
    font-family: var(--font-accent);
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--pink-500) !important;
    text-decoration: none;
    border-bottom: 2px solid var(--pink-200);
    padding-bottom: 2px;
    transition: color var(--dur-fast), border-bottom-color var(--dur-fast);
  }
  .advanced__cta:hover { color: var(--pink-700) !important; border-bottom-color: var(--pink-500); }
  .advanced__cta::after { content: " \2192"; }
  .advanced__cta:focus-visible {
    outline: 2px solid var(--pink-500);
    outline-offset: 3px;
  }

  /* TEAM background is set above with .reviews (unified dark band). */
  /* ─── Unified card treatment ───────────────────────────────
     All content cards share ONE frosted-white fill so they read
     consistently against the gradient instead of mixing bright
     white, gradient-tinted, and one-off values. 0.78 opacity keeps
     a hint of the gradient showing through (cards still feel part
     of it) while staying opaque enough for dense body copy.
     Notes:
     - Stat callouts are intentionally NOT cards (white text over a
       full-width photo), so they are excluded here.
     - Office cards get a more opaque value on the dark navy band
       below (see .offices .offices__office).
     - .story-card (not .story) is the patient-story card class; the
       prior rule targeted .story and silently missed them. */
  .who__path, .story-card,
  .offices__office, .insurance__carrier,
  .triage__inner, .trusted__inner, .gs__step,
  .service-card, .team__card {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(8px) saturate(110%);
    -webkit-backdrop-filter: blur(8px) saturate(110%);
    box-shadow: 0 1px 3px rgba(31, 45, 64, 0.05), 0 12px 32px rgba(31, 45, 64, 0.08);
  }

  /* ─── Reviews: each review is its own card ──────────────────
     The big .reviews__widget-slot container is NOT a card (removed
     from the unified rule above); instead each Smash Balloon review
     (.sb-post-item-wrap) gets the frosted card treatment, so the
     gradient shows between them and the section reads as a row of
     reviews rather than one large white block. */
  .reviews__widget-slot {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
  }
  .sbr-feed .sb-post-item-wrap {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(8px) saturate(110%);
    -webkit-backdrop-filter: blur(8px) saturate(110%);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(31, 45, 64, 0.05), 0 12px 32px rgba(31, 45, 64, 0.08);
    padding: 24px !important;
  }
  /* Hide the single-location "Write a Review" button (it links to one
     Google place; we have many locations, so it sends people to the
     wrong place). */
  .sbr-feed .sb-feed-header-btn { display: none !important; }

  /* Reviews — lighten body copy on mobile. The body gradient has cooled
     to mid gray-blue by the time you reach Reviews on a phone, and dark
     navy body copy reads as low-contrast against it. Title stays pink
     (intentional); we only lift the supporting paragraphs. */

  /* ─── Widow prevention (sitewide on homepage) ──────────────
     Per the feedback_widow_words rule: no heading or sentence
     may wrap to a final line containing a single word. Apply
     text-wrap: balance to every heading (h1-h4) and pretty to
     every paragraph in the homepage. Browser support: Chrome
     114+, Safari 17.5+, Firefox 121+. Older browsers ignore
     gracefully. Elements that already have text-wrap set keep
     their explicit value (this rule has lower specificity). */
  body.page-homepage h1,
  body.page-homepage h2,
  body.page-homepage h3,
  body.page-homepage h4 {
    text-wrap: balance;
  }
  body.page-homepage p {
    text-wrap: pretty;
  }

  /* ─── Top-of-page rhythm ───────────────────────────────────
     The collapsed "You're Not Failing" toggle (.reassure) was
     floating in a ~144px gap on each side: the sitewide section
     padding (~72px) stacked from hero-bottom + toggle-top, then
     toggle-bottom + Referral-top. Pull hero -> toggle -> Referral
     together so the button reads as a bridge, not an isolated band.
     body.page-homepage beats the sitewide `body.full-width-content
     section` standard on specificity. The EXPANDED Care Team panel
     keeps its top breathing room via .reassure__region margin-top
     (32px), so tightening section padding does not crowd it. */
  body.page-homepage .hero:not(.hero--immersive) { padding-bottom: clamp(20px, 3vw, 36px); }
  body.page-homepage .reassure {
    padding-top: clamp(12px, 1.8vw, 20px);
    padding-bottom: clamp(12px, 1.8vw, 20px);
  }
  body.page-homepage .trusted { padding-top: clamp(20px, 3vw, 36px); }

  /* ═══════════════════════════════════════════════════════════
     TOP-OF-PAGE SURFACING STRIPS (added 2026-05-22)
     Two thin bands injected directly under the hero:
       .hero-awards — three award badges (first-viewport trust)
       .locstrip    — geographic coverage; chips anchor to #locations
     Neither class is in the transparent-section list above, so each
     controls its own background over the fixed page gradient. The
     full Awards & Recognition section (.aw-section) and the full
     Locations section (.offices) remain intact further down.
     ═══════════════════════════════════════════════════════════ */

  /* Smooth in-page anchor scrolling (Locations chips -> #locations). */
  html { scroll-behavior: smooth; }
  /* Offset the Locations target below the fixed 76px nav. */
  #locations { scroll-margin-top: 96px; }

  /* ─── Awards strip — first-viewport trust signals ─────────── */
  /* Prefixed with .full-width-content so this beats nav.css's global
     `body.full-width-content section { padding: clamp(40px,5vw,72px) 0 }`
     (specificity 0,1,2), which otherwise forces 72px of vertical padding
     onto this thin one-row strip. */
  .full-width-content .hero-awards {
    padding: clamp(10px, 1.4vw, 16px) 32px clamp(10px, 1.4vw, 16px);
  }
  .hero-awards__row {
    list-style: none;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(20px, 4vw, 56px);
  }
  .hero-awards__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
    max-width: 210px;
  }
  .hero-awards__logo {
    width: clamp(42px, 4.5vw, 56px);
    height: clamp(42px, 4.5vw, 56px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-awards__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .hero-awards__label {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 11.5px;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: var(--navy-400);
    text-align: center;
    text-wrap: balance;
  }
  @media (max-width: 600px) {
    /* Keep the three badges in one horizontal row; let labels wrap. */
    .hero-awards__row { gap: 10px; flex-wrap: nowrap; }
    .hero-awards__item { flex: 1 1 0; max-width: none; }
    .hero-awards__logo { width: 46px; height: 46px; }
    .hero-awards__label { font-size: 10px; letter-spacing: 0; }
  }

  /* ─── Locations strip — chips on the page gradient ────────── */
  /* Prefixed with .full-width-content so this beats nav.css's global
     `body.full-width-content section` 72px vertical padding. */
  .full-width-content .locstrip {
    /* Transparent: chips sit directly on the gradient, no band over
       the ombre (matches the gradient-as-sole-bg design decision). */
    background: transparent;
    padding: 6px 0 clamp(10px, 1.4vw, 16px);
  }
  .locstrip__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
    line-height: 1.6;
    text-wrap: pretty;
  }
  .locstrip__link {
    text-decoration: none;
    color: inherit;
  }
  .locstrip__lead {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-500);
    margin-right: 6px;
  }
  .locstrip__cities {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: 0.01em;
    color: var(--navy-600);
  }
  .locstrip__link:hover .locstrip__cities,
  .locstrip__link:focus-visible .locstrip__cities {
    color: var(--pink-700);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .locstrip__link:focus-visible {
    outline: 2px solid var(--pink-500);
    outline-offset: 2px;
    border-radius: 4px;
  }

/* Sitewide section spacing standard now lives in nav.css. */
