@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@600&family=IBM+Plex+Mono:wght@400;500&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600&display=swap');

/* ── Slate Projection & Reel Teal ── */

:root {
  --surface-bone: #1A2224;
  --surface-chalk: #222B2E;
  --surface-slate: #121A1C;
  --surface-pitch: #0C1214;
  --reel-teal: #0B6360;
  --teal-on-slate: #6FCBC5;
  --text-primary: #E8EDEE;
  --text-muted: #9BA8AB;
  --text-on-slate: #E8EDEE;
  --text-on-slate-muted: #9BA8AB;
  --rule-light: rgba(255, 255, 255, 0.1);
  --rule-teal: var(--reel-teal);
  --focus-ring: var(--reel-teal);
  --measure-min: 68ch;
  --measure-max: 96ch;
  --content-max: 84rem;
  --content-gutter: clamp(1.5rem, 5vw, 3rem);
  --marquee-band: 108px;
  --nav-strip: 52px;
  --tape-rule: 3px;
  --teal-square: 12px;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 180ms;
  --duration-mid: 220ms;
  --duration-photo: 420ms;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.72;
  color: var(--text-on-slate);
  background: var(--surface-slate);
  -webkit-font-smoothing: antialiased;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal-on-slate);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #8FD9D4;
}

/* ── Surfaces ── */

.surface-bone {
  background-color: var(--surface-bone);
  color: var(--text-on-slate);
}

.surface-chalk {
  background-color: var(--surface-chalk);
  color: var(--text-on-slate);
}

.surface-slate {
  background-color: var(--surface-slate);
  color: var(--text-on-slate);
}

.surface-pitch {
  background-color: var(--surface-pitch);
  color: var(--text-on-slate);
}

.surface-bone a,
.surface-chalk a,
.surface-slate a,
.surface-pitch a {
  color: var(--teal-on-slate);
}

.surface-bone a:hover,
.surface-chalk a:hover,
.surface-slate a:hover,
.surface-pitch a:hover {
  color: #8FD9D4;
}

.surface-bone .lead,
.surface-chalk .lead,
.surface-slate .lead,
.surface-pitch .lead {
  color: var(--text-on-slate-muted);
}

.surface-bone .kicker,
.surface-bone .eyebrow,
.surface-chalk .kicker,
.surface-chalk .eyebrow {
  color: var(--teal-on-slate);
}

.surface-slate a,
.surface-pitch a {
  color: var(--teal-on-slate);
}

.surface-slate a:hover,
.surface-pitch a:hover {
  color: #8FD9D4;
}

/* ── Skip link ── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--surface-chalk);
  background: var(--reel-teal);
  border-radius: 0 0 2px 2px;
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
  outline: none;
}

/* ── Focus visible ── */

:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

/* ── Typography ── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(3.1rem, 5.6vw, 4.5rem);
}

h2 { font-size: clamp(1.75rem, 3.2vw, 2.25rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.625rem); }

p { margin: 0 0 1.25em; }

.lead {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--text-on-slate-muted);
}

.kicker,
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal-on-slate);
}

.surface-slate .kicker,
.surface-slate .eyebrow,
.surface-pitch .kicker,
.surface-pitch .eyebrow {
  color: var(--teal-on-slate);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.875em;
}

/* ── Layout & reading rail ── */

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-main {
  flex: 1;
}

.reading-rail {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--content-gutter);
}

.reading-rail--wide {
  max-width: var(--content-max);
}

.reading-rail--wide > .prose,
.reading-rail--wide.prose,
.reading-rail--wide .prose {
  max-width: 100%;
}

.reading-rail--wide .reading-rail__inner {
  max-width: 100%;
}

.reading-rail--library {
  max-width: calc(var(--measure-max) + 8rem);
}

.reading-rail__inner {
  max-width: var(--measure-max);
  margin-inline: auto;
}

.reading-rail__aside {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-light);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

@media (min-width: 960px) {
  .reading-rail--library {
    display: grid;
    grid-template-columns: minmax(0, var(--measure-max)) 14rem;
    gap: 3rem;
    align-items: start;
  }

  .reading-rail--library .reading-rail__aside {
    margin-top: 0;
    padding-top: 0.5rem;
    border-top: none;
    position: sticky;
    top: calc(var(--marquee-band) + var(--nav-strip) + 2rem);
  }
}

.prose {
  max-width: var(--measure-max);
}

.prose > * + * {
  margin-top: 1.25em;
}

.prose > h2,
.prose > h3 {
  margin-top: 2em;
}

