/* ════════════════════════════════════════════════════════════════
   SIH PROGRAMME — Landing Page (V2 redesign)
   Warm, gold-accented, product-landing feel on the SNQ green system.
   One file, three switchable DIRECTIONS via body[data-dir]:
     warm     · Warm Editorial   — parchment ground, serif accent, video-left hero
     forest   · Bold Forest      — full-bleed forest video hero, gold CTAs, premium
     clinical · Warm Clinical     — airy white, centred video hero, lightest
   Width via body[data-width]:  wide (default) · full · standard
   ════════════════════════════════════════════════════════════════ */

:root {
  /* — warm neutral ground (richer than the cold platinum) — */
  --bg: #FAFCFB;
  --bg-2: #EDF2EC;
  --bg-card: #FFFFFF;
  --bg-cream: #F2F6F1;
  --bg-tint: #EFF4F0;
  --bg-sand: #E7EEE8;
  --bg-well: #E7EEE8;

  /* — ink ramp (green-black) — */
  --ink: #0C1F17;
  --ink-2: #355247;
  --ink-3: #6F8479;
  --ink-4: #A4B3AB;

  /* — forest dark surfaces — */
  --forest: #0E2A22;
  --forest-2: #0A2018;
  --forest-3: #173F33;

  /* — emerald brand — */
  --brand: #16B87A;
  --brand-deep: #0E8C5C;
  --brand-soft: #DAF4E6;
  --brand-tint: #ECF8F1;

  /* — champagne gold (now a first-class accent) — */
  --gold: #C2A14E;
  --gold-deep: #9A7B2F;
  --gold-bright: #ECD594;
  --gold-soft: #E9DBAC;
  --gold-tint: #F6EFDA;
  --gold-line: #E9DBAC;

  /* — support — */
  --rose: #B85450;
  --rose-tint: #F8EAE8;
  --blue: #2F7BB8;

  --line: #E8EDE8;
  --line-2: #DBE3DD;
  --line-strong: #C8D3CA;
  --line-cool: #E3E9E2;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --pill: 999px;

  --shadow-1: 0 1px 2px rgba(20,36,28,.05), 0 3px 10px rgba(20,36,28,.05);
  --shadow-2: 0 4px 14px rgba(20,36,28,.07), 0 18px 44px rgba(20,36,28,.09);
  --shadow-gold: 0 6px 20px rgba(154,123,46,.22);
  --shadow-cta: 0 6px 18px rgba(14,140,92,.26);

  --display: "Geist", "Noto Sans TC", ui-sans-serif, system-ui, sans-serif;
  --sans: "Geist", "Noto Sans TC", ui-sans-serif, system-ui, sans-serif;
  --serif: "Geist", "Noto Sans TC", ui-sans-serif, system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", monospace;

  --maxw: 1280px;
  --edge: 40px;
  --accent: var(--brand);
  --accent-deep: var(--brand-deep);
}

/* ── width tweak (desktop) ── */
@media (min-width: 1100px) {
  body[data-width="wide"] { --maxw: 1640px; --edge: clamp(48px, 4.5vw, 110px); }
  body[data-width="full"] { --maxw: none;   --edge: clamp(36px, 3.4vw, 88px); }
}

* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--gold-soft); color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--edge); }

/* ════════ TYPE PRIMITIVES ════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-deep);
}
.eyebrow.gold { color: var(--gold-deep); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(194,161,78,.18); }

h1, h2, h3, h4 { font-family: var(--display); letter-spacing: -.025em; line-height: 1.1; font-weight: 600; color: var(--ink); text-wrap: balance; }
.em { font-style: normal; color: var(--brand-deep); }
.em-gold { font-style: normal; color: var(--gold-deep); }

/* emphasis is always green — single chromatic story, like the homepage */

/* ════════ BUTTONS ════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: 600 15px/1 var(--sans); padding: .85rem 1.4rem; border-radius: var(--pill);
  border: 1px solid transparent; transition: transform .15s ease, background .2s, box-shadow .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand-deep); color: #fff; box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: #0c7a50; transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep)); color: #2a2208; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.03); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--brand-deep); color: var(--brand-deep); background: var(--brand-tint); }
.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover { background: rgba(20,36,28,.05); color: var(--ink); }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 16px; }

/* on-dark variants */
.on-dark .btn-outline, .btn-outline.on-dark { color: #fff; border-color: rgba(255,255,255,.32); }
.on-dark .btn-outline:hover, .btn-outline.on-dark:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(255,255,255,.06); }

