/* ═══════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
  --ink: #111;
  --cream: #F5F0E6;
  --paper: #EDE8DC;
  --crimson: #C41E3A;
  --gold: #C8A96E;
  --muted: #888;
  --charcoal: #2D2D2D;
  --bg: #6B6B6B;
  --serif: 'Playfair Display', Georgia, serif;
  --body: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--sans);
  cursor: none;
}
::selection { background: var(--crimson); color: #fff; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .25s, height .25s;
}

/* ═══════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--crimson);
  width: 0%;
  z-index: 99997;
  transition: width .05s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease .2s, visibility .8s ease .2s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-text {
  font-family: var(--serif);
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: .04em;
  text-transform: uppercase;
  clip-path: inset(0 100% 0 0);
  animation: preReveal 1s .3s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes preReveal { to { clip-path: inset(0 0% 0 0); } }

/* ═══════════════════════════════════════
   STICKY RUNNING HEADER
   ═══════════════════════════════════════ */
.running-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 44px;
  background: rgba(17,17,17,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
.running-header.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.rh-left {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--cream);
  text-transform: uppercase;
}
.rh-center {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.rh-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rh-read-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(245,240,230,.25);
}
.rh-read-pct {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  min-width: 40px;
  text-align: right;
}
.rh-read-bar-wrap {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,.1);
  position: relative;
}
.rh-read-bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--crimson);
  width: 0%;
  transition: width .1s linear;
}

/* ═══════════════════════════════════════
   GRAIN OVERLAY
   ═══════════════════════════════════════ */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════
   HERO - MAGAZINE COVER (100vh)
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 1;
  background: url('./Screenshot 2026-03-25 at 2.11.28 PM (1).png') left center / cover no-repeat;
  will-change: transform;
  transform: scale(1.08);
}

/* ── Right column wrapper - vertically centred in clear space ── */
.hero-right {
  position: absolute;
  left: 40%;
  right: clamp(14px, 2vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.8vh, 36px);
  will-change: transform;
}

/* ── Big name ── */
.hero-name { user-select: none; }
.hero-name h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 104px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: .88;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  animation: clipReveal 1.1s .4s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-name-rule {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--crimson);
  margin-top: clamp(10px, 1.5vh, 18px);
  transform: scaleX(0);
  transform-origin: left;
  animation: scaleIn .6s 1.4s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes scaleIn { to { transform: scaleX(1); } }

