:root {
  --color-primary: #15803D;
  --color-secondary: #22C55E;
  --color-accent: #EC4899;
  --color-neutral-dark: #14532D;
  --color-neutral-light: #F0FDF4;
  --color-text: #14532D;
  --color-muted: #4b6b58;
  --color-border: rgba(20, 83, 45, 0.14);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(20, 83, 45, 0.06);
  --shadow-md: 0 20px 40px -22px rgba(20, 83, 45, 0.25);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === Typography === */
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-neutral-dark); font-weight: 600; line-height: 1.2; margin: 0 0 .6em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.eyebrow { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.14em; font-size: .8rem; color: var(--color-primary); font-weight: 600; margin: 0 0 1rem; }
.lede { font-size: 1.15rem; color: var(--color-muted); max-width: 48ch; }

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.section { padding-block: 3.5rem; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .75rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.primary-nav { display: none; gap: 1.5rem; align-items: center; }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; font-size: .95rem; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav a:hover { color: var(--color-primary); text-decoration: none; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: transparent; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; }
@media (min-width: 900px) {
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
}
.primary-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 1.25rem; border-bottom: 1px solid var(--color-border); align-items: stretch; gap: 1rem; }

/* === Hero (split) === */
.hero { padding-block: 3rem 2rem; background: linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 100%); }
@media (min-width: 768px) { .hero { padding-block: 5rem 4rem; } }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.hero-copy h1 { margin-bottom: 1rem; max-width: 18ch; }
.hero-image img { aspect-ratio: 4/5; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow-md); width: 100%; }
.hero-thanks { padding-block: 5rem 3rem; text-align: center; }
.hero-thanks .lede { margin-inline: auto; }

/* === Buttons === */
.btn { display: inline-block; padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .95rem; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease; border: 0; cursor: pointer; }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-neutral-dark); text-decoration: none; transform: translateY(-1px); }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: #db2777; text-decoration: none; transform: translateY(-1px); }

/* === Intro / narrow text sections === */
.intro .container { max-width: 780px; }
.intro h2 { margin-bottom: 1rem; }
.intro p { font-size: 1.05rem; color: var(--color-text); }

/* === Section titles === */
.section-title { text-align: center; margin-bottom: 2.5rem; }

/* === Card grid === */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .card-grid.three { grid-template-columns: repeat(3, 1fr); } .card-grid.four { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid.four { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: block;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card-link { text-decoration: none; }
.card-link:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--color-secondary); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--color-muted); margin: 0; font-size: .98rem; }
.card-icon { color: var(--color-primary); margin-bottom: 1rem; width: 32px; height: 32px; }

/* === Testimonial === */
.testimonial-section { background: var(--color-neutral-light); }
.testimonial { margin: 0; text-align: center; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.4vw, 1.65rem); color: var(--color-neutral-dark); line-height: 1.4; font-style: italic; margin-bottom: 1rem; }
.testimonial cite { display: block; font-style: normal; color: var(--color-muted); font-size: .95rem; font-weight: 500; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: #fff; text-align: center; padding-block: 4rem; }
.cta-band h2 { color: #fff; margin-bottom: .75rem; }
.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 52ch; margin-inline: auto; margin-bottom: 1.75rem; }

/* === Contact band === */
.contact-band { background: var(--color-neutral-light); text-align: center; }
.contact-band p { color: var(--color-muted); font-size: 1.05rem; }

/* === Contact form === */
.contact-form { display: grid; gap: 1.1rem; }
.contact-form label { display: grid; gap: .35rem; font-weight: 500; font-size: .95rem; color: var(--color-neutral-dark); }
.contact-form input, .contact-form textarea {
  font: inherit; padding: .75rem .9rem; border: 1px solid var(--color-border);
  border-radius: 10px; background: #fff; color: var(--color-text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.15);
}
.form-consent { display: flex; flex-direction: row; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--color-muted); font-weight: 400; flex-wrap: wrap; }
.form-consent input { margin-top: .2rem; }
.form-consent span { flex: 1; min-width: 200px; }

/* === FAQ === */
.faq details { border: 1px solid var(--color-border); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: .75rem; background: #fff; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--color-neutral-dark); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; float: right; color: var(--color-primary); font-weight: 400; font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: .75rem 0 0; color: var(--color-muted); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3rem 1.5rem; margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h3 { color: #fff; font-family: var(--font-body); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: var(--color-secondary); }
.footer-logo img { height: 64px; filter: brightness(0) invert(1) opacity(0.95); }
.tagline { color: rgba(240, 253, 244, 0.75); font-size: .95rem; margin-top: .75rem; }
.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { font-size: .95rem; }
.footer-contact address { font-style: normal; font-size: .95rem; line-height: 1.7; color: rgba(240, 253, 244, 0.85); margin-bottom: 1rem; }
.legal-links { display: flex; flex-direction: column; gap: .35rem; font-size: .9rem; }
.copyright { border-top: 1px solid rgba(240, 253, 244, 0.15); margin-top: 2rem; padding-top: 1.25rem; font-size: .85rem; color: rgba(240, 253, 244, 0.7); }

/* === 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: 14px;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4);
  max-width: 640px; margin-inline: auto;
  font-size: .92rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button {
  font: inherit; padding: .55rem 1rem; border-radius: 999px; border: 0;
  cursor: pointer; font-weight: 600; font-size: .88rem;
}
[data-cookie-accept] { background: var(--color-accent); color: #fff; }
[data-cookie-reject] { background: rgba(240, 253, 244, 0.15); color: var(--color-neutral-light); }
[data-cookie-settings] { background: transparent; color: var(--color-neutral-light); text-decoration: underline; }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(240, 253, 244, 0.2); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
[data-cookie-save] { align-self: flex-start; margin-top: .5rem; background: var(--color-primary); color: #fff; padding: .5rem 1rem; border-radius: 999px; border: 0; cursor: pointer; font: inherit; font-weight: 600; font-size: .88rem; }
