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

:root {
  --bg: #0d0b08;
  --surface: #1a1611;
  --surface-border: #2d2820;
  --text-primary: #f5ead6;
  --text-secondary: #e0c89a;
  --text-muted: #a89e94;
  --accent: #c9a84c;
  --ink-700: #2a241e;
}

html {
  background: var(--bg);
  color: var(--text-primary);
}

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.site-header {
  border-bottom: 1px solid var(--surface-border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-header a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
}

.site-header a:hover {
  color: var(--accent);
}

.site-header .brand {
  font-family: 'Crimson Text', Georgia, serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.site-header nav {
  display: flex;
  gap: 1.25rem;
}

.legal-doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.legal-doc h1 {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.legal-doc .meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-doc h2 {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--text-secondary);
}

.legal-doc h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--text-primary);
}

.legal-doc p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-doc ul {
  margin: 0 0 1rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-doc li {
  margin-bottom: 0.4rem;
}

.legal-doc a {
  color: var(--accent);
}

.legal-doc strong {
  color: var(--text-secondary);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--surface-border);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-700);
}

.site-footer nav {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}
