:root {
  --color-primary: #15803D;
  --color-secondary: #22C55E;
  --color-accent: #CA8A04;
  --color-neutral-dark: #14532D;
  --color-neutral-light: #F0FDF4;
  --color-text: #14281D;
  --color-muted: #4b6b5a;
  --color-border: rgba(20, 83, 45, 0.12);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1180px;
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-neutral-dark); font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.container { max-width: var(--max-w); margin: 0 auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 720px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; font-weight: 600; color: var(--color-primary); margin: 0 0 1rem; }

/* === Header === */
.site-header { border-bottom: 1px solid var(--color-border); background: #fff; position: sticky; top: 0; z-index: 50; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.logo--footer img { height: 64px; }

/* === Nav === */
.primary-nav { display: flex; align-items: center; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.75rem; }
.nav-list a { color: var(--color-neutral-dark); font-weight: 500; font-size: 0.98rem; }
.nav-list a[aria-current="page"] { color: var(--color-primary); }
.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-neutral-dark); margin: 5px 0; }
@media (max-width: 767px) {
  .nav-toggle { display: block; }
  .nav-list { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--color-border); padding: 1rem 1.25rem; display: none; }
  .nav-list.is-open { display: flex; }
  .primary-nav { position: static; }
  .site-header__inner { position: relative; }
}

/* === Hero === */
.hero { padding-block: 3.5rem 2rem; text-align: center; background: var(--color-neutral-light); }
@media (min-width: 768px) { .hero { padding-block: 6rem 3rem; } }
.hero h1 { max-width: 28ch; margin-inline: auto; }
.hero__sub { max-width: 52ch; margin: 1rem auto 2rem; color: var(--color-muted); font-size: 1.15rem; }
.hero__cta { margin-bottom: 2.5rem; }
.hero__figure { margin: 2.5rem auto 0; max-width: 1080px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px -30px rgba(20, 83, 45, 0.35); }
.hero__figure img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }

/* === Buttons === */
.btn { display: inline-block; padding: 0.85rem 1.75rem; border-radius: 999px; font-weight: 600; font-size: 0.98rem; border: 2px solid transparent; cursor: pointer; transition: transform 0.15s ease, background 0.15s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-neutral-dark); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #a97205; }
.btn--ghost { background: transparent; color: var(--color-neutral-light); border-color: rgba(240,253,244,0.4); }

/* === Sections === */
.section { padding-block: 3.5rem; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }
.section--narrow .container { max-width: 720px; }
.section--narrow { text-align: left; }
.section--muted { background: var(--color-neutral-light); }
.section__header { text-align: center; margin-bottom: 2.5rem; }
.section__header p { color: var(--color-muted); max-width: 60ch; margin-inline: auto; }

/* === Grids / cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }
.card { background: #fff; border: 1px solid var(--color-border); border-radius: 14px; padding: 1.75rem; }
.card h3 { margin-bottom: 0.6rem; color: var(--color-neutral-dark); }
.card p { color: var(--color-muted); margin: 0; font-size: 0.98rem; }
.card-link { display: block; color: inherit; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.card-link:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 20px 40px -25px rgba(20, 83, 45, 0.35); }
.card-link h3 { color: var(--color-primary); }

/* === Quote === */
.quote { max-width: 780px; margin: 0 auto; text-align: center; padding-inline: 1rem; }
.quote p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.5vw, 1.6rem); line-height: 1.5; color: var(--color-neutral-dark); font-weight: 500; }
.quote cite { display: block; margin-top: 1.25rem; font-style: normal; font-size: 0.95rem; color: var(--color-muted); letter-spacing: 0.02em; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: #fff; padding-block: 3.5rem; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(240,253,244,0.9); max-width: 52ch; margin-inline: auto; }
.cta-band__inner p:last-child { margin-top: 1.5rem; margin-bottom: 0; }

/* === Contact === */
.contact-band { text-align: center; padding: 2rem; background: var(--color-neutral-light); border-radius: 14px; }
.contact-band p:last-child { margin-bottom: 0; margin-top: 1rem; }
.contact-form { background: #fff; border: 1px solid var(--color-border); border-radius: 14px; padding: 2rem; }
.form-row { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-weight: 500; font-size: 0.95rem; color: var(--color-neutral-dark); }
.form-row input, .form-row textarea { font: inherit; padding: 0.7rem 0.85rem; border: 1px solid var(--color-border); border-radius: 8px; background: #fff; color: var(--color-text); }
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; border-color: var(--color-primary); }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--color-muted); margin-block: 1rem 1.5rem; }
.form-consent input { margin-top: 0.25rem; }

/* === Article === */
.article { max-width: 65ch; margin-inline: auto; padding: 3rem 1rem 4rem; }
.article__header h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; text-align: left; }
.article__lede { font-size: 1.2rem; color: var(--color-muted); margin-bottom: 2rem; }
.article__figure { margin-block: 2rem; border-radius: 8px; overflow: hidden; }
.article__figure img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.article p { font-size: 1.1rem; line-height: 1.75; margin-block: 1.25rem; }
.article__footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.back-link { font-weight: 500; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3rem 1.5rem; margin-top: 4rem; }
.site-footer a { color: var(--color-neutral-light); }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.site-footer__grid { display: grid; gap: 2.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.footer__heading { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(240,253,244,0.7); margin-bottom: 1rem; }
.footer__nav, .footer__legal { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__legal { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(240,253,244,0.15); font-size: 0.9rem; }
.site-footer__copy { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(240,253,244,0.15); font-size: 0.88rem; color: rgba(240,253,244,0.7); }

/* === Cookie banner === */
.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; display: none; z-index: 9999; max-width: 640px; margin-inline: auto; background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 1.25rem 1.5rem; border-radius: 14px; box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4); }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.92rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-banner__actions .btn { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.cookie-banner__prefs { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(240,253,244,0.15); display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.92rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs .btn { align-self: flex-start; margin-top: 0.5rem; }
