:root {
  --paper: #f6f0e8;
  --panel: #fffaf3;
  --ink: #302923;
  --muted: #72665d;
  --accent: #8f5b4d;
  --line: #e7d9cb;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: radial-gradient(circle at 85% 0, #efddd4 0, transparent 32rem), var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}
a {
  color: inherit;
}
.wrap {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}
.top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  font-family: "Avenir Next", sans-serif;
}
.brand,
.button {
  text-decoration: none;
  font-weight: 800;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}
.button {
  display: inline-block;
  background: var(--accent);
  border-radius: 999px;
  color: white;
  padding: 12px 18px;
  font-family: "Avenir Next", sans-serif;
}
.hero,
.content,
.related {
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 7vw, 64px);
  margin: 24px 0;
  box-shadow: 0 18px 50px rgba(90, 66, 50, 0.09);
}
.eyebrow {
  color: var(--accent);
  font:
    800 0.78rem / 1 "Avenir Next",
    sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 16px 0;
}
h2 {
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-top: 42px;
}
h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.lede {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.25rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}
.card {
  background: #fff7f0;
  border-radius: 16px;
  padding: 18px;
}
.card p,
li,
.muted {
  color: var(--muted);
}
.content li {
  margin: 9px 0;
}
.related {
  padding: 24px;
}
.footer {
  color: var(--muted);
  font-family: "Avenir Next", sans-serif;
  font-size: 0.9rem;
  padding: 16px 0 42px;
}
@media (max-width: 600px) {
  .top {
    align-items: flex-start;
    flex-direction: column;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}
