/* =========================================================
   Garner Legacy — About: "Built on the Line"
   Editorial, athletic, broadcast-grade
   ========================================================= */

/* Tokens, reset, utilities, grain, typography helpers, reveal, and
   reduced-motion are defined in shared/base.css (loaded before this). */

/* Page-specific layout overrides */
:root {
  --pad:    clamp(1rem, 4vw, 2.5rem);
  --gutter: 24px;
}

/* About's eyebrow uses slightly wider gap than base */
.eyebrow { gap: 14px; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 13, 0.82);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out);
}
.nav.is-stuck {
  background: rgba(10, 11, 13, 0.96);
  border-bottom-color: var(--gl-line);
}
.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand {
  display: flex; align-items: baseline; gap: 10px;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.nav__mark {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border: 1px solid var(--gl-red);
  color: var(--gl-red);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}
.nav__wordmark {
  font-size: 0.95rem;
  color: var(--gl-ink);
}
.nav__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  flex-wrap: nowrap;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gl-ink-dim);
  position: relative;
  padding: 6px 0;
  transition: color 160ms var(--ease-out);
}
.nav__links a:hover { color: var(--gl-ink); }
.nav__links a.is-active { color: var(--gl-ink); }
.nav__links a.is-active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gl-red);
}

.nav__burger {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--gl-line);
  width: 44px; height: 44px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  width: 18px; height: 1px; background: var(--gl-ink);
}

@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--gl-black);
  z-index: 200;
  padding: 80px var(--pad) 2rem;
  transform: translateY(-100%);
  transition: transform 320ms var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--gl-ink);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gl-line);
}
.mobile-menu a.is-active { color: var(--gl-red); }
.mobile-menu__close {
  position: absolute; top: 20px; right: var(--pad);
  background: transparent; border: 1px solid var(--gl-line);
  color: var(--gl-ink); width: 44px; height: 44px; font-size: 1.5rem;
  line-height: 1;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 0 var(--pad) clamp(3rem, 7vw, 6rem);
  color: var(--gl-ink);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.75);
  transform-origin: 52% 42%;
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.16); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 20% 100%, rgba(10,11,13,0.92) 0%, rgba(10,11,13,0.55) 45%, rgba(10,11,13,0.2) 70%, transparent 100%),
    linear-gradient(180deg, rgba(10,11,13,0.5) 0%, rgba(10,11,13,0.2) 30%, rgba(10,11,13,0.0) 50%, rgba(10,11,13,0.6) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  margin: 0 auto;
  width: 100%;
  padding-top: clamp(5rem, 12vw, 8rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Satoshi", sans-serif;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gl-red);
  margin-bottom: 1.8rem;
}
.hero__eyebrow .hairline { width: 56px; }

.hero__title {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: var(--fs-hero);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 1.4rem;
  max-width: 12ch;
  text-wrap: balance;
}

.hero__sub {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  color: var(--gl-ink);
  max-width: 60ch;
  line-height: 1.45;
}
.hero__sub .dot { color: var(--gl-red); padding: 0 0.25em; }

.hero__meta {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(245, 242, 234, 0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: var(--fs-small);
  color: var(--gl-ink-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 720px;
}
.hero__meta em {
  font-style: normal;
  color: var(--gl-ink);
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
}

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: clamp(2rem, 5vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  font-family: "Satoshi", sans-serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gl-ink-dim);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 70px;
  background: linear-gradient(180deg, var(--gl-red) 0%, transparent 100%);
  animation: scrollpulse 2.2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50%      { transform: scaleY(0.4); transform-origin: top; opacity: 0.5; }
}

@media (max-width: 700px) {
  .hero__scroll { display: none; }
  .hero__meta { flex-direction: column; gap: 0.4rem; }
}

/* Staggered reveal on hero load */
.hero .reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 700ms var(--ease-out) forwards;
}
.hero .reveal[data-stagger="1"] { animation-delay: 120ms; }
.hero .reveal[data-stagger="2"] { animation-delay: 220ms; }
.hero .reveal[data-stagger="3"] { animation-delay: 320ms; }
.hero__eyebrow.reveal          { animation-delay: 60ms; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ TIMELINE ============ */
.timeline {
  background: var(--gl-surface);
  border-top: 1px solid var(--gl-line);
  border-bottom: 1px solid var(--gl-line);
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad);
}
.timeline__inner {
  max-width: var(--wrap);
  margin: 0 auto;
}
.timeline__lead {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: baseline;
  margin-bottom: 3rem;
}
.timeline__kicker {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--gl-ink);
  max-width: 48ch;
  line-height: 1.35;
}

