/* whydoyouhateme — cinematic memorial / persuasion
   Dark quiet rooms + warm face highlights. Near-invisible chrome. */

:root {
  --bg: #0a0a0b;
  --bg-elevated: #121214;
  --bg-card: #161618;
  --ink: #e8e4dc;
  --ink-muted: #9a958c;
  --ink-faint: #5c5852;
  --warm: #c4a574;
  --warm-soft: rgba(196, 165, 116, 0.35);
  --warm-glow: rgba(196, 165, 116, 0.12);
  --line: rgba(232, 228, 220, 0.08);
  --line-strong: rgba(232, 228, 220, 0.14);
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
  --read: 38rem;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--warm); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--ink); }
a:focus-visible {
  outline: 1px solid var(--warm);
  outline-offset: 3px;
}

::selection {
  background: var(--warm-soft);
  color: var(--ink);
}

/* ——— Nav (near-invisible) ——— */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), background 0.4s;
}
.site-nav.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  background: linear-gradient(to bottom, rgba(10,10,11,0.85), transparent);
}
.site-nav.is-solid {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  pointer-events: auto;
}
.wordmark:hover { color: var(--ink); }

/* Model B: wordmark only — no top link strip */
.site-nav--minimal {
  justify-content: flex-start;
}

/* Chapter dots (home) */
.chapter-dots {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.5s;
  list-style: none;
  margin: 0;
  padding: 0;
}
.chapter-dots.is-visible { opacity: 1; }
.chapter-dots a {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-faint);
  display: block;
  transition: background 0.3s, transform 0.3s;
}
.chapter-dots a[aria-current="true"],
.chapter-dots a:hover {
  background: var(--warm);
  transform: scale(1.35);
}
@media (max-width: 768px) {
  .chapter-dots { display: none; }
}

/* ——— Typography ——— */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.display-xl {
  font-size: clamp(2.85rem, 9vw, 6rem);
}
.display-lg {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.display-md {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}
.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 1rem;
}
.lede {
  font-size: 1.125rem;
  color: var(--ink-muted);
  max-width: var(--read);
}
.muted { color: var(--ink-muted); }
.faint { color: var(--ink-faint); }
.warm { color: var(--warm); }

/* ——— Layout ——— */
.section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 1.5rem;
}
.section--short {
  min-height: auto;
  padding: 5rem 1.5rem;
}
.section--bleed {
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
}
.inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.inner--narrow {
  max-width: var(--read);
}
.inner--mid {
  max-width: 48rem;
}

/* ——— Hero (home ch1) ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
  background: #0a0a0b;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transform: scale(1.02);
  will-change: transform, opacity;
  transition: opacity 1.2s var(--ease);
  background: #0a0a0b;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.12) 38%, rgba(10,10,11,0.08) 70%, rgba(10,10,11,0.25) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: calc(100% - 2rem);
  max-width: min(44rem, var(--max));
  margin: 0 auto 2.5rem 0.75rem;
  margin-right: auto;
  padding: 1.75rem 1.5rem 1.85rem;
  background: rgba(10, 10, 11, 0.55);
  border: 1px solid rgba(196, 165, 116, 0.12);
  border-radius: 3px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-self: flex-start;
}
@media (min-width: 720px) {
  .hero__content {
    margin-left: 1rem;
    margin-right: auto;
    padding: 2rem 2rem 2.15rem;
    width: min(44rem, calc(100% - 2rem));
  }
}
@media (min-width: 1100px) {
  .hero__content {
    margin-left: 1.25rem;
  }
}
.hero__question {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
}
.hero__question.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.hero__invite {
  max-width: 38rem;
  margin-bottom: 1.75rem;
}
.hero__invite p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(245, 240, 232, 0.92);
  margin: 0 0 0.85rem;
  letter-spacing: 0.01em;
}
.hero__invite p:last-child {
  margin-bottom: 0;
  color: rgba(245, 240, 232, 0.82);
}
.hero__invite-qs {
  margin: 1.35rem 0 1.35rem !important;
  color: rgba(245, 240, 232, 0.88) !important;
  line-height: 1.65 !important;
}
.hero__ask {
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  white-space: nowrap;
  font-size: clamp(1.85rem, 5.5vw, 3.75rem);
  line-height: 1.15;
}

.hero__credit {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  z-index: 2;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  opacity: 0.7;
}

/* Parallax stills */
.still {
  position: relative;
  overflow: hidden;
}
.still__img {
  will-change: transform;
  transition: opacity 0.8s var(--ease);
}

/* ——— Conversion beat ——— */
.conversion {
  background: var(--bg);
}
.conversion__lines {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 28rem;
}
.conversion__lines li {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink-muted);
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), color 0.4s;
}
.conversion__lines li.is-in {
  opacity: 1;
  transform: translateY(0);
}
.conversion__lines li:last-child {
  color: var(--ink);
}
.placeholder-note {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border: 1px dashed var(--line-strong);
  display: inline-block;
  padding: 0.35rem 0.65rem;
  margin-bottom: 2rem;
  border-radius: 2px;
}

