:root {
  --paper: #f3efe6;
  --ink: #121212;
  --muted: #625f57;
  --line: rgba(18, 18, 18, .2);
  --blue: #315fdb;
  --warning: #fff0cb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
a { color: inherit; }
a:hover, a:focus-visible { color: var(--blue); }
.shell { width: min(960px, calc(100% - 48px)); margin-inline: auto; }
.site-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 239, 230, .96);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.wordmark span {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: white;
}
.wordmark img { width: 100%; height: 100%; object-fit: cover; }
.header-inner nav { display: flex; align-items: center; gap: 24px; }
.header-inner nav a { font-size: 14px; font-weight: 700; text-decoration: none; }
.legal-hero { padding: clamp(72px, 10vw, 130px) 0 56px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(52px, 9vw, 104px);
  line-height: .92;
  letter-spacing: -.065em;
}
.updated { margin: 24px 0 0; color: var(--muted); font-size: 14px; }
.draft-notice {
  margin: 0 0 48px;
  padding: 18px 20px;
  border: 1px solid #bc7800;
  background: var(--warning);
  font-weight: 700;
}
.legal-content {
  padding: 0 0 clamp(90px, 12vw, 150px);
}
.language-block {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}
.language-block:first-of-type { border-top: 0; }
.language-label {
  margin: 0 0 34px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h2 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -.04em;
}
h3 {
  margin: 42px 0 10px;
  font-size: 20px;
  line-height: 1.25;
}
p, ul { max-width: 760px; }
address { font-style: normal; }
.legal-footer {
  border-top: 1px solid var(--line);
}
.legal-footer .shell {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.legal-footer nav { display: flex; gap: 20px; }
.legal-footer a { text-decoration: none; }
.error-page {
  min-height: calc(100vh - 179px);
  display: grid;
  align-content: center;
  padding-block: 80px;
}
.error-page p { max-width: 620px; font-size: 20px; }
.button {
  width: fit-content;
  display: inline-flex;
  margin-top: 18px;
  padding: 14px 18px;
  color: white;
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.button:hover, .button:focus-visible { color: white; background: var(--blue); }

@media (max-width: 640px) {
  .shell { width: min(100% - 32px, 560px); }
  .header-inner nav a:not(:last-child) { display: none; }
  .legal-footer .shell {
    min-height: 125px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}
