/* ═══════════════════════════════════════════════════
   BECKER v2 — ABOUT PAGE: DOCUMENTARY SCROLL FILM
   Chapter-based narrative · Emotional pacing · No timeline cards
   ═══════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-deep: #0A0A0C;
  --bg-surface: #111114;
  --bg-elevated: #18181C;
  --bg-hover: #1F1F24;

  --text-primary: #F0F0F2;
  --text-secondary: #7A7A82;
  --text-tertiary: #3E3E45;
  --text-faded: #2A2A30;

  --purple: hsl(260, 100%, 73%);
  --purple-dim: hsl(260, 60%, 40%);
  --purple-glow: hsl(260, 100%, 73% / 0.15);
  --purple-glow-strong: hsl(260, 100%, 73% / 0.3);
  --lavender: hsl(280, 80%, 82%);
  --gold: #D4A853;
  --gold-glow: hsl(43, 70%, 55% / 0.12);
  --crimson-dim: hsl(0, 30%, 25%);

  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Motion spring easings — generated via Motion Studio MCP */
  --spring-snappy: linear(0, 0.2459, 0.6526, 0.9468, 1.0764, 1.0915, 1.0585, 1.0219, 0.9993, 0.9914, 0.9921, 0.9957, 0.9988, 1.0004, 1);
  --spring-snappy-dur: 450ms;
  /* Softer spring for depth reveals — less overshoot, longer settle */
  --spring-gentle: linear(0, 0.1108, 0.3446, 0.5932, 0.7886, 0.9132, 0.9776, 1.0066, 1.0120, 1.0060, 1.0014, 0.9994, 0.9996, 1);
  --spring-gentle-dur: 600ms;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.22, 0.68, 0, 1.04);
  --ease-cinematic: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --frame-x: max(5vw, 24px);
  --frame-x-wide: max(8vw, 48px);
  --content-max: 1100px;
  --content-narrow: 720px;

  /* Header layout — matches homepage */
  --page-max: 1400px;
  --page-pad: clamp(1.5rem, 5vw, 4rem);
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background: var(--bg-deep);
  overflow-x: hidden;
  transition: background-color 1.5s var(--ease-cinematic);
}