.timeline__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.timeline__track::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 1px;
  background: var(--gl-line);
}
.timeline__stop {
  position: relative;
  padding: 1.75rem 1rem 0 0;
  border-right: 1px solid var(--gl-line);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}
.timeline__stop:last-child { border-right: none; padding-right: 0; }
.timeline__stop::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 28%;
  height: 1px;
  background: var(--gl-red);
}
.timeline__year {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  color: var(--gl-ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.timeline__year .sep { color: var(--gl-red); padding: 0 0.15em; font-weight: 400; }
.timeline__year em {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  color: var(--gl-red);
}
.timeline__label {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gl-ink-dim);
  line-height: 1.2;
}
.timeline__detail {
  font-size: 0.85rem;
  color: var(--gl-ink-dim);
  line-height: 1.5;
  max-width: 22ch;
}
.timeline__stop--now .timeline__year em { color: var(--gl-red-hi); }

/* Two-row fallback for mid-width screens where 5 columns feels cramped */
@media (max-width: 1080px) and (min-width: 721px) {
  .timeline__track { grid-template-columns: repeat(3, 1fr); }
  .timeline__stop:nth-child(3n) { border-right: none; padding-right: 0; }
  .timeline__stop:nth-child(n+4) { margin-top: 1.5rem; border-top: 1px solid var(--gl-line); padding-top: 1.75rem; }
  .timeline__stop:nth-child(n+4)::before { top: -1px; }
  .timeline__detail { max-width: 30ch; }
}

@media (max-width: 720px) {
  .timeline__track {
    grid-template-columns: 1fr;
  }
  .timeline__stop {
    border-right: none;
    border-bottom: 1px solid var(--gl-line);
    padding: 1.5rem 0;
  }
  .timeline__stop:last-child { border-bottom: none; }
  .timeline__stop::before { width: 40px; }
  .timeline__track::before { display: none; }
  .timeline__detail { max-width: 40ch; }
}

/* ============ CHAPTER (01, 02, 04, 05) ============ */
.chapter {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  position: relative;
}
.chapter--nfl { background: var(--gl-black); }
.chapter--coach { background: var(--gl-surface); border-top: 1px solid var(--gl-line); border-bottom: 1px solid var(--gl-line); }
.chapter--beyond { background: var(--gl-black); }
.chapter--faith { background: var(--gl-surface); border-top: 1px solid var(--gl-line); }

.chapter__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 3rem) var(--gutter);
  align-items: start;
}

.chapter__head {
  grid-column: 1 / span 5;
  position: sticky;
  top: 90px;
}
.chapter__title {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: var(--fs-display);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 1.3rem 0 0;
  text-wrap: balance;
}
.chapter__title em {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gl-red);
}

.chapter__body {
  grid-column: 7 / span 6;
  max-width: 58ch;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.lede {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.35;
  color: var(--gl-ink);
  margin-bottom: 0.5rem;
}
.chapter__body p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--gl-ink);
}
.chapter__body strong { color: var(--gl-red-hi); font-weight: 600; }

/* In-body portrait figure (e.g. chapter 02 opener, next to the sticky title) */
.chapter__body-fig {
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}
.chapter__body-fig img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.9) contrast(1.02);
  border: 1px solid var(--gl-line);
  display: block;
}
.chapter__body-fig figcaption {
  margin-top: 14px;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--gl-ink-dim);
  padding-left: 18px;
  border-left: 1px solid var(--gl-red);
  max-width: 38ch;
}

.chapter__figure {
  grid-column: 1 / span 12;
  margin-top: clamp(2rem, 5vw, 4rem);
  position: relative;
}
.chapter__figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  border: 1px solid var(--gl-line);
}
.chapter__figure figcaption {
  margin-top: 14px;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gl-ink-dim);
  padding-left: 18px;
  border-left: 1px solid var(--gl-red);
}

