:root {
  --green: #2e5d32;
  --green-light: #477a49;
  --green-bg: #eff8ef;
  --gold: #f59e0b;
  --cream: #fff6dd;
  --warm: #fff9f0;
  --ink: #111827;
  --muted: #4b5563;
  --border: #eadfcb;
  --white: #fff;
  --radius: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Inter, Arial, sans-serif; color: var(--ink); line-height: 1.65; background: var(--white); }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--border); }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: var(--green); font-size: 21px; font-weight: 800; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--ink); font-weight: 650; text-decoration: none; }
.nav-links a:hover { color: var(--green); }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 13px 22px; border-radius: 9px; background: var(--gold); color: #244d29; font-weight: 800; text-decoration: none; }
.button.secondary { background: var(--green); color: var(--white); }
.hero { padding: 92px 0 70px; background: linear-gradient(135deg, var(--green-bg), var(--warm)); }
.eyebrow { display: inline-block; margin-bottom: 15px; padding: 6px 12px; border-radius: 999px; color: var(--green); background: var(--cream); border: 1px solid var(--border); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
h1 { max-width: 850px; color: var(--green); font-size: clamp(38px, 7vw, 66px); line-height: 1.08; letter-spacing: -.035em; }
.lead { max-width: 780px; margin-top: 22px; color: var(--muted); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
main section { padding: 72px 0; }
main section.alt { background: var(--warm); }
h2 { color: var(--green); font-size: clamp(28px, 4vw, 42px); line-height: 1.2; margin-bottom: 18px; }
h3 { color: var(--green); font-size: 22px; margin-bottom: 10px; }
p + p { margin-top: 14px; }
.intro { max-width: 800px; color: var(--muted); font-size: 18px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 24px rgba(91,66,25,.06); }
.card p, .card li { color: var(--muted); }
.card ul { margin: 12px 0 0 20px; }
.card li { margin-bottom: 7px; }
.highlight { padding: 30px; border-left: 5px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; background: var(--cream); }
.steps { counter-reset: step; display: grid; gap: 16px; margin-top: 28px; }
.step { position: relative; padding: 22px 22px 22px 70px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 20px; top: 20px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 800; }
.terms { max-width: 880px; }
.terms article { padding: 28px 0; border-bottom: 1px solid var(--border); }
.terms ul { margin: 12px 0 0 22px; }
.terms li { margin-bottom: 8px; }
.terms a { color: var(--green); }
.notice { margin-top: 28px; padding: 18px 20px; border-radius: 12px; background: var(--green-bg); color: var(--green); font-weight: 700; }
.site-footer { padding: 42px 0; background: #0f291e; color: #cbd5d1; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.site-footer a { color: var(--white); }
@media (max-width: 820px) {
  .nav { padding: 14px 0; align-items: flex-start; }
  .nav-links { justify-content: flex-end; flex-wrap: wrap; gap: 10px 16px; }
  .nav-links .hide-mobile { display: none; }
  .grid, .grid.two { grid-template-columns: 1fr; }
  .hero { padding: 66px 0 54px; }
  main section { padding: 56px 0; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { display: block; }
  .nav-links { margin-top: 10px; justify-content: flex-start; }
  .nav-links a { font-size: 14px; }
  .hero-actions .button { width: 100%; }
  .card, .highlight { padding: 22px 18px; }
}