/* Mood-based background shifts — cinematic atmosphere per chapter */
body[data-current-mood="quiet"]    { background-color: #0A0A0C; }
body[data-current-mood="kinetic"]  { background-color: #0C0B0F; }
body[data-current-mood="turning"]  { background-color: #0B0A0E; }
body[data-current-mood="energy"]   { background-color: #0D0B10; }
body[data-current-mood="stripped"] { background-color: #080808; }
body[data-current-mood="climax"]   { background-color: #0A090E; }
body[data-current-mood="momentum"] { background-color: #0C0B10; }
body[data-current-mood="now"]      { background-color: #0A0A0C; }

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; display: block; }

/* Premium focus-visible ring */
:focus-visible {
  outline: 2px solid var(--accent, #a78bfa);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent, #a78bfa);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ─── SCROLL PROGRESS BAR ──────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-dim), var(--lavender));
  z-index: 200;
  transition: width 60ms linear;
  pointer-events: none;
  opacity: 0;
  transition: width 60ms linear, opacity 0.6s ease;
}
.scroll-progress.is-active {
  opacity: 1;
}

/* ─── REVEAL ANIMATIONS ───────────────────────── */
/* Progressive enhancement: hidden prep states only apply when JS loaded */
.js-motion .reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease,
              transform var(--spring-snappy-dur) var(--spring-snappy);
  transition-delay: var(--delay, 0s);
}
.js-motion .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-motion .fade-in {
  opacity: 0;
  transition: opacity 1.2s var(--ease-cinematic);
  transition-delay: var(--delay, 0s);
}
.js-motion .fade-in.is-visible {
  opacity: 1;
}

/* ─── CHAPTER HEADING LANDINGS ────────────────── */
/* Number slides in from the left, title drops from above with spring */
.chapter-heading-land {
  overflow: hidden;
}
.js-motion .ch-num-slide {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.5s var(--ease-cinematic),
              transform var(--spring-snappy-dur) var(--spring-snappy);
}
.js-motion .ch-title-land {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-cinematic) 0.12s,
              transform var(--spring-snappy-dur) var(--spring-snappy) 0.12s;
}
.js-motion .chapter-heading-land.is-visible .ch-num-slide {
  opacity: 1;
  transform: translateX(0);
}
.js-motion .chapter-heading-land.is-visible .ch-title-land {
  opacity: 1;
  transform: translateY(0);
}

/* ─── DEPTH REVEAL — images emerge with scale + fade ─── */
.depth-reveal {
  overflow: hidden;
}
.js-motion .depth-reveal img,
.js-motion .depth-reveal video {
  transform: scale(1.08);
  opacity: 0;
  transition: transform var(--spring-gentle-dur) var(--spring-gentle),
              opacity 0.8s var(--ease-cinematic);
}
.js-motion .depth-reveal.is-visible img,
.js-motion .depth-reveal.is-visible video {
  transform: scale(1);
  opacity: 1;
}

/* ─── STAGGER LINES — climax action sequence ───── */
.js-motion .stagger-line {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.4s var(--ease-cinematic),
              transform 0.5s var(--ease-out-expo);
}
.js-motion .reveal-up.is-visible .stagger-line {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--stagger) * 0.18s + 0.1s);
}

/* ─── ATMOSPHERIC CHAPTER TRANSITIONS ─────────── */
/* Gradient overlays that shift between chapter moods */
.chapter::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-deep));
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}
.chapter > * {
  position: relative;
  z-index: 1;
}

/* Mood-specific atmospheric tints */
.chapter[data-mood="stripped"]::after {
  height: 300px;
  background: linear-gradient(to bottom, transparent, #050505);
  opacity: 0.8;
}
.chapter[data-mood="climax"]::after {
  background: linear-gradient(to bottom, transparent, #0A090E);
}
.chapter[data-mood="energy"]::after {
  background: linear-gradient(to bottom, transparent, hsl(260 20% 6%));
}

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.25rem 0; transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease; }
.site-header.is-scrolled { background: hsl(240 5% 5% / 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 0.6rem 0; border-bottom: 1px solid hsl(0 0% 100% / 0.04); }
.site-header__inner { max-width: var(--page-max, 1400px); margin: 0 auto; padding: 0 var(--page-pad, clamp(1.5rem, 5vw, 4rem)); display: flex; align-items: center; justify-content: space-between; }
.site-header__home { font-family: var(--font-display); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--text-primary); transition: color 0.3s ease; }
.site-header__home:hover { color: var(--gold); }
.site-header__nav { display: flex; gap: 2.25rem; }
.site-header__nav a { font-size: 0.6875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-secondary); transition: color 0.3s ease; }
.site-header__nav a:hover, .site-header__nav a.is-active { color: var(--text-primary); }
.site-header__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.site-header__burger span { display: block; width: 22px; height: 1.5px; background: var(--text-primary); transition: transform 0.3s ease, opacity 0.3s ease; }

@media (max-width: 768px) {
  .site-header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 var(--page-pad);
    gap: 0;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease,
                padding 0.35s ease;
  }
  .site-header__burger { display: flex; }
  .site-header__nav.is-open {
    max-height: 400px;
    opacity: 1;
    padding: 1.5rem var(--page-pad);
    gap: 0.25rem;
    background: hsl(240 5% 5% / 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsl(0 0% 100% / 0.05);
  }
  .site-header__nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
  }
}

/* ═══════════════════════════════════════════════════
   COLD OPEN — THE HOOK
   Full viewport. Dark. Dramatic. No context.
   ═══════════════════════════════════════════════════ */
.cold-open {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px var(--frame-x-wide) 80px;
  text-align: center;
  overflow: hidden;
}

.cold-open__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    transparent 30%,
    var(--bg-deep) 100%
  );
  pointer-events: none;
}

