:root {
  --ink: #1c1917;
  --paper: #faf7f2;
  --rule: #e7e1d6;
  --accent: #7a5af8;
  --muted: #6b6358;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 'Inter', system-ui, -apple-system, sans-serif;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 32px 120px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}

.hero h1 {
  font-family: 'Georgia', serif;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

.hero .lede {
  font-size: 18px;
  color: #3f3a32;
  max-width: 56ch;
}

.cta {
  display: inline-block;
  margin-top: 22px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.cta:hover { border-bottom-color: var(--accent); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}

.grid article h2 {
  font-family: 'Georgia', serif;
  font-size: 18px;
  margin: 0 0 8px;
}

.grid article p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
}
