* { box-sizing: border-box; }

html { background: var(--ground); }

body {
  margin: 0;
  min-width: 320px;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-underline-offset: 3px; }

a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-control);
  background: var(--paper);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.legal-shell {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
}

.legal-header,
.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header {
  min-height: 82px;
  border-bottom: 2px solid var(--ink);
  font-size: 12px;
}

.wordmark,
.legal-footer a:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  text-decoration: none;
}

.wordmark { font-size: 31px; }
.wordmark span,
.legal-footer a:first-child span { color: var(--orange); }

main {
  padding: clamp(62px, 10vw, 104px) 0;
}

article {
  width: min(100%, 720px);
}

.updated {
  margin: 0 0 18px;
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 84px);
}

.intro {
  max-width: 42rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
}

section {
  padding-top: 42px;
  margin-top: 42px;
  border-top: 1px solid var(--rule);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(29px, 4vw, 38px);
}

p { margin: 14px 0 0; }

ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 22px;
}

strong { font-weight: 700; }

.legal-footer {
  min-height: 76px;
  border-top: 2px solid var(--ink);
  color: var(--muted);
  font-size: 10px;
}

.legal-footer a:first-child {
  color: var(--ink);
  font-size: 18px;
}

@media (max-width: 560px) {
  .legal-shell { width: min(calc(100% - 24px), 920px); }
  .legal-header { min-height: 70px; }
  main { padding-top: 52px; }
  section { padding-top: 34px; margin-top: 34px; }
}

@media print {
  body { background: white; }
  .legal-shell { width: 100%; }
  .legal-header a:last-child,
  .legal-footer { display: none; }
  main { padding: 28px 0; }
}
