/* ============================================
   GRAND STAIRCASE EDITORIAL — CINEMATIC
   Instrument Serif. Four colors. Visual drama.
   ============================================ */

:root {
  --sand: #F2EADF;
  --sand-dark: #E5D9CC;
  --sand-deep: #D4C5B3;
  --rust: #B8472E;
  --rust-glow: rgba(184, 71, 46, 0.35);
  --green: #2F4F3E;
  --green-light: #3D6B52;
  --ink: #1C1917;
  --ink-mid: #44403C;
  --ink-light: #78716C;
  --ink-faint: #A8A29E;
  --warm-dark: #1A1512;
  --warm-darker: #110E0B;

  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'DM Mono', 'Courier New', monospace;

  --prose-w: 660px;
  --wide-w: 1080px;
}

.skip-link, .skip-link:focus { display: none !important; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: var(--rust);
  text-decoration: underline;
  text-decoration-color: rgba(184,71,46,0.25);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
a:hover { text-decoration-color: var(--rust); }

::selection { background: rgba(184,71,46,0.12); }

/* ============================================
   LOADING CURTAIN
   ============================================ */
.loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2.5rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.done {
  opacity: 0; visibility: hidden;
  pointer-events: none;
}
.loader-logos {
  display: flex; align-items: center; gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}
.loader-logo {
  height: 28px; width: auto;
  filter: brightness(10);
}
.loader-logo--suwa {
  height: 40px;
  filter: brightness(0) invert(1);
}
.loader-sep {
  font-family: var(--sans); font-size: 0.9rem;
  font-weight: 300; color: rgba(255,255,255,0.2);
}
.loader-suwa-link {
  text-decoration: none;
  display: inline-flex;
  transition: opacity 0.2s;
}
.loader-suwa-link:hover { opacity: 0.7; }
.loader-bar {
  width: 120px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px; overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.6s 0.6s ease forwards;
}
.loader-bar-fill {
  height: 100%; width: 0;
  background: var(--rust);
  border-radius: 1px;
  transition: width 0.3s ease;
}

body.loading { overflow: hidden; }

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 0; height: 2px;
  background: var(--rust);
  z-index: 10000; will-change: width;
  opacity: 0; transition: opacity 0.4s;
}
.scroll-progress.visible { opacity: 1; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav--scrolled {
  background: rgba(242,234,223,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(28,25,23,0.06);
  padding: 0.9rem 2rem;
}
.nav-logo-link { text-decoration: none; }
.nav-logo-img { height: 38px; width: auto; transition: all 0.3s; }
.nav:not(.nav--scrolled) .nav-logo-img { filter: brightness(10); }

.nav-center {
  display: flex; align-items: center; gap: 1.5rem;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; }

.nav-link {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  color: var(--ink-light); transition: color 0.3s;
  white-space: nowrap;
}
.nav:not(.nav--scrolled) .nav-link { color: rgba(255,255,255,0.4); }
.nav-link:hover { color: var(--ink); text-decoration: none; }
.nav:not(.nav--scrolled) .nav-link:hover { color: rgba(255,255,255,0.9); }
.nav-cta {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.5rem 1.2rem; border-radius: 3px;
  background: var(--rust); color: #fff;
  transition: all 0.3s;
}
.nav-cta:hover { background: #c95a3f; color: #fff; transform: translateY(-1px); }

@media (max-width: 900px) {
  .nav-center { display: none; }
}
@media (max-width: 600px) {
  .nav { padding: 0.9rem 1.25rem; }
  .nav-link--sub { display: none; }
  .nav-logo-img { height: 28px; }
}

/* ============================================
   HERO — CINEMATIC
   ============================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden; background: #000;
}

.hero-bg { position: absolute; inset: 0; }

.hero-video {
  position: absolute; inset: -5%; width: 110%; height: 110%;
  object-fit: cover; object-position: center 35%;
  will-change: transform;
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.2) 25%,
      rgba(0,0,0,0.4) 50%,
      rgba(0,0,0,0.7) 75%,
      rgba(0,0,0,0.85) 100%
    );
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(2rem, 5vw, 6rem) 0;
  max-width: 800px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-eyebrow-sep { color: rgba(255,255,255,0.2); }
.hero-eyebrow-link {
  color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color 0.2s;
}
.hero-eyebrow-link:hover { color: rgba(255,255,255,0.8); }

.hero-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 1.05; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 1.5rem;
}
.hero-title-line {
  display: block;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}
.hero-title-line:nth-child(1) { animation-delay: 0.4s; }
.hero-title-line:nth-child(2) { animation-delay: 0.55s; }
.hero-title-line:nth-child(3) { animation-delay: 0.7s; }
.hero-title-line:nth-child(4) { animation-delay: 0.85s; }

.hero-title-line--accent {
  color: var(--sand);
  font-style: italic;
}

.hero-dek {
  font-family: var(--sans); font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 400; line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  opacity: 0; animation: fadeUp 0.8s 1s ease forwards;
}

.hero-bottom {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 2.5rem clamp(2rem, 5vw, 6rem);
}

.hero-credit {
  font-family: var(--sans); font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  opacity: 0; animation: fadeUp 0.6s 1.4s ease forwards;
}

.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeUp 0.6s 1.6s ease forwards;
}
.hero-scroll span {
  font-family: var(--sans); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

@media (max-width: 700px) {
  .hero-content { padding: 0 1.5rem; }
  .hero-bottom { padding: 2rem 1.5rem; }
  .hero-credit { display: none; }
}

/* ============================================
   LAYOUT
   ============================================ */
.prose-container { max-width: var(--prose-w); margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: var(--wide-w); margin: 0 auto; padding: 0 2rem; }

.section { padding: 5rem 0; }
.section--sand { background: var(--sand); }
.section--dark-warm {
  background: var(--warm-dark);
  position: relative;
}
.section--quote {
  padding: 4rem 0;
  background: var(--sand-dark);
}
.section--action {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--sand-dark) 0%, var(--sand) 100%);
}
.section--subscribe {
  padding: 5rem 0;
  background: var(--sand);
  border-top: 1px solid rgba(28,25,23,0.06);
}

/* Drop cap */
.prose--drop::first-letter {
  font-family: var(--serif);
  float: left; font-size: 3.8em; line-height: 0.8;
  margin: 0.05em 0.12em 0 -0.03em;
  color: var(--ink);
}

@media (max-width: 700px) {
  .prose-container, .container--wide { padding: 0 1.5rem; }
  .section { padding: 3.5rem 0; }
}

/* ============================================
   TYPOGRAPHY — EDITORIAL
   ============================================ */
.section-head {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.section-head--light { color: var(--sand); }

.prose {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.75; color: var(--ink-mid);
  margin-bottom: 1.5rem;
}
.prose:last-child { margin-bottom: 0; }
.prose em { font-style: italic; }
.prose strong, .prose--bold { color: var(--ink); font-weight: 400; }
.prose--bold { font-weight: 400; color: var(--ink); }

/* Lede Opener — dramatic bill display */
.lede-opener {
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(28,25,23,0.06);
  margin-bottom: 3rem;
}
.lede-bill-display {
  max-width: 700px; margin: 0 auto;
}
.lede-bill-label {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint); display: block;
  margin-bottom: 2rem;
}
.lede-bills {
  display: flex; align-items: baseline;
  justify-content: center; gap: 1rem;
  margin-bottom: 2.5rem;
}
.lede-bill {
  font-family: var(--mono); font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 500; color: var(--rust);
  text-decoration: none; letter-spacing: -0.02em;
  transition: color 0.2s;
  border-bottom: 2px solid rgba(184,71,46,0.2);
}
.lede-bill:hover { color: #c95a3f; border-bottom-color: var(--rust); }
.lede-bill-amp {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--ink-faint);
}
.lede-bill-effect {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.4; color: var(--ink);
  max-width: 500px; margin: 0 auto;
}

.prose-lede {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem) !important;
  line-height: 1.7 !important;
  color: var(--ink) !important;
}

