@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600&display=swap");

:root {
  --bg: #F8F0E3;
  --surface: #FCF7ED;
  --rule: #E4D6BE;
  --accent: #C84F39;
  --accent-deep: #7A3C22;
  --ink-1: #3A2D20;
  --ink-2: #6A5540;
  --ink-3: #968471;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink-1);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}

header.site .wordmark {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--accent);
  text-decoration: none;
}

header.site nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-left: 22px;
  letter-spacing: -0.05px;
}

header.site nav a:hover { color: var(--ink-1); }

h1 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin-bottom: 12px;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-top: 36px;
  margin-bottom: 12px;
}

p, li {
  color: var(--ink-2);
  margin-bottom: 12px;
}

.lead {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 32px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--accent);
  margin-bottom: 16px;
}

.updated {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 32px;
}

ul { padding-left: 22px; margin-bottom: 16px; }
li { margin-bottom: 8px; }

a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-deep); }

strong { color: var(--ink-1); font-weight: 600; }

.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px 32px;
  margin: 28px 0;
}

footer.site {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer.site nav a {
  color: var(--ink-3);
  margin-left: 18px;
  text-decoration: none;
}

footer.site nav a:hover { color: var(--ink-1); }

.hero {
  text-align: center;
  padding: 48px 0 32px;
}

.hero h1 {
  font-size: 48px;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero .lead {
  font-size: 19px;
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.05px;
}

.cta.primary {
  background: var(--accent);
  color: var(--surface);
}
.cta.primary:hover { background: var(--accent-deep); color: var(--surface); }

.cta.ghost {
  background: transparent;
  color: var(--ink-1);
  border: 1px solid var(--rule);
}
.cta.ghost:hover { background: var(--surface); color: var(--ink-1); }

@media (max-width: 480px) {
  .shell { padding: 40px 22px 64px; }
  h1 { font-size: 28px; }
  .hero h1 { font-size: 36px; }
  header.site nav a { margin-left: 14px; font-size: 13px; }
}
