/* ============================================================
   CHEW Z — Short Fiction
   One dark screen: story list on the left, a "stage" in the
   middle that shows the theme text, the author's notes, or —
   while you hover a story — that story's synopsis.
   ============================================================ */

:root {
  /* Colours ------------------------------------------------ */
  --night:      #0b0907;                    /* page base */
  --parchment:  #e4dcc9;                    /* main text */
  --faded:      #9c9280;                    /* secondary text */
  --ember:      #d8a65f;                    /* candlelight accent */
  --ember-soft: rgba(216, 166, 95, 0.55);
  --hairline:   rgba(216, 208, 192, 0.13);  /* dividers */

  /* Type --------------------------------------------------- */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Century Gothic", sans-serif;
}

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

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

body {
  margin: 0;
  min-height: 100svh;
  background: var(--night);
  color: var(--parchment);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============================================================
   The atmosphere — three fixed layers behind everything:
   1. an optional backdrop image (drop one in assets/backdrop.jpg)
   2. moonlight + candlelight gradients that darken it
   3. a faint film grain
   ============================================================ */

.atmosphere,
.atmosphere::before,
.atmosphere::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.atmosphere {
  z-index: -1;
  /* No scene here on purpose: script.js sets the backdrop for this
     visit. Painting one in CSS would flash before the swap. */
  background: var(--night);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Gradient light: a cold glow upper-centre, a warm candle
   glow low-right, and a heavy vignette all round. */
.atmosphere::before {
  content: "";
  background:
    radial-gradient(38rem 26rem at 62% 18%,
      rgba(140, 150, 140, 0.14), transparent 70%),
    radial-gradient(26rem 20rem at 82% 72%,
      rgba(212, 150, 70, 0.16), transparent 70%),
    radial-gradient(120% 90% at 50% 45%,
      rgba(11, 9, 7, 0.44), rgba(11, 9, 7, 0.85) 82%);
}

/* Film grain */
.atmosphere::after {
  content: "";
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* The slow breath of the candle */
@keyframes candle {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.82; }
}
.atmosphere::before { animation: candle 7s ease-in-out infinite; }

/* ============================================================
   Page frame
   ============================================================ */

.frame {
  height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

/* Text for screen readers only ----------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Small spaced-caps labels used everywhere ----------------- */
.caps {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ============================================================
   Header
   ============================================================ */

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  line-height: 1.3;
}

.brand .name {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.625rem;
  letter-spacing: 0.32em;
  color: var(--ember);
  margin: 0;
}

.brand .tag {
  margin: 0.2rem 0 0;
  color: var(--faded);
}

.masthead nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.masthead nav a {
  color: var(--faded);
  text-decoration: none;
  padding: 0.4rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.masthead nav a:hover { color: var(--parchment); }

.masthead nav a[aria-current="true"] {
  color: var(--ember);
  border-bottom-color: var(--ember-soft);
}

/* Ambient-sound button */
.sound {
  background: none;
  border: 0;
  padding: 0.4rem;
  color: var(--faded);
  cursor: pointer;
  transition: color 0.25s ease;
}
.sound:hover { color: var(--parchment); }
.sound[aria-pressed="true"] { color: var(--ember); }
.sound svg { display: block; width: 1.25rem; height: 1.25rem; }

/* Speaker dims when muted (the cross itself is drawn by script) */
.sound.muted { color: var(--faded); }

/* ============================================================
   Main: sidebar + stage
   ============================================================ */

.hall {
  display: grid;
  grid-template-columns: minmax(19rem, 24rem) 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
  min-height: 0; /* lets the list scroll instead of the page */
}

/* --- Story list ------------------------------------------- */

.shelf {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0.5rem 0 0.75rem;
}

.shelf ol {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--hairline) transparent;
  flex: 1 1 auto;
  min-height: 9rem;
}

.story { border-bottom: 1px solid var(--hairline); }
.story:first-child { border-top: 1px solid var(--hairline); }

.story-row {
  display: grid;
  grid-template-columns: 2.25rem 1fr auto auto;
  align-items: center;
  gap: 0.875rem;
  padding: 1.05rem 0.25rem;
}

.story .num { color: var(--ember); letter-spacing: 0.2em; }

.story .title {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  color: var(--parchment);
  transition: color 0.25s ease;
}

.story:hover .title,
.story:focus-within .title { color: var(--ember); }

/* The two icons: PDF link and synopsis eye */
.icon-btn {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  color: var(--faded);
  background: none;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.25s ease;
}
.icon-btn:hover { color: var(--ember); }
.icon-btn svg { width: 1.05rem; height: 1.05rem; display: block; }

/* Each story's synopsis lives hidden inside its row; the
   script shows it on the stage (desktop) or inline (touch). */
.story .synopsis { display: none; }

.story.open .synopsis {
  display: block;
  margin: 0 0.25rem;
  padding: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--faded);
  max-width: 34rem;
}

.more {
  flex: none;
  padding: 1rem 0.25rem;
  color: var(--faded);
  font-style: normal;
}

/* --- The stage -------------------------------------------- */

.stage {
  position: relative;
  display: grid;
  min-height: 0;
}

/* The hovered book: synopsis on the left, cover on the right */
.feature {
  grid-area: 1 / 1;
  place-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 4.5rem);
  max-width: 94%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.8rem);
  transition: opacity 0.45s ease, transform 0.45s ease,
              visibility 0s linear 0.45s;
  z-index: 1;
}