/* Reverse layout */
.chapter__grid--reverse .chapter__head { grid-column: 8 / span 5; }
.chapter__grid--reverse .chapter__body { grid-column: 1 / span 6; }

@media (max-width: 900px) {
  .chapter__head { grid-column: 1 / -1; position: static; }
  .chapter__body { grid-column: 1 / -1; }
  .chapter__grid--reverse .chapter__head,
  .chapter__grid--reverse .chapter__body { grid-column: 1 / -1; }
}

/* ============ STATBLOCK ============ */
.statblock {
  grid-column: 1 / span 12;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.statblock__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gl-red) 20%, var(--gl-red) 80%, transparent);
  opacity: 0.6;
}
.statblock__list {
  margin: 0;
  padding: clamp(2rem, 4vw, 3rem) 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 1rem;
  border-right: 1px solid var(--gl-line);
}
.stat:last-child { border-right: none; }
.stat dt {
  font-family: "Satoshi", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gl-ink-dim);
  order: 2;
}
.stat__num {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--gl-ink);
  margin: 0;
  order: 1;
  font-variant-numeric: tabular-nums;
}
.stat--jersey .stat__num { color: var(--gl-red); }
.stat--jersey .hash {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gl-ink-dim);
  padding-right: 0.05em;
}

@media (max-width: 700px) {
  .statblock__list { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid var(--gl-line); }
}

/* ============ LAURELS ============ */
.laurels {
  margin-top: 1rem;
  border-top: 1px solid var(--gl-line);
}
.laurels li {
  display: flex;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--gl-line);
  font-size: 0.98rem;
}
.laurels__year {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  color: var(--gl-red);
  min-width: 4.5ch;
  letter-spacing: 0.02em;
}

/* ============ ALPHA FRAMEWORK ============
   Editorial manifesto. Five movements stacked vertically.
   Each movement opens with a labeled rule, carries a floated letter
   glyph that prose wraps around like a supersized drop cap, and
   closes with a hairline + reflection question. Indents drift L/R
   per movement to create rhythm. The third movement (Prepared) is
   the visual hero: wider, centered, red-accented.
============================================= */

.alpha {
  background: var(--gl-black);
  padding: clamp(5rem, 10vw, 9rem) var(--pad) clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.alpha__head {
  max-width: 860px;
  margin: 0 auto clamp(4rem, 8vw, 6rem);
  text-align: center;
}
.alpha__head .eyebrow { justify-content: center; }
.alpha__title {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 1.3rem 0 1.5rem;
}
.alpha__title em {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  color: var(--gl-red);
  letter-spacing: -0.01em;
}
.alpha__intro {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--gl-ink-dim);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.45;
}

/* ----- The manifesto (5 movements stacked) ----- */
.alpha__manifesto {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.alpha__movement {
  --shift-x: 0;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--gl-line);
  position: relative;
}
.alpha__movement:first-of-type { border-top: 0; padding-top: 0; }

/* Subtle horizontal drift. The glyph-side alternation (L-R-L-R-L)
   carries the primary visual rhythm. */
.alpha__movement:nth-of-type(2) { --shift-x: 3%; }
.alpha__movement:nth-of-type(4) { --shift-x: -2%; }
.alpha__movement:nth-of-type(5) { --shift-x: 4%; }

/* ----- Label bar: numeral + word + red hairline ----- */
.alpha__label {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  transform: translateX(var(--shift-x));
}
.alpha__num {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1;
  color: var(--gl-red);
}
.alpha__word {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gl-ink);
  line-height: 1;
}
.alpha__rule {
  justify-self: stretch;
  height: 1px;
  background: var(--gl-red);
  transform: translateY(-0.15em);
}

/* ----- Prose block: floated glyph + principle + body ----- */
.alpha__prose {
  max-width: 62ch;
  transform: translateX(var(--shift-x));
  position: relative;
}
.alpha__prose::after { content: ''; display: block; clear: both; }

/* Base glyph: solid ink, float left.
   line-height 1.0 + padding-bottom 1rem extend the margin-box far
   enough below the letter that even the longest body (Prepared, 5
   wrapped lines) stays beside the glyph instead of orphaning flush-
   left underneath it. shape-outside: margin-box + shape-margin
   handle the horizontal clearance. */
