*, *::before, *::after { box-sizing: border-box; }
:root {
  --primary-dark: #121212;
  --graphite: #1E1E1E;
  --moss-green: #4F5D3A;
  --rust-earth: #A45A32;
  --fog-white: #F2EFE8;
  --warm-white: #EDEAE3;
  --steel-gray: #6F7373;

  --bg: var(--primary-dark);
  --surface: var(--graphite);
  --text: var(--fog-white);
  --muted: rgba(237, 234, 227, 0.76);
  --quiet: var(--steel-gray);
  --line: rgba(242, 239, 232, 0.12);
  --page: min(100% - 32px, 920px);

  --font-headline: "Bahnschrift", "Aptos Narrow", "Segoe UI Variable", "Roboto Condensed", "Arial Narrow", "Segoe UI", system-ui, sans-serif;
  --font-body: "Segoe UI Variable", "Segoe UI", Roboto, system-ui, sans-serif;
  --font-tech: Consolas, "Cascadia Code", "Liberation Mono", monospace;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(79, 93, 58, 0.20), transparent 320px),
    radial-gradient(circle at 92% 20%, rgba(164, 90, 50, 0.16), transparent 360px),
    linear-gradient(180deg, #171812 0%, var(--bg) 520px);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(100% - 32px, 1120px);
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--warm-white);
  font-family: var(--font-headline);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.brand img { width: 28px; height: 28px; object-fit: contain; }
.nav { display: none; }
.legal-page { width: var(--page); margin: 0 auto; padding: 56px 0 84px; }
.kicker {
  margin: 0 0 18px;
  color: var(--rust-earth);
  font-family: var(--font-tech);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  color: var(--text);
  font-family: var(--font-headline);
  font-size: clamp(3rem, 13vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
}
h2 {
  margin: 40px 0 14px;
  color: var(--text);
  font-family: var(--font-headline);
  font-size: clamp(1.65rem, 8vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
p, li { color: var(--muted); font-size: 1rem; }
.lead {
  max-width: 38ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 4.4vw, 1.18rem);
  line-height: 1.72;
}
.legal-content {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(30, 30, 30, 0.9);
}
.legal-content section:first-child h2 { margin-top: 0; }
.legal-content a:hover, .footer-links a:hover, .nav a:hover { color: var(--rust-earth); }
.note-box {
  margin: 28px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(18, 18, 18, 0.48);
}
.note-box p { margin: 0; }
ul { padding-left: 1.25rem; }
.site-footer { border-top: 1px solid var(--line); }
.footer-inner {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  gap: 14px;
  color: var(--steel-gray);
  font-size: 0.92rem;
}
.footer-inner p { margin: 0; color: var(--steel-gray); }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
@media (min-width: 680px) {
  :root { --page: min(100% - 56px, 920px); }
  .footer-inner { grid-template-columns: 1fr auto; align-items: center; }
}
@media (min-width: 1024px) {
  .nav { display: flex; align-items: center; gap: 22px; color: var(--warm-white); font-family: var(--font-headline); font-size: 0.88rem; font-weight: 700; }
  .legal-page { padding: 86px 0 108px; }
  .legal-content { padding: 42px; }
}