.prose--light { color: rgba(242,234,223,0.7); }
.prose--light a { color: rgba(242,234,223,0.6); }
.prose--light strong, .prose--light.prose--bold { color: var(--sand); }

.prose-accent {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(28,25,23,0.08);
  border-bottom: 1px solid rgba(28,25,23,0.08);
}

.prose--display {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem) !important;
  line-height: 1.25 !important;
  color: var(--ink) !important;
  margin: 0 !important;
}

.partnership-note {
  margin-top: 2.5rem; padding: 1.5rem 2rem;
  border-left: 2px solid var(--green);
  background: rgba(47,79,62,0.04);
}
.partnership-note p {
  font-family: var(--sans); font-size: 0.95rem;
  line-height: 1.7; color: var(--ink-mid); margin: 0;
}

/* ============================================
   FULL-BLEED PHOTO BREAKS — CINEMATIC
   ============================================ */
.photo-break {
  position: relative; width: 100%;
  height: 75vh; min-height: 450px;
  overflow: hidden;
}
.photo-break-img {
  position: absolute; inset: -10%; width: 120%; height: 120%;
  background-size: cover; background-position: center;
  will-change: transform;
}
.photo-break-credit {
  position: absolute; bottom: 1.25rem; right: 1.5rem;
  font-family: var(--sans); font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  z-index: 2;
}

