/* ============================================
   MORGAN NESBIT — DARK FOREST EDITORIAL
   Playfair Display. Pacific Northwest palette.
   ============================================ */

:root {
  --slate: #1B2129;
  --slate-deep: #131920;
  --slate-mid: #242D38;
  --fog: #F0F1EC;
  --fog-warm: #E8E6E0;
  --fog-dark: #D8D6D0;
  --forest: #2D5A3D;
  --forest-light: #3A7A52;
  --forest-glow: rgba(45, 90, 61, 0.35);
  --ember: #8B3A2A;
  --ember-light: #A84B38;
  --ember-glow: rgba(139, 58, 42, 0.35);
  --river: #4A6F8A;
  --river-light: #5E8BA8;
  --larch: #C4963A;
  --deep-forest: #0B1A10;
  --deep-forest-mid: #0F2015;
  --document: #F5F0E0;
  --document-dark: #E8E0CC;
  --ink: #1C1917;
  --ink-mid: #44403C;
  --ink-light: #78716C;
  --ink-faint: #A8A29E;

  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'DM Mono', 'Courier New', monospace;

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

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

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

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

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

a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: rgba(45, 90, 61, 0.25);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
a:hover { text-decoration-color: var(--forest); }

::selection { background: rgba(45, 90, 61, 0.12); }

.mn {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  color: var(--larch);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--forest); color: #fff;
  padding: 0.5rem 1rem; z-index: 99999;
  font-size: 0.85rem; border-radius: 3px;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ============================================
   LOADING CURTAIN
   ============================================ */
body.loading { overflow: hidden; }

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

.scroll-deadline {
  position: fixed; top: 6px; right: 1.5rem;
  z-index: 10001;
  font-family: var(--mono); font-size: 0.6rem;
  font-weight: 400; letter-spacing: 0.06em;
  color: rgba(139, 58, 42, 0.7);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.scroll-deadline.visible { opacity: 1; }
.scroll-deadline-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ember);
  margin-right: 6px;
  vertical-align: middle;
  animation: deadlinePulse 2s ease-in-out infinite;
}
@keyframes deadlinePulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================
   CHAPTERS SIDEBAR
   ============================================ */
.chapters-sidebar {
  position: fixed; right: 1.5rem; top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.chapters-sidebar.visible {
  opacity: 1; pointer-events: auto;
}
.chapters-track {
  display: flex; flex-direction: column; gap: 1.4rem;
  align-items: flex-end;
  position: relative;
}
.chapter-river {
  position: absolute;
  right: 2px; top: 0; bottom: 0;
  width: 12px;
  pointer-events: none;
  z-index: -1;
}
.chapter-river-path {
  fill: none;
  stroke: rgba(74, 111, 138, 0.15);
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: stroke 0.4s;
}
.chapters-sidebar.in-dark .chapter-river-path {
  stroke: rgba(94, 139, 168, 0.2);
}
.chapter-river-progress {
  fill: none;
  stroke: var(--river);
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}
.chapters-sidebar.in-dark .chapter-river-progress {
  stroke: var(--river-light);
}
.chapter-dot {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
  position: relative;
}
.chapter-dot::after {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(28, 25, 23, 0.15);
  transition: all 0.3s;
  flex-shrink: 0;
}
.chapter-dot.active::after {
  background: var(--river);
  box-shadow: 0 0 0 4px rgba(74, 111, 138, 0.15);
  width: 8px; height: 8px;
}
.chapter-dot.visited::after {
  background: var(--river);
  opacity: 0.5;
}
.chapters-sidebar.in-dark .chapter-dot::after {
  background: rgba(240, 241, 236, 0.2);
}
.chapters-sidebar.in-dark .chapter-dot.active::after {
  background: var(--river-light);
  box-shadow: 0 0 0 4px rgba(94, 139, 168, 0.2);
}
.chapters-sidebar.in-dark .chapter-dot.visited::after {
  background: var(--river-light);
  opacity: 0.5;
}
.chapter-label {
  font-family: var(--sans); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0; transition: opacity 0.2s;
  white-space: nowrap;
}
.chapters-sidebar.in-dark .chapter-label { color: rgba(240,241,236,0.3); }
.chapter-dot:hover .chapter-label { opacity: 1; }
.chapter-dot.active .chapter-label { opacity: 0.7; }

.chapter-top {
  background: none; border: 1px solid rgba(28, 25, 23, 0.1); cursor: pointer;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(28, 25, 23, 0.3);
  transition: all 0.3s;
  margin-top: 0.5rem;
  align-self: flex-end;
}
.chapter-top:hover { color: var(--river); border-color: var(--river); }
.chapters-sidebar.in-dark .chapter-top { color: rgba(240, 241, 236, 0.3); border-color: rgba(240, 241, 236, 0.1); }
.chapters-sidebar.in-dark .chapter-top:hover { color: var(--river-light); border-color: var(--river-light); }

@media (max-width: 1200px) {
  .chapters-sidebar { display: none; }
}

.scroll-top-mobile {
  position: fixed; bottom: 4.5rem; right: 1rem;
  width: 40px; height: 40px;
  background: var(--slate); border: none; border-radius: 50%;
  color: var(--fog);
  display: none; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 800;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.scroll-top-mobile.visible {
  opacity: 1; transform: translateY(0);
}
@media (max-width: 1200px) {
  .scroll-top-mobile { display: flex; }
}

/* ============================================
   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(240, 241, 236, 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: 48px; 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(--forest); color: #fff;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--forest-light); color: #fff; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative;
  padding: 0;
}
.nav-hamburger-line,
.nav-hamburger-line::before,
.nav-hamburger-line::after {
  display: block; height: 2px; width: 100%;
  background: var(--ink-light); border-radius: 1px;
  transition: all 0.3s;
  position: absolute;
}
.nav:not(.nav--scrolled) .nav-hamburger-line,
.nav:not(.nav--scrolled) .nav-hamburger-line::before,
.nav:not(.nav--scrolled) .nav-hamburger-line::after {
  background: rgba(255,255,255,0.5);
}
.nav-hamburger-line { top: 50%; transform: translateY(-50%); }
.nav-hamburger-line::before { content: ''; top: -7px; }
.nav-hamburger-line::after { content: ''; top: 7px; }
.nav-hamburger.open .nav-hamburger-line { background: transparent; }
.nav-hamburger.open .nav-hamburger-line::before { top: 0; transform: rotate(45deg); background: var(--ink); }
.nav-hamburger.open .nav-hamburger-line::after { top: 0; transform: rotate(-45deg); background: var(--ink); }

/* Mobile menu */
.nav-mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(240,241,236,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.4s;
}
.nav-mobile-menu.open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.mobile-menu-link {
  font-family: var(--display); font-size: 1.5rem;
  color: var(--ink); text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu-link:hover { color: var(--forest); }

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

/* ============================================
   HERO — DARK FOREST
   ============================================ */
.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-photo {
  position: absolute; inset: -5%; width: 110%; height: 110%;
  background-size: cover; background-position: center 35%;
  will-change: transform;
  animation: heroZoom 25s ease-out forwards;
}

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

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(19,25,32,0.3) 70%),
    linear-gradient(180deg,
      rgba(19,25,32,0.3) 0%,
      rgba(19,25,32,0.05) 25%,
      rgba(19,25,32,0.15) 50%,
      rgba(19,25,32,0.7) 80%,
      rgba(19,25,32,0.95) 100%
    );
}

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

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-eyebrow-sep { color: rgba(255,255,255,0.3); }
.hero-eyebrow-link {
  color: rgba(255,255,255,0.75); text-decoration: none;
  transition: color 0.2s;
}
.hero-eyebrow-link:hover { color: #fff; }

.hero-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05; letter-spacing: -0.025em;
  color: #fff; margin-bottom: 1.8rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.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(--larch);
  font-style: italic;
}

.hero-dek {
  font-family: var(--serif); font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400; line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  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.25);
  opacity: 0; animation: fadeUp 0.6s 1.4s ease forwards;
}

