:root {
  --ink: #12100e;
  --surface: #1a1713;
  --cream: #f4ead7;
  --dim: #c7bba7;
  --faint: #908575;
  --gold: #e7b866;
  --green: #7bd0a8;
  --line: rgba(244,234,215,.14);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.7;
}
a { color: var(--green); }
header, main, footer { width: min(820px, calc(100% - 36px)); margin: 0 auto; }
header { padding: 56px 0 30px; border-bottom: 1px solid var(--line); }
main { padding: 34px 0 60px; }
footer { padding: 28px 0 50px; border-top: 1px solid var(--line); color: var(--faint); font-size: 13px; }
h1, h2 { line-height: 1.2; }
h1 { margin: 12px 0; font-size: clamp(36px, 7vw, 58px); }
h2 { margin: 36px 0 10px; color: var(--gold); font-size: 25px; }
p, li { color: var(--dim); }
.label {
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.updated { color: var(--faint); font-family: Arial, sans-serif; font-size: 13px; }
.notice {
  margin: 24px 0;
  border: 1px solid rgba(231,184,102,.3);
  border-radius: 12px;
  background: var(--surface);
  padding: 18px;
}
:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
