:root {
  --bg: #fff;
  --fg: #1d1d1d;
  --muted: #666;
  --accent: #8b3a62;
  --max-width: 40rem;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}
.site-header { background: var(--accent); padding: 1rem 1.5rem; }
.site-name { color: #fff; text-decoration: none; font-weight: 600; font-size: 1.25rem; }
.site-main { max-width: var(--max-width); margin: 2rem auto; padding: 0 1.5rem; }
.site-footer { text-align: center; color: var(--muted); font-size: 0.875rem; padding: 2rem 1rem; }
a { color: var(--accent); }
