:root {
  --color-primary: #15803D;
  --color-secondary: #22C55E;
  --color-accent: #0369A1;
  --color-neutral-dark: #14532D;
  --color-neutral-light: #F0FDF4;
  --color-text: #14532D;
  --color-muted: #4B6D5A;
  --color-line: rgba(20, 83, 45, 0.14);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --shadow-card: 0 20px 40px -28px 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: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); font-weight: 600; line-height: 1.2; margin: 0 0 0.6em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 780px; }
.eyebrow { 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(10px);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  max-width: 1160px; margin-inline: auto;
  padding: 0.75rem 1.25rem;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 72px; width: auto; }
.logo--footer img { height: 60px; }
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: space-between;
  width: 32px; height: 24px; padding: 0; background: none; border: 0; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; }
.site-nav { display: none; flex-direction: column; gap: 0.5rem; width: 100%; margin-top: 0.75rem; }
.site-nav.is-open { display: flex; }
.site-nav a {
  text-decoration: none;
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-line);
}
.site-nav a.is-current { color: var(--color-primary); }

@media (min-width: 860px) {
  .site-header__inner { padding: 0.5rem 1.5rem; }
  .logo img { height: 96px; }
  .logo--footer img { height: 72px; }
  .nav-toggle { display: none; }
  .site-nav { display: flex; flex-direction: row; gap: 1.75rem; width: auto; margin-top: 0; }
  .site-nav a { padding: 0; border: 0; }
  .site-nav a:hover { color: var(--color-primary); }
}

/* === Hero (centered) === */
.hero { padding-block: 3.5rem 2rem; text-align: center; background: var(--color-neutral-light); }
.hero .container { display: flex; flex-direction: column; align-items: center; }
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero__sub { max-width: 52ch; margin-inline: auto; color: var(--color-muted); font-size: 1.1rem; }
.hero__cta { margin-top: 1.5rem; }
.hero__image { margin-top: 3rem; }
.hero__image img { width: 100%; max-width: 1160px; margin-inline: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); }

@media (min-width: 768px) {
  .hero { padding-block: 6rem 3rem; }
  .hero__image { margin-top: 4rem; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 0; cursor: pointer;
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-neutral-dark); color: #fff; transform: translateY(-1px); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #024f7d; color: #fff; transform: translateY(-1px); }

/* === Sections === */
.section { padding-block: 4rem; }
.section--narrow { padding-block: 3.5rem; }
.section--alt { background: var(--color-neutral-light); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-muted); }

/* === Grid & Cards === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: block;
}
.card h3 { margin-top: 0.25rem; }
.card p { color: var(--color-muted); margin-bottom: 0; }
.card .icon { color: var(--color-primary); margin-bottom: 0.75rem; }
.card-link {
  color: inherit; text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 55px -32px rgba(20, 83, 45, 0.45);
  border-color: rgba(21, 128, 61, 0.35);
  color: inherit;
}

/* === Quote === */
.quote {
  margin: 0; padding: 2rem 1rem; text-align: center;
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
}
.quote p { font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.45; margin-bottom: 1rem; }
.quote cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.95rem; color: var(--color-muted); }

/* === 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(255, 255, 255, 0.9); }

/* === Stats === */
.stats { display: grid; grid-template-columns: 1fr; gap: 2rem; text-align: center; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat__num { display: block; font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--color-accent); font-weight: 700; margin-bottom: 0.4rem; }
.stat p { color: var(--color-muted); margin: 0; }

/* === Forms === */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-weight: 500; font-size: 0.95rem; }
.form-row input, .form-row textarea {
  font: inherit; color: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
}
.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); flex-wrap: wrap; }
.form-consent input { margin-top: 0.25rem; }
.contact-form .btn { align-self: flex-start; }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid var(--color-line);
  padding: 1rem 0;
}
.faq summary {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-neutral-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--color-primary);
}
.faq details[open] summary::after { content: '−'; }
.faq p { margin-top: 0.75rem; color: var(--color-muted); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3rem 1.5rem; margin-top: 4rem; }
.site-footer h3 { color: #fff; font-family: var(--font-body); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.site-footer a { color: var(--color-neutral-light); text-decoration: none; }
.site-footer a:hover { color: var(--color-secondary); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; } }
.footer-tagline { color: rgba(240, 253, 244, 0.75); margin: 0.75rem 0 0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer address { font-style: normal; line-height: 1.7; color: rgba(240, 253, 244, 0.85); }
.legal-links { flex-direction: row !important; flex-wrap: wrap; gap: 1rem !important; margin-top: 1rem !important; font-size: 0.9rem; opacity: 0.85; }
.copyright { text-align: center; margin: 2rem 0 0; font-size: 0.85rem; color: rgba(240, 253, 244, 0.65); }
.logo--footer img { filter: brightness(0) invert(1); }

/* === 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.5rem; border-radius: 12px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  max-width: 640px;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; font-size: 0.92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  font: inherit; cursor: pointer; border: 0;
  padding: 0.55rem 1rem; border-radius: 999px;
  background: rgba(240, 253, 244, 0.14); color: var(--color-neutral-light);
}
.cookie-banner [data-cookie-accept] { background: var(--color-accent); color: #fff; }
.cookie-banner [data-cookie-accept]:hover { background: #024f7d; }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; background: var(--color-secondary); color: var(--color-neutral-dark); font-weight: 600; }
