:root {
  --bg: #fbf8f4;
  --text: #1f1b16;
  --muted: #6b645c;
  --accent: #c45c26;
  --border: #e8e2d9;
  --surface: #ffffff;
  --max: 40rem;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration: none;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.brand {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
  font-family: system-ui, -apple-system, sans-serif;
}

h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.5rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
}

p,
li {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  color: var(--text);
}

.lede,
.meta,
li,
p {
  color: var(--muted);
}

.lede {
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}

.meta {
  font-size: 0.9rem;
  margin: 0 0 2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  margin: 1rem 0;
}

.card h2:first-child {
  margin-top: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.5rem 0 0;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
}

.footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0;
}

li {
  margin: 0.35rem 0;
}
