@layer reset, base, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
  img { display: block; max-width: 100%; }
  button, input { font: inherit; }
  button { color: inherit; }
  [hidden] { display: none !important; }
}

@layer base {
  :root {
    color-scheme: dark;
    --ink: #0a0907;
    --ink-soft: #13100c;
    --oak: #2c2117;
    --oak-light: #493522;
    --parchment: #eee4d0;
    --parchment-dim: #c9bca4;
    --gold: #d5aa59;
    --gold-bright: #f0cf81;
    --vermilion: #a53b2d;
    --ultramarine: #234f82;
    --sage: #78886d;
    --line: rgba(213, 170, 89, .28);
    --surface: rgba(26, 21, 15, .88);
    --surface-raised: rgba(40, 30, 20, .92);
    --shadow: 0 24px 70px rgba(0, 0, 0, .46);
    --serif: "Bodoni 72", Didot, "Iowan Old Style", Baskerville, "Times New Roman", serif;
    --sans: "Avenir Next", Avenir, "Gill Sans", ui-sans-serif, system-ui, sans-serif;
    --radius: 22px;
    --header-h: 66px;
  }

  html { background: var(--ink); }
  body {
    min-width: 320px;
    overflow-x: clip;
    background:
      radial-gradient(ellipse at 18% 4%, rgba(58, 83, 118, .18), transparent 34rem),
      radial-gradient(ellipse at 88% 24%, rgba(148, 59, 42, .12), transparent 38rem),
      linear-gradient(180deg, #0d0b08 0%, #090806 62%, #100d09 100%);
    color: var(--parchment);
    font-family: var(--sans);
    line-height: 1.58;
    text-rendering: optimizeLegibility;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 20;
    opacity: .13;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
  }

  a { color: var(--gold-bright); text-underline-offset: .22em; }
  a:hover { color: #ffe7ac; }
  h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .98; text-wrap: balance; }
  p { text-wrap: pretty; }
  :focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 4px; }
  ::selection { background: var(--gold); color: var(--ink); }
}

