/* ============================================================
   ALL IN — main.css
   Design tokens, global styles, components
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:      #0A0A0A;
  --ink:        #111111;
  --red:        #B11226;
  --red-deep:   #7A0C1C;
  --white:      #FFFFFF;
  --cream:      #F7F4EE;
  --grey:       #555555;
  --grey-light: #888888;
  --card-bg:    #141414;
  --card-border:#1E1E1E;

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  Calibri, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --max-prose:  700px;
  --max-wide:   1200px;
  --header-h:   64px;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── TYPOGRAPHY SCALE ────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
}

.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.synopsis {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
}

.logline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--red);
}

/* ── LAYOUT CONTAINERS ───────────────────────────────────── */
.container-prose {
  max-width: var(--max-prose);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.container-wide {
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── RED RULE ────────────────────────────────────────────── */
.red-rule {
  width: 80px;
  height: 4px;
  background: var(--red);
  margin-bottom: 2rem;
}

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.wordmark {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.12em;
  color: var(--white);
  flex-shrink: 0;
}

.wordmark:hover { color: var(--red); transition: color 0.2s; }

.site-nav {
  display: none;
  gap: 2rem;
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
    align-items: center;
  }
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--white); }

.site-nav a.active { color: var(--red); }

/* Mobile hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 900px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--red); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 50%;
  filter: saturate(0.78) brightness(0.88);
}

@media (min-width: 768px) {
  .hero-img { object-position: center 30%; }
}

/* grain overlay — makes AI images read as film */
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.045;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* blue glass tint — ties screen-glow to image */
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    rgba(18, 40, 80, 0.22) 0%,
    rgba(10, 10, 10, 0) 70%
  );
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.08) 0%,
    rgba(10,10,10,0.0)  35%,
    rgba(10,10,10,0.55) 65%,
    rgba(10,10,10,0.96) 88%,
    var(--black)        100%
  );
}

.hero-title-block {
  position: relative;
  z-index: 4;
  margin-top: auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 7vw, 5rem);
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  display: block;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(5rem, 16vw, 12rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.hero-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: var(--red);
  margin-top: 0.6rem;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.hero-format {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* ── OPENING SECTION ─────────────────────────────────────── */
.opening {
  padding: clamp(4rem, 9vw, 8rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: var(--ink);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ── THREE THREADS ───────────────────────────────────────── */
.threads {
  padding: clamp(4rem, 9vw, 8rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
}

.threads-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .threads-grid { grid-template-columns: repeat(3, 1fr); }
}

.thread-card {
  background: var(--card-bg);
  border-left: 4px solid var(--red);
  padding: 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thread-numeral {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  display: block;
}

.thread-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
}

.thread-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* ── COLD OPEN ───────────────────────────────────────────── */
.cold-open {
  padding: clamp(4rem, 9vw, 8rem) 0;
  background: var(--cream);
  color: var(--ink);
}

.cold-open .eyebrow { color: var(--red); }

.pull-quote {
  border-left: 4px solid var(--red);
  padding: 1.5rem 0 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.pull-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1rem;
}

.pull-quote footer {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--grey);
}

.pull-quote cite { font-style: normal; }

.cold-open-text {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.cold-open-kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--red);
}

/* ── PAGE NAV GRID ───────────────────────────────────────── */
.page-nav {
  padding: clamp(4rem, 9vw, 8rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}

@media (min-width: 640px) {
  .page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .page-grid { grid-template-columns: repeat(3, 1fr); }
}

.page-card {
  background: var(--black);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.page-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.35s var(--ease-out);
}

.page-card:hover::before { width: 100%; }
.page-card:hover { background: var(--card-bg); }

.page-card-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
}

.page-card-title {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.page-card-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  flex: 1;
}

.page-card-arrow {
  font-size: 1.25rem;
  color: var(--red);
  margin-top: 0.5rem;
  display: inline-block;
  transition: transform 0.2s;
}

.page-card:hover .page-card-arrow { transform: translateX(5px); }

.page-card--accent {
  background: var(--red-deep);
  border: none;
}

.page-card--accent::before { background: var(--white); }
.page-card--accent:hover { background: var(--red); }
.page-card--accent .page-card-eyebrow { color: rgba(255,255,255,0.7); }
.page-card--accent .page-card-desc { color: rgba(255,255,255,0.75); }
.page-card--accent .page-card-arrow { color: var(--white); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-credit {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: var(--white);
  border-bottom-color: var(--red);
}

/* ── CALLOUT COMPONENTS (reusable across pages) ──────────── */
.callout-quote {
  border-left: 4px solid var(--red);
  padding: 1.25rem 0 1.25rem 1.75rem;
  margin: 2.5rem 0;
}

.callout-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--white);
}

.callout-stat {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  margin: 2.5rem 0;
}

.callout-stat .stat-big {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  display: block;
}

.callout-stat .stat-big-label {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
  display: block;
}

.callout-source {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid rgba(255,255,255,0.15);
  padding: 0.875rem 1.25rem;
  margin: 1.5rem 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--grey-light);
  line-height: 1.5;
}

