:root {
  --bg: #16120f;
  --bg-2: #1e1814;
  --card: #241c16;
  --line: rgba(232, 214, 196, 0.12);
  --text: #f3e6d8;
  --muted: rgba(243, 230, 216, 0.64);
  --accent: #c45a2a;
  --accent-2: #e07840;
  --warn: #d9a441;
  --radius: 16px;
  --max: 920px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(196, 90, 42, 0.28), transparent 55%),
    radial-gradient(700px 360px at 100% 0%, rgba(217, 164, 65, 0.1), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0 10px;
  gap: 16px;
}
.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
}
nav { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.92rem; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--text); }

.hero { padding: 48px 0 24px; }
.kicker {
  color: var(--warn);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 10px 0 16px;
}
.lede { font-size: 1.12rem; color: var(--muted); max-width: 40rem; }

.legal { padding: 32px 0 64px; }
.legal h1 { font-size: 2.1rem; }
.legal h2 { margin-top: 28px; }
.legal p, .legal li { color: var(--muted); }

footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 40px;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  header { align-items: flex-start; flex-direction: column; }
}
