/* ============================================================
   EiE Nigeria — Voter Participation Drive 2027
   v2 — buttery, bold, fluid
   ============================================================ */

:root {
  --paper:    #f5ecd7;
  --aso-rock: #11482b;
  --gala:     #aa261a;
  --danfo:    #d17e38;
  --ink:      #0a0a0a;

  --aso-55: rgba(17, 72, 43, 0.55);
  --aso-75: rgba(17, 72, 43, 0.75);
  --aso-40: rgba(17, 72, 43, 0.40);
  --aso-15: rgba(17, 72, 43, 0.15);
  --aso-08: rgba(17, 72, 43, 0.08);

  --gutter: 24px;
  --text-col: 680px;
  --wide-col: 1120px;
  --section-pad: clamp(96px, 14vw, 200px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 720px) { :root { --gutter: 48px; } }
@media (min-width: 1080px) { :root { --gutter: 72px; } }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  background: var(--paper);
  color: var(--aso-rock);
  font-family: 'Bricolage Grotesque', 'BDO Grotesk', system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  font-variation-settings: "wdth" 100, "opsz" 14;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ol, ul { list-style: none; padding: 0; margin: 0; }

@media (max-width: 720px) { body { font-size: 16px; } }

::selection { background: var(--aso-rock); color: var(--paper); }

/* ---------- Custom cursor ---------- */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"] { cursor: none; }
}
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--aso-rock);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              background 0.2s ease;
}
.cursor.is-lg { width: 56px; height: 56px; background: var(--gala); }
.cursor.is-hidden { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- Layout ---------- */
.col-text {
  max-width: var(--text-col);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.col-wide {
  max-width: var(--wide-col);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--section-pad); position: relative; }

.label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aso-55);
  font-weight: 500;
}

/* ---------- Reveal primitives ---------- */
.reveal-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}
.reveal-up.is-in { opacity: 1; transform: translateY(0); }

.reveal-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
}
.reveal-mask > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
  will-change: transform;
}
.is-in .reveal-mask > span,
.reveal-mask.is-in > span { transform: translateY(0); }

.stagger > * { transition-delay: 0s; }
.is-in.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.is-in.stagger > *:nth-child(2) { transition-delay: 0.15s; }
.is-in.stagger > *:nth-child(3) { transition-delay: 0.25s; }
.is-in.stagger > *:nth-child(4) { transition-delay: 0.35s; }
.is-in.stagger > *:nth-child(5) { transition-delay: 0.45s; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gutter);
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(245, 236, 215, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-block: 14px;
  border-bottom-color: var(--aso-15);
}
.nav__logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.01em; font-size: 17px; }
.nav__logo .mark {
  width: 28px; height: 28px;
  background: var(--aso-rock); color: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0;
}
.nav__logo .word { display: inline-flex; gap: 3px; }
.nav__logo small { font-size: 11px; color: var(--aso-55); letter-spacing: 0.12em; text-transform: uppercase; margin-left: 4px; }

/* ---------- Buttons (magnetic) ---------- */
.btn {
  --bg: var(--gala);
  --fg: var(--paper);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--bg); color: var(--fg);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 0; border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s ease;
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--aso-rock);
  transform: translateY(101%);
  transition: transform 0.6s var(--ease-out);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--paper); }
.btn .arrow { display: inline-block; transition: transform 0.4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(6px); }
.btn--sm { padding: 12px 22px; font-size: 12px; }
.btn--lg { padding: 18px 36px; font-size: 14px; }

@media (max-width: 720px) {
  .btn--full-mobile { width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(140px, 18vw, 220px);
  padding-bottom: clamp(40px, 8vw, 80px);
  position: relative;
}
.hero__inner { max-width: 1280px; margin: 0 auto; padding-inline: var(--gutter); }
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 40px;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gala);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}
.hero__title {
  font-weight: 700;
  font-size: clamp(56px, 11vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 0;
  text-wrap: balance;
}
.hero__title .line { display: block; }
.hero__title .accent { color: var(--gala); font-style: italic; }
.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: clamp(40px, 6vw, 80px);
  align-items: end;
}
.hero__body { font-size: clamp(17px, 1.5vw, 22px); max-width: 38ch; line-height: 1.45; margin: 0; }
.hero__cta { justify-self: end; }