.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  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.3);
}
.hero-scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-arrow svg {
  display: block;
}
.hero-scroll-line {
  display: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 0.8; }
}

@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: 6rem 0; }
.section--fog { background: var(--fog); padding: 3rem 0 4rem; position: relative; }
.section--fog + .section--fog { padding-top: 0; }
#never-logged { padding-top: 5rem; }
#the-corridor {
  padding-bottom: 4rem;
}

/* ============================================
   OPENING SECTION — IMMERSIVE ENTRY
   ============================================ */
.section--opening {
  padding: 6rem 0 2rem;
  background: var(--fog);
  position: relative;
  overflow: hidden;
}
.section--opening::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(28, 25, 23, 0.018) 59px,
      rgba(28, 25, 23, 0.018) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(28, 25, 23, 0.018) 59px,
      rgba(28, 25, 23, 0.018) 60px
    );
  pointer-events: none;
}
.section--opening::after { display: none; }

.opening-geo {
  position: absolute;
  top: 3rem; right: 3rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(28, 25, 23, 0.12);
  display: flex;
  gap: 0.5rem;
  z-index: 1;
}
.opening-geo-sep {
  opacity: 0.5;
}

.opening-stat-break {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  margin: 1.5rem 0;
  z-index: 1;
}
.opening-stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(5rem, 15vw, 12rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.opening-stat-break.visible .opening-stat-num {
  opacity: 1;
  transform: translateY(0);
}
.opening-stat-unit {
  font-family: var(--sans);
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1.5rem;
  opacity: 0;
  transition: opacity 1s 0.3s;
}
.opening-stat-break.visible .opening-stat-unit {
  opacity: 1;
}
.opening-stat-sub {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 480px;
  margin: 1.5rem auto 0;
  opacity: 0;
  transition: opacity 1s 0.5s;
}
.opening-stat-break.visible .opening-stat-sub {
  opacity: 1;
}

/* ============================================
   THREAT SECTION — DARK PIVOT
   ============================================ */
.section--threat {
  padding: 6rem 0;
  background: var(--slate);
  position: relative;
}
.section--threat .section-head {
  color: var(--fog);
}
.section--threat .prose,
.prose.prose--threat {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.3rem);
  line-height: 1.85;
  color: #E8E9E5;
  margin-bottom: 1.8rem;
}
.prose--threat .mn {
  color: var(--ember-light);
}
.section--threat .partnership-note {
  border-left-color: rgba(240, 241, 236, 0.15);
  background: rgba(240, 241, 236, 0.04);
}
.section--threat .partnership-note p {
  color: rgba(240, 241, 236, 0.65);
}
.section--threat .partnership-note a {
  color: rgba(240, 241, 236, 0.7);
}
.section--slate {
  background: var(--slate);
  position: relative;
}
.section--deep-forest {
  background: var(--deep-forest);
  position: relative;
}
.section--document {
  background: var(--document);
  position: relative;
}
.section--quote {
  padding: 10rem 0 12rem;
  background: var(--fog-warm);
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.section--photo-overlay {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.section--photo-overlay .photo-overlay-bg {
  position: absolute; inset: -5%; width: 110%; height: 110%;
  background-size: cover; background-position: center;
  animation: kenBurnsSlow 25s ease-in-out infinite alternate;
}
@keyframes kenBurnsSlow {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.04) translate(0.5%, -0.5%); }
}
.section--photo-overlay .photo-overlay-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(19,25,32,0.55) 0%,
    rgba(19,25,32,0.7) 40%,
    rgba(19,25,32,0.88) 100%
  );
}
.section--photo-overlay .prose-container {
  position: relative; z-index: 2;
}
.section--photo-overlay .section-head { color: var(--fog); }
.section--photo-overlay .prose { color: rgba(240,241,236,0.65); }
.section--photo-overlay .prose strong { color: var(--fog); }
.section--photo-overlay .prose a { color: rgba(240,241,236,0.5); }
.section--photo-overlay .prose-accent {
  border-color: rgba(240,241,236,0.15);
  margin: 4rem 0;
  padding: 3rem 0;
}
.section--photo-overlay .prose--display { color: var(--fog) !important; }
.section--photo-overlay .prose--bold { color: var(--fog) !important; }
.section--action {
  padding: 8rem 0;
  background: var(--slate);
  position: relative;
  border-top: 3px solid var(--ember);
}
.section--action::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 300px;
  background: linear-gradient(180deg, rgba(139, 58, 42, 0.12) 0%, transparent 100%);
  pointer-events: none;
}
.section--subscribe {
  padding: 5rem 0;
  background: var(--fog);
  border-top: 1px solid rgba(28,25,23,0.06);
}

