:root {
  color-scheme: light;
  --ink: #17211a;
  --muted: #58665c;
  --paper: #f4f1e8;
  --card: #fffdf8;
  --accent: #1f6242;
  --line: #d5d2c8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
}

main {
  width: min(760px, calc(100% - 40px));
  margin: 8vh auto;
  padding: clamp(28px, 6vw, 64px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgb(23 33 26 / 8%);
}

h1,
h2 {
  line-height: 1.15;
}

h1 {
  margin-top: 0;
  font-size: clamp(2.2rem, 8vw, 4.6rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-top: 2.2em;
  font-size: 1.35rem;
}

p,
li {
  max-width: 66ch;
}

.eyebrow {
  color: var(--accent);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lede {
  color: var(--muted);
  font-size: 1.2rem;
}

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

footer {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
}