.play-ico { width: 30px; height: 30px; border-radius: 50%; background: currentColor; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.play-ico svg { width: 12px; height: 12px; }

/* ════════ BADGES / PILLS ════════ */
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: 12.5px; font-weight: 600; padding: .4rem .85rem; border-radius: var(--pill);
  border: 1px solid var(--line-2); background: var(--bg-card); color: var(--ink-2); line-height: 1.2;
}
.badge.gold { background: var(--gold-tint); border-color: var(--gold-line); color: var(--gold-deep); }
.badge.emerald { background: var(--brand-tint); border-color: rgba(22,184,122,.28); color: var(--brand-deep); }
.badge.crown::before { content: "♛"; font-size: 11px; }

.pill { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); padding: .3rem .6rem; border-radius: var(--pill); border: 1px solid var(--line-2); background: var(--bg-cream); }
.pill.gold { color: var(--gold-deep); border-color: var(--gold-line); background: var(--gold-tint); }

/* ════════ NAV — inherited from V2 homepage ════════ */
.top { position: sticky; top: 0; z-index: 80; background: rgba(250,250,247,0.82); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--edge); height: 68px; display: flex; align-items: center; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; position: relative; }
.brand-wordmark { font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: -.012em; line-height: 1; color: var(--ink); white-space: nowrap; display: inline-flex; align-items: baseline; gap: .35rem; }
.brand-wordmark .wm-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); transform: translateY(-1px); }
.nav-links { display: flex; gap: 4px; margin-left: 1rem; }
.nav-link { font-size: 15px; font-weight: 500; color: var(--ink-2); padding: .5rem .8rem; border-radius: 8px; text-decoration: none; transition: background .15s, color .15s; }
.nav-link:hover { background: var(--bg-tint); color: var(--ink); }
.nav-link.active { color: var(--ink); font-weight: 600; }
.nav-spacer { flex: 1; }
.nav-actions { display: flex; align-items: center; gap: .55rem; }
.lang-toggle { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; padding: 0; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink-3); cursor: pointer; transition: color .15s, border-color .15s, background .15s; }
.lang-toggle:hover { color: var(--ink); border-color: var(--ink-3); background: rgba(0,0,0,.03); }
.lang-toggle svg { display: block; }
@media (max-width: 1024px) { .nav-inner { gap: 1rem; } .nav-links { display: none; } }

/* ════════ HERO ════════ */
.hero { position: relative; overflow: hidden; }
.hero-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(1.85rem, 3.2vw, 3rem) var(--edge) clamp(1.5rem, 2.5vw, 2.25rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.1fr); gap: clamp(1.5rem, 2.6vw, 2.75rem); align-items: center; }
.hero-h1 { font-size: clamp(2.2rem, 4.2vw, 3.5rem); line-height: 1.04; letter-spacing: -.035em; margin: .8rem 0 0; }
.hero-sub { font-size: clamp(1rem, 1.3vw, 1.12rem); color: var(--ink-2); line-height: 1.52; max-width: 54ch; margin-top: .95rem; }
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.35rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.05rem; }

/* lead clinician chip */
.lead-chip { display: inline-flex; align-items: center; gap: .85rem; margin-top: 1.2rem; padding: .7rem 1.1rem .7rem .7rem; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--pill); box-shadow: var(--shadow-1); }
.lead-portrait { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--bg-well); border: 1px solid var(--line-2); }
.lead-portrait image-slot, .lead-portrait img { width: 100%; height: 100%; object-fit: cover; }
.lead-kicker { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.lead-name { font-family: var(--display); font-weight: 600; font-size: 15.5px; color: var(--ink); line-height: 1.25; }
.lead-title { font-size: 12px; color: var(--ink-3); }

/* media well — the reserved treatment-procedure video */
.media-well { position: relative; border-radius: var(--r-xl); overflow: hidden; background: var(--bg-well); border: 1px solid var(--line-2); box-shadow: var(--shadow-2); aspect-ratio: 16 / 11; }
.media-well image-slot, .media-well img { width: 100%; height: 100%; object-fit: cover; }
.media-well.video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,32,24,0) 40%, rgba(10,32,24,.42)); pointer-events: none; }
.media-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 3; width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-2); transition: transform .2s, background .2s; }
.media-play::before { content: ""; width: 0; height: 0; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent var(--brand-deep); margin-left: 4px; }
.media-well:hover .media-play { transform: translate(-50%,-50%) scale(1.06); }
.media-tag { position: absolute; left: 1rem; bottom: 1rem; z-index: 3; display: inline-flex; align-items: center; gap: .5rem; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(10,32,24,.6); backdrop-filter: blur(8px); padding: .4rem .75rem; border-radius: var(--pill); }
.media-tag .rec { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 3px rgba(217,189,110,.3); }
.media-cap { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin-top: .7rem; letter-spacing: .03em; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-media-col { order: -1; }
}