/* ——— Shabooki panel ——— */
.embed-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  max-width: 28rem;
  position: relative;
}
.embed-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-soft), transparent);
}
.embed-panel__label {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  margin: 0 0 1rem;
}
.embed-panel__body {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.embed-panel__meta {
  font-size: 0.8125rem;
  color: var(--ink-faint);
  margin: 0 0 1.5rem;
}
.embed-panel--tiktok {
  max-width: 26rem;
}
.embed-panel--tiktok .embed-panel__body {
  margin-bottom: 1.25rem;
}
.embed-panel__player {
  /* TikTok embed chrome needs ~325×758; shorter boxes cause internal scroll */
  width: 325px;
  height: 758px;
  max-width: 100%;
  margin: 0 auto 1rem;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}
.embed-panel__player iframe {
  display: block;
  width: 325px;
  height: 758px;
  max-width: 100%;
  border: 0;
}
.embed-panel--tiktok .embed-panel__meta {
  margin-bottom: 0;
}
.embed-panel--tiktok .embed-panel__meta a {
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.embed-panel--tiktok .embed-panel__meta a:hover {
  color: var(--ink);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--bg);
  background: var(--warm);
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.btn:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn--ghost {
  background: transparent;
  color: var(--ink-muted);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--warm);
  color: var(--warm);
  background: transparent;
}
.btn--large {
  padding: 1rem 1.75rem;
  font-size: 0.875rem;
}


/* ——— Home topic cards (Charlie YT) ——— */
.topic-card {
  margin: 0 0 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  max-width: 48rem;
}
.topic-card:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.topic-card__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm);
  margin: 0 0 0.75rem;
}
.topic-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.topic-card__lede {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 0 1.25rem;
  max-width: 36rem;
}
.topic-card__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 1rem;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  max-width: 48rem;
}
.topic-card__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.topic-card__after {
  font-size: 0.875rem;
  color: var(--ink-faint);
  margin: 0;
  line-height: 1.5;
}
.topic-card__after a {
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.topic-card__after a:hover { color: var(--warm); }

.doors--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 44rem;
}
@media (max-width: 900px) {
  .doors--two { grid-template-columns: 1fr; max-width: 28rem; margin: 0 auto; }
}

/* ——— Three doors ——— */
.doors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .doors { grid-template-columns: 1fr; max-width: 28rem; margin: 0 auto; }
}
.door {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 22rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.door::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--warm-glow), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s;
}
.door:hover {
  border-color: var(--warm-soft);
  transform: translateY(-4px);
}
.door:hover::before { opacity: 1; }
.door__num {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--ink-faint);
  font-style: italic;
}
.door__title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.door__desc {
  position: relative;
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.5;
}

/* ——— Dedicated topic pages ——— */
.topic-page__section {
  border-bottom: 1px solid var(--line);
}
.topic-page__section:last-of-type {
  border-bottom: none;
}
.topic-page__section .display {
  margin: 0 0 0.75rem;
}
.topic-page__neighbor {
  max-width: 48rem;
  margin: 2.5rem 0 0;
}
.topic-page__neighbor:first-of-type {
  margin-top: 2rem;
}
.topic-page__neighbor-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.topic-page__neighbor-meta {
  color: var(--ink-muted);
  font-size: 0.875rem;
  margin: 0 0 1rem;
}
.topic-page__note {
  color: var(--ink-muted);
  max-width: var(--read);
  margin: 0 0 1.5rem;
}
.topic-page__links {
  margin-top: 1rem;
  font-size: 0.8125rem;
}

/* ——— Page header (inner pages) ——— */
.page-hero {
  padding: 8rem 1.5rem 4rem;
  border-bottom: 1px solid var(--line);
}
.page-hero .display {
  margin: 0 0 1rem;
}
.page-hero .lede {
  margin: 0;
}

/* ——— How page ——— */
.beat {
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
}
.beat:last-of-type { border-bottom: none; }
.beat__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--warm);
  font-size: 1rem;
  margin: 0 0 0.75rem;
}
.beat__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.beat__body {
  color: var(--ink-muted);
  max-width: 28rem;
  margin: 0;
}

/* ——— Criticisms grid ——— */
.charge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1rem;
  padding: 3rem 0 5rem;
}
.charge-card {
  display: block;
  padding: 1.75rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 3px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.35s, background 0.35s;
  min-height: 10rem;
}
.charge-card:hover {
  border-color: var(--warm-soft);
  background: var(--bg-card);
  color: var(--ink);
}
.charge-card__tag {
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 1rem;
}
.charge-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 0.75rem;
  font-style: italic;
}
.charge-card__hint {
  font-size: 0.8125rem;
  color: var(--ink-faint);
  margin: 0;
}