@media (max-width: 700px) {
  .prose-container, .container--wide { padding: 0 1.5rem; }
  .section { padding: 3.5rem 0; }
  .section--opening { padding: 5rem 0 3rem; }
  .opening-geo { top: 1.5rem; right: 1.5rem; font-size: 0.55rem; }
  .opening-stat-break { padding: 4rem 1.5rem; margin: 2rem 0; }
  .section--threat::before { height: 50px; top: -50px; }
}

/* ============================================
   TYPOGRAPHY — EDITORIAL
   ============================================ */
.section-head {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.08; letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 3rem;
}
.section-head--light { color: var(--fog); }

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

.prose-lede {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem) !important;
  line-height: 1.65 !important;
  color: var(--ink) !important;
  margin-bottom: 2.5rem !important;
}

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

.prose--light { color: rgba(240,241,236,0.65); }
.prose--light a { color: rgba(240,241,236,0.5); }
.prose--light strong, .prose--light.prose--bold { color: var(--fog); }

.prose-accent {
  margin: 3.5rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(28,25,23,0.08);
  border-bottom: 1px solid rgba(28,25,23,0.08);
}
.prose-accent--change {
  margin: 2rem -3rem 0;
  padding: 2.5rem 3rem;
  border: none;
  border-radius: 2px;
  background: transparent;
  transition: background 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.prose-accent--change.revealed {
  background: rgba(139, 58, 42, 0.06);
}

.prose--display {
  font-family: var(--display); 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;
  font-weight: 400;
}

.partnership-note {
  margin-top: 2.5rem; padding: 1.5rem 2rem;
  border-left: 2px solid var(--forest);
  background: rgba(45,90,61,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
   ============================================ */
.photo-break {
  position: relative; width: 100%;
  height: 85vh; min-height: 500px;
  overflow: hidden;
}
.photo-break--cinematic {
  height: 95vh; min-height: 600px;
}
.photo-break-img {
  position: absolute; inset: -10%; width: 120%; height: 120%;
  background-size: cover; background-position: center;
  will-change: transform;
  animation: kenBurnsDrift 20s ease-in-out infinite alternate;
}

@keyframes kenBurnsDrift {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -0.5%); }
}
.photo-break-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}
.photo-break-credit {
  position: absolute; bottom: 1.25rem; right: 1.5rem;
  font-family: var(--sans); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  z-index: 2;
}

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

/* ============================================
   BIG QUOTE
   ============================================ */
.big-quote {
  border: none; margin: 0; padding: 0;
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--forest);
}
.big-quote p {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.4; color: var(--ink);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.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; }
}

/* ============================================
   MIGRATION FLOW VISUALIZATION
   ============================================ */
.migration-section {
  padding: 0 0 4rem;
  overflow: visible;
  background: #06080C;
  position: relative;
}
.migration-header {
  text-align: center;
  max-width: var(--wide-w);
  margin-left: auto; margin-right: auto;
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 3;
  background: transparent;
}
.migration-sub {
  font-family: var(--serif); font-size: 1.05rem;
  line-height: 1.65; color: rgba(240,241,236,0.5);
  max-width: 600px; margin: 0 auto;
}
.migration-canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.migration-canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
}
.migration-tooltip {
  position: absolute;
  font-family: var(--sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(240, 241, 236, 0.9);
  background: rgba(19, 25, 32, 0.85);
  border: 1px solid rgba(240, 241, 236, 0.1);
  padding: 4px 10px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.migration-tooltip.visible { opacity: 1; }

.migration-labels {
  position: absolute; inset: 0;
  pointer-events: none;
}
.migration-label {
  position: absolute;
  font-family: var(--sans); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(240,241,236,0.5);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.migration-label span {
  display: block;
  font-family: var(--mono); font-weight: 400;
  letter-spacing: 0.02em; text-transform: none;
  font-size: 0.55rem;
  color: var(--ember-light);
  margin-top: 0.15rem;
}
.migration-label--eagle-cap { top: 50%; left: 8%; }
.migration-label--project { top: 60%; left: 52%; transform: translateX(-50%); text-align: center; }
.migration-label--hells { top: 15%; right: 8%; text-align: right; }
.migration-legend {
  position: absolute; bottom: 1rem; left: 1.5rem;
  display: flex; gap: 1.5rem;
}
.migration-legend-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.55rem;
  color: rgba(240,241,236,0.3);
}
.migration-legend-line {
  width: 24px; height: 2px; border-radius: 1px;
}
.migration-legend-line--flow {
  background: linear-gradient(90deg, rgba(58,122,82,0.2), var(--forest-light), rgba(58,122,82,0.2));
}
.migration-legend-swatch {
  width: 16px; height: 3px; border-radius: 2px;
  opacity: 0.8;
}
.migration-legend-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.migration-legend-dot--project {
  background: rgba(139,58,42,0.5);
  border: 1px solid var(--ember-light);
}
.migration-cite {
  text-align: center;
  margin-top: 1.5rem;
  font-family: var(--sans); font-size: 0.65rem;
  color: rgba(240,241,236,0.2);
}
.migration-cite a { color: rgba(240,241,236,0.25); }

.migration-status {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--sans); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(240,241,236,0.15);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  pointer-events: none;
}
.migration-status.disrupted {
  color: #fff;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  background: rgba(160, 30, 10, 0.85);
  box-shadow: 0 0 40px rgba(180, 50, 30, 0.5), 0 0 80px rgba(160, 30, 10, 0.2);
  padding: 1rem 2.5rem;
  animation: statusPulse 3s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(180, 50, 30, 0.5), 0 0 80px rgba(160, 30, 10, 0.2); }
  50% { box-shadow: 0 0 50px rgba(180, 50, 30, 0.7), 0 0 100px rgba(160, 30, 10, 0.3); }
}
.migration-status--hidden {
  opacity: 0;
  pointer-events: none;
}
.migration-start-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(58, 122, 82, 0.15);
  border: 1px solid rgba(58, 122, 82, 0.5);
  padding: 1.1rem 2.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s;
  animation: startBtnPulse 2.5s ease-in-out infinite;
}
.migration-start-btn svg {
  fill: rgba(58, 122, 82, 0.9);
  transition: fill 0.3s;
}
.migration-start-btn span {
  font-family: var(--sans); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(240,241,236,0.8);
}
.migration-start-btn:hover {
  background: rgba(58, 122, 82, 0.25);
  border-color: rgba(58, 122, 82, 0.7);
}
.migration-start-btn:hover svg {
  fill: rgba(58, 122, 82, 1);
}
@keyframes startBtnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(58, 122, 82, 0); }
  50% { box-shadow: 0 0 0 12px rgba(58, 122, 82, 0.1); }
}
.migration-start-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.6s;
}
.migration-toggle--hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s, pointer-events 0s 0.6s;
}
.migration-toggle--visible {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.6s;
}
.migration-toggle {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.migration-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(180, 50, 30, 0.15);
  border: 1px solid rgba(180, 50, 30, 0.4);
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-tap-highlight-color: transparent;
  animation: togglePulse 2.5s ease-in-out infinite;
}
.migration-toggle-btn:hover {
  background: rgba(180, 50, 30, 0.25);
  border-color: rgba(180, 50, 30, 0.6);
}
@keyframes togglePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(180, 50, 30, 0); }
  50% { box-shadow: 0 0 0 8px rgba(180, 50, 30, 0.12); }
}
.migration-toggle-icon {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(58, 122, 82, 0.9);
  box-shadow: 0 0 6px rgba(58, 122, 82, 0.5);
  transition: all 0.5s;
}
.migration-toggle.active .migration-toggle-icon {
  background: #c4574a;
  box-shadow: 0 0 12px rgba(196, 87, 74, 0.7);
}
.migration-toggle-label {
  font-family: var(--sans); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(240,241,236,0.6);
  transition: color 0.4s;
}
.migration-toggle.active .migration-toggle-label {
  color: var(--ember-light);
}
.migration-toggle.active .migration-toggle-btn {
  background: rgba(180, 50, 30, 0.2);
  border-color: rgba(180, 50, 30, 0.5);
  animation: none;
}

