:root {
  --bg: #f6f2e9;
  --panel: #fffaf1;
  --ink: #1f1d19;
  --muted: #6f695f;
  --line: rgba(31, 29, 25, 0.12);
  --accent: #0b8f61;
  --accent-2: #154734;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(11, 143, 97, 0.08), transparent 30%),
    linear-gradient(180deg, #fbf8f3, var(--bg));
  min-height: 100vh;
}

a {
  color: var(--accent-2);
}

.shell {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.hero {
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 24px 80px rgba(15, 30, 24, 0.08);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  line-height: 0.95;
  max-width: 11ch;
}

.lede {
  max-width: 42rem;
  margin: 20px 0 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--panel);
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 24px;
}

.card,
.prose {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.88);
}

.card h2,
.prose h2 {
  margin-top: 0;
}

.prose p,
.card p {
  line-height: 1.7;
  color: var(--muted);
}

.footer {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 20px, 960px);
    padding-top: 20px;
  }

  .hero,
  .card,
  .prose {
    padding: 22px;
    border-radius: 22px;
  }
}
