:root {
  --ink: #132821;
  --muted: #53665f;
  --cream: #f7f3e8;
  --paper: #fffdf7;
  --green: #1f6b50;
  --green-dark: #164c3a;
  --mint: #dcecdf;
  --gold: #d6a84d;
  --line: #dce3dc;
  --shadow: 0 18px 50px rgba(19, 40, 33, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: var(--green-dark); }

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(19, 40, 33, .10);
  background: rgba(247, 243, 232, .94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.03em;
}

.brand span { color: var(--green); }

.nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 650; }
.nav-links a:hover { color: var(--green); }

.hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 86% 18%, rgba(214,168,77,.30), transparent 24%),
    radial-gradient(circle at 8% 50%, rgba(31,107,80,.18), transparent 28%);
}

.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: .78rem;
}

h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 850px; margin: 16px 0 22px; font-size: clamp(2.6rem, 7vw, 5.8rem); }
h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.28rem; }

.lede { max-width: 720px; color: var(--muted); font-size: 1.18rem; }

.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 750;
}
.button:hover { background: var(--green-dark); }
.button.secondary { background: transparent; color: var(--green-dark); border: 1px solid var(--green); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.trust-strip div { padding: 24px; background: var(--paper); text-align: center; }
.trust-strip strong { display: block; color: var(--green); }

.section { padding: 80px 0; }
.section.alt { background: var(--paper); }
.section-head { max-width: 740px; margin-bottom: 36px; }
.section-head p { color: var(--muted); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.card .number { color: var(--gold); font-weight: 850; }
.card p { color: var(--muted); }
.card a { margin-top: auto; font-weight: 750; }

.callout {
  padding: 26px;
  border-left: 5px solid var(--green);
  border-radius: 0 18px 18px 0;
  background: var(--mint);
}

.article { width: min(760px, calc(100% - 32px)); margin: 0 auto; padding: 72px 0 96px; }
.article h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
.article h2 { margin-top: 52px; font-size: 2rem; }
.article li { margin-bottom: 10px; }
.article-meta { color: var(--muted); font-size: .95rem; }
.disclosure { margin: 26px 0; padding: 18px 20px; border: 1px solid var(--gold); border-radius: 14px; background: #fff8e7; }
.product-slot { margin: 28px 0; padding: 22px; border: 2px dashed #9cb3a6; border-radius: 18px; background: #f7fbf8; }
.product-slot strong { color: var(--green-dark); }

.site-footer { padding: 42px 0; border-top: 1px solid var(--line); color: var(--muted); background: var(--paper); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

@media (max-width: 800px) {
  .grid, .trust-strip { grid-template-columns: 1fr; }
  .hero { padding-top: 68px; }
  .nav { align-items: flex-start; padding: 16px 0; }
  .nav-links { justify-content: flex-end; }
}