/* ── Content block ── */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vh, 18px);
}
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(17px, 2.2vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: rgba(20,14,6,.92);
  line-height: 1.3;
  padding-left: 14px;
  border-left: 2.5px solid var(--crimson);
  opacity: 0;
  animation: fadeUp .8s 1.5s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-desc {
  font-family: var(--serif);
  font-size: clamp(13px, 1.3vw, 18px);
  font-weight: 400;
  font-style: italic;
  color: rgba(20,14,6,.58);
  line-height: 1.6;
  max-width: 36ch;
  opacity: 0;
  animation: fadeUp .8s 1.8s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: clamp(10px,1.2vh,14px) clamp(20px,2.4vw,32px);
  background: var(--crimson);
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  opacity: 0;
  animation: fadeUp .8s 2.1s cubic-bezier(.16,1,.3,1) forwards;
  transition: background .25s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(193,32,60,.35);
}
.hero-cta-btn:hover {
  background: #a01025;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(193,32,60,.45);
}

.hero-cutout-shadow { display: none; }
.hero-cutout { display: none; }

.cover-barcode {
  position: absolute;
  bottom: clamp(20px, 3vh, 50px);
  right: clamp(20px, 4vw, 60px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  opacity: 0;
  animation: fadeUp .7s 4s cubic-bezier(.16,1,.3,1) forwards;
}
.cover-edition .edition-text {
  font-family: var(--sans);
  font-size: clamp(8px, .9vw, 11px);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
  text-align: right;
  margin-bottom: 4px;
}
.barcode-lines {
  display: flex;
  gap: 1.5px;
  height: 30px;
  align-items: flex-end;
}
.barcode-lines span {
  display: block;
  width: 1.5px;
  background: var(--ink);
  opacity: .6;
  transform-origin: bottom;
  animation: barBounce var(--dur, .5s) var(--bdly, 0s) ease-in-out alternate infinite;
}
@keyframes barBounce {
  from { transform: scaleY(var(--bfrom, .3)); }
  to   { transform: scaleY(1); }
}
.barcode-label {
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: .15em;
  color: rgba(20,14,6,.4);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: clamp(20px, 3vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeUp .6s 4.5s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-scroll-indicator span {
  font: 400 8px/1 var(--sans);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.scroll-bar-hero {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.15);
  position: relative; overflow: hidden;
}
.scroll-bar-hero::after {
  content:''; position:absolute; top:-100%; left:0;
  width:100%; height:100%;
  background: var(--cream);
  animation: scrollPulse 2s 4.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%{top:-100%} 50%,100%{top:100%} }

/* ═══════════════════════════════════════
   ANIMATION KEYFRAMES
   ═══════════════════════════════════════ */
@keyframes clipReveal { to { clip-path: inset(0 0% 0 0); } }
@keyframes clipRevealUp { to { clip-path: inset(0% 0 0 0); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes personReveal {
  from { opacity: 0; transform: translateX(-50%) translateY(40px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL CLASSES
   ═══════════════════════════════════════ */
.rev, .rev-l, .rev-r {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.rev   { transform: translateY(35px); }
.rev-l { transform: translateX(-35px); }
.rev-r { transform: translateX(35px); }
.rev.in, .rev-l.in, .rev-r.in { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .48s; }
.d5 { transition-delay: .60s; }
.d6 { transition-delay: .72s; }

/* ═══════════════════════════════════════
   SECTION 2: INTRO MANIFESTO
   ═══════════════════════════════════════ */
.intro-manifesto {
  background: var(--cream);
  color: var(--ink);
  padding: 15vh 10vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto-hr {
  display: block;
  width: 60%;
  height: 1px;
  background: rgba(0,0,0,.12);
  margin: 0 auto;
  border: none;
}
.manifesto-hr--top { margin-bottom: 8vh; }
.manifesto-hr--btm { margin-top: 8vh; }
.manifesto-running-label {
  position: absolute;
  left: clamp(12px, 1.5vw, 28px);
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(0,0,0,.18);
  white-space: nowrap;
}
.manifesto-big {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.manifesto-body {
  font-family: var(--body);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 300;
  color: rgba(17,17,17,.65);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 48px;
}
.manifesto-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--crimson);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: letter-spacing .3s, opacity .3s;
}
.manifesto-cta:hover { letter-spacing: .45em; opacity: .7; }

/* ═══════════════════════════════════════
   CHAPTER HEADERS
   ═══════════════════════════════════════ */
.chapter-header {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(60px, 8vw, 120px) clamp(30px, 6vw, 100px);
  overflow: hidden;
}
.chapter-header--dark {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,30,58,.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(200,169,110,.04) 0%, transparent 60%),
    var(--ink);
}
.chapter-header--light {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196,30,58,.04) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(200,169,110,.06) 0%, transparent 55%),
    var(--cream);
  color: var(--ink);
}
/* Faint diagonal rule across chapter headers */
.chapter-header::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0px, transparent 40px,
    rgba(255,255,255,.012) 40px, rgba(255,255,255,.012) 41px
  );
  pointer-events: none;
}
.chapter-header--light::after {
  background: repeating-linear-gradient(
    -55deg,
    transparent 0px, transparent 40px,
    rgba(0,0,0,.018) 40px, rgba(0,0,0,.018) 41px
  );
}

.chapter-header-num {
  font-family: var(--serif);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 900;
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}
.chapter-header--dark  .chapter-header-num { color: rgba(245,240,230,.15); }
.chapter-header--light .chapter-header-num { color: rgba(17,17,17,.12); }

.chapter-header-center {
  flex: 1;
  text-align: center;
  padding: 0 clamp(20px, 3vw, 60px);
}
.chapter-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  color: var(--muted);
}
.chapter-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 20px;
}
.chapter-header--dark  .chapter-title { color: var(--cream); }
.chapter-header--light .chapter-title { color: var(--ink); }

.chapter-subtitle {
  font-family: var(--body);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}
.chapter-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.chapter-vert-rule {
  width: 1px; height: 80px;
}
.chapter-header--dark  .chapter-vert-rule { background: rgba(255,255,255,.15); }
.chapter-header--light .chapter-vert-rule { background: rgba(0,0,0,.12); }

.chapter-vert-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: var(--muted);
}
.chapter-rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--crimson);
}

