:root {
  --green: #1b5e20;
  --green-deep: #0f3d14;
  --green-soft: #e4efe4;
  --cream: #f3f0e7;
  --paper: #faf8f2;
  --ink: #1a231e;
  --muted: #5c6b60;
  --rule: #d5d0c4;
  --amber: #c05600;
  --white: #fffdf8;
  --shadow: 0 18px 50px rgba(15, 61, 20, 0.08);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Figtree, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
h1, h2, h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; font-family: Figtree, sans-serif; letter-spacing: 0; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.hidden { display: none !important; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus { left: 12px; background: var(--white); padding: 8px 12px; z-index: 20; }

header.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--paper) 92%, white);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.brand svg { width: 28px; height: 28px; }
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}
.nav-links a:hover { color: var(--green); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover { background: var(--green-deep); color: white; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero {
  padding: 56px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}
.hero .lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38ch;
}
.hero-art {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--rule);
}
.hero-art img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.section { padding: 72px 0; }
.section.alt { background: var(--cream); }
.section-head { max-width: 40rem; margin-bottom: 32px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(26, 35, 30, 0.03);
}
.step-num {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 8px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.list { margin: 0; padding: 0; list-style: none; }
.list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.list li:last-child { border-bottom: 0; }
.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 4px;
  top: 18px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature p { color: var(--muted); margin: 0; }

.pricing {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
.price-card.highlight {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
}
.price-card.highlight .muted { color: #c9dcc9; }
.price { font-family: Fraunces, Georgia, serif; font-size: 2rem; margin: 8px 0 12px; }

.cta-band {
  background: var(--green);
  color: white;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.cta-band .btn-row { flex-shrink: 0; }
.cta-band h2 { color: white; margin: 0 0 8px; }
.cta-band p { margin: 0; color: #d7ead7; }
.cta-band .btn-primary {
  background: white;
  color: var(--green-deep);
}
.cta-band .btn-ghost {
  color: white;
  border-color: #8fb894;
}

footer.site {
  border-top: 1px solid var(--rule);
  padding: 36px 0 48px;
  color: var(--muted);
  font-size: 0.95rem;
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--green); }
.legal-note { margin-top: 18px; max-width: 70ch; font-size: 0.85rem; }

.page { padding: 48px 0 80px; }
.prose { max-width: 46rem; }
.prose h2 { margin-top: 1.6em; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1em 0 1.5em;
}
.prose th, .prose td {
  text-align: left;
  border-bottom: 1px solid var(--rule);
  padding: 10px 8px;
  vertical-align: top;
}
.draft-banner {
  background: #fff4e0;
  border: 1px solid #efd3a0;
  color: #6a4a12;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .hero-grid, .steps, .split, .features, .pricing, .cta-band {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .hero { padding-top: 28px; }
  .cta-band { padding: 28px; }
}
