:root {
  --bg: #f7f3ec;
  --surface: #fffdf8;
  --ink: #17201b;
  --muted: #66736d;
  --line: #d9d2c5;
  --teal: #0b766f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* { box-sizing: border-box; }
body { margin: 0; line-height: 1.6; }
a { color: var(--teal); }
.legal-shell { width: min(780px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 64px; }
.legal-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; }
.legal-header a { font-weight: 800; text-decoration: none; }
.legal-header > div { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.legal-header nav { display: flex; gap: 14px; font-size: 14px; }
.legal-language { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 700; }
.legal-language select { max-width: 130px; padding: 6px; border: 1px solid var(--line); border-radius: 6px; color: var(--ink); background: var(--surface); font: inherit; }
.legal-card { padding: clamp(22px, 5vw, 48px); border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.eyebrow { color: var(--teal); font-size: 12px; font-weight: 850; text-transform: uppercase; }
h1 { margin: 8px 0 12px; font-size: clamp(34px, 7vw, 56px); line-height: 1; }
h2 { margin-top: 32px; font-size: 21px; }
p, li { color: var(--muted); }
strong { color: var(--ink); }
.updated { margin-bottom: 28px; font-size: 13px; }
footer { margin-top: 18px; color: var(--muted); font-size: 12px; }
@media (max-width: 560px) { .legal-header { align-items: flex-start; } .legal-header > div { align-items: flex-end; flex-direction: column; gap: 6px; } .legal-header nav { gap: 10px; } }
