:root {
  color-scheme: light;
  --bg: #f7f1e7;
  --ink: #211d18;
  --muted: #695f52;
  --rule: #d8cbb9;
  --panel: #fffaf1;
  --accent: #9a4f24;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Charter, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  background:
    radial-gradient(circle at top left, rgba(154, 79, 36, 0.18), transparent 34rem),
    linear-gradient(135deg, #f8efe2 0%, var(--bg) 48%, #ece0cf 100%);
}

a {
  color: var(--accent);
}

.shell {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.document {
  padding-top: 56px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: "Avenir Next", "Gill Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.2rem, 9vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.document h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

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

p,
li {
  font-size: 1.08rem;
  line-height: 1.65;
}

.lede {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.24rem;
}

.updated,
.back {
  color: var(--muted);
  font-family: "Avenir Next", "Gill Sans", sans-serif;
  font-size: 0.92rem;
}

.back {
  display: inline-block;
  margin-bottom: 42px;
  text-decoration: none;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.actions a {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--ink);
  font-family: "Avenir Next", "Gill Sans", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

section {
  margin-top: 30px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}

ul {
  padding-left: 1.2rem;
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 760px);
    padding: 56px 0;
  }
}