/* ── Marquee cap header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
}

.marquee-cap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--marquee-band);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  background: var(--surface-slate);
  color: var(--text-on-slate);
}

.marquee-cap__tape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--tape-rule);
  background: var(--reel-teal);
}

.marquee-cap__mark {
  position: absolute;
  bottom: calc(var(--tape-rule) + 0.625rem);
  left: clamp(1.25rem, 4vw, 2.5rem);
  width: var(--teal-square);
  height: var(--teal-square);
  background: var(--reel-teal);
}

.marquee-cap__brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-left: calc(var(--teal-square) + 1rem);
  text-decoration: none;
  color: inherit;
}

.marquee-cap__brand:hover {
  color: var(--text-on-slate);
}

.marquee-cap__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.marquee-cap__tagline {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-on-slate-muted);
}

.marquee-cap__aside {
  margin-left: auto;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  line-height: 1.55;
  color: var(--text-on-slate-muted);
}

.marquee-cap__aside a {
  color: inherit;
  text-decoration: none;
}

.marquee-cap__aside a:hover {
  color: var(--teal-on-slate);
}

.nav-strip {
  display: flex;
  align-items: center;
  min-height: var(--nav-strip);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  background: var(--surface-pitch);
  border-bottom: 1px solid var(--rule-light);
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.25rem 1.75rem;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-block;
  padding: 0.5rem 0;
  font-family: var(--font-mono);
  font-size: 0.78125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--text-on-slate-muted);
  white-space: nowrap;
}

.site-nav__link:hover {
  color: var(--teal-on-slate);
}

.site-nav__link.is-active {
  color: var(--teal-on-slate);
  font-weight: 500;
}

.site-nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--reel-teal);
  transform-origin: left center;
}

html.js .site-nav__link.is-active::after {
  transform: scaleX(0);
  animation: nav-rule-draw var(--duration-mid) var(--ease-out) forwards;
}

@keyframes nav-rule-draw {
  to { transform: scaleX(1); }
}

@media (max-width: 900px) {
  .nav-strip {
    align-items: flex-start;
    padding-block: 0.625rem;
  }

  .site-nav {
    flex-wrap: wrap;
    row-gap: 0.375rem;
    column-gap: 1rem;
  }

  .site-nav__link {
    font-size: 0.71875rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 480px) {
  .marquee-cap__title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  .marquee-cap__tagline {
    font-size: 0.625rem;
    letter-spacing: 0.08em;
  }
}

/* ── Section devices ── */

.section {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.section--tight {
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

/* Verdict ledger */

.verdict-ledger {
  border: 1px solid var(--rule-light);
  background: var(--surface-chalk);
}

.verdict-ledger__head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--rule-light);
  background: var(--surface-bone);
}

.verdict-ledger__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--rule-light);
  transition: background var(--duration-fast) var(--ease-out);
}

.verdict-ledger__row:last-child {
  border-bottom: none;
}

.verdict-ledger__row:hover,
.verdict-ledger__row.is-hovered {
  background: rgba(111, 203, 197, 0.06);
}

.verdict-ledger__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
}

.verdict-ledger__title a {
  text-decoration: none;
  color: inherit;
}

.verdict-ledger__title a:hover {
  color: var(--teal-on-slate);
}

.verdict-ledger__score {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--teal-on-slate);
  white-space: nowrap;
}

.verdict-ledger__date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .verdict-ledger__head { display: none; }

  .verdict-ledger__row {
    grid-template-columns: 1fr;
    gap: 0.375rem;
  }
}

/* Episode ladder */

.episode-ladder {
  position: relative;
  padding-left: 1.75rem;
  list-style: none;
  margin: 0;
}

.episode-ladder::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 0.3125rem;
  width: 2px;
  background: var(--reel-teal);
}

.episode-ladder__item {
  position: relative;
  padding-bottom: 1.75rem;
}

.episode-ladder__item:last-child {
  padding-bottom: 0;
}

.episode-ladder__item::before {
  content: '';
  position: absolute;
  left: -1.75rem;
  top: 0.55rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--surface-chalk);
  border: 2px solid var(--reel-teal);
}

.episode-ladder__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-on-slate);
  margin-bottom: 0.25rem;
}

.episode-ladder__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0 0 0.375rem;
}

.episode-ladder__note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

/* Projection band */

.projection-band {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--surface-slate);
  color: var(--text-on-slate);
  overflow: hidden;
}

.projection-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 99, 96, 0.18) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.projection-band__inner {
  position: relative;
  max-width: var(--measure-max);
  margin-inline: auto;
}

.projection-band__title {
  color: var(--text-on-slate);
  margin-bottom: 0.75rem;
}

