:root {
      --bg: oklch(0% 0 0);
      --surface: oklch(13.92% 0.0506 343.83);
      --surface-raised: oklch(19.49% 0.0708 343.83);
      --fg: oklch(88.60% 0.0329 52.30);
      --muted: oklch(75.21% 0.0899 342.61);
      --border: oklch(46.40% 0.1686 343.83);
      --accent: oklch(52.89% 0.2150 352.09);
      --accent-soft: oklch(75.21% 0.0899 342.61);
      --warm: oklch(88.60% 0.0329 52.30);
      --plum: oklch(46.40% 0.1686 343.83);
      --accent-ink: oklch(0% 0 0);
      --danger: oklch(62% 0.2 28);
      --display: Mersad, "Avenir Next", "Helvetica Neue", sans-serif;
      --body: "Wix Madefor Text", "Avenir Next", "Helvetica Neue", sans-serif;
      --mono: "SFMono-Regular", Consolas, monospace;
      --ease: cubic-bezier(.22, 1, .36, 1);
      --shadow-action: 0 16px 38px color-mix(in oklch, var(--accent) 28%, transparent);
      --max: 1160px;
    }

    * { box-sizing: border-box; }
    html { background: var(--bg); color-scheme: dark; scroll-behavior: smooth; scroll-padding-top: 88px; }
    body {
      margin: 0;
      min-width: 320px;
      overflow-x: hidden;
      background: var(--bg);
      color: var(--fg);
      font-family: var(--body);
      font-size: 16px;
      line-height: 1.65;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }
    body.menu-open { overflow: hidden; }
    button, input, select { font: inherit; }
    button, a { -webkit-tap-highlight-color: transparent; }
    img { display: block; width: 100%; }
    a { color: inherit; }

    .skip-link {
      position: fixed;
      z-index: 100;
      top: 8px;
      left: 8px;
      transform: translateY(-150%);
      padding: 12px 16px;
      border-radius: 8px;
      background: var(--fg);
      color: var(--bg);
      font-weight: 700;
      opacity: 0;
      pointer-events: none;
      transition: transform 180ms var(--ease), opacity 180ms ease;
    }
    .skip-link:focus-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }

    .site-header {
      position: fixed;
      z-index: 50;
      top: 0;
      left: 0;
      width: 100%;
      border-bottom: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
      background: color-mix(in oklch, var(--bg) 84%, transparent);
      backdrop-filter: blur(18px) saturate(125%);
      transition: background 240ms ease, box-shadow 240ms ease;
    }
    .site-header.scrolled {
      background: color-mix(in oklch, var(--bg) 94%, transparent);
      box-shadow: 0 10px 36px color-mix(in oklch, var(--bg) 82%, transparent);
    }
    .nav-shell {
      width: min(calc(100% - 40px), 1360px);
      min-height: 68px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: inline-flex;
      min-height: 44px;
      align-items: center;
      text-decoration: none;
    }
    .brand-logo-image {
      width: auto;
      height: clamp(58px, 10vw, 80px);
      flex: 0 0 auto;
      object-fit: contain;
    }
    .desktop-nav { display: flex; align-items: center; gap: 30px; }
    .desktop-nav a:not(.button) {
      position: relative;
      padding: 12px 0;
      color: color-mix(in oklch, var(--fg) 78%, var(--muted));
      font-size: 14px;
      text-decoration: none;
      transition: color 180ms ease;
    }
    .desktop-nav a:not(.button)::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 7px;
      left: 0;
      height: 1px;
      transform: scaleX(0);
      background: var(--accent);
      transition: transform 220ms var(--ease);
    }
    .desktop-nav a:hover { color: var(--fg); }
    .desktop-nav a:hover::after { transform: scaleX(1); }
    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      padding: 0;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--surface);
      color: var(--fg);
      cursor: pointer;
    }
    .menu-toggle svg { width: 22px; height: 22px; }

    .button {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 20px;
      border: 1px solid transparent;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      line-height: 1.2;
      cursor: pointer;
      transition: transform 180ms var(--ease), background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }
    .button svg { width: 18px; height: 18px; transition: transform 180ms var(--ease); }
    .button:hover { transform: translateY(-2px); }
    .button:hover svg { transform: translateX(3px); }
    .button:active { transform: translateY(0); }
    .button-primary {
      background: var(--accent);
      color: var(--accent-ink);
      box-shadow: var(--shadow-action), inset 0 1px color-mix(in oklch, var(--fg) 25%, transparent);
    }
    .button-primary:hover { background: color-mix(in oklch, var(--accent) 90%, var(--accent-soft)); box-shadow: 0 20px 48px color-mix(in oklch, var(--accent) 36%, transparent); }
    .button-secondary { border-color: var(--border); background: color-mix(in oklch, var(--surface) 84%, transparent); color: var(--fg); }
    .button-secondary:hover { border-color: color-mix(in oklch, var(--accent-soft) 45%, var(--border)); }
    :focus-visible { outline: 3px solid var(--accent-soft); outline-offset: 4px; }

    .mobile-panel {
      position: fixed;
      z-index: 45;
      inset: 68px 0 auto;
      display: grid;
      visibility: hidden;
      transform: translateY(-16px);
      opacity: 0;
      padding: 24px 20px 32px;
      border-bottom: 1px solid var(--border);
      background: color-mix(in oklch, var(--bg) 97%, transparent);
      backdrop-filter: blur(22px);
      transition: opacity 180ms ease, transform 240ms var(--ease), visibility 240ms;
    }
    .mobile-panel.open { visibility: visible; transform: translateY(0); opacity: 1; }
    .mobile-panel a:not(.button) { min-height: 52px; display: flex; align-items: center; border-bottom: 1px solid var(--border); text-decoration: none; }
    .mobile-panel .button { margin-top: 24px; }

    main { isolation: isolate; }
    .hero {
      position: relative;
      min-height: 900px;
      height: 100svh;
      display: grid;
      place-items: center;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }
    .hero-media, .hero-shade { position: absolute; inset: 0; }
    .hero-media img { height: 100%; object-fit: cover; object-position: 56% center; filter: saturate(.84) contrast(1.06); }
    .hero-shade {
      background:
        linear-gradient(180deg, color-mix(in oklch, var(--bg) 52%, transparent), color-mix(in oklch, var(--bg) 76%, transparent) 68%, var(--bg)),
        linear-gradient(90deg, color-mix(in oklch, var(--bg) 46%, transparent), color-mix(in oklch, var(--bg) 16%, transparent) 48%, color-mix(in oklch, var(--bg) 35%, transparent));
    }
    .hero::after {
      content: "";
      position: absolute;
      right: 10%;
      bottom: -100px;
      width: min(48vw, 680px);
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, color-mix(in oklch, var(--accent) 18%, transparent), transparent 68%);
      filter: blur(22px);
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      width: min(calc(100% - 40px), 1020px);
      margin-top: 56px;
      text-align: center;
    }
    .eyebrow {
      margin: 0 0 20px;
      color: var(--accent-soft);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
    }
    .hero h1, .section-title, .cta-title {
      margin: 0;
      font-family: var(--display);
      font-weight: 700;
      letter-spacing: -.045em;
      text-wrap: balance;
    }
    .hero h1 { font-size: clamp(3rem, 6.4vw, 5.35rem); line-height: .98; }
    .accent-text { color: var(--accent-soft); }
    .hero-copy { width: min(100%, 720px); margin: 28px auto 0; color: color-mix(in oklch, var(--fg) 72%, var(--muted)); font-size: clamp(1rem, 1.5vw, 1.18rem); }
    .hero-copy p { margin: 0; }
    .hero-copy p + p { margin-top: 12px; }
    .hero-actions { margin-top: 34px; display: flex; justify-content: center; }
    .hero-actions .button { min-width: 240px; min-height: 60px; font-size: 17px; }
    .hero-facts {
      width: min(100%, 760px);
      margin: 32px auto 0;
      padding: 20px 0 0;
      display: flex;
      justify-content: center;
      gap: 0;
      border-top: 1px solid color-mix(in oklch, var(--border) 58%, transparent);
      list-style: none;
    }
    .hero-facts li { padding: 0 22px; color: var(--fg); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .hero-facts li + li { border-left: 1px solid color-mix(in oklch, var(--border) 58%, transparent); }
    .scroll-cue {
      position: absolute;
      z-index: 2;
      bottom: 28px;
      left: 50%;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      transform: translateX(-50%);
      color: var(--muted);
      text-decoration: none;
      animation: bob 2.4s ease-in-out infinite;
    }
    .scroll-cue svg { width: 20px; height: 20px; }
    @keyframes bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 6px; } }

    .section { position: relative; padding: clamp(88px, 10vw, 144px) 0; }
    .section-shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
    .section-kicker { margin: 0 0 16px; color: var(--accent-soft); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
    .section-title { max-width: 940px; font-size: clamp(2.35rem, 5vw, 4.15rem); line-height: 1.02; }
    .section-lead { max-width: 720px; margin: 28px 0 0; color: var(--muted); font-size: 18px; }
    .rule { width: min(calc(100% - 40px), var(--max)); height: 1px; margin: 0 auto; background: linear-gradient(90deg, transparent, var(--border) 18%, color-mix(in oklch, var(--accent) 44%, var(--border)), var(--border) 82%, transparent); }

    .about-grid { margin-top: 56px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr); gap: clamp(48px, 8vw, 104px); align-items: start; }
    .body-copy { color: var(--muted); }
    .body-copy p { margin: 0 0 24px; }
    .body-copy strong { color: var(--fg); font-weight: 650; }
    .body-copy .accent-line { color: var(--accent-soft); font-weight: 600; }
    .portrait-card { position: sticky; top: 108px; margin: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }
    .portrait-card img { aspect-ratio: 4 / 5; object-fit: cover; object-position: 77% center; }
    .portrait-card figcaption { padding: 14px 16px; color: var(--muted); font-size: 13px; }

    .tension { padding-top: 96px; }
    .tension-intro { max-width: 860px; }
    .tension .section-title { max-width: 860px; }
    .signal-list { margin: 52px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; list-style: none; }
    .signal-list li { min-height: 144px; padding: 24px; border: 1px solid var(--border); border-radius: 12px; background: color-mix(in oklch, var(--surface) 66%, transparent); color: var(--muted); }
    .signal-list span { display: block; margin-bottom: 20px; color: var(--accent-soft); font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .12em; }
    .tension-close { margin: 40px 0 0; color: var(--fg); font-size: 20px; font-weight: 650; }

    .bridge-callout {
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      color: var(--fg);
      font-family: var(--display);
      font-size: clamp(1.3rem, 2.4vw, 1.85rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -.025em;
    }

    .definition { overflow: hidden; background: var(--surface); }
    .definition::before { content: ""; position: absolute; inset: 0; background: url("assets/images/medical-glow-up-community.jpg") center / cover no-repeat; opacity: .08; filter: grayscale(.45); }
    .definition .section-shell { position: relative; }
    .definition-intro { max-width: 820px; }
    .definition-intro strong { color: var(--fg); }
    .definition-intro .accent-line { color: var(--accent-soft); }
    .attribute-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .attribute-card { min-height: 112px; display: flex; align-items: center; gap: 18px; padding: 20px; border: 1px solid var(--border); border-radius: 12px; background: color-mix(in oklch, var(--bg) 84%, transparent); }
    .attribute-icon, .pillar-icon { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 9px; background: var(--accent-soft); color: var(--bg); box-shadow: 0 10px 28px color-mix(in oklch, var(--accent) 18%, transparent); }
    .attribute-icon svg, .pillar-icon svg { width: 24px; height: 24px; }
    .attribute-card p { margin: 0; font-weight: 650; line-height: 1.35; }
    .definition-close { margin: 50px 0 0; text-align: center; color: var(--muted); }
    .definition-close strong { display: block; color: var(--accent-soft); font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.1rem); }

    .difference-head { text-align: center; }
    .difference-head .section-title { margin-inline: auto; }
    .difference-grid { margin-top: 64px; display: grid; grid-template-columns: .84fr 1fr; gap: clamp(48px, 8vw, 96px); align-items: center; }
    .difference-copy { color: var(--muted); font-size: 18px; }
    .difference-copy p { margin: 0 0 20px; }
    .difference-copy strong { color: var(--fg); }
    .difference-copy .accent-line { color: var(--accent-soft); font-weight: 650; }
    .difference-photo { margin: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }
    .difference-photo img { aspect-ratio: 3 / 2; object-fit: cover; }

    .pillars { padding-top: 40px; }
    .pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .definition .pillar-grid { margin-top: 64px; }
    .pillar-card { min-height: 260px; padding: 32px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease; }
    .pillar-card:hover { transform: translateY(-5px); border-color: color-mix(in oklch, var(--accent-soft) 42%, var(--border)); background: var(--surface-raised); }
    .pillar-card h3 { margin: 24px 0 10px; font-family: var(--display); font-size: 25px; line-height: 1.15; letter-spacing: -.025em; }
    .pillar-card p { margin: 0; color: var(--muted); }

    .team-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .team-card { padding: 24px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease; }
    .team-card:hover { transform: translateY(-5px); border-color: color-mix(in oklch, var(--accent-soft) 42%, var(--border)); background: var(--surface-raised); }
    .team-photo { margin: 0 0 20px; aspect-ratio: 2 / 1; overflow: hidden; border: 1px solid var(--border); border-radius: 12px; background: var(--bg); }
    .team-photo img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
    .team-name { margin: 0 0 4px; font-family: var(--display); font-size: 22px; line-height: 1.2; letter-spacing: -.02em; }
    .team-role { margin: 0 0 14px; color: var(--accent-soft); font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .team-bio { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

    .programs { overflow: hidden; background: color-mix(in oklch, var(--surface) 72%, var(--bg)); }
    .programs-head { max-width: 900px; }
    .program-grid { margin-top: 56px; display: grid; grid-template-columns: 1.14fr .86fr; gap: 20px; align-items: stretch; }
    .program-card {
      min-width: 0;
      padding: clamp(28px, 4vw, 48px);
      display: flex;
      flex-direction: column;
      border: 1px solid color-mix(in oklch, var(--border) 66%, var(--bg));
      border-radius: 16px;
      background: var(--bg);
      box-shadow: 0 24px 70px color-mix(in oklch, var(--bg) 72%, transparent);
    }
    .program-card.featured { border-color: color-mix(in oklch, var(--accent) 62%, var(--border)); }
    .program-card.continuity { background: var(--warm); color: var(--bg); }
    .program-kicker { margin: 0 0 18px; color: var(--accent-soft); font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .continuity .program-kicker { color: var(--plum); }
    .program-title { margin: 0; font-family: var(--display); font-size: clamp(2.4rem, 4.8vw, 4.6rem); line-height: .94; letter-spacing: -.055em; text-wrap: balance; }
    .continuity .program-title { font-size: clamp(2.2rem, 4vw, 3.65rem); }
    .program-media { margin: 26px 0 0; aspect-ratio: 2 / 1; overflow: hidden; border: 1px solid color-mix(in oklch, var(--accent) 44%, var(--border)); border-radius: 12px; background: var(--surface); }
    .program-media img { height: 100%; object-fit: cover; object-position: center; }
    .featured .program-media img { object-position: center 44%; }
    .continuity .program-media { border-color: color-mix(in oklch, var(--plum) 42%, var(--warm)); background: var(--bg); }
    .program-promise { margin: 22px 0 0; color: var(--muted); font-size: 17px; }
    .continuity .program-promise { color: color-mix(in oklch, var(--bg) 72%, var(--plum)); }
    .program-meta { margin: 26px 0 0; padding: 18px 0; display: flex; flex-wrap: wrap; gap: 8px 22px; border-top: 1px solid color-mix(in oklch, var(--border) 62%, var(--bg)); border-bottom: 1px solid color-mix(in oklch, var(--border) 62%, var(--bg)); }
    .program-meta span { color: var(--fg); font-size: 12px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
    .continuity .program-meta { border-color: color-mix(in oklch, var(--plum) 36%, var(--warm)); }
    .continuity .program-meta span { color: var(--bg); }
    .program-list { margin: 28px 0 34px; padding: 0; display: grid; gap: 13px; list-style: none; }
    .program-list li { position: relative; padding-left: 24px; color: color-mix(in oklch, var(--fg) 78%, var(--muted)); }
    .program-list li::before { content: ""; position: absolute; top: .7em; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 18%, transparent); }
    .continuity .program-list li { color: color-mix(in oklch, var(--bg) 76%, var(--plum)); }
    .continuity .program-list li::before { background: var(--plum); box-shadow: 0 0 0 4px color-mix(in oklch, var(--plum) 18%, transparent); }
    .program-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
    .program-note { margin: 0; color: var(--muted); font-size: 12px; }
    .continuity .button-secondary { border-color: var(--bg); background: var(--bg); color: var(--warm); box-shadow: 0 14px 34px color-mix(in oklch, var(--bg) 28%, transparent); }
    .continuity .program-note { color: color-mix(in oklch, var(--bg) 70%, var(--plum)); }

    .journey-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: journey; }
    .journey-step { position: relative; padding: 30px 0 0; border-top: 1px solid var(--border); counter-increment: journey; }
    .journey-step::before { content: "0" counter(journey); display: block; margin-bottom: 28px; color: var(--accent-soft); font-family: var(--mono); font-size: 13px; letter-spacing: .12em; }
    .journey-step h3 { margin: 0 0 12px; font-family: var(--display); font-size: 27px; line-height: 1.1; letter-spacing: -.03em; }
    .journey-step p { margin: 0; color: var(--muted); }

    .outcomes { background: var(--warm); color: var(--bg); }
    .outcomes .section-kicker { color: var(--plum); }
    .outcomes .accent-text { color: var(--plum); }
    .outcome-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid color-mix(in oklch, var(--plum) 32%, var(--warm)); border-left: 1px solid color-mix(in oklch, var(--plum) 32%, var(--warm)); }
    .outcome { min-height: 178px; padding: 28px; border-right: 1px solid color-mix(in oklch, var(--plum) 32%, var(--warm)); border-bottom: 1px solid color-mix(in oklch, var(--plum) 32%, var(--warm)); }
    .outcome span { color: var(--plum); font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
    .outcome h3 { margin: 18px 0 8px; font-family: var(--display); font-size: 26px; line-height: 1.12; letter-spacing: -.03em; }
    .outcome p { margin: 0; color: color-mix(in oklch, var(--bg) 74%, var(--plum)); }

    .community-story { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(40px, 7vw, 86px); align-items: center; }
    .community-story figure { margin: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 16px; }
    .community-story figure img { aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
    .community-proof { max-width: 520px; }
    .community-number { margin: 26px 0 8px; color: var(--accent-soft); font-family: var(--display); font-size: clamp(3.7rem, 8vw, 7rem); font-weight: 700; line-height: .88; letter-spacing: -.06em; }
    .community-proof .section-lead { margin-top: 20px; }

    .testimonials-track { margin-top: 56px; display: flex; gap: 18px; padding-bottom: 12px; overflow-x: auto; scroll-snap-type: x proximity; }
    .testimonial-card { position: relative; flex: 0 0 auto; width: 210px; overflow: hidden; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); scroll-snap-align: start; }
    .testimonial-media { position: relative; aspect-ratio: 9 / 16; }
    .testimonial-media iframe { width: 100%; height: 100%; border: 0; display: block; }
    .testimonial-caption { padding: 14px 16px 18px; }
    .testimonial-name { margin: 0 0 4px; font-family: var(--display); font-size: 15px; line-height: 1.2; color: var(--fg); font-weight: 700; letter-spacing: -.01em; }
    .testimonial-quote { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.5; }
    .testimonial-placeholder { position: absolute; inset: 0; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 20px; border: 0; background: var(--surface); color: var(--muted); font-family: var(--body); font-size: 12px; line-height: 1.5; text-align: center; cursor: pointer; transition: background 220ms ease; }
    .testimonial-placeholder:hover { background: var(--surface-raised); }
    .testimonial-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
    .testimonial-placeholder.has-thumb { background: var(--bg); }
    .testimonial-placeholder.has-thumb::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, color-mix(in oklch, var(--bg) 15%, transparent), color-mix(in oklch, var(--bg) 55%, transparent) 70%, color-mix(in oklch, var(--bg) 80%, transparent)); }
    .testimonial-placeholder.has-thumb > * { position: relative; }
    .testimonial-play-icon { width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-action); }
    .testimonial-play-icon svg { width: 20px; height: 20px; }

    .faq-list { margin-top: 48px; border-top: 1px solid var(--border); }
    .faq-list details { border-bottom: 1px solid var(--border); }
    .faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--fg); font-size: 17px; font-weight: 700; cursor: pointer; list-style: none; }
    .faq-list summary::-webkit-details-marker { display: none; }
    .faq-list summary::after { content: "+"; color: var(--accent-soft); font-family: var(--display); font-size: 28px; font-weight: 400; transition: transform 180ms ease; }
    .faq-list details[open] summary::after { transform: rotate(45deg); }
    .faq-list details p { max-width: 760px; margin: -2px 0 24px; color: var(--muted); }

    .community { padding-top: 80px; }
    .community-heading { max-width: 720px; margin-bottom: 40px; }
    .community-heading .section-title { font-size: clamp(2rem, 4vw, 3.2rem); }
    .mosaic { height: 440px; display: grid; grid-template-columns: 1.2fr .8fr 1fr; grid-template-rows: 1.1fr .9fr; gap: 12px; }
    .mosaic figure { margin: 0; min-width: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
    .mosaic figure:first-child { grid-row: 1 / 3; }
    .mosaic figure:last-child { grid-column: 2 / 4; }
    .mosaic img { --zoom: 1; height: 100%; object-fit: cover; transform: scale(var(--zoom)); transition: transform 700ms var(--ease), filter 400ms ease; }
    .mosaic figure:nth-child(1) img { object-position: 10% center; }
    .mosaic figure:nth-child(2) img { --zoom: 1.45; object-position: 38% center; }
    .mosaic figure:nth-child(3) img { --zoom: 1.6; object-position: 90% center; }
    .mosaic figure:nth-child(4) img { --zoom: 1.08; object-position: center 62%; }
    .mosaic figure:hover img { transform: scale(calc(var(--zoom) + .035)); filter: saturate(1.08); }

    .final-cta { position: relative; min-height: 700px; display: grid; align-items: center; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .final-cta-bg, .final-cta-shade { position: absolute; inset: 0; }
    .final-cta-bg img { height: 100%; object-fit: cover; object-position: center; filter: saturate(.75); }
    .final-cta-shade { background: linear-gradient(90deg, var(--bg) 0%, color-mix(in oklch, var(--bg) 88%, transparent) 48%, color-mix(in oklch, var(--bg) 42%, transparent)); }
    .final-cta .section-shell { position: relative; z-index: 2; }
    .final-cta-content { max-width: 720px; }
    .cta-title { font-size: clamp(2.75rem, 6vw, 5rem); line-height: 1; }
    .final-cta p { max-width: 580px; margin: 24px 0 30px; color: color-mix(in oklch, var(--fg) 75%, var(--muted)); font-size: 18px; }
    .final-cta .button { min-width: 260px; min-height: 60px; }

    .site-footer { padding: 56px 0 36px; }
    .footer-shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; display: grid; justify-items: center; gap: 24px; text-align: center; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; }
    .footer-links a { min-height: 44px; display: inline-flex; align-items: center; color: var(--muted); font-size: 13px; text-decoration: none; }
    .footer-links a:hover { color: var(--fg); }
    .legal { margin: 0; color: color-mix(in oklch, var(--muted) 72%, var(--bg)); font-size: 12px; }


    .js .reveal { opacity: 1; transform: translateY(20px); transition: transform 760ms var(--ease); }
    .js .reveal.is-visible { transform: translateY(0); }
    .js .reveal[data-delay="1"] { transition-delay: 90ms; }
    .js .reveal[data-delay="2"] { transition-delay: 180ms; }
    .js .reveal[data-delay="3"] { transition-delay: 270ms; }

    @media (max-width: 980px) {
      .desktop-nav { display: none; }
      .menu-toggle { display: inline-flex; }
      .hero-media img { object-position: right center; }
      .final-cta-bg img { object-position: right center; }
      .about-grid, .difference-grid { grid-template-columns: 1fr; }
      .about-grid { gap: 48px; }
      .portrait-card { position: relative; top: auto; width: min(100%, 560px); }
      .portrait-card img { aspect-ratio: 4 / 3; object-position: 75% 34%; }
      .signal-list { grid-template-columns: 1fr; }
      .signal-list li { min-height: auto; }
      .attribute-grid { grid-template-columns: repeat(2, 1fr); }
      .difference-photo { width: min(100%, 680px); }
      .program-grid, .community-story { grid-template-columns: 1fr; }
      .journey-grid { gap: 20px; }
      .community-story figure { width: min(100%, 720px); }
    }

    @media (max-width: 720px) {
      .nav-shell { width: min(calc(100% - 32px), 1360px); }
      .brand-logo-image { height: 56px; }
      .hero { min-height: 900px; padding-top: 88px; align-items: start; }
      .hero-media img { object-position: right center; }
      .final-cta-bg img { object-position: right center; }
      .hero-shade { background: linear-gradient(180deg, color-mix(in oklch, var(--bg) 62%, transparent), color-mix(in oklch, var(--bg) 77%, transparent) 72%, var(--bg)); }
      .hero-content { width: min(calc(100% - 32px), 1020px); margin-top: 40px; }
      .hero h1 { font-size: clamp(2.8rem, 13.4vw, 4.5rem); }
      .hero-copy { font-size: 15px; }
      .hero-actions .button { width: 100%; min-width: 0; }
      .hero-facts { flex-direction: column; align-items: center; gap: 8px; }
      .hero-facts li { padding: 0; }
      .hero-facts li + li { border-left: 0; }
      .section-shell, .rule { width: min(calc(100% - 32px), var(--max)); }
      .section { padding: 88px 0; }
      .section-title { font-size: clamp(2.15rem, 10.4vw, 3.15rem); }
      .section-lead, .difference-copy { font-size: 16px; }
      .attribute-grid, .pillar-grid, .team-grid { grid-template-columns: 1fr; }
      .program-grid, .journey-grid, .outcome-grid { grid-template-columns: 1fr; }
      .program-card { padding: 28px; }
      .program-actions .button { width: 100%; }
      .journey-step { padding-top: 24px; }
      .outcome-grid { border-left: 0; }
      .outcome { border-left: 1px solid color-mix(in oklch, var(--plum) 32%, var(--warm)); }
      .attribute-card { min-height: 96px; }
      .pillar-card { min-height: 230px; padding: 28px; }
      .difference-head { text-align: left; }
      .mosaic { height: 520px; grid-template-columns: repeat(2, 1fr); grid-template-rows: 1.2fr 1fr 1fr; }
      .mosaic figure:first-child { grid-row: 1 / 3; }
      .mosaic figure:last-child { grid-column: 1 / 3; }
      .final-cta { min-height: 690px; text-align: center; }
      .final-cta-shade { background: linear-gradient(180deg, color-mix(in oklch, var(--bg) 56%, transparent), var(--bg)); }
      .final-cta-content { margin: 0 auto; }
      .final-cta .button { width: 100%; min-width: 0; }
      .js .reveal { transform: none; transition: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
      .js .reveal { opacity: 1; transform: none; }
    }