@media (max-width: 700px) {
  .migration-canvas-wrap { aspect-ratio: 4 / 5; }
  .migration-label { font-size: 0.5rem; }
  .migration-legend { gap: 1rem; }
}

/* ============================================
   SCROLLYTELLING MAP
   ============================================ */
.scrolly-section {
  position: relative; background: #000;
}
.scrolly-map-wrap {
  position: sticky; top: 0; height: 100vh; width: 100%; z-index: 1;
  overflow: hidden;
}
.scrolly-map { width: 100%; height: 100%; }
.scrolly-steps {
  position: relative; z-index: 2;
  padding: 40vh 0 50vh;
  pointer-events: none;
}
.scrolly-step {
  padding: 0 2rem;
  margin-bottom: 80vh;
  opacity: 0.15;
  transition: opacity 0.8s;
  pointer-events: auto;
}
.scrolly-step.is-active {
  opacity: 1;
}
.scrolly-step:last-child { margin-bottom: 0; }

.scrolly-card {
  background: rgba(19, 25, 32, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 2rem 2.5rem;
  border-radius: 6px;
  max-width: 380px;
  border: 1px solid rgba(240,241,236,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.scrolly-card--final {
  border-color: rgba(139,58,42,0.3);
}

.sc-label {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(240,241,236,0.35);
  display: block; margin-bottom: 0.75rem;
}
.sc-label--danger { color: var(--ember-light); }
.sc-label--river { color: var(--river-light); }
.sc-label--light { color: rgba(240,241,236,0.35); }
.section--fog .sc-label { color: var(--ink-faint); }

.sc-title {
  font-family: var(--display); font-size: 1.5rem;
  font-weight: 600; line-height: 1.2;
  color: var(--fog); margin-bottom: 0.75rem;
}

.scrolly-card p {
  font-family: var(--serif); font-size: 0.95rem;
  line-height: 1.65; color: rgba(240,241,236,0.6);
  margin: 0;
}
.scrolly-card p a { color: rgba(240,241,236,0.5); }

.sc-forest { color: var(--forest-light); font-weight: 600; }
.sc-ember { color: var(--ember-light); font-weight: 600; }

/* Map markers */
.map-marker-wrapper { position: relative; }
.map-marker-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--forest-light);
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 0 4px rgba(58,122,82,0.3);
  animation: markerPulse 2s ease-in-out infinite;
}
.map-marker-dot--danger {
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(139,58,42,0.3);
}
.map-marker-tooltip {
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: rgba(19,25,32,0.9); color: var(--fog);
  padding: 0.3rem 0.6rem; border-radius: 3px;
  font-family: var(--sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.05em; white-space: nowrap;
  pointer-events: none;
}

@keyframes markerPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(58,122,82,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(58,122,82,0); }
}

@media (max-width: 700px) {
  .scrolly-card { padding: 1.5rem; max-width: 320px; }
  .scrolly-steps { padding: 60vh 0 40vh; }
  .scrolly-step { margin-bottom: 40vh; }
}


/* ============================================
   TREE VISUALIZATION (3%)
   ============================================ */
.tree-section { padding: 5rem 0; }
.tree-grid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 6px;
  max-width: 700px; margin: 0 auto 2rem;
  padding: 0 2rem;
}
.tree-dot {
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(240,241,236,0.08);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.tree-dot--big {
  background: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(58,122,82,0.25);
}
.tree-dot--big.glowing {
  box-shadow: 0 0 8px 3px rgba(58,122,82,0.4);
}
.tree-caption {
  text-align: center;
  max-width: 600px; margin: 0 auto;
  padding: 0 2rem;
  font-family: var(--serif); font-size: 0.95rem;
  line-height: 1.65; color: rgba(240,241,236,0.5);
}
.tree-caption-highlight {
  font-family: var(--display); font-size: 1.2rem;
  font-weight: 600; color: var(--forest-light);
  display: block; margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
  .tree-grid { grid-template-columns: repeat(10, 1fr); gap: 4px; }
}

/* ============================================
   OBJECTION PROCESS
   ============================================ */
.objection-section { padding: 5rem 0; }
.objection-timeline {
  max-width: 650px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.obj-item {
  position: relative;
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(240,241,236,0.06);
  border-radius: 4px;
  background: rgba(240,241,236,0.02);
  opacity: 0; transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
  flex-wrap: wrap;
}
.obj-item.visible {
  opacity: 1; transform: translateX(0);
}
.obj-item--overruled.visible.stamped {
  border-color: rgba(139,58,42,0.3);
}
.obj-item--withdrawn.visible {
  border-color: rgba(240,241,236,0.1);
  opacity: 0.5;
}
.obj-who {
  font-family: var(--display); font-size: 1.05rem;
  font-weight: 500; color: var(--fog);
  min-width: 0; flex: 1;
}
.obj-result {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ember-light);
  white-space: nowrap;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(139,58,42,0.3);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.4s 0.3s;
}
.obj-item.visible .obj-result { opacity: 1; }
.obj-result--industry { color: rgba(240,241,236,0.3); border-color: rgba(240,241,236,0.1); }
.obj-item--withdrawn .obj-result { color: rgba(240,241,236,0.3); border-color: rgba(240,241,236,0.1); }
.obj-detail {
  font-family: var(--sans); font-size: 0.8rem;
  color: rgba(240,241,236,0.35);
  line-height: 1.5;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.objection-result {
  text-align: center;
  margin-top: 2.5rem;
}
.objection-result p {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--fog);
  font-weight: 400;
}

/* ============================================
   ACTION SECTION
   ============================================ */
.action-head {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05; letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.action-head-sub {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: rgba(240, 241, 236, 0.7);
  margin-bottom: 3rem;
  max-width: 560px;
}
.action-deadline {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember-light);
  border: 1px solid rgba(139, 58, 42, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  animation: deadlinePulse 2s ease-in-out infinite;
}

.action-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(240, 241, 236, 0.08);
}
.action-block:last-of-type { border-bottom: none; }

.action-block--primary {
  background: rgba(45, 90, 61, 0.08);
  border: 1px solid rgba(45, 90, 61, 0.25);
  border-bottom: 1px solid rgba(45, 90, 61, 0.25);
  border-radius: 6px;
  padding: 2.5rem;
}
.action-priority-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-light);
  border: 1px solid rgba(58, 122, 82, 0.35);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.action-block-title {
  font-family: var(--display); font-weight: 600;
  font-size: 1.4rem; color: var(--fog);
  margin-bottom: 1rem;
}