/* ── DIRECTION: WARM EDITORIAL (default look) ── */
body[data-dir="warm"] .hero { background:
  radial-gradient(120% 80% at 12% 0%, var(--brand-tint) 0%, transparent 55%),
  radial-gradient(110% 90% at 100% 20%, var(--bg-tint) 0%, transparent 50%),
  var(--bg);
  border-bottom: 1px solid var(--line);
}

/* ── DIRECTION: BOLD FOREST — full-bleed dark video hero ── */
body[data-dir="forest"] .hero { background: radial-gradient(120% 120% at 80% -10%, var(--forest-3) 0%, var(--forest) 45%, var(--forest-2) 100%); color: #fff; }
body[data-dir="forest"] .hero-h1 { color: #fff; }
body[data-dir="forest"] .hero-sub { color: rgba(255,255,255,.82); }
body[data-dir="forest"] .hero-sub strong { color: #fff; }
body[data-dir="forest"] .hero .em { color: var(--brand); }
body[data-dir="forest"] .hero .eyebrow { color: var(--gold-bright); }
body[data-dir="forest"] .hero .badge { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.9); }
body[data-dir="forest"] .hero .badge.gold { background: rgba(217,189,110,.14); border-color: rgba(217,189,110,.4); color: var(--gold-bright); }
body[data-dir="forest"] .hero .lead-chip { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
body[data-dir="forest"] .hero .lead-name { color: #fff; }
body[data-dir="forest"] .hero .lead-title { color: rgba(255,255,255,.6); }
body[data-dir="forest"] .hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.34); }
body[data-dir="forest"] .hero .btn-outline:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(255,255,255,.06); }
body[data-dir="forest"] .hero .media-cap { color: rgba(255,255,255,.55); }
body[data-dir="forest"] .hero .media-well { border-color: rgba(255,255,255,.14); }

/* ── DIRECTION: WARM CLINICAL — airy, centred hero ── */
body[data-dir="clinical"] .hero { background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%); border-bottom: 1px solid var(--line-cool); }
body[data-dir="clinical"] .hero-grid { grid-template-columns: 1fr; text-align: center; max-width: 1080px; margin: 0 auto; gap: 2.25rem; }
body[data-dir="clinical"] .hero-sub { margin-left: auto; margin-right: auto; }
body[data-dir="clinical"] .hero-cta, body[data-dir="clinical"] .hero-badges { justify-content: center; }
body[data-dir="clinical"] .lead-chip { align-self: center; }
body[data-dir="clinical"] .hero-media-col { order: 0; }
body[data-dir="clinical"] .media-well { aspect-ratio: 16 / 8; }
body[data-dir="clinical"] .eyebrow { justify-content: center; }