.alpha__glyph {
  float: left;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(6.5rem, 13vw, 12rem);
  line-height: 1;
  letter-spacing: -0.07em;
  color: var(--gl-ink);
  margin: 0 1.25rem 0 0;
  padding-bottom: 1rem;
  shape-outside: margin-box;
  shape-margin: 0.75rem;
}

/* Per-letter variants. Rhythm: L-R-L-R-L.
   P is the keystone (brand red, slightly larger).
   A5 is the armored bracket (stroked outline, mirrors A1). */
.alpha__movement:nth-of-type(2) .alpha__glyph,
.alpha__movement:nth-of-type(4) .alpha__glyph {
  float: right;
  margin: 0 0 0 1.25rem;
}
.alpha__movement:nth-of-type(3) .alpha__glyph {
  color: var(--gl-red);
}
/* A5 (Armored) intentionally uses the same solid-ink treatment as A1 (Aggressive)
   so the two A's bookend the word. Wireframe dropped — it read as distraction. */

.alpha__principle {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--gl-ink);
  margin: 0 0 0.9rem;
}
.alpha__principle em { font-style: italic; }

.alpha__body {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.7;
  color: var(--gl-ink-dim);
  margin: 0;
  max-width: 54ch;
}

/* ----- Closing signature ----- */
.alpha__sig {
  max-width: var(--wrap);
  margin: clamp(4rem, 8vw, 6rem) auto 0;
  text-align: center;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--gl-ink-mute);
  letter-spacing: 0.01em;
}
.alpha__sig em { font-style: italic; }

/* ----- Middle + small viewports: kill float + drift, stack glyph as block.
   Breakpoint raised from 720px → 900px so the glyph doesn't eat
   narrow columns in the 720-900 awkward range. ----- */
@media (max-width: 900px) {
  .alpha__movement { --shift-x: 0 !important; }
  .alpha__glyph {
    float: none !important;
    display: block;
    font-size: clamp(4.5rem, 12vw, 7rem);
    margin: 0 0 0.5rem;
    padding-bottom: 0;
    line-height: 0.85;
    shape-outside: none;
    -webkit-text-stroke: 0;
    color: var(--gl-ink);
  }
  .alpha__movement:nth-of-type(3) .alpha__glyph { color: var(--gl-red); }
  .alpha__prose { max-width: 100%; }
  .alpha__principle { font-size: clamp(1.15rem, 3.5vw, 1.4rem); }
  .alpha__label { gap: 0.65rem; }
  .alpha__word { font-size: 0.75rem; letter-spacing: 0.22em; }
}

/* ============ PULLQUOTE ============ */
.pullquote {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--gl-black);
  border-top: 1px solid var(--gl-line);
  border-bottom: 1px solid var(--gl-line);
  text-align: center;
}
.pullquote__text {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1000ms var(--ease-out), transform 1000ms var(--ease-out), letter-spacing 1400ms var(--ease-out);
  letter-spacing: -0.01em;
}
.pullquote__text.is-in {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: 0;
}
.pullquote__mark {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: clamp(6rem, 14vw, 12rem);
  color: var(--gl-red);
  line-height: 0.6;
  display: block;
  opacity: 0.55;
  margin-bottom: -0.3em;
}
.pullquote__text p {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--gl-ink);
  text-wrap: balance;
}
.pullquote__text em {
  color: var(--gl-red);
  font-weight: 400;
}
.pullquote__cite {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: "Satoshi", sans-serif;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gl-ink-dim);
  font-style: normal;
  position: relative;
  padding-top: 1rem;
}
.pullquote__cite::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 1px; background: var(--gl-red);
}

/* ============ VENTURE GRID ============ */
.venture-grid {
  max-width: var(--wrap);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gl-line);
  border: 1px solid var(--gl-line);
}
.venture {
  background: var(--gl-surface);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 200px;
  position: relative;
  transition: background 180ms var(--ease-out), transform 180ms var(--ease-out);
  overflow: hidden;
}
.venture:hover {
  background: var(--gl-surface-2);
  transform: translateY(-3px);
}
.venture:hover .venture__arrow {
  transform: translateX(4px);
  color: var(--gl-red);
}
.venture__num {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--gl-red);
  letter-spacing: 0.1em;
}
.venture__label {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.15;
  color: var(--gl-ink);
  margin-top: auto;
}
.venture__sub {
  font-size: 0.88rem;
  color: var(--gl-ink-dim);
  line-height: 1.5;
}
.venture__arrow {
  position: absolute;
  top: 1.8rem; right: 1.6rem;
  font-size: 1.1rem;
  color: var(--gl-ink-dim);
  transition: transform 180ms var(--ease-out), color 180ms var(--ease-out);
}
@media (max-width: 900px) {
  .venture-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .venture-grid { grid-template-columns: 1fr; }
}