.feature.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s;
}

.feature-text { flex: 1 1 19rem; max-width: 24rem; }

.feature-meta { color: var(--ember); margin: 0 0 1.25rem; }

.feature-syn {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.75;
  color: var(--parchment);
  text-shadow: 0 1px 22px rgba(5, 4, 3, 0.85);
  margin: 0 0 1.75rem;
}

/* The cover: no frame — its edges feather away into the room */
.easel {
  max-height: 62vh;
  max-width: min(24rem, 36vw);
  width: auto;
  -webkit-mask-image:
    linear-gradient(to right, transparent, #000 9%, #000 91%, transparent),
    linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent, #000 9%, #000 91%, transparent),
    linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
  mask-composite: intersect;
}

.panel {
  position: relative;
  grid-area: 1 / 1;           /* all panels stack in one cell */
  align-self: center;
  justify-self: center;
  max-width: 37rem;
  padding: 1.25rem 1rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease,
              visibility 0s linear 0.2s;
}

.panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.45s ease 0.1s, transform 0.45s ease 0.1s,
              visibility 0s;
}

.panel .lede {
  font-family: var(--serif);
  font-weight: 600;
  text-shadow: 0 1px 22px rgba(5, 4, 3, 0.85);
  font-size: clamp(1.375rem, 2.3vw, 1.625rem);
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin: 0;
}

.panel .rule {
  width: 3.5rem;
  height: 1px;
  background: var(--ember-soft);
  border: 0;
  margin: 2.25rem auto;
}

.panel .eyebrow { color: var(--ember); margin: 0 0 1.25rem; }

.panel .note {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  text-shadow: 0 1px 22px rgba(5, 4, 3, 0.85);
  font-size: clamp(1.3125rem, 2.1vw, 1.5rem);
  line-height: 1.75;
  margin: 0;
}

/* Synopsis panel specifics */
.panel .syn-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

.panel .syn-text {
  font-family: var(--serif);
  font-size: clamp(1.3125rem, 2.1vw, 1.5rem);
  line-height: 1.75;
  color: var(--parchment);
  margin: 0 0 2rem;
}

.panel .syn-link {
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid var(--ember-soft);
  padding-bottom: 0.2rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.panel .syn-link:hover {
  color: var(--parchment);
  border-bottom-color: var(--parchment);
}

/* ============================================================
   Footer
   ============================================================ */

.floor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0 1.75rem;
  border-top: 1px solid var(--hairline);
  color: var(--faded);
}

.floor nav { display: flex; gap: 2rem; }

.floor a {
  color: var(--faded);
  text-decoration: none;
  transition: color 0.25s ease;
}
.floor a:hover { color: var(--ember); }

/* ============================================================
   Accessibility + small screens
   ============================================================ */

:focus-visible {
  outline: 1px solid var(--ember);
  outline-offset: 4px;
}