/* ════════ SECTION SCAFFOLD ════════ */
.section { padding: clamp(2.25rem, 3.2vw, 3.5rem) 0; }
.section.tight { padding: clamp(1.6rem, 2.5vw, 2.5rem) 0; }
.section.forest { background: var(--forest); color: #fff; }
.section.cream { background: var(--bg-cream); }
.section.sand { background: var(--bg-2); }
.section.tint { background: var(--bg-tint); }
.sec-head { max-width: 760px; margin-bottom: clamp(1.2rem, 2vw, 1.85rem); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-title { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin-top: .6rem; }
.sec-lead { font-size: clamp(.98rem, 1.2vw, 1.08rem); color: var(--ink-2); line-height: 1.5; margin-top: .6rem; }
.section.forest .sec-title { color: #fff; }
.section.forest .sec-lead { color: rgba(255,255,255,.75); }
.section.forest .eyebrow { color: var(--gold-bright); }
.section.forest .em { color: var(--brand); }

/* ════════ TRUST STRIP ════════ */
.trust { background: var(--forest); color: #fff; padding: 1.1rem 0; }
.trust-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--edge); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.trust-cites { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.trust-cites .lbl { color: var(--brand); }
.trust-cites b { color: #fff; font-weight: 600; }
.trust-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.trust-stat .n { font-family: var(--display); font-weight: 600; font-size: 1.5rem; letter-spacing: -.02em; line-height: 1; }
.trust-stat .n em { color: var(--brand); font-style: normal; }
.trust-stat .t { font-size: 11.5px; color: rgba(255,255,255,.6); margin-top: .3rem; }

/* ════════ PROBLEM ════════ */
.prob-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
@media (max-width: 1100px) { .prob-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .prob-grid { grid-template-columns: 1fr; } }
.prob-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r); padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .4rem; transition: transform .2s, box-shadow .2s, border-color .2s; }
.prob-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-strong); }
.prob-card .pk { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--rose); }
.prob-card .pn { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 2.4vw, 2.1rem); letter-spacing: -.03em; color: var(--ink); line-height: 1; }
.prob-card h3 { font-size: 16px; font-weight: 600; }
.prob-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.prob-card .fix { margin-top: auto; padding-top: .65rem; border-top: 1px dashed var(--line-2); font-size: 13px; color: var(--brand-deep); font-weight: 500; display: flex; align-items: center; gap: .4rem; }
.prob-card .fix::before { content: "→"; color: var(--gold-deep); }

/* ════════ TREATMENT PATH (處置方案) ════════ */
.path { position: relative; }
.path-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
@media (max-width: 1100px) { .path-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .path-steps { grid-template-columns: 1fr; } }
.step { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s; position: relative; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--brand); }
.step-media { aspect-ratio: 4 / 3; background: var(--bg-well); position: relative; overflow: hidden; }
.step-media image-slot, .step-media img { width: 100%; height: 100%; object-fit: cover; }
.step-no { position: absolute; top: .8rem; left: .8rem; z-index: 2; width: 34px; height: 34px; border-radius: 50%; background: var(--brand-deep); color: #fff; font-family: var(--mono); font-weight: 600; font-size: 14px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-1); }
.step-body { padding: .9rem 1.05rem 1.05rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.step-stage { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-deep); }
.step h3 { font-size: 17px; font-weight: 600; line-height: 1.25; }
.step p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.step-out { margin-top: auto; padding-top: .65rem; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: .5rem; }
.step-out .v { font-family: var(--display); font-weight: 600; font-size: 1.25rem; color: var(--brand-deep); letter-spacing: -.02em; }
.step-out .l { font-size: 12px; color: var(--ink-3); }
.path-note { margin-top: 1rem; display: flex; align-items: center; gap: .6rem; font-size: 13.5px; color: var(--ink-3); }
.path-note .pill { flex-shrink: 0; }

/* secondary inline video CTA inside path */
.path-video { margin-top: 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; background: var(--brand-tint); border: 1px solid rgba(22,184,122,.28); border-radius: var(--r-lg); padding: 1rem 1.3rem; }
.path-video .pv-t { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.path-video .pv-s { font-size: 13px; color: var(--brand-deep); margin-top: .2rem; }

/* ════════ PILLARS ════════ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }
.pillar { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .55rem; transition: transform .2s, box-shadow .2s; }
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.pillar-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.pillar-n { font-family: var(--mono); font-weight: 600; font-size: 13px; color: var(--gold-deep); }
.pillar h3 { font-size: 1.3rem; letter-spacing: -.02em; }
.pillar p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.pillar p strong { color: var(--ink); font-weight: 600; }
.pillar-evi { margin-top: auto; padding-top: .8rem; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: .7rem; }
.pillar-evi .n { font-family: var(--display); font-weight: 600; font-size: 2rem; letter-spacing: -.03em; color: var(--brand-deep); line-height: 1; }
.pillar-evi .n small { font-size: .5em; }
.pillar-evi .l { font-size: 12.5px; color: var(--ink-3); line-height: 1.35; }
.pillar-cite { font-family: var(--mono); font-size: 11px; color: var(--ink-3); padding-top: .6rem; }
.pillar-cite em { font-style: normal; color: var(--brand-deep); font-weight: 600; }

/* ════════ EVIDENCE ════════ */
.ev-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin-bottom: 1.1rem; }
@media (max-width: 900px) { .ev-cards { grid-template-columns: 1fr 1fr; } }
.ev-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r); padding: 1.1rem 1.25rem 1rem; position: relative; overflow: hidden; }
.ev-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(var(--brand), var(--brand-deep)); }
.ev-card .v { font-family: var(--display); font-weight: 600; font-size: clamp(2.1rem, 3vw, 2.6rem); color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.ev-card .l { font-size: 14px; font-weight: 600; color: var(--ink); margin-top: .65rem; line-height: 1.3; }
.ev-card .m { font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); margin-top: .35rem; letter-spacing: .04em; text-transform: uppercase; }

