:root {
  color-scheme: dark;
  --navy: #08111a;
  --navy-soft: #0d1823;
  --cream: #f3efe5;
  --muted: #9ca4aa;
  --gold: #c69a62;
  --line: #26313b;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
a:hover, a:focus-visible { color: var(--gold); }
.legal-header, .legal-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.legal-header {
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.brand { font-weight: 600; letter-spacing: -.02em; }
.back, .legal-footer {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 110px;
}
.eyebrow {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1 {
  margin: 0 0 30px;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 500;
}
.intro { margin: 0 0 64px; color: var(--muted); font-size: 18px; }
section { padding: 34px 0; border-top: 1px solid var(--line); }
h2 { margin: 0 0 15px; font-size: 24px; font-weight: 500; letter-spacing: -.035em; }
h3 { margin: 25px 0 8px; font-size: 16px; font-weight: 500; }
p, li { color: var(--muted); }
p { margin: 0 0 15px; }
ul { margin: 10px 0 18px; padding-left: 22px; }
.contact-link { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; }
.legal-footer {
  align-items: flex-start;
  padding: 30px 0 48px;
  border-top: 1px solid var(--line);
}
.legal-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 22px; }
@media (max-width: 650px) {
  main { padding: 70px 0 80px; }
  .legal-header, .legal-footer { align-items: flex-start; flex-direction: column; }
  .legal-links { justify-content: flex-start; }
}