/**
 * Legal pages — Layout A Cinematic Dark tokens (matches app/web).
 */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Libre+Franklin:wght@400;500;600&display=swap');

:root {
  --bg: #0a0a0c;
  --bg-outer: #050506;
  --surface: #121214;
  --gold: #e8a838;
  --text: #f5f5f4;
  --muted: #78716c;
  --border: rgba(232, 168, 56, 0.12);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Libre Franklin', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-outer);
}

.page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.site-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.site-header h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.site-header .subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.site-nav a {
  color: var(--gold);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  text-decoration: underline;
}

.site-nav a[aria-current='page'] {
  color: var(--text);
  text-decoration: none;
  pointer-events: none;
}

.doc-meta {
  margin: 0 0 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}

h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--gold);
}

h2:first-of-type {
  margin-top: 0;
}

p,
ul {
  margin: 0 0 1rem;
}

ul {
  padding-left: 1.35rem;
}

li {
  margin-bottom: 0.4rem;
}

li ul {
  margin-top: 0.4rem;
  margin-bottom: 0;
}

a {
  color: var(--gold);
}

strong {
  font-weight: 600;
}

.contact-block {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.site-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted);
}
