
:root {
  --bg: #0c0d0f;
  --panel: #131519;
  --text: #ece9e1;
  --muted: #aaa69c;
  --line: #343840;
  --accent: #d7ff69;
  --max: 780px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
}
a { color: inherit; text-decoration-color: var(--accent); text-underline-offset: .18em; }
a:hover, a:focus { color: var(--accent); }
.site-shell { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
header { padding: 2rem 0 1rem; border-bottom: 1px solid var(--line); }
.brand { display: inline-block; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-decoration: none; }
main { padding: 3rem 0 5rem; }
h1 { font-size: clamp(2.4rem, 8vw, 5.4rem); line-height: .96; letter-spacing: -.045em; margin: 0 0 2rem; }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin: 3rem 0 1rem; }
.lead { font-size: clamp(1.1rem, 2.2vw, 1.35rem); color: #f4f1e9; }
.intro { margin: 0 0 3rem; padding: 1.2rem 0 1.4rem 1.2rem; border-left: 2px solid var(--accent); color: var(--muted); }
.myth { margin: 2.2rem 0; font-size: 1.15rem; }
.parts { list-style: none; padding: 0; margin: 2rem 0 4rem; border-top: 1px solid var(--line); }
.parts li { border-bottom: 1px solid var(--line); }
.parts a { display: grid; grid-template-columns: 3rem 1fr; gap: .75rem; padding: 1rem 0; text-decoration: none; }
.parts .num { color: var(--muted); }
.monologue { white-space: pre-wrap; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.05rem, 2.4vw, 1.22rem); line-height: 1.7; }
.video-cue, .interlude { font-family: Inter, ui-sans-serif, sans-serif; color: var(--muted); font-size: .76rem; letter-spacing: .11em; text-transform: uppercase; margin: 2.4rem 0 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.interlude { color: var(--accent); }
.section-break { margin: 2.5rem 0; text-align: center; color: var(--muted); letter-spacing: .5em; }
.film_name { margin: 2.5rem 0; text-align: center; color: var(--muted); }
.page-nav { margin-top: 5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; gap: .8rem; align-items: center; font-size: .92rem; }
.page-nav .next { text-align: right; }
.to-top { text-align: center; margin-top: 1.2rem; font-size: .82rem; color: var(--muted); }
.film-placeholder { margin-top: 2rem; padding: 1.4rem; border: 1px solid var(--line); background: var(--panel); color: var(--muted); }
footer { padding: 1.5rem 0 2.5rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
@media (max-width: 560px) {
  main { padding-top: 2rem; }
  .page-nav { grid-template-columns: 1fr; }
  .page-nav .next, .page-nav .home { text-align: left; }
}
