:root {
  color-scheme: light;
  --ink: #1d2430;
  --muted: #687385;
  --paper: #f7f5ef;
  --line: #dedbd2;
  --accent: #b14a35;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.7 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.policy {
  width: min(100% - 40px, 720px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2 { line-height: 1.2; }
h1 { margin: 0; font-size: clamp(2.4rem, 8vw, 4.5rem); letter-spacing: -.05em; }
h2 { margin: 42px 0 10px; font-size: 1.25rem; }
p { margin: 0 0 16px; }
.updated { color: var(--muted); margin: 12px 0 48px; }
a { color: var(--accent); }

@media (max-width: 520px) {
  .policy { padding-top: 48px; }
}