@media (max-width: 720px) {
  .hero__meta { grid-template-columns: 1fr; gap: 32px; }
  .hero__cta { justify-self: start; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding-block: clamp(40px, 6vw, 72px);
  border-block: 1px solid var(--aso-15);
  font-weight: 700;
  font-size: clamp(56px, 10vw, 144px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.marquee__track {
  display: inline-flex;
  gap: 0.4em;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee__track span {
  display: inline-flex; align-items: center; gap: 0.4em;
}
.marquee__track .dot {
  width: 0.4em; height: 0.4em;
  border-radius: 50%;
  background: var(--gala);
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Stakes (with viz) ---------- */
.stakes {
  position: relative;
}
.stakes__layout {
  max-width: 1280px; margin: 0 auto; padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.stakes__copy { max-width: 52ch; }
.stakes__copy p { margin: 0 0 1.4em; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; }
.stakes__copy p:last-child { margin-top: 1.8em; color: var(--aso-75); }
.stakes__viz {
  position: sticky; top: 22vh;
  display: grid; grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 460px;
  justify-self: end;
}
.stakes__cell {
  background: var(--aso-08);
  transition: background 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  transform: scale(0.85);
  opacity: 0.5;
}
.stakes__viz.is-in .stakes__cell { opacity: 1; transform: scale(1); }
.stakes__viz.is-in .stakes__cell.is-on { background: var(--gala); }
.stakes__viz .stakes__cell {
  transition-delay: calc(var(--i, 0) * 8ms);
}
.stakes__viz-caption {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex; align-items: baseline; gap: 12px;
  pointer-events: none;
}
.stakes__viz-wrap { position: relative; width: 100%; max-width: 460px; justify-self: end; }
.stakes__viz-num {
  font-size: clamp(40px, 5vw, 64px); font-weight: 700;
  line-height: 1; letter-spacing: -0.03em; color: var(--gala);
}
.stakes__viz-label { font-size: 13px; color: var(--aso-55); letter-spacing: 0.08em; text-transform: uppercase; }

@media (max-width: 900px) {
  .stakes__layout { grid-template-columns: 1fr; gap: 56px; }
  .stakes__viz { position: relative; top: auto; justify-self: start; }
  .stakes__viz-wrap { justify-self: start; }
}

/* ---------- Awareness image ---------- */
.awareness {
  padding-block: var(--section-pad);
}
.awareness__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: var(--aso-08);
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.2s var(--ease-out);
}
.awareness__frame.is-in { clip-path: inset(0 0 0 0); }
.awareness__frame::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--aso-rock);
  transform: translateX(0);
  transition: transform 1.4s var(--ease-out);
}
.awareness__frame.is-in::before { transform: translateX(101%); }
.awareness__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 13px; color: var(--aso-55);
  border: 1px dashed var(--aso-40);
}
.awareness__caption {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aso-55);
  display: flex; gap: 10px; align-items: center;
}
.awareness__caption .bar { width: 32px; height: 1px; background: var(--aso-40); }

/* ---------- Funding ---------- */
.funding__inner { display: grid; gap: clamp(24px, 4vw, 56px); }
.phase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(80px, 1fr) minmax(0, 3fr);
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--aso-15);
  align-items: start;
}
.phase:last-child { border-bottom: 1px solid var(--aso-15); }
.phase__num {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--gala);
  font-variant-numeric: tabular-nums;
}
.phase__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aso-55);
  font-weight: 500;
  margin-bottom: 14px;
}
.phase__title {
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.phase__body {
  margin: 0;
  max-width: 56ch;
  color: var(--aso-75);
  font-size: clamp(16px, 1.3vw, 19px);
}

@media (max-width: 720px) {
  .phase { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Work (rows with magnetic hover) ---------- */
.work__list { border-top: 1px solid var(--aso-15); }
.work__row {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  padding: clamp(20px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--aso-15);
  transition: padding 0.6s var(--ease-out);
}
.work__row::before {
  content: "";
  position: absolute; inset: 0 0 0 -100vw;
  background: var(--aso-rock);
  transform: scaleX(0); transform-origin: right center;
  transition: transform 0.7s var(--ease-out);
  z-index: -1;
}
.work__row:hover { padding-left: 32px; }
.work__row:hover::before {
  transform: scaleX(1); transform-origin: left center;
}
.work__row:hover .work__num,
.work__row:hover .work__title,
.work__row:hover .work__desc,
.work__row:hover .work__chev {
  color: var(--paper);
}
.work__num {
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--aso-40);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}
.work__title {
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  transition: color 0.4s ease;
}
.work__desc {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--aso-75);
  margin: 0; line-height: 1.4;
  transition: color 0.4s ease;
}
.work__chev {
  width: 24px; height: 24px;
  transition: transform 0.4s var(--ease-out), color 0.4s ease;
  color: var(--aso-40);
}
.work__row:hover .work__chev { transform: translate(6px, 0); }

@media (max-width: 720px) {
  .work__row { grid-template-columns: 44px 1fr 20px; gap: 14px; }
  .work__row:hover { padding-left: 12px; }
}

/* ---------- Goal — giant million ---------- */
.goal__inner {
  max-width: 1280px; margin: 0 auto; padding-inline: var(--gutter);
  position: relative;
}
.goal__giant {
  font-weight: 700;
  font-size: clamp(120px, 26vw, 460px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  margin: 0;
  text-align: center;
  color: var(--aso-rock);
  position: relative;
}
.goal__giant .nairas { color: var(--gala); font-style: italic; font-weight: 400; }
.goal__lede {
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 24ch;
  margin: clamp(40px, 6vw, 80px) 0 clamp(40px, 5vw, 64px);
  text-wrap: balance;
}
.goal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--aso-15);
  padding-top: clamp(28px, 4vw, 48px);
}
.goal__cell { display: grid; gap: 8px; }
.goal__cell-num {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.goal__cell-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aso-55);
}
@media (max-width: 720px) {
  .goal__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Ask ---------- */
.ask__inner { max-width: 1120px; margin: 0 auto; padding-inline: var(--gutter); }
.ask__line {
  font-weight: 700;
  font-size: clamp(48px, 8vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.ask__line .accent { color: var(--gala); }
.ask__sub {
  margin: 0 0 clamp(48px, 6vw, 72px);
  color: var(--aso-75);
  font-size: clamp(18px, 1.8vw, 24px);
}
.ask__list { display: grid; }
.ask__row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: clamp(18px, 2vw, 26px) 0;
  border-top: 1px solid var(--aso-15);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  overflow: hidden;
  transition: padding 0.5s var(--ease-out);
}
.ask__row:last-child { border-bottom: 1px solid var(--aso-15); }
.ask__row::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--paper);
  border-top: 1px solid var(--gala);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out);
  z-index: -1;
}
.ask__row:hover::before { transform: translateY(0); }
.ask__row:hover .ask__state { color: var(--gala); transform: translateX(6px); }
.ask__row:hover .ask__amount { color: var(--gala); }
.ask__state { transition: color 0.4s ease, transform 0.5s var(--ease-out); }
.ask__amount { font-variant-numeric: tabular-nums; transition: color 0.4s ease; }
.ask__cta { margin-top: clamp(48px, 6vw, 72px); }