.projection-band__body {
  color: var(--text-on-slate-muted);
  font-size: 1.0625rem;
  max-width: 52ch;
}

.projection-band__cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--surface-slate);
  background: var(--teal-on-slate);
  border: none;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out);
}

.projection-band__cta:hover {
  background: #8FD9D4;
  color: var(--surface-slate);
}

.projection-band--cinema {
  padding: 0;
  background: var(--surface-slate);
}

.projection-band--cinema::before {
  display: none;
}

.projection-band--cinema .photo-plate img {
  width: 100%;
  max-height: min(42vh, 22rem);
  object-fit: cover;
}

/* Home opening layout */

.home-opening {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .home-opening {
    grid-template-columns: 7fr 5fr;
  }

  .home-opening__text {
    max-width: none;
  }

  .home-opening__photo {
    margin: 0 -2.5rem 0 0;
  }

  .review-slab {
    grid-template-columns: 5fr 7fr;
  }

  .writer-row--flip {
    grid-template-columns: 5fr 7fr;
  }

  .writer-row--flip .writer-row__photo {
    order: 2;
  }

  .writer-row--flip .writer-row__text {
    order: 1;
  }
}

.review-slab {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

/* Map band sections */

.map-b-section .map-frame.map-b {
  max-width: none;
  aspect-ratio: auto;
  height: clamp(185px, 28vw, 280px);
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.map-b-section .map-frame.map-b iframe {
  height: 100%;
  min-height: 185px;
}

/* Watch line */

.watch-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.25rem;
  padding: 1rem 0;
  border-top: 2px solid var(--reel-teal);
  border-bottom: 1px solid var(--rule-light);
}

.watch-line__platform {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-on-slate);
}

.watch-line__meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-on-slate-muted);
}

.watch-line__link {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--teal-on-slate);
}

@media (max-width: 640px) {
  .watch-line__link {
    margin-left: 0;
    width: 100%;
  }
}

/* Fact panel */

.fact-panel {
  padding: 1.75rem 2rem;
  background: var(--surface-chalk);
  border-left: var(--tape-rule) solid var(--reel-teal);
}

.fact-panel__title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-on-slate);
  margin: 0 0 1rem;
}

.fact-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fact-panel__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rule-light);
  font-size: 0.9375rem;
}

.fact-panel__item:last-child {
  border-bottom: none;
}

.fact-panel__key {
  color: var(--text-muted);
}

.fact-panel__val {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: right;
}

/* Colophon footer */

.colophon {
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--surface-pitch);
  color: var(--text-on-slate-muted);
  font-size: 0.875rem;
}

.colophon.surface-slate {
  background-color: var(--surface-slate);
  color: var(--text-on-slate-muted);
}

.colophon__grid {
  display: grid;
  gap: 2rem;
  max-width: calc(var(--measure-max) + 12rem);
  margin-inline: auto;
}

@media (min-width: 720px) {
  .colophon__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .colophon__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.colophon-footer {
  border-top: 4px solid var(--reel-teal);
}

.colophon__brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-on-slate);
  margin-bottom: 0.5rem;
}

.colophon__heading {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-on-slate);
  margin: 0 0 0.75rem;
}

.colophon__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.colophon__links li + li {
  margin-top: 0.375rem;
}

.colophon__links a {
  text-decoration: none;
  color: var(--text-on-slate-muted);
}

.colophon__links a:hover {
  color: var(--teal-on-slate);
}

.colophon__fine {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}

/* ── Map variants ── */

.map-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--rule-light);
  background: var(--surface-chalk);
}

.map-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

.map-a { aspect-ratio: 16 / 9; }
.map-a iframe { height: 100%; min-height: 280px; }

.map-b { aspect-ratio: 4 / 3; max-width: 36rem; }
.map-b iframe { height: 100%; min-height: 240px; }

.map-c {
  aspect-ratio: 21 / 9;
  border-left: var(--tape-rule) solid var(--reel-teal);
}
.map-c iframe { height: 100%; min-height: 200px; }

.map-d {
  aspect-ratio: 1 / 1;
  max-width: 20rem;
  border-radius: 2px;
}
.map-d iframe { height: 100%; min-height: 200px; }