@media (max-width: 700px) {
  .photo-break { height: 55vh; min-height: 350px; }
}

/* ============================================
   BIG QUOTE
   ============================================ */
.big-quote {
  border: none; margin: 0; padding: 0;
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--rust);
}
.big-quote p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.45; color: var(--ink);
  margin-bottom: 1.25rem;
}
.big-quote cite {
  font-family: var(--sans); font-style: normal;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-light);
}

@media (max-width: 700px) {
  .big-quote { padding-left: 1.25rem; }
}

/* ============================================
   TIMELINE — ANIMATED
   ============================================ */
.timeline {
  position: relative;
  max-width: 650px; margin: 0 auto;
  padding: 3rem 0 3rem 3rem;
}
.timeline-line {
  position: absolute; left: 0; top: 3rem; bottom: 3rem;
  width: 2px; background: rgba(242,234,223,0.08);
  overflow: hidden;
}
.timeline-line::after {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 0;
  background: linear-gradient(180deg, var(--sand-deep), var(--rust), var(--rust));
  transition: height 0.05s linear;
}

.tl-item {
  position: relative; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(16px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.tl-item.visible { opacity: 1; transform: translateY(0); }
.tl-item:last-child { margin-bottom: 0; }

.tl-item::before {
  content: ''; position: absolute;
  left: -3rem; top: 0.4rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--warm-dark);
  border: 2px solid rgba(242,234,223,0.2);
  z-index: 1; transition: all 0.4s;
}
.tl-item.visible::before { background: rgba(242,234,223,0.3); }

.tl-item[data-tl="danger"]::before { border-color: var(--rust); }
.tl-item[data-tl="danger"].visible::before {
  background: var(--rust);
  box-shadow: 0 0 0 4px rgba(184,71,46,0.15);
}

.tl-item[data-tl="now"]::before {
  border-color: var(--green-light); width: 10px; height: 10px;
  left: calc(-3rem - 1px); top: 0.3rem;
}
.tl-item[data-tl="now"].visible::before {
  background: var(--green-light);
  box-shadow: 0 0 0 5px rgba(47,79,62,0.2);
  animation: nowPulse 2s ease-in-out infinite;
}

@keyframes nowPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(61,107,82,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(61,107,82,0); }
}

.tl-date {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.05em; color: rgba(242,234,223,0.35);
  margin-bottom: 0.3rem;
}
.tl-item[data-tl="danger"] .tl-date { color: var(--rust); }
.tl-item[data-tl="now"] .tl-date { color: var(--green-light); }

.tl-title {
  font-family: var(--serif); font-size: 1.15rem;
  color: var(--sand); margin-bottom: 0.3rem; line-height: 1.3;
}
.tl-desc {
  font-family: var(--sans); font-size: 0.85rem;
  line-height: 1.6; color: rgba(242,234,223,0.5);
}

@media (max-width: 700px) {
  .timeline { padding-left: 2.5rem; }
  .tl-item::before { left: -2.5rem; }
  .tl-item[data-tl="now"]::before { left: calc(-2.5rem - 1px); }
}

/* ============================================
   SCROLLYTELLING MAP
   ============================================ */