.section--action .prose {
  color: rgba(240, 241, 236, 0.75);
}
.section--action .prose a {
  color: var(--fog);
}
.section--action .mn {
  color: var(--ember-light);
}

/* Contact cards */
.contact-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin: 1.5rem 0;
}
.contact-card {
  padding: 1.5rem;
  background: rgba(45, 90, 61, 0.1);
  border: 1px solid rgba(45, 90, 61, 0.2);
  border-radius: 4px;
}
.contact-card-title {
  font-family: var(--sans); font-size: 0.85rem;
  font-weight: 700; color: var(--fog);
  margin-bottom: 0.75rem;
}
.contact-card-detail {
  font-family: var(--sans); font-size: 0.85rem;
  color: rgba(240, 241, 236, 0.65); margin-bottom: 0.4rem;
  line-height: 1.5;
}
.contact-card-detail a { color: var(--forest-light); }
.contact-card-detail strong { font-weight: 600; color: rgba(240, 241, 236, 0.8); }
.contact-card-note {
  font-family: var(--sans); font-size: 0.75rem;
  color: rgba(240, 241, 236, 0.45); font-style: italic;
  margin-top: 0.5rem;
}

@media (max-width: 700px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* Letter template */
.letter-template {
  margin: 2rem 0;
  border: 1px solid rgba(240, 241, 236, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.letter-template-toggle {
  display: flex; align-items: center; gap: 0.75rem;
  width: 100%; padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.85rem;
  font-weight: 600; color: var(--fog);
  text-align: left;
}
.toggle-icon {
  font-family: var(--mono); font-size: 1.1rem;
  color: var(--forest); line-height: 1;
  transition: transform 0.3s;
}
.letter-template-toggle.open .toggle-icon { transform: rotate(45deg); }

.letter-template-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}
.letter-template-body.open {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem;
}

.script-label {
  font-family: var(--sans); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(240, 241, 236, 0.45);
  margin-bottom: 1rem;
}

.letter-template-body blockquote {
  font-family: var(--serif); font-size: 0.95rem;
  line-height: 1.7; color: rgba(240, 241, 236, 0.7);
  border-left: 2px solid var(--forest);
  padding-left: 1.5rem; margin: 0 0 1.25rem;
}

.letter-copy {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 3px;
  border: 1px solid rgba(240, 241, 236, 0.15);
  background: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.75rem;
  font-weight: 600; color: rgba(240, 241, 236, 0.6);
  transition: all 0.2s;
}
.letter-copy:hover { border-color: var(--forest); color: var(--forest); }
.letter-copy.copied { border-color: var(--forest); color: var(--forest); }
.letter-copy svg { width: 14px; height: 14px; fill: currentColor; }

/* Media list */
.media-list {
  margin: 1.5rem 0;
}
.media-item {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(240, 241, 236, 0.06);
}
.media-name {
  font-family: var(--sans); font-size: 0.85rem;
  font-weight: 700; color: var(--fog);
  min-width: 140px;
}
.media-item a {
  font-family: var(--sans); font-size: 0.85rem;
  color: var(--forest-light);
}
.media-phone {
  font-family: var(--mono); font-size: 0.8rem;
  color: rgba(240, 241, 236, 0.45);
}

/* Action CTAs */
.action-ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin: 1.5rem 0;
}

.btn {
  display: inline-flex; align-items: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: all 0.3s;
}
.btn--primary {
  background: var(--forest); color: #fff;
}
.btn--primary:hover { background: var(--forest-light); color: #fff; transform: translateY(-1px); }
.btn--outline {
  background: none; color: var(--forest-light);
  border: 1px solid rgba(58, 122, 82, 0.35);
}
.btn--outline:hover { border-color: var(--forest-light); color: #fff; transform: translateY(-1px); }
.btn--dark {
  background: var(--slate); color: var(--fog);
}
.btn--dark:hover { background: var(--slate-mid); color: var(--fog); transform: translateY(-1px); }

/* Share buttons */
.share-row {
  display: flex; gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0;
}
.share-btn {
  width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid rgba(240, 241, 236, 0.12);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.share-btn:hover { border-color: var(--forest-light); }
.share-btn svg { width: 18px; height: 18px; fill: rgba(240, 241, 236, 0.5); }
.share-btn:hover svg { fill: var(--forest-light); }

/* ============================================
   SUBSCRIBE
   ============================================ */
.subscribe-block {
  text-align: center;
  max-width: 500px; margin: 0 auto;
}
.subscribe-block h2 {
  font-family: var(--display); font-size: 2rem;
  font-weight: 700; margin-bottom: 1rem;
  color: var(--ink);
}
.subscribe-block p {
  font-family: var(--serif); font-size: 1.05rem;
  line-height: 1.65; color: var(--ink-mid);
  margin-bottom: 2rem;
}
.subscribe-note {
  display: block; margin-top: 1rem;
  font-family: var(--sans); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--slate-deep);
  padding: 4rem 2rem;
  text-align: center;
}
.footer-org {
  font-family: var(--display); font-size: 1.1rem;
  font-weight: 600; color: var(--fog);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex; gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.footer-links a {
  font-family: var(--sans); font-size: 0.75rem;
  color: rgba(240,241,236,0.35); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(240,241,236,0.7); }
.footer-note {
  font-family: var(--sans); font-size: 0.75rem;
  line-height: 1.7; color: rgba(240,241,236,0.2);
  margin-bottom: 1rem;
}
.footer-support {
  font-family: var(--serif); font-size: 0.85rem;
  font-style: italic;
  line-height: 1.6; color: rgba(240,241,236,0.25);
  max-width: 550px; margin: 0 auto;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.mobile-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 800;
  padding: 0.75rem 1.5rem;
  background: var(--forest);
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
}
.mobile-sticky-cta.visible { transform: translateY(0); }
.mobile-sticky-cta a {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; text-decoration: none;
}

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


/* ============================================
   OBJECTION STAMP
   ============================================ */
.obj-stamp {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 900;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ember);
  border: 2px solid var(--ember);
  padding: 0.2rem 0.75rem;
  transform: rotate(-5deg) scale(2);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.15s ease;
  position: absolute;
  right: 1rem;
  top: 0.5rem;
}
.obj-item.stamped .obj-stamp {
  transform: rotate(-8deg) scale(1);
  opacity: 1;
}

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

.reveal-mask {
  opacity: 0; transform: translateY(16px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-mask.visible {
  opacity: 1; transform: translateY(0);
}

/* ============================================
   21-INCH RULE — TRUNK COMPARISON
   ============================================ */
.twenty-one-section {
  padding-bottom: 4rem;
}
.twenty-one-section .section-head {
  text-align: center;
}
.twenty-one-intro {
  font-family: var(--serif); font-size: 1.1rem;
  line-height: 1.7; color: rgba(240,241,236,0.6);
  max-width: var(--prose-w); margin: 0 auto 3rem;
  text-align: center;
}
.twenty-one-intro a {
  color: rgba(240,241,236,0.45); text-decoration: underline;
  text-underline-offset: 3px;
}
.trunk-compare {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; margin-bottom: 4rem;
  flex-wrap: wrap;
}
.trunk-col {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem;
}
.trunk-ring-wrap {
  width: 180px; height: 180px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.trunk-ring-wrap--lg {
  width: 240px; height: 240px;
}
.trunk-canvas {
  width: 100%; height: 100%;
}
.trunk-saw {
  position: absolute; top: 8px; right: 8px;
  opacity: 0;
  animation: sawPulse 2s ease-in-out infinite;
}
@keyframes sawPulse {
  0%, 100% { opacity: 0; transform: rotate(0deg); }
  50% { opacity: 0.8; transform: rotate(15deg); }
}
.trunk-diameter {
  font-family: var(--display); font-size: 2.5rem;
  font-weight: 700; color: var(--fog);
  line-height: 1;
}
.trunk-diameter--danger {
  color: var(--ember-light);
}
.trunk-unit {
  font-size: 1.5rem; opacity: 0.6;
}
.trunk-label {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.trunk-label--protected { color: var(--forest-light); }
.trunk-label--danger { color: var(--ember-light); }
.trunk-sub {
  font-family: var(--serif); font-size: 0.85rem;
  color: rgba(240,241,236,0.4); text-align: center;
  max-width: 200px;
}
.trunk-sub a {
  color: rgba(240,241,236,0.4); text-decoration: underline;
  text-underline-offset: 2px;
}
.trunk-vs {
  color: rgba(240,241,236,0.15);
}
.trunk-vs-arrow {
  display: block;
}
.tree-grid-wrap {
  max-width: 600px; margin: 0 auto;
}

@media (max-width: 700px) {
  .trunk-compare { gap: 2rem; }
  .trunk-ring-wrap { width: 140px; height: 140px; }
  .trunk-ring-wrap--lg { width: 180px; height: 180px; }
  .trunk-diameter { font-size: 2rem; }
  .trunk-vs-arrow { transform: rotate(90deg); }
}

.trunk-tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(19, 25, 32, 0.92);
  border: 1px solid rgba(240, 241, 236, 0.1);
  color: rgba(240, 241, 236, 0.8);
  font-family: var(--sans);
  font-size: 0.72rem;
  line-height: 1.5;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.2s;
}
.trunk-tip.visible { opacity: 1; }
.trunk-tip strong { color: var(--fog); }

.tree-dot {
  cursor: pointer;
  transition: all 0.3s;
}
.tree-dot:hover {
  background: rgba(139, 58, 42, 0.3);
  transform: scale(1.4);
}
.tree-dot--big:hover {
  background: var(--forest-light);
  transform: scale(1.4);
  box-shadow: 0 0 12px 4px rgba(58,122,82,0.5);
}
.tree-dot--targeted {
  background: rgba(139, 58, 42, 0.5) !important;
  box-shadow: 0 0 4px rgba(139, 58, 42, 0.3);
}


/* ============================================
   FOREST SERVICE DOCUMENT
   ============================================ */
.document-section {
  padding: 3.5rem 0;
  background: var(--slate);
}
.document-notice {
  background: var(--document);
  border: 1px solid var(--document-dark);
  padding: 3rem 3rem 2.5rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3), 0 1px 8px rgba(0, 0, 0, 0.15);
}
.document-seal-wrap {
  text-align: center;
  margin-bottom: 1.25rem;
}
.document-seal {
  width: 56px; height: 56px;
  display: inline-block;
  color: var(--ink-faint);
  opacity: 0.3;
}
.document-agency {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}
.document-subagency {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink-faint);
  margin-bottom: 1.5rem;
}
.document-title {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  text-align: center;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.document-date {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-align: center;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}
.document-line {
  height: 1px;
  background: var(--ink-faint);
  opacity: 0.25;
  margin-bottom: 1.25rem;
}
.document-body {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-mid);
  text-align: center;
  font-style: italic;
}
.document-body p { margin: 0; }
.document-body a { color: var(--ink-mid); }
.document-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  text-align: left;
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.85rem;
  line-height: 2.2;
  color: var(--ink);
  border-top: 1px solid rgba(28,25,23,0.06);
}
.document-list li {
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(28,25,23,0.06);
}
.document-list li:last-child {
  color: var(--ember);
}
.document-list li strong {
  font-weight: 500;
  font-family: var(--mono);
}
.document-note-text {
  font-size: 0.8rem;
  color: var(--ink-light);
  font-style: normal;
  margin-top: 0.75rem !important;
  line-height: 1.5;
}
.document-signoff {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(28,25,23,0.08);
}
.document-sig-line {
  width: 140px;
  height: 1px;
  background: var(--ink);
  opacity: 0.15;
  margin-bottom: 0.5rem;
}
.document-sig-name {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
}
.document-sig-title {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--ink-light);
  margin-top: 0.15rem;
}
@media (max-width: 600px) {
  .document-notice { padding: 2rem 1.5rem; }
}

/* ============================================
   TEXT ANIMATIONS
   ============================================ */
.prose--change {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem) !important;
  line-height: 1.3 !important;
  color: var(--ink) !important;
  text-align: center;
  margin: 0 !important;
  font-weight: 400;
}
.text-deblur {
  filter: blur(8px);
  opacity: 0;
  transition: filter 1.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}
.text-deblur.visible {
  filter: blur(0);
  opacity: 1;
}

.quote-phrase {
  display: inline;
  filter: blur(6px);
  opacity: 0;
  transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}
.quote-phrase.visible {
  filter: blur(0);
  opacity: 1;
}

.ember-shift {
  transition: color 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.section--photo-overlay .ember-shift.shifted {
  color: var(--ember-light) !important;
}

/* ============================================
   CURSOR FLASHLIGHT
   ============================================ */
.flashlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.6s;
  will-change: background;
}
.flashlight.active {
  opacity: 1;
}

/* ============================================
   PRINT STYLES
   ============================================ */
/* ============================================
   LENIS OVERRIDES
   ============================================ */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  opacity: 0;
  transition: opacity 0.3s;
  mix-blend-mode: difference;
}
.custom-cursor.visible {
  opacity: 1;
}
.cursor-ring {
  position: fixed;
  top: -20px; left: -20px;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(240, 241, 236, 0.5);
  border-radius: 50%;
  pointer-events: none;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              top 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              left 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s;
}
.cursor-ring.expanded {
  width: 56px; height: 56px;
  top: -28px; left: -28px;
  border-color: rgba(58, 122, 82, 0.7);
}
.cursor-dot {
  position: fixed;
  top: -3px; left: -3px;
  width: 6px; height: 6px;
  background: rgba(240, 241, 236, 0.9);
  border-radius: 50%;
  pointer-events: none;
}
@media (pointer: coarse), (max-width: 900px) {
  .custom-cursor { display: none !important; }
}