/* ============ FAITH SIGNATURE ============ */
.faith__sig {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--gl-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
}
.faith__sig > span:first-child {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gl-red);
  line-height: 1;
}
.faith__sigline {
  flex: 1;
  height: 1px;
  background: var(--gl-line);
  min-width: 40px;
}
.faith__sig small {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gl-ink-mute);
  font-weight: 500;
}

.chapter__figure--silhouette img { filter: saturate(0.5) contrast(1.15) brightness(0.7); }

/* ============ CTA ============ */
.cta {
  background: var(--gl-black);
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  text-align: center;
  border-top: 1px solid var(--gl-line);
  position: relative;
}
.cta__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta__inner .eyebrow { justify-content: center; }
.cta__title {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1.4rem 0 1.2rem;
  text-wrap: balance;
}
.cta__sub {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--gl-ink-dim);
  line-height: 1.5;
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}
.cta__actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  min-height: 48px;
  font-family: "Satoshi", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.btn--primary {
  background: var(--gl-red);
  color: var(--gl-ink);
  border-color: var(--gl-red);
}
.btn--primary:hover {
  background: var(--gl-red-hi);
  border-color: var(--gl-red-hi);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--gl-ink);
  border-color: var(--gl-line);
}
.btn--ghost:hover {
  border-color: var(--gl-red);
  color: var(--gl-red);
  transform: translateY(-2px);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--gl-surface);
  border-top: 1px solid var(--gl-line);
  padding: clamp(3.5rem, 6vw, 5rem) var(--pad) 2rem;
}
.footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 3rem;
}
.footer__mark {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--gl-red);
  color: var(--gl-red);
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer__tag {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gl-ink);
  max-width: 26ch;
  line-height: 1.4;
  margin-bottom: 1.2rem;
}
.footer__social {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--gl-line);
  color: var(--gl-ink-dim);
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.footer__social:hover { color: var(--gl-red); border-color: var(--gl-red); }
.footer__heading {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gl-ink-dim);
  margin-bottom: 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col ul a {
  font-size: 0.95rem;
  color: var(--gl-ink-dim);
  transition: color 160ms var(--ease-out);
}
.footer__col ul a:hover { color: var(--gl-ink); }
.footer__blurb {
  font-size: 0.95rem;
  color: var(--gl-ink-dim);
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 38ch;
}
.footer__form {
  display: flex;
  border: 1px solid var(--gl-line);
  background: var(--gl-surface-2);
  transition: border-color 160ms var(--ease-out);
}
.footer__form:focus-within { border-color: var(--gl-red); }
.footer__form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--gl-ink);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  min-height: 48px;
}
.footer__form input:focus { outline: none; }
.footer__form input::placeholder { color: var(--gl-ink-mute); }
.footer__form button {
  background: transparent;
  border: none;
  border-left: 1px solid var(--gl-line);
  color: var(--gl-red);
  padding: 0 20px;
  font-size: 1.2rem;
  transition: background 160ms var(--ease-out);
}
.footer__form button:hover { background: var(--gl-red); color: var(--gl-ink); }

.footer__base {
  max-width: var(--wrap);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gl-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--gl-ink-mute);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
@media (max-width: 800px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Reveal base rules live in shared/base.css — only stagger delays here */
.reveal[data-stagger="1"] { transition-delay: 80ms; }
.reveal[data-stagger="2"] { transition-delay: 160ms; }
.reveal[data-stagger="3"] { transition-delay: 240ms; }
.reveal[data-stagger="4"] { transition-delay: 320ms; }

/* Page-specific reduced-motion override (base.css handles the rest) */
@media (prefers-reduced-motion: reduce) {
  .hero__img { animation: none; transform: scale(1.02); }
}