@layer components {
  .site-header {
    position: sticky;
    inset-block-start: 0;
    z-index: 18;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: var(--header-h);
    padding: 10px clamp(14px, 3vw, 42px);
    background: rgba(10, 9, 7, .82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px) saturate(125%);
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 44px;
    min-height: 44px;
    padding-inline: 8px;
    color: var(--parchment);
    text-decoration: none;
    font-family: var(--serif);
    letter-spacing: .02em;
  }

  .brand-mark { width: 31px; height: 31px; color: var(--gold); }
  .brand span { display: none; }
  .header-progress { justify-self: end; font-size: .74rem; color: var(--parchment-dim); letter-spacing: .09em; text-transform: uppercase; }

  .view-switch {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #0d0b08;
  }

  .view-switch button {
    min-width: 72px;
    min-height: 44px;
    padding: 8px 14px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--parchment-dim);
    cursor: pointer;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .view-switch button[aria-selected="true"] {
    background: var(--parchment);
    color: var(--ink);
    box-shadow: 0 3px 16px rgba(0,0,0,.32);
  }

  .hero {
    position: relative;
    min-height: calc(100svh - var(--header-h));
    display: grid;
    place-items: end center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
  }

  .hero-art {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: #e9e4dc;
  }

  .hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
    filter: saturate(.89) brightness(.72) contrast(1.03);
  }

  .hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(7,6,4,.2) 0%, rgba(7,6,4,.24) 38%, rgba(7,6,4,.94) 92%),
      linear-gradient(90deg, rgba(7,6,4,.28), transparent 40%, transparent 70%, rgba(7,6,4,.25));
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    width: min(1120px, 100%);
    padding: clamp(80px, 14vh, 160px) clamp(20px, 6vw, 80px) clamp(45px, 8vh, 90px);
  }

  .kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--gold-bright);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
  }
  .kicker::before { content: ""; width: 44px; height: 1px; background: currentColor; }

  .hero h1 {
    max-width: 850px;
    font-size: clamp(3.7rem, 11vw, 9.4rem);
    letter-spacing: -.055em;
    text-shadow: 0 8px 35px rgba(0,0,0,.52);
  }

  .hero-deck {
    max-width: 720px;
    margin-top: 24px;
    color: #e1d7c6;
    font-family: var(--serif);
    font-size: clamp(1.15rem, 2.4vw, 1.58rem);
    line-height: 1.36;
  }

  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

  .button, .play-button, .detail-button, .playlist-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    padding: 10px 18px;
    background: rgba(18,15,11,.78);
    color: var(--parchment);
    cursor: pointer;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,.22);
  }

  .button-primary, .play-button {
    border-color: var(--gold);
    background: var(--gold);
    color: #171006;
  }
  .button:hover, .play-button:hover, .detail-button:hover, .playlist-button:hover { transform: translateY(-1px); border-color: var(--gold-bright); }
  .button svg, .play-button svg, .detail-button svg, .playlist-button svg { width: 18px; height: 18px; }

  .quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 22px;
    color: var(--parchment-dim);
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .quick-facts span { display: inline-flex; align-items: center; gap: 8px; }
  .quick-facts span::before { content: "◆"; color: var(--gold); font-size: .55rem; }

  .intro-section {
    width: min(1120px, calc(100% - 32px));
    margin: clamp(58px, 9vw, 120px) auto;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(34px, 8vw, 110px);
    align-items: start;
  }

  .section-number {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
  }
  .intro-section h2 { margin-top: 14px; font-size: clamp(2.8rem, 6vw, 5.8rem); letter-spacing: -.045em; }
  .intro-lede { margin-top: 24px; color: var(--parchment-dim); font-size: 1.05rem; max-width: 46ch; }

  .intro-listen {
    position: sticky;
    top: calc(var(--header-h) + 28px);
    padding: clamp(22px, 4vw, 36px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
      linear-gradient(150deg, rgba(38, 48, 62, .44), transparent 55%),
      var(--surface);
    box-shadow: var(--shadow);
  }
  .listen-label { color: var(--gold-bright); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
  .intro-listen h3 { margin: 12px 0 22px; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.08; }
  .intro-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
  .duration { color: var(--parchment-dim); font-size: .84rem; font-variant-numeric: tabular-nums; }

  details.transcript { margin-top: 20px; border-top: 1px solid var(--line); }
  details.transcript summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--parchment-dim);
    font-size: .82rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  details.transcript p { padding: 0 0 12px; color: #d9cfbe; line-height: 1.78; }

  .tour-shell { padding: clamp(20px, 5vw, 72px) 0 130px; }
  .tour-head { width: min(1120px, calc(100% - 32px)); margin: 0 auto 35px; }
  .tour-head-row { display: flex; gap: 24px; align-items: end; justify-content: space-between; }
  .tour-head h2 { max-width: 720px; margin-top: 12px; font-size: clamp(2.8rem, 7vw, 6.7rem); letter-spacing: -.05em; }
  .tour-deck { max-width: 680px; margin-top: 20px; color: var(--parchment-dim); font-family: var(--serif); font-size: 1.2rem; }

  .altar-map-wrap {
    width: min(1280px, calc(100% - 22px));
    margin: 40px auto clamp(55px, 8vw, 110px);
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 5px);
    background: #e9e6df;
    box-shadow: var(--shadow);
  }
  .altar-map-caption { display: flex; justify-content: space-between; gap: 18px; padding: 12px 8px 2px; color: #4a3d2c; font-size: .78rem; font-weight: 700; }
  .altar-map-caption span:last-child { font-weight: 500; opacity: .78; }
  .altar-map { position: relative; width: 100%; overflow: hidden; border-radius: 14px; background: #e9e6df; }
  .altar-map img { width: 100%; height: auto; }
  .hotspot {
    position: absolute;
    translate: -50% -50%;
    width: clamp(28px, 3.4vw, 42px);
    height: clamp(28px, 3.4vw, 42px);
    padding: 0;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 50%;
    background: rgba(12, 10, 7, .82);
    color: #fff4d8;
    font-size: clamp(.67rem, 1.3vw, .88rem);
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0,0,0,.55);
    backdrop-filter: blur(7px);
  }
  .hotspot:hover, .hotspot:focus-visible { background: var(--gold); color: var(--ink); transform: scale(1.12); }

  .tier-heading {
    width: min(1120px, calc(100% - 32px));
    margin: clamp(48px, 8vw, 96px) auto 26px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: baseline;
  }
  .tier-heading span { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; font-style: italic; }
  .tier-heading h3 { font-size: clamp(2rem, 4vw, 3.5rem); }
  .tier-heading p { grid-column: 2; max-width: 700px; color: var(--parchment-dim); }

  .panel-list { width: min(1120px, calc(100% - 32px)); margin: 0 auto; display: grid; gap: clamp(46px, 8vw, 96px); }
  .panel-card {
    scroll-margin-top: calc(var(--header-h) + 18px);
    display: grid;
    grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
    gap: clamp(26px, 6vw, 78px);
    align-items: center;
    padding-bottom: clamp(45px, 7vw, 88px);
    border-bottom: 1px solid var(--line);
  }
  .panel-card:nth-child(even) .panel-art { order: 2; }
  .panel-art { position: relative; min-width: 0; }
  .panel-frame {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 380px;
    overflow: hidden;
    padding: clamp(12px, 2vw, 20px);
    border: 1px solid rgba(213,170,89,.4);
    border-radius: 9px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.045), transparent 38%),
      #15110c;
    box-shadow: 0 24px 60px rgba(0,0,0,.4), inset 0 0 0 5px #261b10;
  }
  .panel-frame img { max-height: 650px; width: auto; object-fit: contain; filter: saturate(.98); }
  .panel-card--landscape .panel-frame { min-height: 260px; }
  .panel-card--landscape .panel-frame img { width: 100%; height: auto; max-height: none; }
  .panel-card--feature { grid-template-columns: 1fr; gap: 34px; }
  .panel-card--feature:nth-child(even) .panel-art { order: initial; }
  .panel-card--feature .panel-frame { display: block; min-height: 0; }
  .panel-card--feature .panel-copy { width: min(780px, 100%); margin-inline: auto; }
  .panel-index {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(10,9,7,.84);
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-family: var(--serif);
    font-size: 1.08rem;
  }
  .detail-button { position: absolute; right: 12px; bottom: 12px; min-height: 44px; background: rgba(10,9,7,.88); font-size: .79rem; }

  .panel-copy { min-width: 0; }
  .panel-meta { display: flex; align-items: center; gap: 10px; color: var(--gold-bright); font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .panel-meta::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
  .panel-copy h3 { margin-top: 12px; font-size: clamp(2.35rem, 5vw, 4.5rem); letter-spacing: -.038em; }
  .panel-subtitle { margin-top: 13px; color: var(--parchment-dim); font-family: var(--serif); font-size: 1.16rem; line-height: 1.35; }
  .panel-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

  .look-closer { margin-top: 24px; padding: 20px 22px; border-left: 2px solid var(--gold); background: rgba(213,170,89,.06); }
  .look-closer h4 { margin: 0 0 9px; color: var(--gold-bright); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
  .look-closer ul { margin: 0; padding-left: 1.15rem; color: #ddd3c2; }
  .look-closer li + li { margin-top: 5px; }
  .nuance { margin-top: 17px; color: #bdb19d; font-size: .88rem; }
  .nuance strong { color: var(--parchment); }
  .source-link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 8px; color: var(--parchment-dim); font-size: .76rem; }
  .restoration-compare { margin-top: 22px; overflow: hidden; border: 1px solid rgba(143,182,226,.45); border-radius: 14px; background: #101723; }
  .restoration-compare img { width: 100%; height: auto; }
  .restoration-compare figcaption { padding: 13px 15px 15px; color: #cfdceb; font-size: .8rem; line-height: 1.5; }
  .restoration-compare strong { color: #edf5ff; }

  .completed .panel-index { background: var(--sage); border-color: #dce8d4; color: #fff; }
  .completed .panel-index::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; }
  .completed .panel-index span { opacity: 0; }

  .restoration-note {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto clamp(70px, 10vw, 130px);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px 24px;
    padding: clamp(22px, 4vw, 38px);
    border: 1px solid rgba(57, 96, 139, .7);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(35,79,130,.28), rgba(18,16,12,.9));
  }
  .restoration-note svg { width: 32px; height: 32px; color: #8fb6e2; }
  .restoration-note h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
  .restoration-note p { grid-column: 2; color: #cfdbeb; max-width: 72ch; }

  .sources {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto 130px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
  }
  .sources h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
  .sources-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .source-card { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(25,20,14,.6); }
  .source-card span { display: block; color: var(--gold); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
  .source-card a { display: inline-flex; align-items: center; min-height: 44px; margin-top: 3px; color: var(--parchment); }
  .credit { margin-top: 25px; color: var(--parchment-dim); font-size: .83rem; max-width: 78ch; }

  .audio-dock {
    position: fixed;
    z-index: 24;
    left: 50%;
    bottom: max(12px, env(safe-area-inset-bottom));
    translate: -50% 0;
    width: min(760px, calc(100% - 24px));
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border: 1px solid rgba(213,170,89,.48);
    border-radius: 18px;
    background: rgba(16,13,9,.94);
    box-shadow: 0 18px 64px rgba(0,0,0,.65);
    backdrop-filter: blur(22px) saturate(125%);
    transform: translateY(calc(100% + 30px));
    transition: transform .35s ease;
  }
  .audio-dock.is-visible { transform: translateY(0); }
  .dock-play, .dock-nav, .dock-close {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .dock-play { background: var(--gold); color: var(--ink); border-color: var(--gold); }
  .dock-copy { min-width: 0; }
  .dock-title { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; color: var(--parchment); font-size: .87rem; font-weight: 750; }
  .dock-progress { display: grid; grid-template-columns: auto 1fr auto; gap: 8px; align-items: center; margin-top: 5px; color: var(--parchment-dim); font-size: .68rem; font-variant-numeric: tabular-nums; }
  .dock-progress input { width: 100%; accent-color: var(--gold); }
  .dock-controls { display: flex; gap: 4px; }
  .dock-controls button { color: var(--parchment); }

  .detail-dialog {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(7,6,4,.98);
    color: var(--parchment);
  }
  .detail-dialog::backdrop { background: #070604; }
  .detail-shell { height: 100%; display: grid; grid-template-rows: auto 1fr auto; }
  .detail-head, .detail-foot { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px clamp(14px, 4vw, 38px); background: rgba(10,9,7,.9); border-bottom: 1px solid var(--line); }
  .detail-foot { border-top: 1px solid var(--line); border-bottom: 0; }
  .detail-head h2 { font-family: var(--serif); font-size: clamp(1.35rem, 3vw, 2.1rem); }
  .dialog-close { min-width: 46px; min-height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--parchment); cursor: pointer; font-size: 1.4rem; }
  .detail-stage { overflow: auto; overscroll-behavior: contain; display: grid; place-items: center; background: #070604; touch-action: pan-x pan-y pinch-zoom; }
  .detail-stage img { max-width: none; width: min(1500px, 160vw); height: auto; padding: 30px; }
  .enhance-switch { display: inline-grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; }
  .enhance-switch button { min-height: 44px; border: 0; border-radius: 999px; padding: 7px 14px; background: transparent; color: var(--parchment-dim); cursor: pointer; }
  .enhance-switch button[aria-pressed="true"] { background: var(--parchment); color: var(--ink); }
  .enhancement-note { color: var(--parchment-dim); font-size: .72rem; }

  .site-footer { padding: 45px 20px 120px; text-align: center; border-top: 1px solid var(--line); color: var(--parchment-dim); font-family: var(--serif); }
  .noscript-note { width: min(1120px, calc(100% - 32px)); margin: 0 auto 28px; padding: 1rem; border: 1px solid var(--line); color: var(--parchment-dim); }
}

@layer utilities {
  .sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
  .no-scroll { position: fixed; width: 100%; overflow: hidden; }
}

@media (min-width: 760px) {
  .brand span { display: inline; }
}

@media (max-width: 780px) {
  :root { --header-h: 62px; }
  .site-header { grid-template-columns: auto 1fr; }
  .header-progress { display: none; }
  .view-switch { justify-self: end; }
  .view-switch button { min-width: 66px; padding-inline: 11px; }
  .hero { min-height: 82svh; }
  .hero-art img { object-fit: cover; object-position: 50% 48%; }
  .hero-copy { padding-inline: 20px; }
  .hero h1 { font-size: clamp(3.5rem, 18vw, 6rem); }
  .intro-section { grid-template-columns: 1fr; }
  .intro-listen { position: static; }
  .tour-head-row { display: block; }
  .playlist-button { margin-top: 22px; }
  .altar-map-wrap { padding: 7px; }
  .altar-map-caption span:last-child { display: none; }
  .hotspot { width: 44px; height: 44px; }
  .panel-card { grid-template-columns: 1fr; gap: 25px; }
  .panel-card:nth-child(even) .panel-art { order: initial; }
  .panel-frame { min-height: 330px; }
  .panel-frame img { max-height: 560px; }
  .tier-heading { grid-template-columns: auto 1fr; }
  .tier-heading p { grid-column: 1 / -1; }
  .sources-grid { grid-template-columns: 1fr; }
  .audio-dock { grid-template-columns: auto minmax(0, 1fr); }
  .dock-controls { display: none; }
  .detail-head { align-items: flex-start; }
  .detail-foot { flex-direction: column; align-items: stretch; }
  .enhancement-note { text-align: center; }
  .detail-stage img { width: 145vw; padding: 18px; }
}

@media (max-width: 430px) {
  .brand-mark { width: 28px; height: 28px; }
  .hero-actions .button { width: 100%; }
  .quick-facts { gap: 8px 14px; }
  .panel-copy h3 { font-size: clamp(2.25rem, 13vw, 3.4rem); }
  .panel-frame { min-height: 300px; padding: 10px; }
  .detail-button span { display: none; }
  .altar-map-caption { font-size: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .hero-actions, .play-button, .playlist-button, .detail-button, .audio-dock, .altar-map-wrap { display: none !important; }
  body { background: white; color: #17120d; }
  .hero { min-height: auto; display: block; }
  .hero-art { position: relative; height: 40vh; }
  .hero-copy { color: white; }
  .intro-section, .panel-card { display: block; page-break-inside: avoid; }
  .intro-listen { position: static; border: 1px solid #aaa; background: white; box-shadow: none; color: #17120d; }
  .panel-frame { max-width: 40%; float: left; margin: 0 24px 14px 0; background: white; box-shadow: none; }
  .panel-copy { min-height: 300px; }
  details.transcript p { color: #17120d; }
}
