:root {
  color-scheme: light dark;
  --ink: #f5f1ec;
  --surface: #fffcf8;
  --line: #dbd1c6;
  --text: #241c1a;
  --muted: #6e5f58;
  --brass: #8a5f22;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #15100f;
    --surface: #1f1918;
    --line: #3b302c;
    --text: #f4ede7;
    --muted: #a08d84;
    --brass: #c99a5b;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 2.5rem 1.25rem 5rem;
  background: var(--ink);
  color: var(--text);
  font: 400 1.0625rem/1.65 ui-serif, Georgia, "Times New Roman", serif;
}
main { max-width: 38rem; margin: 0 auto; }
h1 {
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.35rem;
}
h2 {
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: ui-sans-serif, system-ui, sans-serif;
  color: var(--muted);
  margin: 2.5rem 0 0.75rem;
}
p, li { margin: 0 0 1rem; }
ul { padding-left: 1.15rem; }
a { color: var(--brass); }
.lede { color: var(--muted); margin-bottom: 2rem; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.25rem 1.25rem 0.25rem;
}
footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9375rem;
}
