:root {
  --bg: #fbf6fb;
  --ink: #2d2530;
  --muted: #756a77;
  --accent: #5b2f5f;
  --line: #dfd3df;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
header {
  max-width: 1180px;
  margin: auto;
  padding: 26px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
header a { text-decoration: none; color: var(--muted); }
.brand { font-weight: 800; letter-spacing: .18em; color: var(--ink); }
nav { display: flex; gap: 24px; align-items: center; }
.pill {
  border: 1px solid var(--accent);
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--accent);
}
.hero {
  max-width: 1000px;
  margin: auto;
  padding: 120px 32px 110px;
}
.eyebrow, .kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--accent);
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 {
  font-size: clamp(48px, 8vw, 88px);
  line-height: .98;
  letter-spacing: -.04em;
  margin: 22px 0 28px;
}
.lede { max-width: 760px; font-size: 21px; color: var(--muted); }
.button {
  display: inline-block;
  margin-top: 20px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 6px;
  font-weight: 700;
}
.section, .cta {
  max-width: 1180px;
  margin: auto;
  padding: 80px 32px;
  border-top: 1px solid var(--line);
}
.section > article { max-width: 800px; }
.section h2, .cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin: 12px 0;
}
.muted, .grid p, footer { color: var(--muted); }
.section a { color: var(--accent); font-weight: 700; text-decoration: none; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}
.grid article { border: 1px solid var(--line); padding: 28px; border-radius: 8px; }
.grid span { color: var(--accent); font-size: 12px; font-weight: 800; }
.grid h3 { font-size: 30px; margin: 14px 0; }
.topics { font-family: Georgia, "Times New Roman", serif; font-size: 28px; max-width: 1000px; }
.cta { text-align: center; padding-top: 110px; padding-bottom: 120px; }
.cta h2 { max-width: 820px; margin: 14px auto 26px; }
footer {
  max-width: 1180px;
  margin: auto;
  padding: 42px 32px 60px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
footer a { color: var(--accent); }
@media (max-width: 760px) {
  header { padding: 20px; }
  nav > a:not(.pill) { display: none; }
  .hero { padding: 80px 20px 70px; }
  .section, .cta { padding: 60px 20px; }
  .grid { grid-template-columns: 1fr; }
  .topics { font-size: 22px; }
  footer { padding: 32px 20px; display: grid; }
  .lede { font-size: 18px; }
}
