:root {
  color-scheme: light;
  --bg: #f6f3ee;
  --ink: #1c1916;
  --muted: #5c564e;
  --line: #d8d0c4;
  --accent: #9a3412;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font: 18px/1.55 Georgia, "Times New Roman", serif;
}

header, footer, main {
  width: min(680px, calc(100% - 40px));
  margin: 0 auto;
}

header, footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
}

header { border-bottom: 1px solid var(--line); }
footer { border-top: 1px solid var(--line); margin-top: 64px; }

nav, footer {
  flex-wrap: wrap;
}

a {
  color: var(--accent);
  text-underline-offset: 3px;
}

.brand {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

nav a, footer a {
  margin-left: 16px;
  font-size: 15px;
}

footer a:first-child { margin-left: 0; }

main { padding: 48px 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 20px;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 36px 0 10px;
}

.lead, .doc p, li {
  color: var(--ink);
}

.lead { font-size: 20px; }

ul { padding-left: 1.2em; }
li { margin: 8px 0; }

.note, .meta {
  color: var(--muted);
  font-size: 15px;
}

.note { margin-top: 36px; }
