:root {
  --accent: #1aa82d;
  --accent-deep: #158f26;
  --ink: #0a0a0a;
  --muted: #5c574f;
  --soft: #8a8378;
  --line: rgba(20, 40, 24, 0.1);
  --canvas: #fbfbf8;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-deep); }
::selection { background: var(--accent); color: #fff; }

.hero-field {
  background-image:
    linear-gradient(rgba(26, 168, 45, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 168, 45, 0.075) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 78% 64% at 50% 38%, black 22%, transparent 82%);
  mask-image: radial-gradient(ellipse 78% 64% at 50% 38%, black 22%, transparent 82%);
}
.soft-glow {
  background: radial-gradient(circle, rgba(26, 168, 45, 0.16) 0%, transparent 62%);
}

.brand-eat {
  position: relative;
  display: inline-block;
  width: 134px;
  height: 32px;
}
.brand-eat__mark {
  position: absolute; left: 0; top: 0; z-index: 3;
  height: 32px; width: auto;
}
.brand-eat__word {
  position: absolute; left: 44px; top: 4px; z-index: 1;
  height: 24px; width: auto;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: 9px; font-weight: 700; font-size: 15px;
  padding: 13px 20px; border: none; cursor: pointer; transition: .2s ease;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 22px rgba(26, 168, 45, .3);
}
.btn-primary:hover { background: var(--accent-deep); color: #fff; }
.btn-ghost {
  background: #fff; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: rgba(26,168,45,.35); color: var(--accent-deep); }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(26,168,45,.3); background: #fff;
  padding: 7px 15px; border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: #158f26;
}
.prose h2 {
  margin: 48px 0 0;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.15;
}
.prose p, .prose li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.prose p { margin: 14px 0 0; }
.prose ul { margin: 14px 0 0; padding-left: 1.2rem; }
.prose li { margin-top: 8px; }
.prose strong { color: var(--ink); font-weight: 700; }

.faq-item {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.faq-item p { margin: 8px 0 0; font-size: 15px; line-height: 1.6; color: var(--muted); }

.related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.related a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease;
}
.related a:hover {
  border-color: rgba(26,168,45,.4);
  transform: translateY(-1px);
  color: var(--ink);
}
.related strong { display: block; font-size: 14px; font-weight: 800; }
.related span { display: block; margin-top: 6px; font-size: 13px; color: var(--muted); line-height: 1.45; }

footer a { color: #5c574f; }
footer a:hover { color: var(--accent-deep); }

@media (max-width: 720px) {
  .nav-links { display: none !important; }
}
