:root {
  --paper: #f4f0e8;
  --ink: #1d2925;
  --muted: #65706a;
  --rule: #c9c5ba;
  --accent: #415d50;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

.page {
  width: min(100% - 3rem, 1080px);
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  color: var(--ink);
  font-family: var(--mono);
  font-size: .875rem;
  letter-spacing: -.08em;
  text-decoration: none;
}

.eyebrow, .kicker, .section-label, footer {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.eyebrow { color: var(--muted); margin: 0; }

.intro {
  max-width: 850px;
  padding: clamp(6.5rem, 16vw, 13.5rem) 0 clamp(5rem, 12vw, 10rem);
}

.kicker { margin: 0 0 1.2rem; color: var(--accent); }

h1, h2, p { margin-top: 0; }

h1 {
  max-width: 800px;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 7vw, 6.25rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
  text-wrap: pretty;
}

.lede {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.statement {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(0, 2fr);
  gap: 2rem;
  padding: 2rem 0 clamp(5rem, 10vw, 8rem);
  border-top: 1px solid var(--rule);
}

.section-label { color: var(--muted); padding-top: .4rem; }

h2 {
  max-width: 560px;
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.statement p {
  max-width: 540px;
  color: #3e4944;
  font-size: 1rem;
  line-height: 1.78;
}

.statement p:last-child { margin-bottom: 0; }

.closing {
  padding: 1.25rem 0 3.5rem;
  border-top: 1px solid var(--rule);
}

.closing p {
  margin: 0;
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  letter-spacing: -.035em;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding: 1.5rem 0;
  color: var(--muted);
  border-top: 1px solid var(--rule);
}

@media (max-width: 620px) {
  .page { width: min(100% - 2rem, 1080px); }
  .intro { padding-top: 6rem; }
  .statement { grid-template-columns: 1fr; gap: 1.1rem; }
  footer { flex-direction: column; }
}

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