:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #F97316;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --color-text: #0f2b22;
  --color-muted: #4a6b60;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --radius: 12px;
  --shadow-sm: 0 2px 6px rgba(6,78,59,0.06);
  --shadow-md: 0 12px 32px -12px rgba(6,78,59,0.25);
}

/* === Reset & 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: #fff;
  line-height: 1.6;
  font-size: 17px;
}
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 { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 .75rem; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

/* === Layout: sidebar + main === */
.layout { display: flex; flex-direction: column; min-height: 100vh; }
.sidebar {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1.25rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sidebar__header .logo { display: inline-block; }
.logo img { height: 72px; width: auto; }
.sidebar__nav .nav-toggle {
  display: inline-block;
  background: transparent;
  color: var(--color-neutral-light);
  border: 1px solid rgba(236,253,245,0.35);
  padding: .5rem .85rem;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
}
.nav-list {
  list-style: none;
  margin: .75rem 0 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: .25rem;
}
.nav-list.is-open { display: flex; }
.nav-list a {
  display: block;
  padding: .5rem .25rem;
  color: var(--color-neutral-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(236,253,245,0.08);
}
.nav-list a[aria-current="page"] { color: var(--color-accent); font-weight: 600; }
.sidebar__footer { font-size: .85rem; color: rgba(236,253,245,0.7); margin: 0; }
.main { flex: 1; min-width: 0; }

@media (min-width: 900px) {
  .layout { flex-direction: row; }
  .sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 240px;
    flex-shrink: 0;
    padding: 2rem 1.5rem;
    justify-content: space-between;
  }
  .sidebar__nav .nav-toggle { display: none; }
  .nav-list { display: flex !important; margin-top: 1.5rem; }
  .logo img { height: 96px; }
}

/* === Hero === */
.hero {
  padding: 2.5rem 1.25rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 .75rem;
}
.hero h1 { max-width: 22ch; }
.hero__sub { font-size: 1.1rem; color: var(--color-muted); max-width: 55ch; margin-top: 1rem; }
.hero__cta { margin: 1.5rem 0 2rem; }
.hero__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
@media (min-width: 900px) {
  .hero { padding: 4rem 3rem 3rem; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .8rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
.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: #d95c0b; color: #fff; }

/* === Sections === */
.section { padding: 3rem 1.25rem; max-width: 1100px; margin: 0 auto; }
.section--muted { background: var(--color-neutral-light); max-width: none; margin: 0; padding: 3rem 1.25rem; }
.section__head { max-width: 60ch; margin-bottom: 2rem; }
.section__head p { color: var(--color-muted); }
@media (min-width: 900px) {
  .section { padding: 4rem 3rem; }
  .section--muted { padding: 4rem 3rem; }
}

.prose { max-width: 70ch; }
.prose p { font-size: 1.075rem; }

/* === Grid & cards === */
.grid { display: grid; gap: 1.25rem; 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: 1000px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff;
  border: 1px solid rgba(6,78,59,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card .icon { color: var(--color-primary); margin-bottom: .75rem; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--color-muted); margin: 0; }
a.card-link { display: block; text-decoration: none; color: inherit; transition: transform .18s ease, box-shadow .18s ease; }
a.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
a.card-link h3 { color: var(--color-primary); }

/* === Testimonial === */
.testimonial {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
  padding: 1rem;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--color-neutral-dark);
  font-style: italic;
}
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--color-primary);
  font-weight: 600;
  font-size: .95rem;
}

/* === CTA band === */
.cta-band { background: var(--color-primary); color: #fff; padding: 3rem 1.25rem; }
.cta-band__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); }
.cta-band .btn { margin-top: .5rem; }

/* === Contact band === */
.contact-band { background: var(--color-neutral-light); padding: 3rem 1.25rem; }
.contact-band__inner { max-width: 800px; margin: 0 auto; }
.contact-band__sub { color: var(--color-muted); }

/* === Contact form === */
.contact-form { max-width: 640px; display: grid; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row label { font-weight: 600; font-size: .95rem; }
.form-row input, .form-row textarea {
  border: 1px solid rgba(6,78,59,0.2);
  border-radius: 8px;
  padding: .7rem .85rem;
  font: inherit;
  background: #fff;
  color: inherit;
}
.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: .5rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--color-muted);
  flex-wrap: wrap;
}
.form-consent input { margin-top: .25rem; }

/* === FAQ === */
.faq { max-width: 720px; display: grid; gap: .5rem; }
.faq details {
  border: 1px solid rgba(6,78,59,0.15);
  border-radius: 8px;
  padding: .85rem 1rem;
  background: #fff;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-neutral-dark);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}
.faq details[open] summary { margin-bottom: .5rem; }
.faq p { color: var(--color-muted); margin: 0; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 3rem 1.25rem 1.5rem;
}
.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.3fr; }
}
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer__brand { font-family: var(--font-heading); font-size: 1.35rem; margin: 0 0 .25rem; color: #fff; }
.site-footer nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.site-footer address { font-style: normal; line-height: 1.6; }
.legal-links { margin-top: .75rem; font-size: .9rem; }
.site-footer__copy {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(236,253,245,0.15);
  font-size: .85rem;
  color: rgba(236,253,245,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.1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
  max-width: 640px;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 .8rem; font-size: .95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button {
  border: 1px solid rgba(236,253,245,0.35);
  background: transparent;
  color: var(--color-neutral-light);
  padding: .5rem .9rem;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
}
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner [data-cookie-accept]:hover { background: #d95c0b; }
.cookie-banner__prefs { margin-top: .9rem; display: grid; gap: .4rem; }
.cookie-banner__prefs label { display: flex; gap: .5rem; align-items: center; font-size: .9rem; }
.cookie-banner__prefs button { margin-top: .4rem; align-self: flex-start; }
