:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #696969;
  --paper: #f7f6f2;
  --rule: #d9d7d0;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.wordmark {
  color: var(--ink);
  display: inline-block;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-decoration: none;
}

.home {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.copyright {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.policy-shell {
  padding: clamp(1.5rem, 5vw, 4rem) clamp(1.25rem, 5vw, 4rem) 6rem;
}

.policy-header,
.policy {
  margin-inline: auto;
  max-width: 46rem;
}

.policy-header {
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}

.policy {
  font-size: 1rem;
}

.policy h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 0 0 1.25rem;
}

.policy h2 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 3rem 0 1rem;
}

.policy p,
.policy ul {
  margin-block: 0 1.35rem;
}

.policy ul {
  padding-left: 1.4rem;
}

.policy li {
  margin-bottom: 1rem;
  padding-left: 0.35rem;
}

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

address {
  font-style: normal;
}

@media (max-width: 32rem) {
  .policy-shell {
    padding-bottom: 4rem;
  }

  .policy-header {
    margin-bottom: 3.5rem;
  }

  .policy {
    line-height: 1.58;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