@media (max-width: 56rem) {
  .frame { height: auto; min-height: auto; }
  .shelf { overflow: visible; display: block; }
  .shelf ol { overflow: visible; }

  .masthead { flex-wrap: wrap; }

  .hall { grid-template-columns: 1fr; gap: 0; }

  /* Stage first, list second — mirrors reading order on a phone */
  .stage { order: -1; min-height: 60svh; }
  .shelf { overflow: visible; }

  .floor { flex-wrap: wrap; justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .atmosphere::before { animation: none; }
  .panel, .panel.is-active { transition: none; transform: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   Cover panel — the book and its synopsis, under the list
   ============================================================ */

.cover-panel {
  flex: 0 1 auto;
  min-height: 23rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--hairline) transparent;
  margin-top: 0.75rem;
  padding: 0 0.25rem 0.75rem;
  max-width: 20rem;
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.cover-panel.show { opacity: 1; transform: none; }

.cover-panel img {
  display: block;
  width: min(7rem, 50%);
  border: 1px solid rgba(216, 208, 192, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  margin: 0.25rem 0 1.125rem;
}

.cover-panel .cp-meta { color: var(--ember); margin: 0 0 0.875rem; }

.cover-panel .cp-text {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--parchment);
  margin: 0 0 1rem;
}

.cp-link {
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid var(--ember-soft);
  padding-bottom: 0.2rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.cp-link:hover { color: var(--parchment); border-bottom-color: var(--parchment); }

/* The synopsis now lives beside the cover in the stage, so the
   sidebar panel retires everywhere. Phones keep the inline
   tap-to-expand synopsis and hide the feature. */
.cover-panel { display: none; }
@media (max-width: 56rem) {
  .feature { display: none; }
}

/* On phones the synopsis expands inline instead; give the
   little cover in it the same treatment. */
.story.open .synopsis img {
  display: block;
  width: 9rem;
  border: 0;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.62);
  margin: 0.25rem 0 1.25rem;
  /* feather the edges into the scene, as on desktop */
  -webkit-mask-image:
    linear-gradient(to right, transparent, #000 8%, #000 92%, transparent),
    linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent, #000 8%, #000 92%, transparent),
    linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  mask-composite: intersect;
}
@media (max-width: 56rem) {
  .cover-panel { display: none; }
}

/* Spacing for multi-paragraph notes and the signature line */
.panel .note + .note { margin-top: 0.9rem; }
.panel .signature { color: var(--ember); margin: 1.5rem 0 0; }


/* ============================================================
   Roya Publication stamp + footer subscribe block
   ============================================================ */

.roya {
  display: block;
  height: clamp(5.25rem, 9vh, 7rem);
  width: auto;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.62),
              0 0 26px rgba(216, 166, 95, 0.14);
  opacity: 1;
}

.subscribe-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  color: var(--faded);
}

.subscribe-block .soon {
  font-size: 0.5625rem;
  color: var(--ember);
  opacity: 0.85;
}

/* ============================================================
   Trilogies — header rows in the list, triple-cover feature
   ============================================================ */

.trilogy { border-bottom: 1px solid var(--hairline); }

.trilogy .story-row {
  grid-template-columns: auto 1fr auto;
  padding: 1.2rem 0.25rem 1rem;
}

.trilogy .t-range { color: var(--ember); letter-spacing: 0.2em; }

.trilogy .t-title {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.3125rem;
  letter-spacing: 0.01em;
  color: var(--parchment);
  transition: color 0.25s ease;
}

.trilogy:hover .t-title,
.trilogy:focus-within .t-title { color: var(--ember); }

.trilogy .t-tag { color: var(--faded); }

/* books inside a trilogy tuck in slightly under their header */
.story.grouped .story-row { padding-left: 1.4rem; }

/* the trilogy stage: covers in a row, synopsis beneath */
.tri-feature {
  grid-area: 1 / 1;
  place-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: min(46rem, 92%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.8rem);
  transition: opacity 0.45s ease, transform 0.45s ease,
              visibility 0s linear 0.45s;
  z-index: 1;
}

.tri-feature.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s;
}

.tri-meta { color: var(--ember); margin: 0 0 1.5rem; }

.tri-covers {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: 1.75rem;
}

.tri-covers img {
  height: clamp(11rem, 26vh, 15rem);
  width: auto;
  -webkit-mask-image:
    linear-gradient(to right, transparent, #000 9%, #000 91%, transparent),
    linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent, #000 9%, #000 91%, transparent),
    linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
  mask-composite: intersect;
}

.tri-syn {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  color: var(--parchment);
  text-shadow: 0 1px 22px rgba(5, 4, 3, 0.85);
  margin: 0;
}

/* phones: trilogy expands inline like a book */
.trilogy .synopsis { display: none; }
.trilogy.open .synopsis {
  display: block;
  margin: 0 0.25rem;
  padding: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--parchment);
}
.trilogy.open .synopsis .tri-mini {
  display: flex;
  gap: 0.625rem;
  margin: 0.25rem 0 1rem;
}
.trilogy.open .synopsis .tri-mini img {
  width: 4.75rem;
  border: 1px solid var(--hairline);
}
@media (max-width: 56rem) {
  .tri-feature { display: none; }
}

/* ============================================================
   Trilogies: sidebar headings and the three-cover feature
   ============================================================ */

.trilogy {
  border-bottom: 1px solid var(--hairline);
  padding: 1.4rem 0.25rem 1rem;
  cursor: default;
}

.trilogy .t-label {
  margin: 0 0 0.35rem;
  color: var(--ember);
  font-size: 0.5625rem;
}

.trilogy .t-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3125rem;
  letter-spacing: 0.02em;
  color: var(--parchment);
  transition: color 0.25s ease;
}

