:root {
  --ink: #0f1729;
  --body: #3a4256;
  --muted: #7b8194;
  --paper: #ffffff;
  --soft: #f7f8fb;
  --line: #e8ebf2;
  --accent: #1e2a4a;
  --gold: #c9a14a;
  --gold-soft: #f4ecd8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--body);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { color: var(--ink); font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
.serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; font-style: italic; color: var(--accent); }

.container { max-width: 820px; margin: 0 auto; padding: 0 32px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 100;
  padding: 22px 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(232,235,242,0.7);
}
.nav { display: flex; align-items: center; justify-content: space-between; max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--accent);
  display: grid; place-items: center;
  color: var(--gold); font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: 22px;
}
.brand-text { font-weight: 800; color: var(--ink); font-size: 18px; letter-spacing: -0.01em; }
.brand-text span { color: var(--gold); }
.nav-back { color: var(--body); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-back:hover { color: var(--accent); }

/* Page hero */
.legal-hero {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #fafbfd 0%, #ffffff 100%);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.legal-hero .eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.legal-hero h1 {
  font-size: clamp(36px, 4.4vw, 56px);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.legal-hero .updated {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* Content */
.legal-content { padding: 72px 0 120px; }
.legal-content h2 {
  font-size: 24px;
  margin: 56px 0 18px;
  padding-top: 8px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 17px;
  margin: 28px 0 10px;
  color: var(--ink);
  font-weight: 600;
}
.legal-content p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--body);
}
.legal-content ul {
  margin: 0 0 18px 22px;
  padding-left: 6px;
}
.legal-content li {
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--body);
}
.legal-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s;
}
.legal-content a:hover { color: var(--gold); }
.legal-content strong { color: var(--ink); font-weight: 600; }

.callout {
  background: var(--soft);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 15px;
}

/* Footer */
footer {
  background: #0a1024;
  color: rgba(255,255,255,0.55);
  padding: 56px 0 40px;
  font-size: 14px;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-inner .brand-text { color: #fff; }
footer .brand-mark { background: rgba(255,255,255,0.08); }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 14px; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