/* ---------- Partners ---------- */
.partners__inner { max-width: var(--wide-col); margin: 0 auto; padding-inline: var(--gutter); text-align: center; }
.partners__label { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 48px; }
.partners__label .bar { width: 32px; height: 1px; background: var(--aso-40); }
.partners__grid {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(24px, 4vw, 56px);
}
.partners__slot {
  height: 48px; width: 160px;
  opacity: 0.55;
  transition: opacity 0.3s ease;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 11px;
  color: var(--aso-55);
  border: 1px dashed var(--aso-40);
}
.partners__slot:hover { opacity: 1; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(245, 236, 215, 0.65);
  padding: clamp(40px, 6vw, 64px) var(--gutter);
}
.footer__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}
.footer__mega {
  font-weight: 700;
  font-size: clamp(56px, 12vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--paper);
}
.footer__mega em { font-style: italic; color: var(--danfo); font-weight: 400; }
.footer__meta {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding-top: 24px;
  border-top: 1px solid rgba(245, 236, 215, 0.12);
  font-size: 13px;
}
.footer__links { display: flex; gap: 28px; }
.footer__links a {
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 2px;
}
.footer__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--paper);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.footer__links a:hover { color: var(--paper); }
.footer__links a:hover::after { transform: scaleX(1); }
@media (max-width: 720px) {
  .footer__meta { flex-direction: column; text-align: center; }
}

