:root {
  --paper: #f4efe6;
  --paper-2: #e9e1d3;
  --ink: #1a1815;
  --ink-soft: #3c3731;
  --muted: #6a635a;
  --fairway: #16352b;
  --fairway-2: #1f4438;
  --sage: #8b9a86;
  --cream: #f8f4eb;
  --danger: #8c3a2b;
  --line: color-mix(in oklab, var(--ink) 12%, transparent);
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Figtree", ui-sans-serif, system-ui, sans-serif;
  --lockup: clamp(3.4rem, 12vw, 8rem);
  --display-size: clamp(2.15rem, 4.8vw, 3.7rem);
  --radius: 0.625rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.55;
  padding-bottom: 4.75rem;
}
h1, h2, h3, h4, p, figure, blockquote, dl, dt, dd, ul, ol, fieldset {
  margin: 0;
}
h1, h2, h3 {
  font-family: var(--display);
  text-wrap: balance;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 600;
}
p { text-wrap: pretty; }
p + p { margin-top: 0.9rem; }
h2 + p, h3 + p { margin-top: 0.85rem; }
.kicker + h1, .kicker + h2, .kicker + h3 { margin-top: 0.6rem; }
a { color: inherit; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 1.5px; }
img { max-width: 100%; display: block; }
button, .btn { cursor: pointer; font-family: inherit; }
::selection { background: var(--fairway); color: var(--cream); }
:focus-visible { outline: 2px solid var(--fairway); outline-offset: 3px; }

.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.35rem; }
.measure { max-width: 40rem; }
.display { font-size: var(--display-size); max-width: 16ch; }
.display-wide { font-size: var(--display-size); max-width: 22ch; }
.lede { color: var(--muted); font-size: 1rem; max-width: 40rem; }

.ticker {
  background: var(--fairway); color: var(--cream);
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.65rem 0;
}
.ticker .wrap { display: flex; flex-wrap: wrap; gap: 0.35rem 1.1rem; align-items: center; }
.ticker .hot { color: #d4a198; }
.ticker span + span { position: relative; }
.ticker span + span::before {
  content: "·"; position: absolute; left: -0.7rem; color: rgb(248 244 235 / 0.35);
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 4.15rem; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--fairway); }
.brand:hover { text-decoration: none; }
.mark {
  width: 2.15rem; height: 2.15rem; border-radius: 0.4rem;
  background: var(--fairway); color: var(--cream);
  display: grid; place-items: center; flex-shrink: 0;
}
.mark svg { width: 1.15rem; height: 1.15rem; }
.brand strong { display: block; font-family: var(--display); font-size: 1.28rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.brand em {
  display: block; margin-top: 0.18rem; font-style: normal;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.nav-links { display: none; gap: 1.85rem; }
.nav-links a {
  text-decoration: none; font-size: 0.875rem; font-weight: 500;
  color: var(--ink-soft); position: relative; padding: 0.2rem 0;
}
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -0.35rem;
  height: 1.5px; background: var(--fairway);
}
.nav-cta { display: none; gap: 0.45rem; }
.menu-btn {
  width: 2.75rem; height: 2.75rem; border: 0; background: transparent;
  display: grid; place-content: center; gap: 5px; color: var(--ink);
}
.menu-btn span { display: block; width: 18px; height: 1.5px; background: currentColor; transition: transform 0.16s ease; }
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-nav { display: none; border-top: 1px solid var(--line); padding: 0.4rem 0 0.9rem; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 0.8rem 0.15rem; text-decoration: none; font-weight: 500; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 2.7rem; padding: 0 1.2rem; border-radius: 0.4rem; border: 1px solid transparent;
  font-weight: 600; font-size: 0.875rem; text-decoration: none; letter-spacing: 0.01em;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--fairway); color: var(--cream); }