/* ============================================
   DAPPLED SUNLIGHT OVERLAY
   ============================================ */
@property --sun-angle {
  syntax: '<angle>';
  initial-value: 60deg;
  inherits: true;
}
@property --shaft-opacity {
  syntax: '<number>';
  initial-value: 0.4;
  inherits: true;
}
.dappled-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 2s ease;
  mix-blend-mode: soft-light;
}
.dappled-light.active {
  opacity: 1;
}
.dappled-shafts {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    var(--sun-angle),
    transparent 0%,
    rgba(255, 250, 235, 0.035) 1.5%,
    transparent 3%,
    transparent 5%,
    rgba(255, 248, 225, 0.02) 6%,
    transparent 7.5%
  );
  opacity: var(--shaft-opacity);
}
@media (max-width: 900px) {
  .dappled-light { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .dappled-light { display: none; }
  .photo-break-img,
  .section--photo-overlay .photo-overlay-bg { animation: none !important; }
  .scroll-deadline-dot { animation: none !important; opacity: 0.7; }
}

/* ============================================
   FIREFLY CANVAS
   ============================================ */
.firefly-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.firefly-canvas.active {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .firefly-canvas { display: none; }
}

/* ============================================
   SECTION FADE TRANSITIONS
   ============================================ */
.section-fade-out {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(27, 33, 41, 0.15) 100%);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

/* ============================================
   GSAP PHOTO BREAK OVERRIDES
   ============================================ */
.photo-break.gsap-managed .photo-break-img {
  filter: saturate(1) brightness(1);
}

/* ============================================
   DRAW UNDERLINE LINKS
   ============================================ */
.draw-underline {
  text-decoration: none !important;
  background-image: linear-gradient(var(--forest), var(--forest));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding-bottom: 1px;
}
.draw-underline:hover {
  background-size: 100% 1px;
}
.section--photo-overlay .draw-underline,
.section--slate .draw-underline {
  background-image: linear-gradient(rgba(240,241,236,0.4), rgba(240,241,236,0.4));
}

/* ============================================
   GSAP PIN SPACER CLEANUP
   ============================================ */
.pin-spacer { padding: 0 !important; }

/* ============================================
   CINEMATIC LOADER
   ============================================ */
.cinema-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cinema-loader-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cinema-migration-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.cinema-text-wrap {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 2rem;
  text-align: center;
}
.cinema-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
}
.cinema-logo {
  height: 72px;
  width: auto;
}
.cinema-logo--mtjp {
  filter: brightness(10);
}
.cinema-logo--ow {
  height: 78px;
  filter: brightness(0) invert(1);
}
.cinema-sep {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.15);
}
.cinema-line {
  font-family: var(--serif);
  color: rgba(240, 241, 236, 0.9);
  margin: 0;
  opacity: 0;
  line-height: 1.6;
}
.cinema-line-1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.cinema-line-2 {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  margin-top: 1.2rem;
  color: rgba(240, 241, 236, 0.6);
}

