:root {
  --ivory: #faf6ee;
  --parchment: #f4efe3;
  --bone: #ede6d8;
  --forest: #1e3a2b;
  --moss: #506b57;
  --sienna: #c04a24;
  --amber: #d99c3f;
  --charcoal: #1a1a1a;
  --stone: #706b63;
  --mist: #beb8ae;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--amber);
  color: var(--forest);
}

.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 28px 96px;
}

/* Masthead */
.masthead {
  border-bottom: 1px solid var(--bone);
  padding-bottom: 40px;
  margin-bottom: 48px;
}

.brand {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 40px;
}

.brand-mark {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--forest);
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 20px;
}

.display {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--forest);
  margin: 0 0 24px;
}

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--moss);
  margin: 0 0 28px;
  max-width: 560px;
}

.meta {
  font-size: 13px;
  color: var(--stone);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

/* Content */
.content section {
  margin-bottom: 40px;
}

.content h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
  margin: 0 0 14px;
  letter-spacing: -0.2px;
}

.content p {
  margin: 0 0 14px;
  color: var(--charcoal);
}

.content strong {
  color: var(--forest);
  font-weight: 600;
}

.content ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.content li {
  margin-bottom: 8px;
  padding-left: 6px;
}

.content li::marker {
  color: var(--sienna);
}

.content a {
  color: var(--sienna);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 74, 36, 0.3);
  transition: border-color 0.15s ease;
}

.content a:hover {
  border-bottom-color: var(--sienna);
}

/* Colophon */
.colophon {
  margin-top: 72px;
  text-align: center;
  color: var(--stone);
  font-size: 12px;
  letter-spacing: 0.4px;
}

.rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--mist);
  margin: 0 auto 20px;
}

.colophon p {
  margin: 0;
}

@media (max-width: 520px) {
  .page {
    padding: 44px 22px 72px;
  }
  .masthead {
    padding-bottom: 32px;
    margin-bottom: 36px;
  }
  .brand {
    margin-bottom: 32px;
  }
}
