:root {
  color-scheme: light;
  --ink: #17171c;
  --muted: #5e5b66;
  --paper: #f7f5f2;
  --surface: #ffffff;
  --wine: #6e1832;
  --wine-deep: #3b0d1d;
  --gold: #b78b3e;
  --line: #ded9d4;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}
a { color: var(--wine); text-underline-offset: .2em; }
a:hover { color: var(--wine-deep); }
.topline { height: 6px; background: linear-gradient(90deg, var(--wine-deep), var(--wine), var(--gold)); }
header { border-bottom: 1px solid var(--line); background: rgba(247,245,242,.96); }
.nav, main, footer .inner { width: min(940px, calc(100% - 40px)); margin: 0 auto; }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { color: var(--ink); font: 700 1.05rem/1.2 Georgia, serif; letter-spacing: .02em; text-decoration: none; }
nav { display: flex; flex-wrap: wrap; gap: 18px; }
nav a { color: var(--muted); font-size: .9rem; font-weight: 700; text-decoration: none; }
main { padding: clamp(54px, 9vw, 96px) 0; }
.eyebrow { color: var(--wine); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; line-height: 1.14; }
h1 { font-size: clamp(2.35rem, 7vw, 4.8rem); letter-spacing: -.035em; margin: 14px 0 24px; }
h2 { font-size: clamp(1.65rem, 4vw, 2.4rem); margin: 0 0 16px; }
.lede { color: #36333b; font-size: clamp(1.08rem, 2vw, 1.28rem); max-width: 780px; }
.source-card { margin: 38px 0; padding: clamp(28px, 5vw, 46px); background: var(--wine-deep); color: white; box-shadow: 12px 12px 0 var(--gold); }
.source-card p { color: #e8dde1; }
.button { display: inline-block; padding: 13px 19px; border: 1px solid white; color: white; font-weight: 780; text-decoration: none; }
.button:hover { background: white; color: var(--wine-deep); }
.content { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr); gap: 42px; margin-top: 62px; }
.content section { border-top: 1px solid var(--line); padding-top: 28px; }
.content p { margin: 0 0 18px; }
.note { border-left: 4px solid var(--gold); padding-left: 18px; color: var(--muted); }
.related { background: var(--surface); border: 1px solid var(--line); padding: 25px; align-self: start; }
.related ul { margin: 0; padding-left: 20px; }
.related li { margin: 10px 0; }
.status { color: var(--muted); font-size: .92rem; }
footer { background: #18171b; color: #d5d1d5; padding: 38px 0; }
footer .inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
footer p { margin: 0; }
footer a { color: white; }
@media (max-width: 700px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 19px 0; }
  .content { grid-template-columns: 1fr; }
  .source-card { margin-right: 11px; }
}