.cold-open__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.cold-open__dateline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 3rem;
}

.cold-open__line {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.cold-open__line--sub {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.cold-open__line--sub:last-of-type {
  color: var(--text-tertiary);
  margin-bottom: 0;
}

.cold-open__scroll-prompt {
  position: absolute;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cold-open__scroll-prompt span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.cold-open__arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-tertiary), transparent);
  animation: arrow-pulse 2.5s ease-in-out infinite;
}

@keyframes arrow-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════════
   TITLE CARD
   ═══════════════════════════════════════════════════ */
.title-card {
  padding: 160px var(--frame-x) 180px;
  text-align: center;
}

.title-card__inner {
  max-width: 800px;
  margin: 0 auto;
}

.title-card__super {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-style: italic;
  color: var(--lavender);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

.title-card__name {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--text-primary) 30%, var(--text-tertiary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2.5rem;
}

.title-card__rule {
  width: 60px;
  height: 1px;
  background: var(--purple-dim);
  margin: 0 auto 2.5rem;
}

.title-card__epigraph {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   CHAPTER — SHARED STRUCTURE
   ═══════════════════════════════════════════════════ */
.chapter {
  padding: 100px var(--frame-x) 120px;
  position: relative;
}

/* Signature chapter divider — rule expands on scroll reveal */
.chapter::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-dim), transparent);
  max-width: var(--content-max);
  margin: 0 auto 60px;
  transition: width 1.2s var(--ease-out-expo);
}
.chapter.is-visible::before {
  width: 100%;
}

.chapter__header {
  max-width: var(--content-max);
  margin: 0 auto 60px;
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.chapter__number {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}

.chapter__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════
   CHAPTER I — SMALL TOWN (quiet mood)
   ═══════════════════════════════════════════════════ */
.chapter__body--split-image-left {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 64px;
  align-items: start;
}

.chapter__image {
  position: relative;
  overflow: hidden;
}

.chapter__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.9) saturate(0.85);
}

.chapter__image-caption {
  display: block;
  margin-top: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.chapter__prose {
  padding-top: 16px;
}

.chapter__prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.chapter__prose p:first-child {
  color: var(--text-primary);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .chapter__body--split-image-left {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .chapter__image {
    max-width: 320px;
  }
}

/* ═══════════════════════════════════════════════════
   CHAPTER II — THE HUNGER (kinetic mood)
   Montage: stacked beats, quick rhythm
   ═══════════════════════════════════════════════════ */
.chapter__body--montage {
  max-width: var(--content-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.montage-beat {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}

.montage-beat--text-only {
  grid-template-columns: 1fr;
  padding-left: 228px;
}

.montage-beat__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.montage-beat__media img,
.montage-beat__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.85);
}

.montage-beat__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  padding-top: 4px;
}

.montage-beat__text--punch {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 400;
}

@media (max-width: 768px) {
  .montage-beat {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .montage-beat--text-only {
    padding-left: 0;
  }
  .montage-beat__media {
    max-width: 280px;
  }
}

/* ═══════════════════════════════════════════════════
   CHAPTER III — SOMETHING CLICKED (turning mood)
   Slow. Spacious. The cinematic pivot.
   ═══════════════════════════════════════════════════ */
.chapter__body--cinematic-moment {
  max-width: var(--content-max);
  margin: 0 auto;
}

.cinematic-moment {
  position: relative;
}

.cinematic-moment__year {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1;
  color: var(--text-faded);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.cinematic-moment__image {
  position: relative;
  max-width: 700px;
  margin-bottom: 48px;
  overflow: hidden;
}

.cinematic-moment__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: contrast(1.08) brightness(0.88) saturate(0.9);
}

.cinematic-moment__glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px hsl(280 80% 82% / 0.08);
  pointer-events: none;
}

.cinematic-moment__text {
  max-width: 600px;
}

.cinematic-moment__lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cinematic-moment__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.cinematic-moment__body em {
  color: var(--lavender);
  font-family: var(--font-body);
  font-size: 1.15em;
}

.cinematic-moment__whisper {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--lavender);
  margin-top: 2rem;
  opacity: 0.8;
}