/* ——— Claim burst (c/example) ——— */
.burst-chapter {
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.burst-chapter__mark {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm);
  margin: 0 0 1.5rem;
}
.media-well {
  aspect-ratio: 16 / 9;
  max-width: 48rem;
  width: 100%;
  background: #050506;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.media-well::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.6);
  pointer-events: none;
}
.media-well__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.media-well__sub {
  font-size: 0.8125rem;
  color: var(--ink-faint);
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.play-affordance {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, background 0.3s;
}
.play-affordance::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--ink-muted);
  margin-left: 3px;
}
.media-well:hover .play-affordance {
  border-color: var(--warm);
  background: var(--warm-glow);
}
.media-well:hover .play-affordance::after {
  border-color: transparent transparent transparent var(--warm);
}

.steelman {
  max-width: var(--read);
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
}
.steelman p {
  color: var(--ink-muted);
  font-style: italic;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
}

.takeaway {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-style: italic;
  line-height: 1.35;
  margin: 0 0 2rem;
  max-width: 28rem;
}

/* ——— Voices ——— */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 3rem 0 5rem;
}
@media (max-width: 720px) {
  .voice-grid { grid-template-columns: 1fr; }
}
.voice-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.voice-card .media-well {
  width: 100%;
  margin-top: 1rem;
  aspect-ratio: 16 / 9;
}
.voice-card__portrait {
  aspect-ratio: 16 / 10;
  max-height: 11rem;
  background:
    linear-gradient(165deg, #1a1814 0%, #0e0e10 50%, #161412 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
}
.voice-card__portrait::before {
  content: "";
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #2a2620, #121110);
  border: 1px solid var(--line-strong);
  opacity: 0.85;
}
.voice-card__portrait::after {
  content: "portrait TBD";
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.voice-card__portrait--photo {
  background-color: #0e0e10;
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
  padding-bottom: 0;
  align-items: stretch;
  justify-content: stretch;
}
.voice-card__portrait--photo::before {
  display: none;
}
.voice-card__portrait--photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg-elevated) 0%, transparent 100%);
  text-align: left;
  font-size: 0;
  letter-spacing: 0;
  text-transform: none;
  color: transparent;
  bottom: 0;
}

.voice-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.voice-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  font-weight: 400;
}
.voice-card__who {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin: 0 0 0.75rem;
}
.voice-card__answers {
  font-size: 0.75rem;
  color: var(--ink-faint);
  margin: 0 0 1.25rem;
  flex: 1;
}
.voice-card__answers span { color: var(--warm); }

/* ——— Watch theater cards ——— */
.watch-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem 0 5rem;
  max-width: 48rem;
}
.watch-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.35s;
}
.watch-card:hover { border-color: var(--warm-soft); color: var(--ink); }
@media (min-width: 640px) {
  .watch-card { grid-template-columns: 1.4fr 1fr; }
}
.watch-card__still {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, #141210 0%, #0a0a0b 60%, #1a1612 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.watch-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.watch-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  font-weight: 400;
}
.watch-card__meta {
  font-size: 0.8125rem;
  color: var(--ink-faint);
  margin: 0 0 1rem;
}

/* ——— About ——— */
.about-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  max-width: var(--read);
}
.about-block:last-of-type { border-bottom: none; padding-bottom: 5rem; }
.about-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 1rem;
}
.about-block p,
.about-block ul {
  color: var(--ink-muted);
  margin: 0 0 1rem;
}
.about-block ul {
  padding-left: 1.25rem;
}
.about-block li { margin-bottom: 0.5rem; }
.about-block code {
  font-size: 0.875em;
  color: var(--warm);
  background: var(--warm-glow);
  padding: 0.1em 0.35em;
  border-radius: 2px;
}

/* ——— Footer (quiet escape hatches) ——— */
.site-footer {
  padding: 3rem 1.5rem 4rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.15rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
.footer-nav a {
  color: var(--ink-faint);
  padding: 0.15rem 0.45rem;
}
.footer-nav a:hover { color: var(--warm); }
.footer-sep {
  color: var(--ink-faint);
  opacity: 0.45;
  user-select: none;
  padding: 0 0.1rem;
}
.footer-credit {
  font-size: 0.6875rem;
  color: var(--ink-faint);
  margin: 1.25rem 0 0;
  letter-spacing: 0.04em;
  opacity: 0.7;
}
.site-footer p {
  font-size: 0.75rem;
  color: var(--ink-faint);
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
}
.site-footer a { color: var(--ink-muted); }
.site-footer a:hover { color: var(--warm); }

/* Home method beat lines reuse conversion rhythm */
.method-lines {
  margin-top: 0.5rem;
}

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ——— 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;
}
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--warm);
  color: var(--bg);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }
