:root {
  color-scheme: light;
  --ink: #191d31;
  --muted: #667085;
  --brand: #e8910d;
  --brand-dark: #c66e00;
  --surface: #ffffff;
  --canvas: #fff8ec;
  --line: #f0ddbd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top right, #ffe7c4 0, transparent 34rem), var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem max(1.25rem, calc((100% - 70rem) / 2));
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
}

.site-header nav,
.policy-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.site-header nav a,
.policy-footer-links a {
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover,
.policy-footer-links a:hover {
  color: var(--brand);
}

main {
  width: min(100% - 2rem, 62rem);
  margin: 3rem auto;
}

.policy-card {
  padding: clamp(1.5rem, 5vw, 4rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: 0 1.5rem 4rem rgba(25, 29, 49, 0.09);
}

.eyebrow {
  margin: 0 0 0.25rem;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1.05;
}

.lead {
  max-width: 48rem;
  margin: 1.25rem 0 2.5rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.policy-card section {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.policy-card section p {
  margin: 0;
  color: var(--muted);
}

.updated {
  margin: 2rem 0 0;
  color: var(--brand-dark);
  font-weight: 700;
}

footer {
  padding: 2rem 1rem;
  background: var(--ink);
  color: #ffffff;
  text-align: center;
}

footer p {
  margin: 1rem 0 0;
  color: #d5d8e2;
}

@media (max-width: 42rem) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  main {
    margin: 1.5rem auto;
  }
}