.bench { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-1); }
.bench-cap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 1.3rem; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.bench-cap h4 { font-size: 1.05rem; }
.bench-cap .note { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.bench table { width: 100%; border-collapse: collapse; }
.bench th { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); text-align: left; padding: .6rem 1.3rem; background: var(--bg-cream); }
.bench td { padding: .6rem 1.3rem; border-top: 1px solid var(--line); font-size: 13.5px; vertical-align: middle; }
.bench td.metric { font-weight: 500; color: var(--ink); }
.bench td.hi { font-family: var(--display); font-weight: 600; color: var(--brand-deep); font-size: 1.05rem; }
.bench td.lo { color: var(--ink-3); }
.bench td.delta { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--brand-deep); }
.bench .bar { height: 8px; border-radius: var(--pill); background: var(--bg-well); overflow: hidden; min-width: 90px; }
.bench .bar i { display: block; height: 100%; border-radius: var(--pill); background: linear-gradient(90deg, var(--brand), var(--brand-deep)); }
@media (max-width: 820px) { .bench .bar-cell, .bench thead th:last-child { display: none; } .bench th, .bench td { padding-left: 1rem; padding-right: 1rem; } }

/* ════════ QUOTE ════════ */
.quote { background: var(--forest); color: #fff; }
.quote-inner { max-width: 960px; margin: 0 auto; padding: clamp(2.5rem, 4vw, 4rem) var(--edge); text-align: center; }
.quote-mark { font-family: var(--serif); font-size: 5rem; line-height: .5; color: var(--brand); height: 2.2rem; }
.quote-text { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.38; font-weight: 400; letter-spacing: -.01em; margin: 1.2rem 0 2rem; text-wrap: balance; }
.quote-text em { font-style: italic; color: var(--gold-bright); }
.quote-attr { display: inline-flex; flex-direction: column; gap: .25rem; font-size: 14px; color: rgba(255,255,255,.7); }
.quote-attr b { color: #fff; font-weight: 600; }

/* ════════ GLOBAL IMPACT ════════ */
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
@media (max-width: 900px) { .impact-grid { grid-template-columns: 1fr; } }
.impact-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.3rem 1.4rem; }
.impact-card .hd { display: flex; align-items: center; gap: .6rem; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-deep); margin-bottom: .9rem; }
.impact-card .hd .sq { width: 9px; height: 9px; border-radius: 2px; background: var(--brand); }
.impact-item { display: flex; gap: .9rem; padding: .7rem 0; border-top: 1px solid var(--line); }
.impact-item:first-of-type { border-top: none; padding-top: 0; }
.impact-badge { flex-shrink: 0; font-family: var(--mono); font-size: 10.5px; font-weight: 600; color: var(--brand-deep); background: var(--brand-tint); border: 1px solid rgba(22,184,122,.28); border-radius: var(--pill); padding: .25rem .6rem; height: fit-content; }
.impact-item h4 { font-size: 14.5px; font-weight: 600; line-height: 1.3; }
.impact-item p { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin-top: .3rem; }
.impact-item p em { font-style: normal; color: var(--brand-deep); font-weight: 600; }

.timeline { margin-top: 1.1rem; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.25rem 1.4rem; }
.timeline-hd { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1rem; }
.tl-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; position: relative; }
@media (max-width: 720px) { .tl-track { grid-template-columns: 1fr 1fr; row-gap: 1.6rem; } }
.tl-node { position: relative; padding-top: 1.3rem; }
.tl-node::before { content: ""; position: absolute; top: 0; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--brand-tint); }
.tl-node::after { content: ""; position: absolute; top: 5px; left: 18px; right: -1.2rem; height: 2px; background: var(--line-2); }
.tl-node:last-child::after { display: none; }
.tl-year { font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--ink); letter-spacing: -.02em; }
.tl-text { font-size: 12.5px; color: var(--ink-2); line-height: 1.45; margin-top: .35rem; }