.scrolly-section {
  position: relative; background: #000;
}
.scrolly-map-wrap {
  position: sticky; top: 0; height: 100vh; width: 100%; z-index: 1;
}
.scrolly-map { width: 100%; height: 100%; }
.scrolly-steps {
  position: relative; z-index: 2;
  margin-top: -100vh; pointer-events: none;
}
.scrolly-step {
  min-height: 100vh; display: flex;
  align-items: center; padding: 2rem;
}
.scrolly-card {
  background: rgba(26,21,18,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 2rem 2.5rem; border-radius: 8px;
  max-width: 380px; pointer-events: auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(242,234,223,0.06);
  opacity: 0; transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.scrolly-step.is-active .scrolly-card {
  opacity: 1; transform: translateY(0);
}

.sc-label {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sand-deep); display: block; margin-bottom: 0.75rem;
}
.sc-label--danger { color: var(--rust); }

.sc-title {
  font-family: var(--serif); font-size: 1.5rem;
  color: var(--sand); margin-bottom: 0.75rem; line-height: 1.2;
}
.scrolly-card p {
  font-family: var(--sans); font-size: 0.88rem;
  line-height: 1.7; color: rgba(242,234,223,0.7); margin: 0;
}
.scrolly-card p + p { margin-top: 0.75rem; }
.scrolly-card a { color: rgba(242,234,223,0.5); }

.scrolly-card--boundary { border-left: 3px solid var(--green); }
.sc-green { color: var(--green-light); font-weight: 600; }
.sc-red { color: var(--rust); font-weight: 600; }

@media (min-width: 900px) {
  .scrolly-step { padding-left: 5rem; }
}
@media (max-width: 768px) {
  .scrolly-step { align-items: flex-end; padding: 1.5rem 1.5rem 3rem; }
  .scrolly-card { max-width: 100%; padding: 1.5rem; }
}

/* Map Markers */
.map-marker-wrapper { position: relative; cursor: default; }
.map-marker-dot {
  width: 10px; height: 10px; background: var(--rust);
  border-radius: 50%; border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 0 12px rgba(184,71,46,0.5);
}
.map-marker-tooltip {
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: rgba(26,21,18,0.92); backdrop-filter: blur(8px);
  color: var(--sand); font-family: var(--sans);
  font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.6rem; border-radius: 3px;
  white-space: nowrap; pointer-events: none;
}
.map-marker-tooltip::after {
  content: ''; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(26,21,18,0.92);
}

/* ============================================
   BEE SWARM
   ============================================ */
.bee-section {
  position: relative; overflow: hidden;
  padding: 8rem 0; min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
}
.bee-swarm {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}
.bee-section .stat-reveal { position: relative; z-index: 1; }

.bee-dot {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, #D4A84B, #C4943A);
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: transform;
}
.bee-dot.visible {
  opacity: 1;
  animation: beeFloat var(--float-dur, 4s) var(--float-delay, 0s) ease-in-out infinite;
}
.bee-dot.bright {
  width: 5px; height: 5px;
  background: radial-gradient(circle, #E8C85A, #D4A84B);
  box-shadow: 0 0 6px rgba(212, 168, 75, 0.4);
}

@keyframes beeFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(var(--dx1, 8px), var(--dy1, -6px)); }
  50% { transform: translate(var(--dx2, -4px), var(--dy2, 10px)); }
  75% { transform: translate(var(--dx3, 6px), var(--dy3, -3px)); }
}

/* ============================================
   ANIMATED STAT REVEAL
   ============================================ */
.stat-reveal {
  text-align: center;
  max-width: 600px; margin: 0 auto; padding: 0 2rem;
}
.stat-reveal-number {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--sand); line-height: 1;
  opacity: 0; transform: scale(0.9);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-reveal-number.counted {
  opacity: 1; transform: scale(1);
}
.stat-reveal-label {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(242,234,223,0.4); margin-top: 1rem;
}
.stat-reveal-context {
  font-family: var(--sans); font-size: 0.85rem;
  color: rgba(242,234,223,0.35); margin-top: 0.75rem;
  line-height: 1.6;
}

/* ============================================
   CONSEQUENCE SCROLL — PHOTO DEGRADATION
   ============================================ */