.map-frame__consent {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: 2rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.map-frame__consent[hidden] {
  display: none;
}

.map-frame iframe[hidden] {
  display: none;
}

/* ── Photo plate ── */

.photo-plate {
  position: relative;
  overflow: hidden;
  background: var(--surface-bone);
}

.photo-plate img {
  width: 100%;
  height: auto;
  opacity: 1;
  transform: none;
}

html.js .photo-plate:not(.is-revealed) img {
  opacity: 0.88;
  transform: translateY(8px);
}

html.js .photo-plate.is-revealed img {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity var(--duration-photo) var(--ease-out),
    transform var(--duration-photo) var(--ease-out);
}

.photo-plate__caption {
  padding: 0.75rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ── Cookie panel ── */

.cookie-panel {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9500;
  width: min(calc(100vw - 2.5rem), 22rem);
  padding: 1.25rem;
  background: var(--surface-chalk);
  border: 1px solid var(--rule-light);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  color: var(--text-on-slate);
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-panel__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.cookie-panel__text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.cookie-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-panel__btn {
  flex: 1 1 auto;
  min-width: 7rem;
  padding: 0.5625rem 0.875rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--rule-light);
  background: var(--surface-bone);
  color: var(--text-on-slate);
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out);
}

.cookie-panel__btn:hover {
  background: rgba(111, 203, 197, 0.08);
}

.cookie-panel__btn--primary {
  background: var(--reel-teal);
  border-color: var(--reel-teal);
  color: var(--text-on-slate);
}

.cookie-panel__btn--primary:hover {
  background: #094F4D;
  border-color: #094F4D;
}

.cookie-panel__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule-light);
}

.cookie-panel__prefs[hidden] {
  display: none;
}

.cookie-panel__option {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  cursor: pointer;
}

.cookie-panel__option input {
  margin-top: 0.2rem;
  accent-color: var(--reel-teal);
}

.cookie-panel__option-label {
  flex: 1;
}

.cookie-panel__option-desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

.cookie-panel__option--disabled {
  opacity: 0.65;
  cursor: default;
}

@media (max-width: 480px) {
  .cookie-panel {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
  }
}

/* ── Method table ── */

.weigh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  margin: 1.5rem 0 2rem;
}

.weigh-table th,
.weigh-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--rule-light);
}

.weigh-table thead th {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--surface-bone);
  border-bottom: 2px solid var(--reel-teal);
}

.weigh-table tbody th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  width: 38%;
}

/* ── Writer portrait rows ── */

.writer-row {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule-light);
}

.writer-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.writer-row--portrait-first {
  grid-template-columns: 5fr 7fr;
}

.writer-row--text-first {
  grid-template-columns: 7fr 5fr;
}

.writer-row__portrait {
  max-width: 26rem;
}

.writer-row__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.writer-row__role {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-on-slate);
  margin: 0 0 1rem;
}

@media (max-width: 720px) {
  .writer-row--portrait-first,
  .writer-row--text-first {
    grid-template-columns: 1fr;
  }

  .writer-row__portrait {
    max-width: 19rem;
  }
}

/* ── Library hairline list ── */

.library-hairline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.library-hairline__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 1.125rem 0;
  border-top: 1px solid var(--rule-light);
}

.library-hairline__item:last-child {
  border-bottom: 1px solid var(--rule-light);
}

.library-hairline__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
  color: var(--text-on-slate);
}

.library-hairline__title:hover {
  color: var(--teal-on-slate);
}

.library-hairline__meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Marquee desk contact ── */

.marquee-cap__desk {
  margin-left: auto;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--text-on-slate-muted);
}

.marquee-cap__desk a {
  color: var(--text-on-slate);
  text-decoration: none;
}

.marquee-cap__desk a:hover {
  color: var(--teal-on-slate);
}

@media (max-width: 720px) {
  .marquee-cap__desk {
    display: none;
  }
}

/* ── Reading rail strip ── */

.reading-rail-strip {
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--rule-light);
  background: var(--surface-bone);
}

.reading-rail-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  max-width: calc(var(--measure-max) + 8rem);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reading-rail-strip a {
  text-decoration: none;
}

/* ── Editorial notices ── */

.editorial-notice {
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  background: var(--surface-chalk);
  border-left: var(--tape-rule) solid var(--reel-teal);
  margin: 2rem 0;
}

.editorial-notice__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-on-slate);
  margin: 0 0 0.5rem;
}

/* ── Utility ── */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-muted { color: var(--text-muted); }
.text-teal { color: var(--teal-on-slate); }

.btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid var(--teal-on-slate);
  background: transparent;
  color: var(--teal-on-slate);
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}

.btn:hover {
  background: var(--teal-on-slate);
  color: var(--surface-pitch);
}

.btn--solid {
  background: var(--reel-teal);
  border-color: var(--reel-teal);
  color: var(--text-on-slate);
}