.btn-primary:hover { background: var(--fairway-2); }
.btn-cream { background: var(--cream); color: var(--fairway); }
.btn-cream:hover { background: #fff; }
.btn-outline { border-color: color-mix(in oklab, var(--ink) 18%, transparent); background: transparent; color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: var(--cream); }
.btn-lg { min-height: 3.35rem; padding: 0 1.6rem; font-size: 0.95rem; }
.btn-block { width: 100%; }
.text-link { color: var(--fairway); font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.fineprint { font-size: 0.8rem; margin-top: 1rem; }
.btn-ghost-light { border-color: rgb(248 244 235 / 0.32); color: var(--cream); background: transparent; }
.btn-ghost-light:hover { background: rgb(248 244 235 / 0.1); border-color: var(--cream); }

.hero { position: relative; min-height: calc(100dvh - 6.6rem); color: var(--cream); background: var(--fairway); overflow: hidden; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.hero .shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgb(22 18 14 / 0.88) 0%, rgb(22 18 14 / 0.28) 46%, rgb(22 18 14 / 0.12) 100%),
    linear-gradient(to right, rgb(22 18 14 / 0.28), transparent 50%);
}
.hero-inner { position: relative; min-height: calc(100dvh - 6.6rem); display: flex; flex-direction: column; justify-content: flex-end; padding: 5.5rem 0 3.25rem; }
.hero .kicker { color: rgb(248 244 235 / 0.72); }
.lockup { font-size: var(--lockup); max-width: 11ch; margin: 0.85rem 0 0; letter-spacing: -0.05em; line-height: 0.8; color: var(--cream); font-weight: 600; }
.lockup span { display: block; }
.hero .subhead {
  font-family: var(--display); font-size: clamp(1.45rem, 3.1vw, 2.2rem);
  max-width: 22ch; margin: 1.35rem 0 0; font-weight: 500; font-style: italic;
  color: rgb(248 244 235 / 0.92); line-height: 1.18;
}
.hero p.lead { max-width: 34rem; margin-top: 1.1rem; color: rgb(248 244 235 / 0.72); font-size: 1.02rem; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 2.1rem; }

.stats-rail { background: var(--cream); border-bottom: 1px solid var(--line); }
.stats-rail dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0; }
.stats-rail div { padding: 1.55rem 0.2rem 1.55rem 0; }
.stats-rail div + div { padding-left: 1.25rem; }
.stats-rail div:nth-child(even) { border-left: 1px solid var(--line); }
.stats-rail div:nth-child(n+3) { border-top: 1px solid var(--line); }
.stats-rail dt { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.stats-rail dd { font-family: var(--display); font-size: 2.15rem; margin: 0.2rem 0 0; font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: -0.03em; }

.kicker { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); }
.kicker.danger { color: var(--danger); }
.kicker.fair { color: var(--fairway); }
.section { padding: 4.75rem 0; }
.split { display: grid; gap: 2.6rem; }
.quote {
  font-family: var(--display); font-size: clamp(1.85rem, 3.7vw, 3.15rem);
  font-weight: 500; font-style: italic; line-height: 1.12; margin: 0;
}
.quote footer {
  margin-top: 1.5rem; font-family: var(--sans); font-size: 0.625rem;
  font-style: normal; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.rule { border-left: 1.5px solid var(--fairway); padding-left: 1.6rem; }
.rule h2 { font-size: clamp(1.65rem, 3vw, 2.15rem); max-width: 18ch; }
.rule p { margin-top: 0.9rem; color: var(--ink-soft); }
.rule .text-link { display: inline-block; margin-top: 1.1rem; }
.card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.85rem 1.7rem;
}
.card h3 { margin: 0.35rem 0 0; font-size: 1.55rem; }
.card p { color: var(--ink-soft); font-size: 0.975rem; }
.fairway-band { background: var(--fairway); color: var(--cream); }
.fairway-band h2, .fairway-band p, .fairway-band dd { color: var(--cream); }
.fairway-band .kicker, .fairway-band dt, .fairway-band .muted, .fairway-band figcaption { color: #b7c4b2; }
.fairway-band p.sage { color: #c5d0c1; }
.ink-band { background: var(--ink); color: var(--cream); }
.ink-band .kicker { color: #c5d0c1; }
.ink-band h2 { color: var(--cream); max-width: 18ch; }
.ink-band p { color: #c9c2b6; margin-top: 1.25rem; max-width: 40rem; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; margin-top: 2.1rem; }
.stats dt { font-size: 0.625rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.stats dd { font-family: var(--display); font-size: 1.9rem; margin: 0.15rem 0 0; font-weight: 600; font-variant-numeric: tabular-nums; }
.rounded { border-radius: var(--radius); object-fit: cover; width: 100%; }
.photo-stack { display: grid; gap: 0.75rem; }
.photo-stack figure img { aspect-ratio: 16 / 10; height: auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.two-col img { aspect-ratio: 4 / 3; height: 100%; object-fit: cover; border-radius: var(--radius); }
figcaption { font-size: 0.72rem; letter-spacing: 0.06em; margin-top: 0.55rem; color: var(--sage); text-transform: uppercase; font-weight: 600; }

.timeline { list-style: none; padding: 0; margin: 2.4rem 0 0; }
.timeline li { display: grid; gap: 0.35rem; border-top: 1px solid var(--line); padding: 1.55rem 0; }
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline .year {
  font-family: var(--display); color: var(--fairway); font-weight: 600;
  font-size: 1.35rem; letter-spacing: -0.02em;
}
.timeline h3 { font-size: 1.45rem; }
.timeline p { margin-top: 0.35rem; color: var(--ink-soft); font-size: 0.975rem; }

.cream-band { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-grid { display: grid; gap: 1.1rem; align-items: stretch; }
.cta-grid > * { height: 100%; }
.cta-pledge { display: flex; flex-direction: column; }
.cta-pledge h2 { font-size: var(--display-size); max-width: 12ch; }
.cta-pledge > p:last-of-type { margin-top: auto; }
.donate { background: var(--fairway); color: var(--cream); border-radius: var(--radius); padding: 2rem 1.8rem; }
.donate h3 { margin: 0.4rem 0 0; font-size: 1.85rem; }
.donate .sage { color: #b7c4b2; }
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem; margin: 1.45rem 0; }
.tiers a {
  text-align: center; text-decoration: none; border: 1px solid rgb(248 244 235 / 0.16);
  background: rgb(248 244 235 / 0.05); color: var(--cream); border-radius: 0.4rem; padding: 1rem 0.5rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.tiers a:hover { background: var(--cream); color: var(--fairway); text-decoration: none; }
.tiers strong { display: block; font-family: var(--display); font-size: 1.35rem; }
.tiers small { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; }

form.card { padding: 2rem 1.7rem; }
form.card h3 { font-size: 1.85rem; }
form.card label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--ink-soft); margin: 1rem 0 0.35rem; }
form.card .form-2 > div:first-child label { margin-top: 1.1rem; }
form.card input, form.card textarea, form.card select {
  width: 100%; min-height: 2.85rem; border: 1px solid var(--line); border-radius: 0.4rem;
  background: var(--paper); padding: 0.65rem 0.8rem; font: inherit; color: var(--ink);
}
form.card input:focus, form.card textarea:focus {
  outline: none; border-color: var(--fairway); box-shadow: 0 0 0 3px rgb(22 53 43 / 0.12);
}
form.card textarea { min-height: 6.5rem; resize: vertical; }
.role {
  display: flex; align-items: flex-start; gap: 0.7rem;
  border: 1px solid var(--line); background: var(--paper); border-radius: 0.4rem;
  padding: 0.75rem 0.85rem; margin-bottom: 0.4rem; font-size: 0.9rem;
}
.role:has(input:checked) { border-color: var(--fairway); background: color-mix(in oklab, var(--fairway) 6%, var(--paper)); }
.pills { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0.5rem 0; }
.pills button {
  border: 1px solid var(--line); background: var(--paper); border-radius: 0.4rem;
  min-height: 2.45rem; padding: 0 0.85rem; font-weight: 600; font-size: 0.875rem;
}
.pills button.on { background: var(--fairway); color: var(--cream); border-color: var(--fairway); }

.math-grid { display: grid; gap: 1rem; margin-top: 2.2rem; }
.math { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; }
.math h3 { font-size: 1.7rem; }
.math label { display: block; margin-top: 1.2rem; font-size: 0.875rem; font-weight: 500; color: var(--ink-soft); }
.math label strong { display: block; font-family: var(--display); font-size: 1.65rem; color: var(--ink); margin-top: 0.15rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.math input[type=range] {
  width: 100%; margin: 0.7rem 0 0; accent-color: var(--fairway);
  height: 0.35rem; background: var(--paper-2); border-radius: 99px; appearance: none;
}
.math input[type=range]::-webkit-slider-thumb {
  appearance: none; width: 1.05rem; height: 1.05rem; border-radius: 99px;
  background: var(--fairway); border: 2px solid var(--cream); box-shadow: 0 0 0 1px var(--fairway);
}
.math-out { background: var(--fairway); color: var(--cream); border-radius: 0.5rem; padding: 1.35rem 1.25rem; margin-top: 1.5rem; }
.math-out .big { font-family: var(--display); font-size: clamp(2.1rem, 5vw, 3.3rem); margin: 0.15rem 0 0.2rem; font-variant-numeric: tabular-nums; letter-spacing: -0.03em; }
.loss-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.loss-row dd { font-family: var(--display); font-size: 1.85rem; margin: 0.15rem 0 0; font-weight: 600; font-variant-numeric: tabular-nums; }
.loss-row .hot dd { color: var(--danger); }

.tonight { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.tonight li { display: grid; gap: 0.7rem; border-top: 1px solid var(--line); padding: 1.7rem 0; }
.tonight li:last-child { border-bottom: 1px solid var(--line); }
.tonight .n { font-family: var(--display); font-size: 2.5rem; font-weight: 600; color: var(--fairway); line-height: 0.9; margin: 0; letter-spacing: -0.04em; }
.tonight h3 { margin: 0; font-size: 1.6rem; }
.tonight p { margin-top: 0.35rem; color: var(--ink-soft); }
.tonight .btn { justify-self: start; min-width: 10.5rem; }

.streets {
  background: var(--paper-2); border-bottom: 1px solid var(--line);
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  padding: 0.95rem 0;
}
.streets .wrap { display: flex; flex-wrap: wrap; gap: 0.25rem 0.15rem; }
.streets span { padding-right: 0.9rem; }
.streets span:not(:last-child)::after { content: "·"; margin-left: 0.9rem; color: color-mix(in oklab, var(--ink) 28%, transparent); }

.photo-banner { position: relative; min-height: 32rem; color: var(--cream); overflow: hidden; background: var(--fairway); }
.photo-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.photo-banner .shade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgb(18 16 13 / 0.86), rgb(18 16 13 / 0.42) 55%, rgb(18 16 13 / 0.12));
}
.photo-banner .inner { position: relative; min-height: 32rem; display: flex; align-items: flex-end; padding: 4rem 0; }
.photo-banner h2 { font-size: var(--display-size); margin: 0.55rem 0 0; max-width: 14ch; }
.photo-banner p { margin-top: 0.9rem; color: rgb(248 244 235 / 0.82); max-width: 36rem; }
.photo-banner .kicker { color: #c5d0c1; }
.photo-banner .copy { max-width: 36rem; }

.stakes-2 { display: grid; gap: 1rem; padding: 3.5rem 0; }
.stakes-2 .card h3 { font-size: 1.65rem; max-width: 16ch; }

.page-hero { position: relative; overflow: hidden; background: var(--ink); color: var(--cream); min-height: 22rem; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.62; }
.page-hero .shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(18 16 13 / 0.88), rgb(18 16 13 / 0.45) 55%, rgb(18 16 13 / 0.2));
}
.page-hero .inner { position: relative; max-width: 44rem; padding: 5.5rem 0 3.5rem; }
.page-hero h1 { font-size: var(--display-size); max-width: 18ch; }
.page-hero p { color: #d5d0c6; margin-top: 1rem; }
.page-hero .kicker { color: #c5d0c1; }

.plan-list { list-style: none; padding: 0; margin: 2.4rem 0 0; }
.plan-list li { display: grid; gap: 0.35rem; border-top: 1px solid var(--line); padding: 1.55rem 0; }
.plan-list li:last-child { border-bottom: 1px solid var(--line); }
.plan-list .n { font-family: var(--display); color: var(--fairway); font-size: 1.45rem; font-weight: 600; margin: 0; letter-spacing: -0.03em; }
.plan-list h3, .plan-list h2 { font-size: 1.55rem; }
.plan-list p { margin-top: 0.35rem; color: var(--ink-soft); }
.timeline + h2, .faq + h2 { margin-top: 3.4rem; }
.plan-lead { margin-top: 1.8rem; }

.join-points { list-style: none; padding: 0; display: grid; gap: 1.35rem; }
.join-points li { padding-top: 1.35rem; border-top: 1px solid var(--line); }
.join-points li:first-child { padding-top: 0; border-top: 0; }
.join-points strong { display: block; font-family: var(--display); font-size: 1.45rem; font-weight: 600; letter-spacing: -0.02em; }
.join-points span { display: block; margin-top: 0.3rem; color: var(--ink-soft); font-size: 0.975rem; }

.wont { list-style: none; padding: 0; margin-top: 1.1rem; display: grid; gap: 0.85rem; }
.wont li { padding-left: 1.1rem; border-left: 1.5px solid var(--fairway); color: var(--ink-soft); font-size: 0.975rem; }

.faq details { border-top: 1px solid var(--line); padding: 1.15rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: var(--display); font-size: 1.25rem; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-weight: 500; color: var(--fairway); }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 0.55rem 0 0; color: var(--ink-soft); font-size: 0.975rem; max-width: 38rem; }

.sources { list-style: none; padding: 0; margin-top: 1.2rem; }
.sources li { border-top: 1px solid var(--line); padding: 0.95rem 0; font-size: 0.95rem; }
.sources li:last-child { border-bottom: 1px solid var(--line); }
.sources a { color: var(--fairway); font-weight: 500; }

footer { background: var(--fairway); color: var(--cream); padding: 3.6rem 0 3.2rem; }
.foot-grid { display: grid; gap: 2.2rem; }
footer a { color: var(--cream); }
footer .brand { color: var(--cream); }
footer .mark { background: var(--cream); color: var(--fairway); }
footer .brand em { color: var(--sage); }
footer .sage { margin-top: 1.1rem; max-width: 22rem; }
.foot-links { list-style: none; padding: 0; display: grid; gap: 0.45rem; margin-top: 0.7rem; }
.foot-links a { text-decoration: none; font-size: 0.95rem; }
.foot-links a:hover { text-decoration: underline; }
.muted { color: var(--muted); font-size: 0.95rem; }
.sage { color: var(--sage); }
.pledge-msg {
  width: 100%; min-height: 10.5rem; margin-top: 1rem;
  border: 1px solid var(--line); border-radius: 0.4rem;
  background: var(--paper); padding: 0.85rem;
  font: inherit; font-size: 0.85rem; line-height: 1.45; color: var(--ink);
}
.send-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  padding: 0.7rem 0.75rem max(0.7rem, env(safe-area-inset-bottom));
  background: color-mix(in oklab, var(--paper) 94%, transparent);
  border-top: 1px solid var(--line); backdrop-filter: blur(14px);
}
.sticky-cta .btn { width: 100%; }

@media (min-width: 768px) {
  .nav-links, .nav-cta { display: flex; }
  .menu-btn, .mobile-nav, .sticky-cta { display: none !important; }
  body { padding-bottom: 0; }
  .wrap { padding: 0 1.75rem; }
  .section { padding: 6.25rem 0; }
  .split-2 { grid-template-columns: 1.08fr 0.92fr; align-items: start; gap: 3.5rem; }
  .split-land { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 3.5rem; }
  .cta-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .timeline li { grid-template-columns: 7.5rem 1fr; gap: 2.4rem; align-items: start; }
  .foot-grid { grid-template-columns: 1.4fr 0.9fr 1.1fr; }
  .form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
  .span-2 { grid-column: 1 / -1; }
  .stats-rail dl { grid-template-columns: repeat(4, 1fr); }
  .stats-rail div { padding: 1.7rem 0; }
  .stats-rail div:nth-child(n+3) { border-top: 0; }
  .stats-rail div + div { border-left: 1px solid var(--line); padding-left: 1.6rem; }
  .tonight li { grid-template-columns: 5.5rem 1fr auto; gap: 2rem; align-items: center; }
  .math-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .join-form { position: sticky; top: 5.2rem; }
  .stakes-2 { grid-template-columns: 1fr 1fr; padding: 4.5rem 0; }
  .plan-list li { grid-template-columns: 4.2rem 1fr; gap: 1.8rem; }
  .photo-banner, .photo-banner .inner { min-height: 38rem; }
  .page-hero .inner { padding: 6.5rem 0 4.25rem; }
  .hero, .hero-inner { min-height: calc(100dvh - 6.4rem); }
  .hero-inner { padding-bottom: 4.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
