:root {
  --bg: #f7f3ee;
  --fg: #1c1916;
  --muted: #5c554e;
  --accent: #cc5500;
  --rule: rgba(28, 25, 22, 0.12);
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #161311;
    --fg: #f4eee8;
    --muted: #b7aea4;
    --accent: #f26b1a;
    --rule: rgba(244, 238, 232, 0.14);
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  line-height: 1.55;
}

a {
  color: var(--accent);
}

.wrap {
  width: min(42rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3.5rem 0 4.5rem;
}

.kicker {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.15rem;
}

header.page-head {
  margin-bottom: 2.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}

header.page-head a {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

header.page-head a:hover {
  text-decoration: underline;
}

h2 {
  margin: 2rem 0 0.6rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

ul {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.35rem;
}

.updated {
  margin-top: 2.5rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.85rem;
}
