:root {
  color-scheme: light;
  --bg: #faf8f5;
  --ink: #1c1917;
  --muted: #78716c;
  --line: #e7e5e4;
  --accent: #b45309;
  --focus: #1c1917;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
}

body {
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

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

.policy {
  width: min(40rem, 100%);
  margin: 0 auto;
  padding:
    max(28px, env(safe-area-inset-top))
    max(20px, env(safe-area-inset-right))
    max(48px, env(safe-area-inset-bottom))
    max(20px, env(safe-area-inset-left));
}

.brand {
  margin: 0 0 28px;
}

.brand a {
  color: inherit;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand span {
  font-weight: 450;
  color: var(--muted);
}

h1 {
  margin: 0 0 8px;
  font-size: 1.85rem;
  letter-spacing: -0.03em;
}

.effective,
.lede {
  color: var(--muted);
}

.effective {
  margin: 0 0 20px;
  font-size: 0.92rem;
}

.lede,
p,
li {
  line-height: 1.55;
}

h2 {
  margin: 28px 0 10px;
  font-size: 1.05rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 6px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}
