:root {
  --bg: #faf8f5;
  --ink: #1f1d1a;
  --muted: #6b665e;
  --accent: #6b4423;
  --rule: #e6e1d8;
  --max: 720px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-serif, Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 18px;
  line-height: 1.6;
}

header {
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem 1.5rem;
}

nav {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.brand {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
}

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

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.hero {
  padding: 2rem 0 3rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.5rem;
}

h1 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  font-weight: 600;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.lede {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0;
}

a { color: var(--accent); }
a:hover { text-decoration: none; }

.brand-list article {
  padding: 1.25rem 0;
  border-top: 1px solid var(--rule);
}

.brand-list article:last-child {
  border-bottom: 1px solid var(--rule);
}

.prose p { margin: 1rem 0; }
.prose h2 { margin-top: 2rem; }

footer {
  max-width: var(--max);
  margin: 4rem auto 2rem;
  padding: 1.5rem;
  border-top: 1px solid var(--rule);
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer a { color: var(--muted); }
