:root {
  --color-primary: #15803D;
  --color-secondary: #22C55E;
  --color-accent: #EC4899;
  --color-neutral-dark: #14532D;
  --color-neutral-light: #F0FDF4;
  --color-text: #14532D;
  --color-muted: #4b6b56;
  --color-border: rgba(20, 83, 45, 0.12);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow-soft: 0 10px 30px -18px rgba(20, 83, 45, 0.35);
}

/* === Base === */
* { 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: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--color-neutral-dark); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; font-weight: 600; margin: 0 0 1rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 780px; }
.eyebrow { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 600; color: var(--color-primary); margin: 0 0 1rem; }

/* === Header === */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--color-border); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.85rem; }
.logo { display: inline-block; text-decoration: none; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--color-neutral-dark); }
.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--color-border); }
.primary-nav ul { list-style: none; margin: 0; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.primary-nav a { text-decoration: none; font-weight: 500; color: var(--color-neutral-dark); }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: block; position: static; background: none; border: 0; }
  .primary-nav ul { flex-direction: row; padding: 0; gap: 1.5rem; }
}

/* === Hero === */
.hero { padding-block: 3.5rem; text-align: center; background: linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 100%); }
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero__sub { max-width: 56ch; margin-inline: auto; font-size: 1.125rem; color: var(--color-muted); }
.hero__cta { margin-top: 1.75rem; }
.hero__figure { margin: 2.5rem auto 0; max-width: 1100px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.hero__figure img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.hero--slim { padding-block: 3rem; }

@media (min-width: 768px) {
  .hero { padding-block: 5.5rem; }
}

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

/* === Sections === */
.section { padding-block: 3.5rem; }
.section--narrow { padding-block: 3rem; }
.section--tinted { background: var(--color-neutral-light); }
.section__title { text-align: center; margin-bottom: 2rem; }
.section .container--narrow h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

@media (min-width: 768px) {
  .section { padding-block: 5rem; }
}

/* === Cards grid === */
.grid { display: grid; gap: 1.25rem; }
.grid--cards { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid--cards { grid-template-columns: repeat(3, 1fr); } }

.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.75rem; box-shadow: 0 1px 0 rgba(20,83,45,0.03); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; background: var(--color-neutral-light); color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin: 0; }
.card-link { display: block; text-decoration: none; color: inherit; transition: transform .2s ease, box-shadow .2s ease; }
.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); color: inherit; }
.card__read { display: inline-block; margin-top: 1rem; font-weight: 600; color: var(--color-primary); }

/* === Testimonial === */
.testimonial { background: #fff; }
.testimonial blockquote { margin: 0; text-align: center; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.4; color: var(--color-neutral-dark); font-style: italic; margin: 0 0 1rem; }
.testimonial cite { font-style: normal; font-size: 0.95rem; color: var(--color-muted); }

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

/* === Contact band === */
.contact-band { text-align: center; }
.contact-band p { max-width: 60ch; margin-inline: auto; color: var(--color-muted); }

/* === Contact form === */
.contact-form { display: grid; gap: 1.15rem; background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.75rem; }
.form-row { display: grid; gap: 0.4rem; }
.form-row label { font-weight: 600; color: var(--color-neutral-dark); font-size: 0.95rem; }
.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; }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--color-muted); flex-wrap: wrap; }
.form-consent input { margin-top: 0.25rem; }

/* === Article === */
.article { max-width: 65ch; margin-inline: auto; padding: 2.5rem 1.25rem 4rem; }
.article__header { margin-bottom: 2rem; }
.article__header h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1.25rem; }
.article__sub { font-size: 1.2rem; color: var(--color-muted); line-height: 1.5; }
.article__figure { margin: 0 0 2.5rem; }
.article__figure img { border-radius: var(--radius); aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.article h2 { margin-top: 2.5rem; font-size: 1.6rem; }
.article p { font-size: 1.1rem; line-height: 1.75; margin-block: 1.25rem; color: var(--color-neutral-dark); }
.article__footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.back-link { text-decoration: none; font-weight: 600; color: var(--color-primary); }
.back-link:hover { text-decoration: underline; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3rem 1.5rem; margin-top: 3rem; }
.site-footer h3 { color: #fff; font-family: var(--font-body); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.site-footer a { color: var(--color-neutral-light); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.site-footer address { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.legal-links { margin-top: 1rem; }
.tagline { color: rgba(240,253,244,0.85); font-style: italic; margin-top: 1rem; }
.logo--footer img { height: 64px; }
.site-footer__copy { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(240,253,244,0.12); font-size: 0.9rem; color: rgba(240,253,244,0.7); }

@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
}

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