/* Chapter aside — Marlee beat */
.chapter__aside {
  max-width: var(--content-max);
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.chapter__aside-image {
  overflow: hidden;
  max-width: 360px;
  justify-self: end;
}

.chapter__aside-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.85) saturate(0.8);
}

.chapter__aside-text {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .chapter__aside {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .chapter__aside-image {
    max-width: 260px;
    justify-self: start;
  }
}

/* ═══════════════════════════════════════════════════
   CHAPTER IV — THE RISE (energy mood)
   Asymmetric grid. Media dense. Fast rhythm.
   ═══════════════════════════════════════════════════ */
.chapter__body--rise-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.rise-card {
  background: var(--bg-surface);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo);
}

.rise-card:hover {
  transform: translateY(-4px);
}

.rise-card--wide {
  grid-column: 1 / -1;
  background: transparent;
  border-top: 1px solid var(--bg-elevated);
  border-bottom: 1px solid var(--bg-elevated);
  padding: 48px 0;
}

.rise-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.rise-card__media img,
.rise-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.88);
  transition: transform 0.6s var(--ease-out-expo);
}

.rise-card:hover .rise-card__media img,
.rise-card:hover .rise-card__media video {
  transform: scale(1.04);
}

.rise-card__info {
  padding: 20px 24px 28px;
}

.rise-card__info--centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}

.rise-card__year {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}