.trilogy:hover .t-title,
.trilogy:focus-within .t-title { color: var(--ember); }

/* member books sit indented beneath their heading */
.story.in-trilogy .story-row { padding-left: 1.25rem; }

/* the trilogy's three covers, standing together */
.easel-set { display: none; }

.feature.trio { flex-wrap: wrap; justify-content: center; }
.feature.trio #easelImg { display: none; }
.feature.trio .easel-set {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.feature.trio .feature-text { flex: 1 1 21rem; max-width: 29rem; }
.feature.trio .feature-syn {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.easel-set img {
  width: clamp(6.25rem, 8.25vw, 8.75rem);
  border: 0;
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.7);
  -webkit-mask-image:
    linear-gradient(to right, transparent, #000 9%, #000 91%, transparent),
    linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent, #000 9%, #000 91%, transparent),
    linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
  mask-composite: intersect;
}

/* phones: tapping the heading unfolds covers + synopsis inline */
.trilogy .synopsis { display: none; }
.trilogy.open .synopsis {
  display: block;
  padding: 1rem 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--faded);
}
.trilogy.open .synopsis .minis {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.trilogy.open .synopsis .minis img {
  width: 5.5rem;
  border: 0;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
  -webkit-mask-image:
    linear-gradient(to right, transparent, #000 8%, #000 92%, transparent),
    linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent, #000 8%, #000 92%, transparent),
    linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  mask-composite: intersect;
}

/* Music volume, beside the speaker */
.vol {
  width: 5.5rem;
  accent-color: var(--ember);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s ease;
}
.vol:hover, .vol:focus-visible { opacity: 1; }
@media (max-width: 56rem) { .vol { width: 4.5rem; } }

/* Mid-width windows: not enough room for text and cover side by
   side — the feature runs text-only, covers return on full desktop */
@media (max-width: 72rem) {
  .feature #easelImg,
  .feature .easel-set { display: none !important; }
}

/* Long trilogy text + three covers need real width; below it,
   the trilogy feature runs text-only */
@media (max-width: 82rem) {
  .feature.trio .easel-set { display: none; }
}

/* Space between stage paragraphs; type eases down on short windows */
.panel .lede + .lede { margin-top: 1em; }
@media (max-height: 51rem) {
  .panel .lede { font-size: clamp(1.125rem, 2.3vh, 1.4375rem); }
  .panel .note { font-size: clamp(1.0625rem, 2.15vh, 1.3125rem); }
  .panel .rule { margin: 1.5rem auto; }
}

/* ============================================================
   A feathered pool of shade behind the stage text — dims and
   softly blurs the artwork right where the words sit, and
   fades to nothing at its edges.
   ============================================================ */

.panel::before,
.feature-text::before {
  content: "";
  position: absolute;
  inset: -3rem -4.5rem;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(closest-side,
      rgba(7, 5, 4, 0.66) 30%, rgba(7, 5, 4, 0) 100%);
}

.feature-text { position: relative; }

/* Phone: the expanded synopsis sits over the artwork, so give it
   the same feathered pool of shade the stage text gets. */
@media (max-width: 56rem) {
  .story.open,
  .trilogy.open { position: relative; }

  .story.open::before,
  .trilogy.open::before {
    content: "";
    position: absolute;
    inset: -1rem -2rem;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(closest-side,
        rgba(7, 5, 4, 0.82) 42%, rgba(7, 5, 4, 0) 100%);
  }

  .story.open .synopsis,
  .trilogy.open .synopsis { color: var(--parchment); }
}
