:root {
  --bg: #fdf8f3;
  --text: #2a2118;
  --muted: #6b5c4d;
  --accent: #b84a1f;
  --accent-hover: #963d19;
  --card: #ffffff;
  --border: #e8ddd0;
  --section: #f5ebe0;
  --max-width: 960px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.logo { font-weight: 700; font-size: 1.1rem; color: var(--text); text-decoration: none; }
.site-header nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.site-header nav a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.site-header nav a:hover { color: var(--text); }
main { max-width: var(--max-width, 960px); margin: 0 auto; padding: 0 1.5rem 4rem; }
.hero { padding: 3.5rem 0 2.5rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 22ch;
}
.lead { font-size: 1.1rem; color: var(--muted); max-width: 52ch; margin: 0 0 1.5rem; }
.section { padding: 2.5rem 0; }
.section-muted {
  background: var(--section);
  margin: 0 -1.5rem;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
}
.section h2 { margin: 0 0 0.75rem; font-size: 1.5rem; }
.section p { margin: 0 0 1rem; color: var(--muted); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}
.card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.card p { margin: 0 0 1rem; color: var(--muted); font-size: 0.95rem; }
.card a { font-weight: 600; font-size: 0.95rem; }
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.site-footer {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}
.disclosure { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }
.content-page h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin: 2.5rem 0 0.75rem; }
.content-page .meta { color: var(--muted); margin-bottom: 2rem; }
.content-page h2 { margin: 2rem 0 0.75rem; font-size: 1.25rem; }
.content-page ul { color: var(--muted); padding-left: 1.25rem; }
.content-page li { margin-bottom: 0.5rem; }
@media (max-width: 600px) {
  .site-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
}