/* ═══════════════════════════════════════
   PLATFORM SECTIONS
   ═══════════════════════════════════════ */
.platform-section {
  min-height: 55vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(60px, 10vh, 120px) clamp(30px, 7vw, 120px);
}

/* card - two-column grid */
.platform-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  column-gap: clamp(40px, 6vw, 100px);
  position: relative;
  z-index: 1;
}
/* row 1: number spans both columns */
.platform-card .platform-number {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: clamp(14px, 2vh, 24px);
}
/* rows 2-4: logo-row fills left column, vertically centred */
.platform-card .plt-logo-row {
  grid-column: 1;
  grid-row: 2 / 5;
  align-self: center;
  margin-bottom: 0;
}
/* right column rows */
.platform-card .platform-rule {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: clamp(14px, 2vh, 22px);
  width: 60px;
}
.platform-card .platform-desc {
  grid-column: 2;
  grid-row: 3;
  margin-bottom: 0;
  max-width: 100%;
}
.platform-card .plt-link {
  grid-column: 2;
  grid-row: 4;
  margin-top: clamp(16px, 2.5vh, 28px);
}

/* logo row */
.plt-logo-row {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  margin-bottom: clamp(20px, 3vh, 32px);
}
.plt-logo {
  width: clamp(48px, 5.5vw, 72px);
  height: clamp(48px, 5.5vw, 72px);
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.plt-logo img { width: 70%; height: 70%; object-fit: contain; }
.plt-logo svg { width: 60%; height: 60%; }
.plt-name-block { display: flex; flex-direction: column; gap: 5px; }
.plt-name-block h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.01em;
}
.plt-name-block span {
  font-family: var(--sans);
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* link */
.plt-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(20px, 3vh, 32px);
  padding: 11px 24px;
  border: 1.5px solid rgba(245,240,230,.25);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245,240,230,.7);
  background: transparent;
  align-self: flex-start;
  transition: background .28s, border-color .28s, color .28s, transform .2s, box-shadow .28s;
}
.plt-link:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,240,230,.15);
}
.plt-link-icon { font-size: 12px; transition: transform .2s; }
.plt-link:hover .plt-link-icon { transform: translateX(3px); }

.platform-text-col {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vh, 120px) clamp(40px, 5vw, 80px);
  overflow: hidden;
}
.platform-watermark {
  display: none;
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 900;
  color: rgba(255,255,255,.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}
.platform-text-col > *:not(.platform-watermark) { position: relative; z-index: 1; }

.platform-number {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}
.platform-name {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 90px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}
.platform-type {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: block;
}
.platform-desc {
  font-family: var(--body);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: rgba(245,240,230,.7);
  margin-bottom: 32px;
  max-width: 420px;
}
.platform-rule {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,.15);
  margin-bottom: 28px;
}
.platform-stats {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}
.platform-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  transition: color .35s;
  width: fit-content;
  cursor: none;
}
.platform-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  z-index: -1;
}
.platform-cta:hover::before { transform: scaleX(1); }
.platform-cta:hover { color: #fff; border-color: var(--crimson); }

.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.06);
}

/* ═══════════════════════════════════════
   ERA TIMELINE SECTIONS
   ═══════════════════════════════════════ */
.era-section {
  min-height: 80vh;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}