.consequence-section {
  position: relative; background: #000;
}
.consequence-bg {
  position: sticky; top: 0; height: 100vh; width: 100%;
  overflow: hidden; z-index: 1;
}
.consequence-photo {
  position: absolute; inset: -5%; width: 110%; height: 110%;
  background-size: cover; background-position: center;
  transition: filter 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: filter;
  filter: saturate(1.1) brightness(1);
}
.consequence-overlay {
  position: absolute; inset: 0;
  transition: background 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
}
.consequence-steps {
  position: relative; z-index: 2; margin-top: -100vh;
}
.cq-step {
  min-height: 100vh; display: flex;
  align-items: center; padding: 2rem;
  pointer-events: none;
}
.cq-card {
  background: rgba(26,21,18,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem; border-radius: 8px;
  max-width: 420px; pointer-events: auto;
  box-shadow: 0 12px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(242,234,223,0.04);
}
.cq-card--final { border-left: 3px solid var(--rust); }

.cq-title {
  font-family: var(--serif); font-size: 1.5rem;
  color: var(--sand); margin-bottom: 0.75rem; line-height: 1.2;
}
.cq-card p {
  font-family: var(--sans); font-size: 0.88rem;
  line-height: 1.7; color: rgba(242,234,223,0.7);
}
.cq-card p + p { margin-top: 1rem; }
.cq-card a { color: rgba(242,234,223,0.5); }

@media (max-width: 768px) {
  .cq-step { align-items: flex-end; padding: 1.5rem 1.5rem 3rem; }
  .cq-card { max-width: 100%; padding: 2rem; }
}

/* ============================================
   ECON STATS — ANIMATED BARS
   ============================================ */
.econ-stats {
  max-width: 600px; margin: 3rem auto;
  padding: 0 2rem;
}
.econ-stat { margin-bottom: 1.75rem; }
.econ-stat-header {
  display: flex; justify-content: space-between;
  margin-bottom: 0.5rem;
}
.econ-stat-label {
  font-family: var(--sans); font-size: 0.85rem;
  color: var(--ink-mid); font-weight: 500;
}
.econ-stat-value {
  font-family: var(--mono); font-size: 0.85rem;
  color: var(--green); font-weight: 500;
}
.econ-bar-track {
  height: 8px; background: rgba(28,25,23,0.06);
  border-radius: 4px; overflow: hidden;
}
.econ-bar-fill {
  height: 100%; width: 0; border-radius: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.econ-stat-source {
  text-align: center; margin-top: 0.5rem;
}
.econ-stat-source a {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-faint); text-decoration: none;
}

/* Poll Stats */
.poll-stats {
  display: flex; gap: 3rem; justify-content: center;
  padding: 3rem 2rem; max-width: var(--wide-w); margin: 0 auto;
}
.poll-stat { text-align: center; flex: 1; max-width: 300px; }
.poll-stat-num {
  font-family: var(--serif); font-size: clamp(3.5rem, 10vw, 6rem);
  color: var(--ink); line-height: 1; display: block;
}
.poll-pct { font-size: 0.5em; }
.poll-stat-desc {
  font-family: var(--sans); font-size: 0.85rem;
  color: var(--ink-mid); margin-top: 0.75rem; line-height: 1.5;
}
.poll-stat-src {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 0.5rem;
}

@media (max-width: 700px) {
  .poll-stats { flex-direction: column; align-items: center; gap: 2.5rem; }
}

/* ============================================
   CRA VISUAL EXPLAINER
   ============================================ */
.cra-visual {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; max-width: 700px; margin: 0 auto;
  padding: 3rem 0;
}
.cra-step {
  text-align: center; flex: 1;
}
.cra-num {
  font-family: var(--serif); font-size: 3.5rem;
  color: var(--rust); line-height: 1; margin-bottom: 1rem;
}
.cra-text {
  font-family: var(--sans); font-size: 0.9rem;
  line-height: 1.6; color: rgba(242,234,223,0.6);
}
.cra-text strong { color: var(--sand); }
.cra-arrow { color: rgba(242,234,223,0.15); flex-shrink: 0; }

@media (max-width: 700px) {
  .cra-visual { flex-direction: column; gap: 1.5rem; }
  .cra-arrow svg { transform: rotate(90deg); }
}

/* ============================================
   ACTION SECTION
   ============================================ */
.action-head {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1; color: var(--ink);
  margin-bottom: 2rem;
}

.action-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin: 2rem 0;
}

.btn {
  display: inline-flex; align-items: center;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: 4px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn--primary {
  background: var(--rust); color: #fff;
}
.btn--primary:hover {
  background: #c95a3f; color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 20px var(--rust-glow);
}
.btn--outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline:hover {
  background: var(--ink); color: var(--sand);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--ink); color: var(--sand);
  text-decoration: none;
}
.btn--dark:hover {
  background: var(--ink-mid); color: var(--sand);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .action-ctas { flex-direction: column; }
  .btn { justify-content: center; text-align: center; }
}

/* ============================================
   CALL SCRIPT
   ============================================ */
.call-script { margin: 2rem 0; }