.rise-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.rise-card__text--featured {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.rise-card__subtext {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .chapter__body--rise-grid {
    grid-template-columns: 1fr;
  }
  .rise-card--wide {
    padding: 32px 0;
  }
}

/* ═══════════════════════════════════════════════════
   CHAPTER V — THE FALL (stripped mood)
   Minimal. No media. Color drains. Heavy negative
   space. The gut-punch.
   ═══════════════════════════════════════════════════ */
.chapter--fall {
  padding-top: 140px;
  padding-bottom: 140px;
}

.chapter--fall .chapter__title {
  color: var(--text-tertiary);
}

.chapter__body--stripped {
  max-width: var(--content-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stripped-beat {
  padding: 48px 0;
  border-bottom: 1px solid hsl(0 0% 100% / 0.03);
}

.stripped-beat:last-child {
  border-bottom: none;
}

.stripped-beat__year {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.stripped-beat__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-tertiary);
}

.stripped-beat__text--heavy {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.stripped-beat__text--quiet {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   CHAPTER VI — THE PIANO (climax mood)
   The emotional peak. Full cinematic treatment.
   ═══════════════════════════════════════════════════ */
.chapter--piano {
  padding-top: 120px;
  padding-bottom: 80px;
}

.chapter--piano .chapter__title {
  color: var(--lavender);
}

.chapter__body--climax {
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.climax-scene__frame {
  margin-bottom: 64px;
}

.climax-scene__text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.climax-scene__beat {
  font-size: 1.1rem;
  line-height: 1.7;
}

.climax-scene__beat--setup {
  color: var(--text-secondary);
}

.climax-scene__beat--build {
  color: var(--text-tertiary);
  font-size: 0.95rem;
}

.climax-scene__beat--turn {
  color: var(--text-primary);
  font-weight: 400;
}

/* The action sequence — staccato lines */
.climax-scene__action {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 64px;
  padding-left: 32px;
  border-left: 1px solid var(--text-tertiary);
}

.climax-scene__action-line {
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.climax-scene__action-line--highlight {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 0 40px hsl(260 100% 73% / 0.15);
}

/* Signature accent glow on the border during climax */
.climax-scene__action {
  border-image: linear-gradient(to bottom, var(--text-tertiary), var(--lavender), var(--text-tertiary)) 1;
}

/* The resolve — slow, emotional */
.climax-scene__resolve {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: center;
  padding: 48px 0;
}

.climax-scene__resolve-line {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--lavender);
  line-height: 1.5;
}

/* Aftermath — the payoff */
.chapter__aftermath {
  max-width: var(--content-max);
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.aftermath__image {
  position: relative;
  overflow: hidden;
}

.aftermath__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.9);
}

.aftermath__image-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px hsl(260 100% 73% / 0.1);
  pointer-events: none;
}

.aftermath__year {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.aftermath__lead {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.aftermath__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Coda — Kenny collaboration beat */
.chapter__coda {
  max-width: var(--content-max);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
}

.coda__image {
  overflow: hidden;
}

.coda__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.85);
}

.coda__text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .chapter__aftermath {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .chapter__coda {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .coda__image {
    max-width: 240px;
  }
  .climax-scene__action {
    padding-left: 20px;
  }
}

/* ═══════════════════════════════════════════════════
   CHAPTER VII — THE RETURN (momentum mood)
   Filmstrip layout. Horizontal energy. Dense media.
   ═══════════════════════════════════════════════════ */
.chapter__body--filmstrip {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.filmstrip-frame {
  overflow: hidden;
}

.filmstrip-frame__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.filmstrip-frame__media img,
.filmstrip-frame__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.85) saturate(0.9);
  transition: transform 0.6s var(--ease-out-expo), filter 0.6s;
}

.filmstrip-frame:hover .filmstrip-frame__media img,
.filmstrip-frame:hover .filmstrip-frame__media video {
  transform: scale(1.04);
  filter: contrast(1.05) brightness(0.95) saturate(1);
}

.filmstrip-frame__info {
  padding: 16px 0 0;
}

.filmstrip-frame__year {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 6px;
}

.filmstrip-frame__info p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .chapter__body--filmstrip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .chapter__body--filmstrip {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Featured moment — Descendants */
.chapter__featured {
  max-width: var(--content-max);
  margin: 80px auto 0;
}

.featured-moment {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 48px;
  align-items: center;
}

.featured-moment__image {
  position: relative;
  overflow: hidden;
}

.featured-moment__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: contrast(1.08) brightness(0.9);
}

.featured-moment__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    ellipse at center,
    hsl(260 100% 73% / 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.featured-moment__year {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

.featured-moment__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.featured-moment__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .featured-moment {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Tail beats — quick hits to close the chapter */
.chapter__tail {
  max-width: var(--content-narrow);
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tail-beat {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: start;
}

.tail-beat:not(:has(.tail-beat__media)) {
  grid-template-columns: 1fr;
  padding-left: 204px;
}

.tail-beat__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.tail-beat__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.85);
}

.tail-beat__year {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 4px;
}

.tail-beat__info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.tail-beat__text--accent {
  color: var(--lavender);
}

@media (max-width: 768px) {
  .tail-beat,
  .tail-beat:not(:has(.tail-beat__media)) {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
  .tail-beat__media {
    max-width: 200px;
  }
}

/* ═══════════════════════════════════════════════════
   CHAPTER VIII — NOW
   Forward-looking. The disciplines woven into
   narrative, not a separate section.
   ═══════════════════════════════════════════════════ */
[data-mood="now"] .chapter__title {
  background: linear-gradient(90deg, var(--text-primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chapter__body--now {
  max-width: var(--content-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.now-block {
  padding-bottom: 56px;
  border-bottom: 1px solid var(--bg-elevated);
}

.now-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.now-block__discipline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.now-block__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Current beats */
.chapter__current-beats {
  max-width: var(--content-narrow);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.current-beat {
  padding: 24px 0;
  border-top: 1px solid var(--bg-elevated);
}

.current-beat__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 16px;
}

.current-beat__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.85);
}

.current-beat__year {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 6px;
}

.current-beat__info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .chapter__current-beats {
    grid-template-columns: 1fr;
  }
}

/* Stats section removed — cinematic pass */

/* ═══════════════════════════════════════════════════
   CLOSING — END CARD (cinematic pass)
   Large portrait with atmosphere. Final statement.
   ═══════════════════════════════════════════════════ */
.closing {
  padding: 120px var(--frame-x) 100px;
  text-align: center;
  position: relative;
}

.closing__inner {
  max-width: 640px;
  margin: 0 auto;
}

/* Portrait — larger, cinematic framing with ambient glow */
.closing__portrait-frame {
  position: relative;
  width: 220px;
  height: 280px;
  margin: 0 auto 56px;
  overflow: visible;
}

.closing__portrait-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    ellipse at center,
    hsl(260 80% 60% / 0.08) 0%,
    hsl(260 60% 40% / 0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.closing__portrait-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) brightness(0.92) saturate(0.9);
}

.closing__quote {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

/* Thin rule between quote and CTAs */
.closing__rule {
  width: 48px;
  height: 1px;
  background: var(--purple-dim);
  margin: 0 auto 40px;
}

.closing__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.closing__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo);
}

.closing__btn--primary {
  background: var(--purple);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.closing__btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    hsl(0 0% 100% / 0.15) 50%,
    transparent 100%
  );
  animation: ctaShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

.closing__btn--primary:hover {
  background: hsl(260, 100%, 78%);
  box-shadow: 0 0 30px hsl(260 100% 73% / 0.3);
  transform: translateY(-2px);
}

@keyframes ctaShimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.closing__btn--secondary {
  border: 1px solid var(--text-tertiary);
  color: var(--text-primary);
}

.closing__btn--secondary:hover {
  border-color: var(--text-secondary);
  background: hsl(0 0% 100% / 0.03);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   FOOTER — homepage clone
   ═══════════════════════════════════════════════════ */
.footer {
  padding: clamp(4rem, 8vh, 6rem) 0 2rem;
  border-top: 1px solid hsl(0 0% 100% / 0.04);
  background: linear-gradient(180deg, hsl(260 5% 7%) 0%, var(--bg-deep) 100%);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__brand {
  text-align: center;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.25rem;
}

.footer__nav a {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--text-primary);
}

.footer__social {
  display: flex;
  gap: 2rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
}

.footer__social-link:hover {
  color: var(--lavender);
}

.footer__contact-line {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.footer__email {
  transition: color 0.3s ease;
}

.footer__email:hover {
  color: var(--gold);
}

.footer__inquiries {
  color: var(--text-tertiary);
  margin-left: 4px;
}

.footer__bottom {
  padding-top: 1rem;
  border-top: 1px solid hsl(0 0% 100% / 0.03);
  width: 100%;
  text-align: center;
  font-size: 0.6875rem;
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
  .footer__social {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer__nav a,
  .footer__social-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}


/* ═══════════════════════════════════════════════════
   ABOUT PAGE POLISH PASS — authority / contrast / media
   ═══════════════════════════════════════════════════ */
.chapter__prose p,
.montage-beat__text,
.cinematic-moment__body,
.chapter__aside-text,
.rise-card__text,
.rise-card__subtext,
.stripped-beat__text,
.climax-scene__beat--setup,
.climax-scene__beat--build,
.climax-scene__action-line,
.aftermath__body,
.coda__text,
.filmstrip-frame__info p,
.featured-moment__body,
.tail-beat__info p,
.now-block__text,
.current-beat__info p {
  color: #EDEDED;
}

.chapter [class*="__media"],
.chapter__image,
.chapter__aside-image,
.cinematic-moment__image,
.aftermath__image,
.coda__image,
.featured-moment__image,
.now-block__feature-media {
  border-radius: 8px;
  overflow: hidden;
}

.rise-card,
.filmstrip-frame,
.tail-beat,
.current-beat,
.now-block--feature,
.stripped-beat--with-media {
  transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo);
}

.rise-card:hover,
.filmstrip-frame:hover,
.tail-beat:hover,
.current-beat:hover,
.now-block--feature:hover,
.stripped-beat--with-media:hover {
  transform: translateY(-6px);
}

.chapter [class*="__media"] img,
.chapter [class*="__media"] video,
.chapter__image img,
.chapter__aside-image img,
.cinematic-moment__image img,
.aftermath__image img,
.coda__image img,
.featured-moment__image img,
.now-block__feature-media img {
  transition: transform 0.6s var(--ease-out-expo), filter 0.6s var(--ease-out-expo);
}

.rise-card:hover img,
.filmstrip-frame:hover img,
.tail-beat:hover img,
.current-beat:hover img,
.now-block--feature:hover img,
.stripped-beat--with-media:hover img,
.rise-card:hover video,
.filmstrip-frame:hover video,
.tail-beat:hover video,
.current-beat:hover video,
.now-block--feature:hover video,
.stripped-beat--with-media:hover video {
  transform: scale(1.035);
  filter: contrast(1.06) brightness(0.98) saturate(1.02);
}

.chapter__body--now {
  max-width: var(--content-max);
}

.now-block--feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) 1.05fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 56px;
}

.now-block__feature-media {
  background: linear-gradient(180deg, hsl(0 0% 100% / 0.04), hsl(0 0% 100% / 0.01));
  box-shadow: 0 20px 60px hsl(0 0% 0% / 0.32);
}

.now-block__feature-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) brightness(0.92) saturate(0.95);
}

.now-block__feature-copy {
  max-width: 560px;
}

.rise-card__media-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: 20px;
  margin-bottom: 28px;
}

.rise-card__media--contain img,
.aftermath__image--contain img,
.coda__image--contain img,
.climax-scene__media img,
.tail-beat__media img {
  object-fit: contain;
  background: #0d0d10;
}

.rise-card__media--contain {
  background: #0d0d10;
  border: 1px solid hsl(0 0% 100% / 0.08);
  box-shadow: 0 18px 48px hsl(0 0% 0% / 0.28);
}

.rise-card__media--contain img {
  aspect-ratio: 16 / 11;
  object-position: center;
}

.rise-card__media--brownstone img {
  aspect-ratio: 4 / 5;
  object-position: center;
}

.chapter__body--stripped {
  gap: 12px;
}

.stripped-beat--with-media {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
}

.stripped-beat__copy {
  min-width: 0;
}

.stripped-beat__media {
  background: #0d0d10;
  border: 1px solid hsl(0 0% 100% / 0.08);
  box-shadow: 0 18px 48px hsl(0 0% 0% / 0.3);
}

.stripped-beat__media img,
.stripped-beat__media iframe {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border: 0;
}

.climax-scene__media {
  max-width: 520px;
  margin: 0 auto 32px;
  background: #0d0d10;
  border: 1px solid hsl(0 0% 100% / 0.08);
  box-shadow: 0 20px 60px hsl(0 0% 0% / 0.34);
}

.climax-scene__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.aftermath__image,
.coda__image,
.tail-beat__media {
  background: #0d0d10;
  border: 1px solid hsl(0 0% 100% / 0.08);
  box-shadow: 0 18px 52px hsl(0 0% 0% / 0.32);
}

.aftermath__image img {
  object-fit: contain;
  object-position: center;
  background: #0d0d10;
}

.coda__image img {
  object-fit: contain;
  object-position: center;
  background: #0d0d10;
}

.tail-beat {
  border-top: 1px solid hsl(0 0% 100% / 0.06);
  padding-top: 24px;
}

.tail-beat:not(:has(.tail-beat__media)) {
  padding-left: 0;
}

.tail-beat__media {
  max-width: 260px;
}

.tail-beat__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.tail-beat__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid hsl(0 0% 100% / 0.12);
}

.tail-beat__brand--youtube {
  color: #fff;
  background: linear-gradient(135deg, #ff0033, #c4002f);
}

.tail-beat__brand--mtv {
  color: #111;
  background: linear-gradient(135deg, #fff, #d8d8d8);
}

.tail-beat__brand--leo {
  color: #111;
  background: linear-gradient(135deg, #f3d38a, #d4a853);
}

@media (max-width: 900px) {
  .now-block--feature,
  .stripped-beat--with-media,
  .rise-card__media-pair {
    grid-template-columns: 1fr;
  }

  .tail-beat__media {
    max-width: 100%;
  }
}
