:root {
  color-scheme: light;
  --paper: #f4efe7;
  --paper-soft: #faf7f1;
  --ink: #211f1c;
  --muted: #6f6961;
  --line: #d8cfc2;
  --rust: #b5482b;
  --rust-dark: #8e351f;
  --green-dark: #285446;
  --white: #fffdf9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--rust-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), 920px);
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 231, 0.96);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(181, 72, 43, 0.16);
}

.brand-mark::after {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rust);
  content: "";
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: 0.88rem;
  font-weight: 700;
}

.header-nav a {
  color: var(--ink);
  text-decoration: none;
}

.legal-hero {
  padding: 76px 0 52px;
  border-bottom: 1px solid var(--line);
}

.kicker {
  margin: 0 0 18px;
  color: var(--rust);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 8vw, 5rem);
}

h2 {
  margin-top: 48px;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
}

.lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.status-note {
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid #c9b9a8;
  border-radius: 12px;
  background: var(--paper-soft);
}

.legal-body {
  padding: 58px 0 90px;
}

.legal-body p,
.legal-body ul {
  max-width: 760px;
  margin: 18px 0 0;
  color: #45413c;
}

.legal-body ul {
  padding-left: 22px;
}

.legal-body li + li {
  margin-top: 8px;
}

.meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid #45413b;
  background: var(--ink);
  color: #d8d0c5;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer a {
  color: var(--white);
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), 920px);
  }

  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-inner {
    padding: 20px 0;
  }

  .header-nav {
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .legal-hero {
    padding-top: 52px;
  }
}
