:root {
  color-scheme: light;
  --blue: #0a3a94;
  --blue-deep: #082c70;
  --yellow: #ffdc45;
  --paper: #f7f5ed;
  --ink: #172339;
  --muted: #536078;
  font-family: "Avenir Next", Avenir, system-ui, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); }
a { color: inherit; text-underline-offset: 4px; }
a:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.shell { width: min(780px, calc(100% - 36px)); margin-inline: auto; }
.legal-header { background: var(--blue); color: #fff; }
.legal-nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; color: #fff; font-weight: 850; text-decoration: none; }
.brand img { width: 36px; height: 36px; padding: 5px; border-radius: 11px; background: var(--yellow); }
.back { min-height: 44px; display: inline-flex; align-items: center; color: #fff; font-weight: 750; }
main { padding: clamp(64px, 9vw, 105px) 0; }
.label { margin: 0 0 15px; color: var(--blue); font-weight: 800; }
h1 { margin: 0 0 50px; font-family: Futura, "Avenir Next", sans-serif; font-size: clamp(3.2rem, 8vw, 5.8rem); line-height: .95; letter-spacing: -.05em; }
h2 { margin: 46px 0 14px; font-size: 1.5rem; }
h3 { margin: 30px 0 10px; font-size: 1.15rem; }
p, li { max-width: 68ch; color: var(--muted); line-height: 1.68; }
ul { padding-left: 1.25rem; }
.address { font-style: normal; font-size: 1.08rem; line-height: 1.65; }
.address strong { color: var(--ink); }
.legal-footer { padding: 30px 0; background: var(--blue-deep); color: #fff; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-row a { color: rgba(255,255,255,.78); }
@media (max-width: 520px) {
  .legal-nav { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  h1 { font-size: 3.2rem; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
