:root {
  --ink: #0b0d0f;
  --paper: #f3f0eb;
  --muted: #62676c;
  --accent: #c9ff3d;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-underline-offset: 4px; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(22px, 4vw, 64px);
  color: white;
  background: #090b0d;
}
.legal-header img { display: block; width: clamp(120px, 13vw, 190px); height: auto; }
.legal-header__back { font-size: 14px; font-weight: 600; text-decoration: none; }
.legal-main { width: min(820px, calc(100% - 44px)); margin: 0 auto; padding: clamp(72px, 10vw, 130px) 0; }
.eyebrow { margin: 0 0 16px; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { font-weight: 500; letter-spacing: -.04em; }
h1 { margin: 0 0 54px; font-size: clamp(48px, 8vw, 92px); line-height: .95; }
h2 { margin: 52px 0 15px; font-size: clamp(25px, 4vw, 38px); line-height: 1.1; }
p, li { font-size: 16px; line-height: 1.7; }
p { margin: 0 0 16px; }
.legal-note { padding: 20px 22px; border-left: 4px solid var(--accent); background: rgba(255,255,255,.55); }
.legal-meta { color: var(--muted); font-size: 13px; }
.legal-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; padding: 28px clamp(22px, 4vw, 64px); color: white; background: #090b0d; font-size: 13px; }
.legal-footer p { margin: 0; font-size: inherit; }
.legal-footer nav { display: flex; gap: 18px; }
@media (max-width: 600px) {
  .legal-header { padding: 18px 22px; }
  .legal-header img { width: 120px; }
  .legal-main { padding: 72px 0 90px; }
  h1 { margin-bottom: 42px; }
}