/* ════════ TEAM ════════ */
.team-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(1.5rem, 3vw, 2.75rem); align-items: center; }
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr; } }
.team-photos { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.team-photo { border-radius: var(--r-lg); overflow: hidden; background: var(--bg-well); border: 1px solid var(--line-2); aspect-ratio: 3 / 4; }
.team-photo.tall { grid-row: span 2; aspect-ratio: 3 / 5.2; }
.team-photo image-slot, .team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-lead { display: flex; align-items: center; gap: 1rem; margin-top: 1.1rem; padding: .85rem 1.1rem; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-1); width: fit-content; }
.team-lead .lead-portrait { width: 58px; height: 58px; }

/* ════════ PARTNER / CTA ════════ */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; margin-top: 1.75rem; }
@media (max-width: 900px) { .partner-grid { grid-template-columns: 1fr; } }
.partner-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: 1.25rem 1.35rem; transition: transform .2s, background .2s, border-color .2s; }
.partner-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.09); border-color: rgba(217,189,110,.4); }
.partner-card .hd { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: .9rem; }
.partner-card h3 { color: #fff; font-size: 1.15rem; }
.partner-card p { font-size: 13.5px; color: rgba(255,255,255,.68); line-height: 1.55; margin-top: .5rem; }
.partner-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }
.partner-contact { font-size: 13.5px; color: rgba(255,255,255,.6); }
.partner-contact strong { color: var(--gold-bright); font-weight: 600; }

/* ════════ STICKY CTA BAR (to-C) ════════ */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: color-mix(in srgb, var(--forest) 94%, transparent); backdrop-filter: blur(12px); border-top: 1px solid rgba(217,189,110,.25); transform: translateY(110%); transition: transform .35s cubic-bezier(.4,0,.2,1); }
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-inner { max-width: var(--maxw); margin: 0 auto; padding: .8rem var(--edge); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.sticky-l { color: #fff; display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap; min-width: 0; }
.sticky-l b { font-family: var(--display); font-weight: 600; font-size: 1rem; }
.sticky-l span { font-size: 12.5px; color: rgba(255,255,255,.6); }
.sticky-r { display: flex; gap: .6rem; flex-shrink: 0; }
@media (max-width: 620px) { .sticky-l span { display: none; } .sticky-cta-inner { padding: .65rem 1rem; } }

/* ════════ FOOTER ════════ */
.footer { background: var(--forest-2); color: rgba(255,255,255,.6); padding: 2.5rem 0; }
.footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer .f-r { display: flex; gap: 1.5rem; font-size: 13.5px; }
.footer a:hover { color: #fff; }

/* ════════ TWEAKS PANEL ════════ */
.tw-toggle { position: fixed; right: 18px; bottom: 86px; z-index: 95; display: none; align-items: center; gap: .5rem; background: var(--ink); color: #fff; border: none; border-radius: var(--pill); padding: .7rem 1.1rem; font-size: 13px; font-weight: 600; box-shadow: var(--shadow-2); }
.tw-toggle.show { display: inline-flex; }
.tw-panel { position: fixed; right: 18px; bottom: 18px; z-index: 96; width: 300px; max-height: 82vh; overflow-y: auto; background: var(--bg-card); border: 1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--shadow-2); padding: 1.1rem 1.2rem 1.3rem; transform: translateY(8px) scale(.98); opacity: 0; pointer-events: none; transition: transform .2s, opacity .2s; }
.tw-panel.open { transform: none; opacity: 1; pointer-events: auto; }
.tw-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.tw-head .t { font-family: var(--display); font-weight: 600; font-size: 15px; }
.tw-head .x { background: none; border: none; color: var(--ink-3); font-size: 20px; line-height: 1; }
.tw-group { margin-bottom: 1.1rem; }
.tw-label { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .5rem; }
.seg { display: grid; gap: 4px; background: var(--bg-2); border-radius: var(--r-sm); padding: 4px; }
.seg.col-2 { grid-template-columns: 1fr 1fr; }
.seg.col-3 { grid-template-columns: repeat(3, 1fr); }
.seg button { background: transparent; border: none; border-radius: 7px; padding: .5rem .4rem; font-size: 12.5px; font-weight: 600; color: var(--ink-2); transition: background .15s, color .15s; }
.seg button.on { background: var(--bg-card); color: var(--ink); box-shadow: var(--shadow-1); }
.tw-hint { font-size: 11.5px; color: var(--ink-3); line-height: 1.4; margin-top: .5rem; }

@media print { .tw-toggle, .tw-panel, .sticky-cta { display: none !important; } }