.callout-source a { color: var(--grey-light); text-decoration: underline; }
.callout-source a:hover { color: var(--white); }

/* ── SECTION WRAPPERS ────────────────────────────────────── */
.section-dark {
  background: var(--black);
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section-cream {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section-cream h1,
.section-cream h2,
.section-cream h3,
.section-cream h4 { color: var(--ink); }

.section-cream .synopsis { color: rgba(17,17,17,0.8); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: 0.35s; }

/* ── PAGE-LEVEL GRAIN (subtle, global) ──────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.022;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ── SECTION TRANSITIONS ─────────────────────────────────── */
.stats-bar {
  position: relative;
}
.stats-bar::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  margin-bottom: 0;
  position: absolute;
  top: 0; left: 0; right: 0;
}

.cold-open {
  position: relative;
}
.cold-open::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}

/* stronger pull quote on dark bg */
.callout-quote {
  border-left: 4px solid var(--red);
  padding: 1.25rem 0 1.25rem 1.75rem;
  margin: 2.5rem 0;
}
.callout-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--white);
}

/* stat callout punch */
.callout-stat {
  border-top: 3px solid var(--red);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* thread cards: add subtle glow on hover */
.thread-card {
  transition: box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.thread-card:hover {
  box-shadow: -4px 0 20px rgba(177,18,38,0.25);
}

/* page-card refined hover */
.page-card {
  transition: background 0.25s, box-shadow 0.25s;
}
.page-card:hover {
  box-shadow: inset 0 0 0 1px rgba(177,18,38,0.4);
}

/* ── UTILITY ─────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── FOCUS STYLES (accessibility) ───────────────────────── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ── IMAGE BREAKS ────────────────────────────────────────── */
.img-break {
  position: relative;
  height: clamp(260px, 36vw, 480px);
  overflow: hidden;
  display: block;
}

.img-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) brightness(0.75);
  display: block;
  transition: transform 8s ease;
}

.img-break:hover img { transform: scale(1.03); }

.img-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.6) 0%,
    rgba(10,10,10,0.06) 20%,
    rgba(10,10,10,0.06) 80%,
    rgba(10,10,10,0.7) 100%
  );
  pointer-events: none;
}

.img-break-label {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 640px) {
  .img-break-label {
    white-space: normal;
    text-align: center;
    width: calc(100% - 3rem);
    letter-spacing: 0.2em;
  }
}

/* ── SECTION WITH BACKGROUND IMAGE ──────────────────────── */
.section-has-bg {
  position: relative;
  overflow: hidden;
}

.section-has-bg .container-prose,
.section-has-bg .container-wide {
  position: relative;
  z-index: 1;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.45) brightness(0.28);
  display: block;
}

.section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.5);
}

/* ── READING PROGRESS BAR ────────────────────────────────── */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── PRESS TICKER ────────────────────────────────────────── */
.press-ticker {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.press-ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 32.2s linear infinite;
}

.press-ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.press-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

a.press-ticker-item:hover {
  color: rgba(255,255,255,0.72);
}

a.press-ticker-item:hover .press-ticker-dot {
  background: var(--white);
}

.press-ticker-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── FLOATING CTA ────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
}

.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.float-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(177,18,38,0.4);
}

.float-cta-btn:hover { background: var(--red-deep); }

.float-cta-btn-secondary {
  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  color: rgba(255,255,255,0.8);
}

.float-cta-btn-secondary:hover { background: rgba(20,20,20,0.97); color: var(--white); }

/* ── SITE LINK (header) ──────────────────────────────────── */
.site-link {
  display: none;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 900px) { .site-link { display: inline; } }

.site-link:hover { color: var(--white); }

/* ── STAT COUNTER ────────────────────────────────────────── */
.stat-number[data-count] { transition: none; }

/* ── TODAY BADGE (Why Now timeline) ─────────────────────── */
.today-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  vertical-align: middle;
  margin-left: 0.6rem;
  position: relative;
  top: -1px;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  50%       { box-shadow: 0 0 0 5px rgba(255,255,255,0); }
}

.today-event::before {
  background: var(--white) !important;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ── CALLOUT-SOURCE: cream-background context ────────────── */
.character-cream .callout-source,
.pillar-cream .callout-source {
  background: rgba(17,17,17,0.05);
  border-left-color: rgba(17,17,17,0.2);
  color: var(--grey);
}

/* ── CALLOUT-SOURCE: story-body specificity fix ──────────── */
.story-body .callout-source {
  font-size: 0.8125rem;
  color: var(--grey-light);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* ── FLOAT CTA: iOS safe-area ────────────────────────────── */
@supports (bottom: env(safe-area-inset-bottom)) {
  .float-cta {
    bottom: max(2rem, calc(1.25rem + env(safe-area-inset-bottom)));
  }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-img { animation: none; }
  .site-header { transition: none; }
  .press-ticker-track { animation: none; }
  #reading-progress { transition: none; }
}
