:root {
  --bg: #10110f;
  --ink: #ece7d8;
  --muted: #9a9384;
  --line: #2a281f;
  --paper: #18170f;
  --accent: #d8a24a;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Songti SC", "Source Han Serif SC", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--ink); }
a { color: inherit; text-decoration: none; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; color: var(--accent); }

.top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.4rem 6vw 1rem;
  border-bottom: 1px solid var(--line);
}
.mark { font-size: 1.4rem; letter-spacing: .08em; }
.top nav { display: flex; gap: 1.4rem; font-size: .95rem; color: var(--muted); }
.top nav a.on, .top nav a:hover { color: var(--ink); }

.shell { width: min(1100px, 88vw); margin: 2.4rem auto 4rem; }
.hero { margin-bottom: 2.2rem; }
.kicker { color: var(--accent); letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; margin: 0 0 .6rem; }
.hero h1, .watch h1, .prose h1 { font-weight: 500; font-size: clamp(1.8rem, 4vw, 3rem); margin: 0; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.4rem 1.1rem;
}
.card h3 { margin: .7rem 0 .2rem; font-weight: 500; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: .88rem; }
.cover, .stage {
  background:
    linear-gradient(160deg, hsla(var(--h), 42%, 42%, .95), #1a1913 78%),
    repeating-linear-gradient(-18deg, transparent, transparent 12px, rgba(0,0,0,.12) 12px, rgba(0,0,0,.12) 13px);
  border-radius: 2px;
}
.cover { position: relative; aspect-ratio: 16/10; }
.dur {
  position: absolute;
  right: .5rem;
  bottom: .45rem;
  background: rgba(0,0,0,.62);
  color: #fff;
  font-size: .75rem;
  padding: .1rem .35rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.stage { aspect-ratio: 16/8; margin-bottom: 1.2rem; }
.meta { color: var(--muted); }
.sum { max-width: 42rem; line-height: 1.7; }
.related { margin-top: 2.8rem; }
.related h2 { font-weight: 500; font-size: 1.1rem; margin: 0 0 1rem; color: var(--muted); }

.prose { max-width: 38rem; line-height: 1.75; }
.prose p { color: #d4cfc0; }
.prose a { border-bottom: 1px solid var(--accent); }

.foot {
  border-top: 1px solid var(--line);
  padding: 1.2rem 6vw 2rem;
  color: var(--muted);
  font-size: .88rem;
}
