:root {
  --bg: #f8f6f3;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #ff6b35;
  --card: #ffffff;
  --border: #e8e4df;
  --max: 720px;
}

* {
  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.55;
}

a {
  color: var(--accent);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.brand {
  margin: 0;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand a {
  color: inherit;
  text-decoration: none;
}

nav a {
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
}

nav a[aria-current="page"] {
  color: var(--accent);
}

.content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.content h1 {
  margin-top: 0;
  font-size: 1.75rem;
}

.content.legal h2 {
  margin-top: 1.75rem;
  font-size: 1.15rem;
}

.updated,
.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}