/* ERA - per-era mood gradients */
.era-section[data-section="1996–1999"] { background: linear-gradient(145deg, #1c1408 0%, #2e1e0a 40%, #1a1208 100%); }
.era-section[data-section="2000–2004"] { background: linear-gradient(145deg, #10100a 0%, #1c1a0e 40%, #0e0e08 100%); }
.era-section[data-section="2005–2008"] { background: linear-gradient(145deg, #081008 0%, #0e1a0c 40%, #06100a 100%); }
.era-section[data-section="2009–2012"] { background: linear-gradient(145deg, #080f18 0%, #0c1626 40%, #060c14 100%); }
.era-section[data-section="2013–2014"] { background: linear-gradient(145deg, #1a0608 0%, #2c0c0e 40%, #160608 100%); }
.era-section[data-section="2015–2016"] { background: linear-gradient(145deg, #06081a 0%, #0a0e2a 40%, #060814 100%); }
.era-section[data-section="2017–2019"] { background: linear-gradient(145deg, #061212 0%, #0a1e1c 40%, #060e0e 100%); }
.era-section[data-section="2020–2022"] { background: linear-gradient(145deg, #08060f 0%, #120a1e 40%, #08060c 100%); }
.era-section[data-section="2023–2025"] { background: linear-gradient(145deg, #120e04 0%, #1e1806 40%, #0e0c04 100%); }
.era-section[data-section="2026 & Beyond"] { background: linear-gradient(145deg, #160c02 0%, #261604 40%, #180e04 100%); }

.era-top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(24px, 3vh, 44px) clamp(30px, 5vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.era-date-range {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.era-strip-rule {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 0 32px;
}
.era-title-strip {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.era-main {
  display: grid;
  grid-template-columns: 35% 65%;
}
.era-section--even .era-main {
  grid-template-columns: 65% 35%;
}
.era-section--even .era-main .era-photo-col { order: 2; }
.era-section--even .era-main .era-text-col  { order: 1; }

.era-photo-col {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
.era-photo-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity .4s;
}
.era-year-placeholder {
  display: none;
  font-family: var(--serif);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 900;
  color: rgba(255,255,255,.05);
  user-select: none;
  transition: opacity .4s;
}

/* Standard Polaroid scatter positions (p1–p6) — 2-column, 3-row grid */
.era-photo-item.p1 { --px:4%;  --py:4%;  --pr:-5deg; --pw:clamp(68px,9vw,118px); --pd:0s }
.era-photo-item.p2 { --px:52%; --py:3%;  --pr:4deg;  --pw:clamp(68px,9vw,118px); --pd:.18s }
.era-photo-item.p3 { --px:5%;  --py:40%; --pr:3deg;  --pw:clamp(68px,9vw,118px); --pd:.34s }
.era-photo-item.p4 { --px:53%; --py:38%; --pr:-4deg; --pw:clamp(68px,9vw,118px); --pd:.5s }
.era-photo-item.p5 { --px:5%;  --py:74%; --pr:-3deg; --pw:clamp(68px,9vw,118px); --pd:.65s }
.era-photo-item.p6 { --px:52%; --py:72%; --pr:5deg;  --pw:clamp(68px,9vw,118px); --pd:.8s }

/* ERA photo gallery - scattered Polaroid photos */
.era-gallery {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.era-photo-item {
  position: absolute;
  left: var(--px, 10%);
  top: var(--py, 20%);
  width: var(--pw, clamp(85px, 11vw, 150px));
  pointer-events: all;
  cursor: zoom-in;
  transform: rotate(var(--pr, 0deg)) scale(0);
  transform-origin: center center;
  transition: transform .55s cubic-bezier(.34,1.56,.64,1) var(--pd, 0s), z-index 0s;
  z-index: 4;
}
.era-photo-item.popped {
  transform: rotate(var(--pr, 0deg)) scale(1);
}
.era-photo-item:hover {
  transform: rotate(0deg) scale(2.1) !important;
  z-index: 20;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1) !important;
}
.era-photo-item img {
  width: 100%;
  display: block;
  border-radius: 2px;
  box-shadow: 0 6px 24px rgba(0,0,0,.5), 0 2px 6px rgba(0,0,0,.3);
  border: 3px solid #f5f0e6;
  border-bottom: 22px solid #f5f0e6;
}
/* Polaroid caption - handwritten year on the white bottom strip */
.polaroid-caption {
  display: block;
  text-align: center;
  font-family: 'Caveat', 'Segoe Script', 'Bradley Hand', cursive;
  font-size: clamp(10px, 1.6vw, 14px);
  font-weight: 600;
  color: rgba(45,30,10,.7);
  margin-top: -18px;
  padding-bottom: 3px;
  line-height: 1;
  pointer-events: none;
  position: relative;
  z-index: 2;
}

.era-text-col {
  position: relative;
  padding: clamp(48px, 6vh, 90px) clamp(24px, 3vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.era-year-watermark { display: none; }

/* paragraph breathing room via br */
.era-body br {
  display: block;
  content: '';
  margin-top: .55em;
}
.era-text-col > *:not(.era-year-watermark) { position: relative; z-index: 1; }

.era-headline {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 52px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 28px;
  white-space: nowrap;
}
.era-year-prefix {
  font-family: var(--sans);
  font-size: .55em;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--crimson);
  vertical-align: middle;
  opacity: .9;
}
.era-body {
  font-family: var(--body);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.85;
  color: rgba(245,240,230,.65);
  margin-bottom: 32px;
  max-width: 520px;
}
.era-body p { margin: 0 0 .6em; }
.era-body p:last-child { margin-bottom: 0; }
.era-points {
  list-style: none;
  padding: 0;
  margin: .4em 0 .7em clamp(14px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: .25em;
}
.era-points li::before {
  content: '•';
  font-family: var(--sans);
  font-size: 1em;
  color: var(--crimson);
  margin-right: .5em;
  opacity: .9;
}
.era-point-hl {
  font-family: var(--serif);
  font-size: clamp(18px, 1.75vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--crimson);
  letter-spacing: .015em;
}
.era-quote {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 2px solid currentColor;
}
.era-stat {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════
   SECTION 22: REFLECTIONS
   ═══════════════════════════════════════ */
.reflections-section {
  background: var(--ink);
  padding: clamp(80px, 12vh, 160px) clamp(30px, 10vw, 120px);
  text-align: center;
}
.reflections-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 32px;
  display: block;
}
.reflections-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 64px);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 64px;
}
.reflections-list {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  counter-reset: reflection;
}
.reflections-list li {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  font-family: var(--body);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,230,.75);
  line-height: 1.6;
  text-align: left;
  display: flex;
  align-items: baseline;
  gap: 20px;
  counter-increment: reflection;
}
.reflections-list li::before {
  content: counter(reflection, decimal-leading-zero);
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--crimson);
  flex-shrink: 0;
  padding-top: 4px;
}
.reflections-list li.gold-item {
  color: var(--gold);
  font-size: clamp(20px, 2.2vw, 32px);
  font-family: var(--body);
  font-style: normal;
}
.reflections-list li.gold-item::before { color: var(--gold); }

/* ═══════════════════════════════════════
   SECTION 23: LETTER - PAPER STYLE
   ═══════════════════════════════════════ */
.letter-section {
  background: linear-gradient(160deg, #d9d3c5 0%, #ccc6b6 100%);
  padding: clamp(80px, 12vh, 160px) clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.letter-paper {
  background: #fdf9f2;
  max-width: 720px;
  width: 100%;
  position: relative;
  box-shadow:
    0 1px 2px rgba(0,0,0,.06),
    0 4px 16px rgba(0,0,0,.1),
    0 12px 40px rgba(120,60,20,.12),
    0 40px 80px rgba(80,40,10,.18),
    0 80px 160px rgba(60,30,5,.22);
  border-radius: 1px;
  padding: 72px 80px 80px 100px;
  overflow: hidden;
  color: var(--ink);
}
/* Red left margin line */
.letter-paper::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 76px;
  width: 1.5px;
  background: rgba(196,30,58,.35);
}
/* Horizontal ruled lines */
.letter-paper::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 33px,
    rgba(0,0,0,.055) 33px,
    rgba(0,0,0,.055) 34px
  );
  background-position: 0 72px;
  pointer-events: none;
}
.letter-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.letter-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--crimson);
  display: block;
}
.letter-date {
  font-family: var(--body);
  font-size: 15px;
  font-style: italic;
  color: rgba(17,17,17,.35);
}
.letter-heading {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 40px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.letter-salutation {
  font-family: var(--body);
  font-size: 20px;
  font-style: italic;
  color: rgba(17,17,17,.65);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.letter-body {
  font-family: var(--body);
  font-size: clamp(20px, 1.72vw, 23px);
  font-weight: 600;
  line-height: 34px;
  color: rgba(17,17,17,.78);
  margin-bottom: 68px;
  position: relative;
  z-index: 1;
}
.letter-body p { margin-bottom: 34px; }
.letter-body p:last-child { margin-bottom: 0; }
.letter-closing {
  font-family: var(--body);
  font-size: 19px;
  font-style: italic;
  color: rgba(17,17,17,.55);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.letter-sig-area {
  position: relative;
  z-index: 1;
}
.letter-sig-svg {
  display: block;
  margin-bottom: 8px;
  max-width: 240px;
  height: auto;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.8s cubic-bezier(.4,0,.2,1) .4s;
}
.letter-sig-svg.drawn {
  clip-path: inset(0 0% 0 0);
}

/* ═══════════════════════════════════════
   PAGE TRANSITION CURTAIN
   ═══════════════════════════════════════ */
.page-curtain {
  position: fixed; inset: 0;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 999998;
  pointer-events: none;
  transition: transform .42s cubic-bezier(.16,1,.3,1);
}
.page-curtain.sweep-in  { transform: scaleX(1); transform-origin: left; }
.page-curtain.sweep-out { transform: scaleX(0); transform-origin: right; transition: transform .38s cubic-bezier(.16,1,.3,1); }

/* ═══════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: clamp(20px, 4vh, 40px);
  right: clamp(16px, 3vw, 36px);
  z-index: 9980;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245,240,230,.18);
  background: rgba(17,17,17,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity .35s, transform .35s, background .25s, border-color .25s;
  pointer-events: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--crimson); border-color: var(--crimson); }

/* ═══════════════════════════════════════
   STATS COUNTER
   ═══════════════════════════════════════ */
.era-stat[data-count] { transition: none; }

/* ═══════════════════════════════════════
   ERA SECTION - PER-SECTION GRAIN
   ═══════════════════════════════════════ */
.era-section {
  isolation: isolate;
}
.era-section-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 6;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.letter-sig-name {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: rgba(17,17,17,.55);
  display: block;
}
/* Paper corner fold effect */
.letter-paper .paper-fold {
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 36px 36px;
  border-color: transparent transparent rgba(0,0,0,.06) transparent;
}

/* ═══════════════════════════════════════
   SECTION 24: LET'S CONNECT
   ═══════════════════════════════════════ */
.connect-section {
  background: #faf7f2;
  overflow: hidden;
  border-top: 1px solid rgba(17,17,17,.08);
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.connect-inner {
  display: flex;
  flex-direction: column;
}
.connect-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 900;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
  text-align: center;
  padding: clamp(28px, 4vh, 52px) clamp(24px, 4vw, 60px);
  border-bottom: 1px solid rgba(17,17,17,.08);
  margin: 0;
}
/* email row */
.connect-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 7vh, 80px) clamp(24px, 4vw, 60px);
}
.connect-email-pill {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
  padding: clamp(16px, 2vh, 22px) clamp(28px, 4vw, 52px);
  border: 1.5px solid rgba(17,17,17,.18);
  border-radius: 100px;
  font-family: var(--body);
  font-size: clamp(15px, 1.8vw, 26px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .01em;
  transition: background .3s, border-color .3s, color .3s, transform .2s, box-shadow .3s;
}
.connect-pill-icon {
  font-style: normal;
  font-size: .9em;
  color: var(--crimson);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.connect-email-pill:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(17,17,17,.18);
}
.connect-email-pill:hover .connect-pill-icon {
  color: var(--gold);
  transform: scale(1.2);
}

/* ═══════════════════════════════════════
   SECTION 25: FOOTER
   ═══════════════════════════════════════ */
.footer-section {
  background: var(--ink);
  padding: clamp(80px, 10vh, 140px) clamp(30px, 6vw, 80px) clamp(40px, 6vh, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.footer-link {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  cursor: none;
}
.footer-link:hover { color: var(--cream); border-bottom-color: rgba(245,240,230,.3); }
.footer-big-name {
  font-family: var(--serif);
  font-size: clamp(80px, 18vw, 260px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,30,58,.12);
  background: linear-gradient(135deg, rgba(196,30,58,.08) 0%, rgba(200,169,110,.06) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: .85;
  text-transform: uppercase;
  user-select: none;
  margin-bottom: 48px;
  letter-spacing: .02em;
}
.footer-colophon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.18);
  flex-wrap: wrap;
}
.footer-col-rule {
  width: 20px;
  height: 1px;
  background: var(--crimson);
  opacity: .4;
  flex-shrink: 0;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 28px;
  margin-top: 20px;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.18);
}
/* Running header section name wipe animation */
#rhSection {
  clip-path: inset(0 0% 0 0);
  transition: clip-path .25s cubic-bezier(.16,1,.3,1);
}
#rhSection.wiping {
  clip-path: inset(0 100% 0 0);
}

.read-journey-cta {
  background: var(--ink);
  text-align: center;
  padding: clamp(60px, 10vh, 120px) 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}
.read-journey-cta::before {
  content: '"';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(160px, 22vw, 300px);
  font-weight: 900;
  color: rgba(196,30,58,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.read-journey-rule {
  width: 40px;
  height: 1px;
  background: var(--crimson);
  margin: 0 auto 28px;
  display: block;
}
.read-journey-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 20px;
}
.read-journey-link {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 36px;
  transition: letter-spacing .4s cubic-bezier(.16,1,.3,1);
  cursor: none;
}
.read-journey-link:hover { letter-spacing: .02em; }
.read-journey-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.15);
  padding: 14px 32px;
  position: relative;
  overflow: hidden;
  transition: color .35s;
  cursor: none;
}
.read-journey-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  z-index: -1;
}
.read-journey-btn:hover::before { transform: scaleX(1); }
.read-journey-btn:hover { color: #fff; border-color: var(--crimson); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* Touch devices - restore native cursor, hide custom cursor */
@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none !important; }
  a, button, .platform-cta, .footer-link, .read-journey-link, .read-journey-btn { cursor: pointer; }
  /* Disable hover zoom on photos (touch can't hover cleanly) */
  .era-photo-item:hover { transform: rotate(var(--pr, 0deg)) scale(1) !important; z-index: 4 !important; }
  .era-photo-item.popped:hover { transform: rotate(var(--pr, 0deg)) scale(1) !important; }
}

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
  /* Platform cards collapse to single column */
  .platform-card {
    grid-template-columns: 1fr;
  }
  .platform-card .plt-logo-row {
    grid-column: 1;
    grid-row: 2;
  }
  .platform-card .platform-rule { grid-column: 1; grid-row: 3; }
  .platform-card .platform-desc { grid-column: 1; grid-row: 4; }
  .platform-card .plt-link      { grid-column: 1; grid-row: 5; }

  /* ERA sections stack */
  .era-main,
  .era-section--even .era-main {
    grid-template-columns: 1fr;
  }
  .era-section--even .era-main .era-photo-col { order: 1; }
  .era-section--even .era-main .era-text-col  { order: 2; }
  .era-photo-col { min-height: 320px; }
  .era-text-col { padding: clamp(32px, 4vh, 60px) clamp(20px, 4vw, 48px); }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Hero */
  .cover-barcode { display: none; }
  .hero-scroll-indicator { display: none; }
  .hero-right { left: 46%; right: 10px; }
  .hero-name h1 { font-size: clamp(22px, 8vw, 56px); }
  .hero-tagline { font-size: clamp(10px, 2.8vw, 15px); }
  .hero-desc { font-size: clamp(10px, 2.4vw, 14px); }
  .hero-cta-btn { font-size: 10px; padding: 8px 14px; }

  /* Running header */
  .rh-center { display: none; }
  .rh-read-label { display: none; }
  .running-header { padding: 0 16px; }

  /* Manifesto */
  .manifesto-running-label { display: none; }
  .intro-manifesto { padding: 10vh 6vw; }
  .manifesto-big { font-size: clamp(28px, 7vw, 56px); }
  .manifesto-body { font-size: clamp(16px, 4vw, 20px); }

  /* Chapter headers */
  .chapter-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 48px 20px;
    min-height: auto;
  }
  .chapter-header-num { font-size: clamp(60px, 20vw, 140px); }
  .chapter-header-right { display: none; }
  .chapter-header-center { padding: 0; }
  .chapter-title { font-size: clamp(32px, 8vw, 60px); }
  .chapter-subtitle { font-size: clamp(14px, 3.5vw, 18px); }

  /* Platform */
  .platform-name { font-size: clamp(32px, 9vw, 60px); }
  .platform-image-col { padding: 28px 16px 0; }
  .platform-text-col  { padding: 28px 16px 48px; }
  .platform-desc { font-size: clamp(16px, 3.8vw, 20px); }

  /* ERA sections */
  .era-section { min-height: auto; }
  .era-photo-col { min-height: 280px; }
  .era-top-strip { padding: 14px 16px; gap: 6px; }
  .era-strip-rule { margin: 0 10px; }
  .era-year-placeholder { font-size: clamp(40px, 13vw, 90px); }
  .era-year-watermark {
    font-size: clamp(48px, 14vw, 110px);
    right: 0;
    top: 6px;
  }
  .era-text-col { padding: 28px 16px 40px; }
  .era-headline { font-size: clamp(16px, 4.5vw, 32px); margin-bottom: 20px; white-space: normal; }
  .era-body { font-size: clamp(15px, 3.8vw, 18px); }
  .era-stat { font-size: clamp(36px, 10vw, 72px); }
  /* Make era photos a bit wider on mobile columns */
  .era-photo-item { width: var(--pw, clamp(72px, 20vw, 120px)); }

  /* Letter */
  .letter-section { padding: clamp(48px, 7vh, 100px) 12px; }
  .letter-paper { padding: 40px 20px 52px 44px; }
  .letter-paper::before { left: 28px; }
  .letter-paper::after { background-position: 0 40px; }
  .letter-heading { font-size: clamp(22px, 6vw, 40px); margin-bottom: 28px; }
  .letter-body { font-size: clamp(14px, 3.5vw, 17px); line-height: 34px; }
  .letter-top-row { margin-bottom: 36px; }

  /* Reflections */
  .reflections-section { padding: clamp(60px, 8vh, 100px) 20px; }
  .reflections-heading { font-size: clamp(26px, 6vw, 48px); margin-bottom: 40px; }
  .reflections-list li { font-size: clamp(16px, 4vw, 20px); padding: 18px 0; }

  /* Footer */
  .footer-section { padding: clamp(60px, 8vh, 100px) 16px clamp(28px, 4vh, 60px); }
  .footer-big-name { font-size: clamp(60px, 16vw, 180px); margin-bottom: 32px; }
  .footer-links { gap: 16px; margin-bottom: 40px; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  /* Hero */
  .hero-name h1 { font-size: 7vw; }
  .hero-desc { display: none; }

  /* Chapter */
  .chapter-header { padding: 36px 14px; }
  .chapter-header-num { font-size: 18vw; }
  .chapter-title { font-size: clamp(28px, 7vw, 48px); }

  /* ERA */
  .era-photo-col { min-height: 240px; }
  .era-top-strip {
    flex-wrap: wrap;
    gap: 4px;
  }
  .era-strip-rule { display: none; }
  .era-top-strip .era-date-range,
  .era-top-strip .era-title-strip { font-size: 9px; }
  .era-text-col { padding: 24px 14px 36px; }
  .era-headline { font-size: clamp(14px, 4vw, 26px); }

  /* Platform */
  .platform-image-col { padding: 24px 14px 0; }
  .platform-text-col  { padding: 24px 14px 40px; }

  /* Letter */
  .letter-section { padding: 40px 8px; }
  .letter-paper { padding: 32px 16px 44px 36px; }
  .letter-paper::before { left: 22px; }
  .letter-paper::after { background-position: 0 32px; }
  .letter-body { line-height: 34px; }

  /* Manifesto */
  .intro-manifesto { padding: 8vh 5vw; }

  /* Reflections */
  .reflections-section { padding: 48px 14px; }

  /* Footer */
  .footer-section { padding: 48px 14px 28px; }
  .footer-big-name { font-size: 14vw; }
}