/* ---------- Flyer popup ---------- */
.flyer-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(17, 72, 43, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.flyer-overlay.is-open { opacity: 1; pointer-events: auto; }
.flyer-overlay.is-closing { opacity: 0; transition-delay: 0.05s; }

.flyer {
  position: relative;
  background: var(--paper);
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 2.5rem;
  padding-top: calc(2.5rem + 6px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.4s var(--ease-out) 0.1s,
              opacity 0.4s var(--ease-out) 0.1s;
}
.flyer-overlay.is-open .flyer { transform: scale(1); opacity: 1; }
.flyer-overlay.is-closing .flyer {
  transform: scale(0.96); opacity: 0;
  transition-duration: 0.25s; transition-delay: 0s;
}
.flyer__bar { position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--danfo); }
.flyer__close {
  position: absolute; top: 6px; right: 0;
  width: 56px; height: 56px;
  background: transparent; border: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--aso-rock);
  transition: transform 0.3s ease;
  padding: 0;
}
.flyer__close:hover { transform: rotate(90deg); }
.flyer__close svg { width: 18px; height: 18px; display: block; }
.flyer__image {
  width: 100%; aspect-ratio: 4 / 3; margin-bottom: 28px;
  background: var(--aso-08);
  position: relative; overflow: hidden;
}
.flyer__image .placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 12px; color: var(--aso-55);
  border: 1px dashed var(--aso-40);
}
.flyer__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--aso-rock);
  margin: 0 0 20px;
}
.flyer__title em { font-style: italic; color: var(--gala); font-weight: 400; }
.flyer__body { font-size: 16px; line-height: 1.5; color: var(--aso-rock); margin: 0 0 28px; }
.flyer__cta { width: 100%; }
@media (max-width: 540px) {
  .flyer { padding: 1.5rem; padding-top: calc(1.5rem + 6px); }
  .flyer__title { font-size: 30px; }
}

body.flyer-open { overflow: hidden; }

/* ---------- Scroll progress (tiny gala line at top) ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; background: var(--gala);
  z-index: 90;
  width: 0;
  transform-origin: left center;
  pointer-events: none;
}

/* ---------- Section heading ---------- */
.h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 clamp(32px, 4vw, 56px);
  text-wrap: balance;
}
.h2-row { display: flex; align-items: baseline; gap: 18px; margin-bottom: clamp(32px, 4vw, 56px); }
.h2-row .h2 { margin: 0; }
.h2-row .tag {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--aso-55); font-weight: 500;
  white-space: nowrap;
}

/* ---------- Body text helper ---------- */
.body-lede {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
  max-width: 38ch;
  color: var(--aso-rock);
}

.gala { color: var(--gala); }

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none; }
}

/* ---------- Media handling (drop-in images) ----------
   Same pattern as /styles.css — real <img>/<video>/<picture> placed
   inside placeholder containers fills them via object-fit: cover and
   the dashed placeholder overlay is suppressed. See /media/README.md. */
img, video { max-width: 100%; height: auto; display: block; }

.placeholder > img,
.placeholder > video,
.placeholder > picture,
.placeholder > picture > img,
.awareness__frame > img,
.awareness__frame > video,
.awareness__frame > picture,
.awareness__frame > picture > img,
.stakes__viz > img,
.stakes__viz > video,
.stakes__viz > picture > img,
.flyer__image > img,
.flyer__image > video,
.flyer__image > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.placeholder:has(> img, > video, > picture)::before { display: none; }
.placeholder:has(> img, > video, > picture) { background: transparent; }
.awareness__frame:has(> img, > video, > picture) .awareness__placeholder { display: none; }
.awareness__frame:has(> img, > video, > picture)::before { display: none; }
.flyer__image:has(> img, > video, > picture) .placeholder { display: none; }
