:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #F97316;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --color-text: #0B2A22;
  --color-muted: #4b6b62;
  --color-border: rgba(6, 78, 59, 0.14);
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --radius: 12px;
  --shadow-sm: 0 4px 14px -8px rgba(6, 78, 59, 0.25);
  --shadow-md: 0 20px 40px -24px rgba(6, 78, 59, 0.35);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: #fff;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }
a  { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; height: auto; }

.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 780px; }

/* === 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;
  padding-block: 0.75rem; gap: 1rem;
}
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }

.site-nav { display: none; }
.site-nav a {
  color: var(--color-neutral-dark);
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 8px;
}
.site-nav a:hover { background: var(--color-neutral-light); text-decoration: none; }
.site-nav a.is-active { color: var(--color-primary); }

.nav-toggle {
  background: none; border: 1px solid var(--color-border);
  border-radius: 8px; padding: 0.5rem; cursor: pointer;
  display: flex; flex-direction: column; gap: 4px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--color-neutral-dark); display: block; }

.site-nav.is-open {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

@media (min-width: 900px) {
  .site-nav { display: flex; gap: 0.25rem; }
  .nav-toggle { display: none; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  font-family: var(--font-body);
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-neutral-dark); text-decoration: none; }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #d95c0e; text-decoration: none; }

/* === Hero (split) === */
.hero { padding-block: 3rem; }
.hero-split__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
.hero-split__text .eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.82rem; font-weight: 700;
  color: var(--color-primary); margin: 0 0 1rem;
}
.hero-split__text .lede {
  font-size: 1.15rem; color: var(--color-muted);
  max-width: 48ch; margin-bottom: 1.5rem;
}
.hero-split__media img {
  aspect-ratio: 4 / 5; object-fit: cover;
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .hero { padding-block: 5rem; }
  .hero-split__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-split--single .hero-split__grid { grid-template-columns: 1fr; }
}

/* === Sections === */
.section { padding-block: 3.5rem; }
.section--narrow .container { max-width: 780px; }
.section--narrow h2 { text-align: center; }
.section--narrow p { text-align: center; }
.section--tint { background: var(--color-neutral-light); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-muted); }
.section-head--left { text-align: left; margin-inline: 0; }

.body-lg { font-size: 1.1rem; line-height: 1.75; }

/* === Grid & cards === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .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-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-top: 0.6rem; }
.card .icon { color: var(--color-primary); }
.card--stat h3 { color: var(--color-primary); font-family: var(--font-heading); font-size: 1.35rem; }

/* === Testimonial === */
.testimonial-section { background: var(--color-neutral-light); }
.testimonial {
  max-width: 780px; margin: 0 auto; text-align: center;
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  padding: 0 1rem;
}
.testimonial p { font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.5; font-style: italic; }
.testimonial cite { display: block; margin-top: 1.25rem; font-style: normal; font-family: var(--font-body); color: var(--color-muted); font-size: 0.98rem; }

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  padding-block: 3.5rem;
}
.cta-band__inner {
  display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start;
}
.cta-band h2 { color: #fff; margin: 0 0 0.5rem; }
.cta-band p { margin: 0; opacity: 0.9; max-width: 60ch; }
@media (min-width: 800px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; }
}

/* === Gallery === */
.gallery {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); }
.gallery img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; transition: transform 0.4s ease; }
.gallery figure:hover img { transform: scale(1.04); }

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

/* === Contact band + form === */
.contact-band__info { text-align: center; max-width: 560px; margin: 0 auto; }
.contact-band__info p { margin: 0.3rem 0; }
.contact-band__info .btn { margin-top: 1.5rem; }

.contact-form {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 1rem; display: flex; flex-direction: column; 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-family: var(--font-body); font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border); border-radius: 8px;
  background: #fff;
}
.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);
  margin: 0.5rem 0 1.25rem;
}
.form-consent input { margin-top: 0.25rem; flex-shrink: 0; }

/* === 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-heading);
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em;
  margin: 0 0 1rem;
}
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; }
}
.site-footer .logo img { filter: brightness(0) invert(1); height: 60px; }
.footer__tag { margin-top: 0.75rem; opacity: 0.8; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.footer__legal { margin-top: 1rem; }
.footer__copy { padding-top: 1.5rem; font-size: 0.9rem; opacity: 0.7; text-align: center; }

/* === 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);
  border-radius: var(--radius); padding: 1.25rem;
  box-shadow: var(--shadow-md);
  max-width: 720px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; font-size: 0.95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  font-family: var(--font-body);
  padding: 0.55rem 1rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent; color: var(--color-neutral-light);
  cursor: pointer; font-weight: 600; font-size: 0.9rem;
}
.cookie-banner button[data-cookie-accept] {
  background: var(--color-accent); border-color: var(--color-accent); color: #fff;
}
.cookie-banner button:hover { background: rgba(255,255,255,0.1); }
.cookie-banner button[data-cookie-accept]:hover { background: #d95c0e; }
.cookie-banner__prefs {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; font-size: 0.9rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; }
