:root {
  --bg: #faf8f3;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #8b3a1f;
  --rule: #e5e1d8;
  --max: 640px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 32px 64px;
}

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

h1 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: -0.012em;
  margin: 0 0 28px;
  color: var(--ink);
}

h2 {
  font-family: ui-serif, Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 64px 0 20px;
  color: var(--ink);
}

p { margin: 0 0 16px; }

p.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 8px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
li:last-child { border-bottom: 1px solid var(--rule); }

li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 16px;
}

li span {
  color: var(--muted);
  font-size: 15px;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity 120ms ease;
}
a:hover { opacity: 0.65; }

footer {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 32px 40px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 600px) {
  main { padding: 64px 24px 48px; }
  h1 { font-size: 34px; }
  h2 { margin-top: 48px; font-size: 20px; }
  footer {
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

::selection { background: var(--accent); color: var(--bg); }