.call-script-toggle {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.8rem 1.25rem;
  background: transparent;
  border: 1.5px solid rgba(28,25,23,0.2);
  border-radius: 4px; color: var(--ink-mid);
  font-family: var(--sans); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
  width: 100%; text-align: left; min-height: 44px;
}
.call-script-toggle:hover { border-color: var(--ink); color: var(--ink); }
.call-script-toggle .toggle-icon {
  transition: transform 0.3s; font-size: 1.1rem; font-weight: 300;
}
.call-script-toggle.open .toggle-icon { transform: rotate(45deg); }

.call-script-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  background: rgba(28,25,23,0.02);
  border: 1px solid rgba(28,25,23,0.06);
  border-top: none; border-radius: 0 0 4px 4px;
}
.call-script-body.open { max-height: 800px; padding: 1.5rem; }

.script-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 0.5rem;
}
.call-script-body blockquote {
  border-left: 2px solid var(--rust); padding-left: 1.25rem;
  margin: 0.5rem 0; font-family: var(--serif);
  font-style: italic; font-size: 0.95rem;
  line-height: 1.75; color: var(--ink-mid);
}
.script-note {
  font-size: 0.75rem; color: var(--ink-faint); margin-top: 1rem;
}

/* ============================================
   SHARE
   ============================================ */
.share-row {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 3rem; padding: 0 2rem;
}
.share-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.share-btn:hover { transform: translateY(-2px) scale(1.05); }
.share-btn svg { width: 18px; height: 18px; fill: currentColor; }

