:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #58635d;
  --paper: #f3f0e8;
  --line: #cfd2c7;
  --accent: #c7472c;
  --accent-dark: #8f2f1d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(23, 32, 28, 0.035) 49.8% 50.2%, transparent 50.2%),
    var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.masthead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-block: 30px 24px;
  border-bottom: 1px solid var(--line);
}

.masthead p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.wordmark {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.intro {
  max-width: 820px;
  padding-block: clamp(68px, 10vw, 132px) clamp(54px, 8vw, 92px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 16ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 7vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 36px 52px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  gap: 22px;
}

.policy {
  max-width: 760px;
  padding-block: clamp(64px, 10vw, 120px);
}

.policy h1 {
  margin-bottom: 40px;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
}

.policy p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.policy .back {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .footer {
    flex-direction: column;
  }
}
