:root {
  color-scheme: light;
  --background: #fffaf2;
  --surface: #ffffff;
  --text: #2b2118;
  --muted: #65584c;
  --accent: #9b3f2f;
  --accent-hover: #70291f;
  --border: #eadfce;
}

* {
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--background);
  color: var(--text);
}

body {
  margin: 0;
}

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

a:hover {
  color: var(--accent-hover);
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.home-shell {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.25rem;
  padding: 2rem;
  text-align: center;
}

.home-shell h1 {
  margin: 0;
  font-size: clamp(3rem, 14vw, 5rem);
  letter-spacing: -0.06em;
}

.primary-link {
  display: inline-block;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface);
  font-weight: 650;
}

.site-header {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.25rem clamp(1.25rem, 5vw, 2.5rem) 0;
}

.brand {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.policy-shell {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 5vw, 2.5rem) 4rem;
}

.policy {
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 1rem 2.5rem rgb(62 40 20 / 8%);
}

.policy h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.policy h2 {
  margin: 2.5rem 0 0.8rem;
  font-size: clamp(1.25rem, 4vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.policy p,
.policy li {
  max-width: 70ch;
}

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

.policy li + li {
  margin-top: 0.7rem;
}

.effective-date {
  margin: 0.85rem 0 2rem;
  color: var(--muted);
}

@media (max-width: 35rem) {
  .policy-shell {
    padding-top: 1.25rem;
  }

  .policy {
    border-radius: 0.75rem;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