.share-btn--x { background: var(--ink); color: #fff; }
.share-btn--fb { background: #1877f2; color: #fff; }
.share-btn--email { background: var(--ink-mid); color: #fff; }
.share-btn--copy {
  background: transparent; color: var(--ink-light);
  border: 1.5px solid rgba(28,25,23,0.15);
}
.share-btn--copy:hover { border-color: var(--ink); color: var(--ink); }
.share-btn--copy.copied { border-color: var(--green); color: var(--green); }

/* ============================================
   SUBSCRIBE
   ============================================ */
.subscribe-block {
  text-align: center; max-width: 480px; margin: 0 auto; padding: 0 2rem;
}
.subscribe-block h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink); margin-bottom: 1rem;
}
.subscribe-block > p {
  font-family: var(--sans); font-size: 0.9rem;
  color: var(--ink-mid); line-height: 1.7; margin-bottom: 1.5rem;
}
.subscribe-note {
  display: block; font-family: var(--sans);
  font-size: 0.65rem; color: var(--ink-faint);
  margin-top: 0.75rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 2rem; text-align: center;
  border-top: 1px solid rgba(28,25,23,0.06);
}
.footer-org {
  font-family: var(--sans); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 0.75rem;
}
.footer-links {
  display: flex; justify-content: center; gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer-links a {
  font-size: 0.7rem; color: var(--ink-faint); text-decoration: none;
}
.footer-links a:hover { color: var(--ink); }
.footer-note {
  font-size: 0.65rem; color: var(--ink-faint);
  line-height: 1.6; max-width: 420px; margin: 0 auto;
}

/* ============================================
   CHAPTERS SIDEBAR
   ============================================ */
.chapters-sidebar {
  position: fixed; right: 1.25rem; top: 50%;
  transform: translateY(-50%); z-index: 900;
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.chapters-sidebar.visible { opacity: 1; pointer-events: auto; }

.chapters-track {
  display: flex; flex-direction: column; align-items: flex-end;
  position: relative;
}
.chapters-track::before {
  content: ''; position: absolute; right: 3px;
  top: 0.5rem; bottom: 0.5rem;
  width: 1px; background: rgba(28,25,23,0.08);
  z-index: -1;
}

.chapter-dot {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0; text-decoration: none;
}
.chapter-dot::after {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: rgba(28,25,23,0.1);
  border: 1.5px solid rgba(28,25,23,0.15);
  transition: all 0.3s; flex-shrink: 0;
}
.chapter-dot:hover::after {
  background: rgba(28,25,23,0.2); transform: scale(1.3);
}
.chapter-dot.active::after {
  background: var(--rust); border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(184,71,46,0.12);
  transform: scale(1.2);
}

.chapter-label {
  font-family: var(--sans); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: transparent; white-space: nowrap;
  transition: color 0.3s; pointer-events: none;
}
.chapter-dot:hover .chapter-label,
.chapter-dot.active .chapter-label { color: var(--ink-faint); }

/* Dark-section awareness */
.chapters-sidebar.in-dark .chapters-track::before {
  background: rgba(255,255,255,0.06);
}
.chapters-sidebar.in-dark .chapter-dot::after {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
.chapters-sidebar.in-dark .chapter-dot.active::after {
  background: var(--sand); border-color: var(--sand);
  box-shadow: 0 0 0 3px rgba(242,234,223,0.1);
}
.chapters-sidebar.in-dark .chapter-dot:hover .chapter-label,
.chapters-sidebar.in-dark .chapter-dot.active .chapter-label {
  color: rgba(242,234,223,0.4);
}

@media (max-width: 1100px) { .chapter-label { display: none; } }
@media (max-width: 768px) { .chapters-sidebar { display: none; } }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-up {
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* Reveal mask — horizontal wipe */
.reveal-mask {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-mask.visible {
  clip-path: inset(0 0% 0 0);
}

/* ============================================
   COLOR GRADING OVERLAY
   ============================================ */
.color-grade {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  mix-blend-mode: color;
  opacity: 0;
  transition: background 1.2s ease, opacity 1.2s ease;
}

/* ============================================
   ODOMETER
   ============================================ */
.odometer-section {
  padding: 8rem 0;
  display: flex; align-items: center; justify-content: center;
  min-height: 60vh;
}
.odometer-container {
  text-align: center;
  max-width: var(--wide-w); margin: 0 auto; padding: 0 2rem;
}
.odometer-label {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(242,234,223,0.3);
  margin-bottom: 2rem;
}
.odometer {
  display: inline-flex; align-items: flex-end;
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 1; color: var(--sand);
}
.odo-digit {
  display: inline-block; overflow: hidden;
  height: 1em; position: relative;
}
.odo-reel {
  display: flex; flex-direction: column;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.odo-reel span {
  display: block; height: 1em; line-height: 1;
  text-align: center; min-width: 0.6em;
}
.odo-comma {
  font-size: 0.6em; color: rgba(242,234,223,0.3);
  align-self: flex-end; margin-bottom: 0.05em;
  line-height: 1;
}
.odometer-sub {
  font-family: var(--sans); font-size: 0.9rem;
  color: rgba(242,234,223,0.35);
  margin-top: 2rem; line-height: 1.6;
}

/* Inline odometer (in comparison) */
.odo-inline {
  display: inline-flex; align-items: flex-end;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1; color: var(--rust);
  text-shadow: 0 0 40px var(--rust-glow);
  position: relative;
}
.odo-inline .odo-digit { color: var(--rust); }
.odo-inline-pct {
  font-size: 0.5em; margin-left: 0.05em;
  align-self: flex-start; margin-top: 0.15em;
}

/* ============================================
   DOMINO CASCADE
   ============================================ */
.domino-section { overflow: hidden; }
.domino-track {
  display: flex; align-items: flex-end; justify-content: center;
  gap: clamp(0.5rem, 1.5vw, 1.25rem);
  padding: 4rem 2rem 3rem;
  perspective: 1200px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.domino {
  flex: 0 0 auto;
  width: clamp(60px, 8vw, 85px);
  height: clamp(120px, 16vw, 170px);
  transform-origin: bottom right;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.domino-face {
  width: 100%; height: 100%;
  background: rgba(242,234,223,0.05);
  border: 1px solid rgba(242,234,223,0.1);
  border-radius: 4px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0.5rem; gap: 0.25rem;
  text-align: center;
}
.domino-date {
  font-family: var(--mono); font-size: 0.5rem;
  color: rgba(242,234,223,0.3);
}
.domino-name {
  font-family: var(--sans); font-size: clamp(0.5rem, 1vw, 0.65rem);
  font-weight: 600; color: rgba(242,234,223,0.5);
  line-height: 1.3;
}
.domino-vote {
  font-family: var(--mono); font-size: 0.5rem;
  color: var(--rust);
}

/* Fallen state */
.domino--fallen.fallen {
  transform: rotateZ(80deg);
  opacity: 0.35;
}
.domino--fallen:nth-child(2).fallen { transition-delay: 0.1s; }
.domino--fallen:nth-child(3).fallen { transition-delay: 0.2s; }
.domino--fallen:nth-child(4).fallen { transition-delay: 0.3s; }
.domino--fallen:nth-child(5).fallen { transition-delay: 0.4s; }
.domino--fallen:nth-child(6).fallen { transition-delay: 0.5s; }
.domino--fallen:nth-child(7).fallen { transition-delay: 0.6s; }

/* Target domino — glowing, standing */
.domino--target .domino-face {
  background: rgba(184,71,46,0.1);
  border-color: var(--rust);
  box-shadow: 0 0 30px rgba(184,71,46,0.15);
}
.domino--target .domino-name {
  color: var(--sand); font-weight: 700;
  font-size: clamp(0.55rem, 1.1vw, 0.7rem);
}
.domino--target .domino-date { color: var(--rust); }
.domino--target {
  animation: dominoPulse 2.5s ease-in-out infinite;
}
@keyframes dominoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Future dominoes — dim, waiting */
.domino--future { opacity: 0.2; }
.domino--future .domino-face {
  border-style: dashed;
  border-color: rgba(242,234,223,0.08);
}
.domino--future .domino-name {
  color: rgba(242,234,223,0.25);
  font-size: clamp(0.45rem, 0.9vw, 0.55rem);
}

/* ============================================
   INK BLEED
   ============================================ */
.ink-bleed {
  transition: filter 4s ease 2s, transform 4s ease 2s, letter-spacing 4s ease 2s;
}
.ink-bleed.bleeding {
  filter: blur(1.8px);
  transform: scale(1.04);
  letter-spacing: 0.02em;
}


/* ============================================
   MOBILE NAV HAMBURGER
   ============================================ */
.nav-hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  padding: 0; position: relative; z-index: 1001;
}
.nav-hamburger-line {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink); position: relative;
  transition: background 0.2s;
}
.nav-hamburger-line::before,
.nav-hamburger-line::after {
  content: ''; position: absolute; left: 0;
  width: 100%; height: 100%;
  background: inherit;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-hamburger-line::before { transform: translateY(-6px); }
.nav-hamburger-line::after { transform: translateY(6px); }
.nav:not(.nav--scrolled) .nav-hamburger-line { background: #fff; }

.nav-hamburger.open .nav-hamburger-line { background: transparent; }
.nav-hamburger.open .nav-hamburger-line::before {
  background: var(--ink);
  transform: rotate(45deg);
}
.nav-hamburger.open .nav-hamburger-line::after {
  background: var(--ink);
  transform: rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(242,234,223,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.nav-mobile-menu.open { opacity: 1; visibility: visible; }
.nav-mobile-menu a {
  font-family: var(--serif); font-size: 1.5rem;
  color: var(--ink); text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile-menu a:hover { color: var(--rust); }

@media (max-width: 900px) {
  .nav-hamburger { display: inline-flex; }
  .nav-mobile-menu { display: flex; }
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 998; padding: 0.75rem 1.5rem;
  background: rgba(242,234,223,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(28,25,23,0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-sticky-cta.visible { transform: translateY(0); }
.mobile-sticky-cta a {
  display: block; text-align: center;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.75rem; border-radius: 4px;
  background: var(--rust); color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-sticky-cta a:hover { background: #c95a3f; color: #fff; }

@media (max-width: 900px) {
  .mobile-sticky-cta { display: block; }
}

/* ============================================
   CALL SCRIPT COPY BUTTON
   ============================================ */
.call-script-copy {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.75rem; padding: 0.5rem 1rem;
  background: transparent; border: 1.5px solid rgba(28,25,23,0.15);
  border-radius: 3px; cursor: pointer;
  font-family: var(--sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-light);
  transition: all 0.2s;
}
.call-script-copy:hover { border-color: var(--ink); color: var(--ink); }
.call-script-copy.copied { border-color: var(--green); color: var(--green); }
.call-script-copy svg { width: 14px; height: 14px; fill: currentColor; }

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-video { animation: none; }
  .reveal-up { opacity: 1; transform: none; }
  .reveal-mask { clip-path: none; }
  .odo-reel { transition: none; }
  .domino--fallen.fallen { transition: none; }
  .ink-bleed { transition: none; }
  .hero-scroll-line { animation: none; }
  .domino--target { animation: none; }
  .tl-item[data-tl="now"].visible::before { animation: none; }
  .photo-break-img { will-change: auto; }
  .hero-video { will-change: auto; }
  .consequence-photo { will-change: auto; transition: none; }
}