.btn--solid:hover {
  background: #094F4D;
  border-color: #094F4D;
  color: var(--text-on-slate);
}

.divider {
  border: none;
  border-top: 1px solid var(--rule-light);
  margin: 2rem 0;
}

.tag {
  display: inline-block;
  padding: 0.2em 0.55em;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(111, 203, 197, 0.12);
  color: var(--teal-on-slate);
}

/* ── Library piece pages ── */

.piece-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 0.75rem clamp(1.25rem, 4vw, 2.5rem);
  background: var(--surface-bone);
  border-bottom: 1px solid var(--rule-light);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}

.piece-nav__library {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--text-on-slate);
}

.piece-nav__library:hover {
  color: var(--teal-on-slate);
}

.piece-nav__chain {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.25rem;
  margin-left: auto;
}

.piece-nav__link {
  text-decoration: none;
  color: var(--text-muted);
}

.piece-nav__link:hover {
  color: var(--teal-on-slate);
}

.piece-nav__label {
  color: var(--text-muted);
  margin-right: 0.25rem;
}

.piece-head {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2rem);
}

.piece-head__inner {
  max-width: var(--measure-max);
  margin-inline: auto;
}

.piece-head__standfirst {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 1rem 0 1.5rem;
}

.piece-head__byline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.piece-lead {
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.piece-lead__plate {
  max-width: calc(var(--measure-max) + 12rem);
  margin-inline: auto;
}

.photo-plate--3x2 img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.prose--68ch {
  max-width: var(--measure-max);
  margin-inline: auto;
  padding-inline: var(--content-gutter);
}

.prose--68ch > p {
  margin-bottom: 1.25em;
}

.craft-note {
  display: block;
  margin: 0.375rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule-light);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.pull-quote {
  position: relative;
  margin: 2.5rem 0;
  padding: 0.25rem 0 0.25rem calc(var(--teal-square) + 1.25rem);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.pull-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: var(--teal-square);
  height: var(--teal-square);
  background: var(--reel-teal);
}

.piece-body {
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
}

.piece-map {
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
}

.piece-map__frame {
  max-width: calc(var(--measure-max) + 12rem);
  margin-inline: auto;
}

.piece-notice {
  max-width: var(--measure-max);
  margin-inline: auto;
  padding: 1.25rem var(--content-gutter);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.piece-notice--sensitivity {
  border-left: var(--tape-rule) solid var(--reel-teal);
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

.library-more {
  max-width: var(--measure-max);
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3rem) var(--content-gutter);
}

.library-more__heading {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-on-slate);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule-light);
}

.library-more__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.library-more__item {
  border-bottom: 1px solid var(--rule-light);
}

.library-more__link {
  display: block;
  padding: 0.875rem 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-primary);
}

.library-more__link:hover {
  color: var(--teal-on-slate);
}

.qa-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.qa-item {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0 1rem;
  margin-bottom: 2rem;
}

.qa-item:last-child {
  margin-bottom: 0;
}

.qa-mark {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal-on-slate);
  padding-top: 0.15rem;
}

.qa-body p {
  margin: 0 0 0.75em;
}

.qa-body p:last-child {
  margin-bottom: 0;
}

.inline-photo {
  margin: 2rem 0;
}

.inline-photo img {
  width: 100%;
  height: auto;
}

/* ── Watch / stream reference block ── */

.watch-block {
  background: var(--surface-chalk);
  border: 1px solid var(--rule-light);
  border-left: var(--tape-rule) solid var(--reel-teal);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
}

.watch-block--prominent {
  background: linear-gradient(135deg, rgba(11, 99, 96, 0.14) 0%, var(--surface-chalk) 55%);
  border: 1px solid rgba(111, 203, 197, 0.25);
  border-left: 4px solid var(--teal-on-slate);
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.75rem, 4vw, 2.75rem);
}

.watch-block__title {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
}

.watch-block--prominent .watch-block__title {
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
}

.watch-block__series {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.875rem;
  color: var(--text-on-slate);
}

.watch-block__body {
  margin: 0 0 1.125rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 72ch;
}

.watch-block__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin: 0 0 0.875rem;
}

.watch-block__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.watch-block__link::after {
  content: '↗';
  font-size: 0.875em;
}

.watch-block__url {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-on-slate-muted);
  word-break: break-all;
}

.watch-block__note {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-on-slate-muted);
  max-width: 72ch;
}

/* ── Reduced motion ── */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js .site-nav__link.is-active::after {
    transform: scaleX(1);
    animation: none;
  }

  html.js .photo-plate:not(.is-revealed) img {
    opacity: 1;
    transform: none;
  }
}
