:root {
  --ink: #11130f;
  --ink-soft: #4c5149;
  --paper: #f4f1e8;
  --paper-deep: #e7e0d2;
  --cream: #fffdf7;
  --acid: #d9ff57;
  --rust: #c85031;
  --lavender: #b9a8ff;
  --line: rgba(17, 19, 15, 0.16);
  --shadow: 0 24px 70px rgba(32, 28, 20, 0.15);
  --radius: 1.4rem;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

button,
input,
textarea { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

.shell {
  width: min(1180px, calc(100% - 2.25rem));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.035em;
  font-size: 1.12rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.brand-mark i {
  display: block;
  width: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.brand-mark i:nth-child(1) { height: 8px; }
.brand-mark i:nth-child(2) { height: 17px; }
.brand-mark i:nth-child(3) { height: 12px; }
.brand-mark i:nth-child(4) { height: 5px; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.primary-nav a,
.nav-link-button {
  text-decoration: none;
  color: var(--ink);
}

.primary-nav form { margin: 0; }

.nav-link-button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-weight: inherit;
}

.nav-action {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.62rem 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 5rem;
}

.footer-inner {
  min-height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding-block: 5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero h1,
.page-heading h1,
.programme-title-block h1,
.commission-intro h1,
.auth-card h1,
.message-page h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero h1 { font-size: clamp(4rem, 8.2vw, 7.7rem); }
.hero h1 em { color: var(--rust); font-weight: 400; }

.hero-intro,
.lede {
  max-width: 690px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-intro { max-width: 650px; margin: 2rem 0; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.button {
  min-height: 48px;
  padding: 0.82rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(17, 19, 15, 0.12); }
.button-primary { background: var(--ink); color: var(--cream); }
.button-quiet { background: transparent; color: var(--ink); }
.button-danger { background: var(--rust); color: white; border-color: var(--rust); }
.button-wide { width: 100%; }

.hero-object { position: relative; min-height: 470px; }

.record-disc {
  position: absolute;
  width: min(420px, 88vw);
  aspect-ratio: 1;
  top: 0;
  right: 0;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.record-disc::after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.record-groove {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.groove-one { inset: 16%; }
.groove-two { inset: 26%; }

.record-label {
  position: relative;
  z-index: 2;
  width: 37%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: clamp(0.78rem, 2vw, 1rem);
  line-height: 1.3;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.player-note {
  position: absolute;
  z-index: 4;
  right: -1rem;
  bottom: 0;
  transform: rotate(-4deg);
  padding: 1rem 1.3rem;
  background: var(--lavender);
  border: 1px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
}

.principles-band { background: var(--ink); color: var(--cream); }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.principles-grid article {
  min-height: 250px;
  padding: 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.principles-grid article:last-child { border-right: 0; }
.principles-grid span { color: var(--acid); font-weight: 900; }
.principles-grid h2 { font-family: Georgia, serif; font-size: 2rem; font-weight: 400; margin: 2rem 0 0.8rem; }
.principles-grid p { color: rgba(255, 255, 255, 0.7); max-width: 29ch; }

.page-heading {
  padding-block: 4.5rem 2.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.page-heading h1,
.commission-intro h1 { font-size: clamp(3.2rem, 7vw, 6.4rem); }
.page-heading .lede { margin-bottom: 0; }

.programme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.programme-card {
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  min-height: 360px;
}

.programme-card-featured { grid-column: 1 / -1; }
.card-link { height: 100%; display: grid; grid-template-columns: minmax(150px, 0.48fr) 1fr; text-decoration: none; }
.programme-card:not(.programme-card-featured) .card-link { grid-template-columns: 1fr; }
.programme-card:not(.programme-card-featured) .card-art { min-height: 185px; }

.card-art {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--lavender);
  border-right: 1px solid var(--ink);
}

.programme-card:nth-child(2n) .card-art { background: var(--acid); }
.programme-card:not(.programme-card-featured) .card-art { border-right: 0; border-bottom: 1px solid var(--ink); }
.card-number { position: absolute; left: 1.4rem; top: 1.2rem; font-weight: 950; }

.card-rings {
  position: absolute;
  width: 300px;
  aspect-ratio: 1;
  border: 42px solid var(--ink);
  border-radius: 50%;
  right: -80px;
  bottom: -110px;
}

.card-rings::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 2px solid var(--lavender);
  border-radius: 50%;
}

.card-copy { padding: clamp(1.5rem, 4vw, 3.3rem); display: flex; flex-direction: column; }
.programme-meta { display: flex; gap: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.68rem; font-weight: 900; }
.programme-meta span + span::before { content: "·"; margin-right: 0.8rem; }
.card-copy h2 { margin: 1rem 0; font-family: Georgia, serif; font-weight: 400; letter-spacing: -0.04em; font-size: clamp(2rem, 4.4vw, 4.2rem); line-height: 1; }
.programme-card:not(.programme-card-featured) .card-copy h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.card-copy p { color: var(--ink-soft); max-width: 62ch; }
.card-progress { width: 100%; height: 4px; margin-top: auto; appearance: none; border: 0; background: var(--paper-deep); }
.card-progress::-webkit-progress-bar { background: var(--paper-deep); }
.card-progress::-webkit-progress-value { background: var(--rust); }
.card-progress::-moz-progress-bar { background: var(--rust); }
.listen-link { margin-top: 1rem; font-weight: 900; }

.empty-state {
  border: 1px dashed var(--ink-soft);
  border-radius: var(--radius);
  padding: 5rem 2rem;
  text-align: center;
}
.empty-state h2 { font-family: Georgia, serif; font-size: 2.5rem; font-weight: 400; }

.production-shelf { margin-bottom: 3rem; }
.production-shelf-card { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; margin-top: 0.8rem; padding: 1.2rem 1.4rem; border: 1px solid var(--ink); border-radius: var(--radius); background: var(--lavender); text-decoration: none; }
.production-shelf-card p { margin: 0.35rem 0 0; max-width: 70ch; color: var(--ink-soft); }
.production-shelf-card > span { flex: none; font-family: Georgia, serif; font-size: 1.4rem; }

.programme-hero { background: var(--ink); color: var(--cream); }
.programme-hero-inner { padding-block: 2rem 4.5rem; }
.back-link { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-weight: 800; }
.programme-title-block { margin-top: 4rem; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; }
.programme-title-block h1 { font-size: clamp(3.3rem, 7.5vw, 7rem); max-width: 14ch; }
.programme-title-block .lede { color: rgba(255, 255, 255, 0.68); }
.duration-stamp { width: 128px; aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.duration-stamp span { font-family: Georgia, serif; font-size: 2rem; }
.duration-stamp small { color: var(--acid); text-transform: uppercase; letter-spacing: 0.1em; }

.player-section { margin-top: -1.6rem; position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; box-shadow: var(--shadow); border: 1px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: var(--cream); }
#player-antiforgery { display: none; }
.now-playing { padding: clamp(1.5rem, 4vw, 3rem); background: var(--acid); }
.now-playing-label { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; font-weight: 900; }
.now-playing h2 { margin: 2.2rem 0 0.5rem; font-family: Georgia, serif; font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 400; line-height: 1; }
.now-playing p { max-width: 55ch; }
.now-playing audio { width: 100%; margin: 2rem 0 0.8rem; accent-color: var(--rust); }
.voice-disclosure { font-size: 0.76rem; color: rgba(17, 19, 15, 0.65); }
.chapter-list { list-style: none; margin: 0; padding: 0; }
.chapter-list li + li { border-top: 1px solid var(--line); }
.chapter-button { width: 100%; min-height: 104px; padding: 1.3rem 1.5rem; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 0.7rem; border: 0; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.chapter-button:hover,
.chapter-button.is-current { background: var(--paper-deep); }
.chapter-order { font-size: 0.7rem; font-weight: 900; }
.chapter-name { font-family: Georgia, serif; font-size: 1.25rem; }
.chapter-duration { font-variant-numeric: tabular-nums; color: var(--ink-soft); }

.programme-notes { padding-top: 5rem; display: grid; grid-template-columns: 1.4fr 0.6fr; gap: clamp(2rem, 7vw, 7rem); }
.programme-notes h2 { margin: 0 0 2rem; font-family: Georgia, serif; font-size: 3rem; font-weight: 400; }
.transcript-chapter { padding-block: 1.2rem; border-top: 1px solid var(--line); }
.transcript-chapter:last-child { border-bottom: 1px solid var(--line); }
.transcript-chapter summary { cursor: pointer; font-family: Georgia, serif; font-size: 1.4rem; }
.transcript-chapter summary span { margin-right: 1rem; font-family: "Segoe UI", sans-serif; font-size: 0.72rem; font-weight: 900; }
.transcript-chapter p { max-width: 72ch; color: var(--ink-soft); line-height: 1.78; }
.source-intro { color: var(--ink-soft); }
.claim-ledger { margin: 1.25rem 0 2rem; border-bottom: 1px solid var(--line); }
.claim-card { padding: 0.9rem 0; border-top: 1px solid var(--line); }
.claim-card summary { cursor: pointer; line-height: 1.35; font-weight: 750; }
.claim-card summary span { display: block; margin-bottom: 0.28rem; color: var(--rust); text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.64rem; font-weight: 900; }
.claim-card p { color: var(--ink-soft); line-height: 1.55; }
.claim-passage { padding-left: 0.8rem; border-left: 2px solid var(--ochre); font-family: Georgia, serif; }
.claim-meta { text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.68rem; font-weight: 850; }
.claim-evidence-list { list-style: none; margin: 0.8rem 0 0; padding: 0; }
.claim-evidence-list li { margin-top: 0.55rem; }
.claim-evidence-list span { display: block; color: var(--rust); text-transform: uppercase; font-size: 0.62rem; font-weight: 900; }
.claim-evidence-list a { font-size: 0.86rem; }
.source-list { list-style: none; margin: 0; padding: 0; }
.source-list > li { border-top: 1px solid var(--line); }
.source-list > li:last-child { border-bottom: 1px solid var(--line); }
.source-list > li > a { display: block; padding: 1rem 0 0.45rem; text-decoration: none; }
.source-list > li > a span { display: block; color: var(--rust); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.66rem; font-weight: 900; }
.source-list > li > a strong { display: block; margin-top: 0.3rem; line-height: 1.25; }
.source-assessment { margin: 0 0 0.65rem; color: var(--ink-soft); font-size: 0.78rem; line-height: 1.45; }
.source-quality { margin-bottom: 0.9rem; color: var(--ink-soft); font-size: 0.82rem; }
.source-quality summary { cursor: pointer; color: var(--ink); font-weight: 750; }
.source-quality p { line-height: 1.5; }
.source-quality ul { padding-left: 1.15rem; }
.danger-zone { margin-top: 2.5rem; color: var(--ink-soft); }
.danger-zone summary { cursor: pointer; font-weight: 800; }

.commission-shell { padding-block: 5rem; max-width: 940px; }
.commission-intro h1 { max-width: 12ch; }
.commission-form,
.auth-card { margin-top: 3rem; padding: clamp(1.4rem, 4vw, 3rem); background: var(--cream); border: 1px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); }
.commission-form label,
.stack-form > label:not(.check-row) { display: block; margin-bottom: 0.55rem; font-weight: 900; }
.commission-form textarea,
.stack-form input[type="email"],
.stack-form input[type="password"] { width: 100%; padding: 1rem; border: 1px solid var(--ink); border-radius: 0.7rem; background: var(--paper); color: var(--ink); }
.commission-form textarea { resize: vertical; font-family: Georgia, serif; font-size: 1.4rem; line-height: 1.45; }
.commission-form textarea:focus,
.stack-form input:focus { outline: 3px solid var(--lavender); outline-offset: 2px; }
.field-foot { min-height: 2rem; display: flex; justify-content: space-between; gap: 1rem; color: var(--ink-soft); font-size: 0.78rem; }
.voice-picker { margin: 2.2rem 0; padding: 0; border: 0; }
.voice-picker legend { padding: 0; font-family: Georgia, serif; font-size: 1.8rem; }
.voice-picker-intro { margin: 0.4rem 0 1rem; max-width: 65ch; color: var(--ink-soft); }
.voice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
.voice-card { position: relative; padding: 1rem; display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: start; border: 1px solid var(--line); border-radius: 1rem; background: var(--paper); cursor: pointer; }
.voice-card:has(input:checked) { border-color: var(--ink); background: var(--acid); box-shadow: 4px 4px 0 var(--ink); }
.voice-card input { margin-top: 0.35rem; accent-color: var(--rust); }
.voice-card-copy { display: flex; flex-direction: column; }
.voice-card-copy strong { font-size: 1.08rem; }
.voice-card-copy small { color: var(--ink-soft); }
.voice-card audio { width: 100%; grid-column: 1 / -1; margin-top: 0.25rem; height: 38px; }
.voice-picker .voice-disclosure { margin: 1rem 0 0; }
.phase-note { display: grid; grid-template-columns: auto 1fr; gap: 1rem; margin: 2rem 0 0 auto; max-width: 680px; color: var(--ink-soft); }
.phase-note span { height: fit-content; padding: 0.2rem 0.55rem; border-radius: 999px; background: var(--lavender); color: var(--ink); font-size: 0.7rem; font-weight: 900; }
.prototype-notice { margin-top: 2rem; padding: 1.2rem 1.4rem; border-left: 5px solid var(--rust); background: var(--cream); }
.prototype-notice p { margin-bottom: 0; }

.production-shell { padding-block: 5rem; max-width: 940px; }
.production-shell h1 { max-width: 12ch; }
.production-card { margin-top: 3rem; padding: clamp(1.5rem, 5vw, 3.5rem); border: 1px solid var(--ink); border-radius: var(--radius); background: var(--cream); box-shadow: var(--shadow); }
.production-progress-copy { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.production-progress-copy span { font-family: Georgia, serif; font-size: clamp(3rem, 8vw, 6rem); }
.production-progress-copy strong { max-width: 22ch; text-align: right; font-size: 1.1rem; }
.production-card progress { width: 100%; height: 10px; margin: 1.5rem 0; appearance: none; border: 0; background: var(--paper-deep); }
.production-card progress::-webkit-progress-bar { background: var(--paper-deep); }
.production-card progress::-webkit-progress-value { background: var(--rust); }
.production-card progress::-moz-progress-bar { background: var(--rust); }
.production-card .button { margin-top: 1rem; }
.is-hidden { display: none !important; }
.production-working-copy { margin-top: 1.5rem; padding: 1.3rem 1.5rem; border: 1px solid var(--ink); border-radius: 1rem; background: var(--acid); }
.production-working-copy > span,
.production-live-activity > span,
.production-timeline span { text-transform: uppercase; letter-spacing: 0.11em; font-size: 0.64rem; font-weight: 900; }
.production-working-copy h2 { margin: 0.35rem 0 0.45rem; font-family: Georgia, serif; font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 400; line-height: 1.05; }
.production-working-copy p { margin: 0; max-width: 68ch; color: var(--ink-soft); }
.production-live-activity { min-height: 145px; margin-top: 1rem; padding: 1.3rem 1.5rem; display: flex; flex-direction: column; justify-content: center; border-radius: 1rem; background: var(--ink); color: var(--cream); }
.production-live-activity > span { color: var(--acid); }
.production-live-activity strong { margin-top: 0.35rem; font-family: Georgia, serif; font-size: 1.45rem; font-weight: 400; }
.production-live-activity p { margin: 0.35rem 0 0; color: rgba(255, 255, 255, 0.68); }
.production-timeline { margin: 1rem 0 0; padding: 0; list-style: none; }
.production-timeline li { padding: 0.75rem 0; display: grid; grid-template-columns: 86px minmax(0, 1fr); gap: 0 0.8rem; border-top: 1px solid var(--line); }
.production-timeline span { color: var(--rust); }
.production-timeline strong { line-height: 1.35; }
.production-timeline small { grid-column: 2; margin-top: 0.15rem; color: var(--ink-soft); line-height: 1.4; }
.production-prompt { margin: 3rem 0 0; padding-left: 1.5rem; border-left: 4px solid var(--lavender); font-family: Georgia, serif; font-size: clamp(1.3rem, 3vw, 2rem); line-height: 1.4; color: var(--ink-soft); }

.auth-shell { min-height: calc(100vh - 197px); display: grid; place-items: center; padding-block: 4rem; }
.auth-card { width: min(510px, 100%); margin: 0; }
.auth-card h1 { font-size: 4rem; }
.stack-form { margin-top: 2rem; }
.stack-form input { margin-bottom: 0.35rem; }
.stack-form .field-error { display: block; min-height: 1.3rem; }
.check-row { display: flex; align-items: center; gap: 0.65rem; margin: 0.7rem 0 1.2rem; }
.auth-note { margin: 1.5rem 0 0; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 0.85rem; }
.validation-summary,
.field-error { color: #a62e18; font-weight: 700; }
.validation-summary:empty { display: none; }

.message-page { min-height: 60vh; padding-block: 6rem; }
.message-page h1 { max-width: 14ch; font-size: 4rem; margin-bottom: 2rem; }

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 1.25rem), 720px); }
  .header-inner { min-height: 66px; }
  .primary-nav > a:not(.nav-action) { display: none; }
  .primary-nav { gap: 0.7rem; }
  .nav-action { padding: 0.52rem 0.75rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 4rem 2rem; }
  .hero-object { min-height: 390px; }
  .record-disc { width: min(360px, 88vw); left: 50%; right: auto; transform: translateX(-50%); }
  .player-note { right: 0.5rem; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .footer-inner { padding-block: 2rem; min-height: auto; display: block; }
  .page-heading { align-items: start; flex-direction: column; padding-top: 3rem; }
  .programme-grid { grid-template-columns: 1fr; }
  .programme-card-featured { grid-column: auto; }
  .card-link,
  .programme-card-featured .card-link { grid-template-columns: 1fr; }
  .card-art,
  .programme-card-featured .card-art { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .programme-title-block { grid-template-columns: 1fr; margin-top: 3rem; }
  .duration-stamp { width: auto; aspect-ratio: auto; border-radius: 999px; flex-direction: row; justify-content: start; gap: 0.6rem; padding: 0.6rem 1rem; }
  .duration-stamp span { font-size: 1.3rem; }
  .player-section { grid-template-columns: 1fr; margin-top: -1rem; }
  .chapter-list { border-top: 1px solid var(--ink); }
  .programme-notes { grid-template-columns: 1fr; padding-top: 3rem; }
  .sources-column { border-top: 1px solid var(--line); padding-top: 2rem; }
  .field-foot { display: block; margin-bottom: 1rem; }
  .voice-grid { grid-template-columns: 1fr; }
  .production-progress-copy { align-items: start; flex-direction: column; }
  .production-progress-copy strong { text-align: left; }
  .production-timeline li { grid-template-columns: 1fr; }
  .production-timeline small { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