/* Share Row (early position) */
.share-row--early {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0 0;
}
.share-row-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-light);
}
.share-row--early .share-row-buttons {
  display: flex;
  gap: 0.5rem;
}
.share-row--early .share-btn {
  width: 36px;
  height: 36px;
  color: var(--ink-mid);
  text-decoration: none;
}
.share-row--early .share-btn svg {
  width: 16px;
  height: 16px;
}
.share-row--early .share-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.share-row--early .share-btn:hover svg {
  fill: var(--fog);
}
.share-btn--copy.copied {
  background: var(--forest) !important;
  border-color: var(--forest) !important;
}
.share-btn--copy.copied svg {
  stroke: #fff;
}

/* Species card lazy-load placeholder */
.species-card-img:not([style*="background-image"]) {
  background: var(--slate-mid);
}

/* ============================================
   SPECIES SLIDES (SCROLL-PINNED)
   ============================================ */
/* ============================================
   SPECIES HUB — DENSE GRID
   ============================================ */
.species-hub {
  padding: 5rem 0 !important;
}
.species-hub-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  padding: 0 2rem;
}
.species-hub-sub {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  color: rgba(240, 241, 236, 0.6);
  margin: 0;
}
.species-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(240, 241, 236, 0.06);
}
.species-card {
  position: relative;
  overflow: hidden;
  background: var(--slate);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.species-card:hover {
  transform: translateY(-2px);
  z-index: 2;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.species-card-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  filter: saturate(0.7) brightness(0.6);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.species-card:hover .species-card-img {
  filter: saturate(0.9) brightness(0.75);
  transform: scale(1.04);
}
.species-card-body {
  padding: 1rem 1.2rem 1.25rem;
}
.species-card-name {
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--fog);
  margin: 0 0 0.4rem;
  line-height: 1.2;
}
.species-card-esa {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c4574a;
  border: 1px solid rgba(196, 87, 74, 0.3);
  padding: 0.15em 0.5em;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.species-card-fact {
  font-family: var(--serif);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  line-height: 1.6;
  color: rgba(240, 241, 236, 0.55);
  margin: 0;
}

@media (max-width: 1000px) {
  .species-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .species-grid { grid-template-columns: repeat(2, 1fr); }
  .species-card-body { padding: 0.75rem 1rem; }
  .species-card-fact { font-size: 0.78rem; }
}
@media (max-width: 420px) {
  .species-grid { grid-template-columns: 1fr; }
}

/* ============================================
   AUDIO TOGGLE
   ============================================ */
.audio-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(240, 241, 236, 0.15);
  background: rgba(27, 33, 41, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(240, 241, 236, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  padding: 0;
}
.audio-toggle:hover {
  border-color: rgba(58, 122, 82, 0.5);
  color: rgba(240, 241, 236, 0.8);
}
.audio-toggle.active {
  border-color: rgba(58, 122, 82, 0.6);
  color: var(--forest);
  background: rgba(27, 33, 41, 0.85);
}
.audio-icon--on { display: none; }
.audio-toggle.active .audio-icon--off { display: none; }
.audio-toggle.active .audio-icon--on { display: block; }
@media (max-width: 700px) {
  .audio-toggle { bottom: 5rem; right: 1rem; width: 36px; height: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .audio-toggle { display: none; }
}

.audio-tip {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 9999;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(240, 241, 236, 0.7);
  background: rgba(27, 33, 41, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 241, 236, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.audio-tip.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TRANSITION ELEMENTS
   ============================================ */
.transition-black-hold {
  height: 0;
  background: #000;
}

.ghost-stamp {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c4574a;
}

/* ============================================
   PROGRESS BAR MARKERS
   ============================================ */
.progress-marker {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(240, 241, 236, 0.12);
  pointer-events: none;
}

/* ============================================
   CONTACT CARD HOVER
   ============================================ */
.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* obj-item hover */
.obj-item:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .nav, .chapters-sidebar, .scroll-progress, .mobile-sticky-cta,
  .loader, .cinema-loader, .share-row, .hero-scroll, .dappled-light, .firefly-canvas,
  .custom-cursor, .flashlight, .audio-toggle, .audio-tip { display: none !important; }
  .hero { min-height: auto; }
  .section--slate { background: #fff; }
  .section-head--light, .stat-reveal-number, .odometer,
  .sc-title, .species-name, .project-stat-num { color: #000 !important; }
  .prose--light, .stat-reveal-label, .species-status,
  .project-stat-label { color: #444 !important; }
}
