:root {
  --bg: #fbf6ec;
  --text: #2b2520;
  --muted: #7a6d62;
  --accent: #c2410c;
  --rule: #e7dccb;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1d1a17;
    --text: #ece4d8;
    --muted: #a39585;
    --accent: #fb923c;
    --rule: #3a332c;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0 auto;
  max-width: 680px;
  padding: 32px 16px 48px;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.65 Georgia, "Times New Roman", serif;
}
a { color: var(--accent); }
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.brand { margin: 0; font-size: 20px; font-weight: bold; }
.brand a { color: var(--text); text-decoration: none; }
nav a { margin-left: 16px; text-decoration: none; }
nav a:first-child { margin-left: 0; }
h1 { font-weight: normal; font-size: 32px; line-height: 1.2; margin: 32px 0 8px; }
.lead { color: var(--muted); margin-top: 0; }
.facts { padding-left: 24px; }
.facts li { margin: 0 0 16px; padding-left: 4px; }
.facts li::marker { color: var(--accent); font-weight: bold; }
footer {
  margin-top: 48px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 14px;
}
