:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #0891B2;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --color-text: #0f2e26;
  --color-muted: #4a5f58;
  --color-border: rgba(6, 78, 59, 0.12);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow-sm: 0 4px 16px -8px rgba(6, 78, 59, 0.2);
  --shadow-md: 0 20px 45px -25px rgba(6, 78, 59, 0.35);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-neutral-dark); text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-neutral-dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1.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: 760px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: var(--color-neutral-light); opacity: 0.9; }

.lede { font-size: 1.075rem; color: var(--color-text); }

/* === Header === */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  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 { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.logo:hover { text-decoration: none; }

.primary-nav { display: flex; align-items: center; }
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: 2rem;
}
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding-block: 0.5rem;
}
.primary-nav a[aria-current="page"] {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}
.nav-toggle {
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-neutral-dark);
  display: block;
}
.primary-nav.is-open ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1rem 1.5rem;
  gap: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

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

/* === Hero fullscreen === */
.hero-fs {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-neutral-light);
}
.hero-fs__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-fs__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(6, 78, 59, 0.75), rgba(6, 78, 59, 0.45) 50%, rgba(6, 78, 59, 0.7));
  z-index: 1;
}
.hero-fs__inner {
  position: relative;
  z-index: 2;
  padding-block: 5rem;
  max-width: 820px;
}
.hero-fs h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-fs__sub {
  font-size: 1.15rem;
  color: var(--color-neutral-light);
  margin-bottom: 2rem;
  max-width: 60ch;
}

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

/* === Grids & Cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card h3 { margin-top: 0.5rem; }
.card p { color: var(--color-muted); font-size: 0.975rem; margin-bottom: 0; }
.card-link { color: inherit; display: block; }
.card-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  border-color: var(--color-primary);
}
.card .icon { color: var(--color-accent); margin-bottom: 0.75rem; }

/* === Testimonial === */
.testimonial-section { background: #fff; }
.testimonial {
  margin: 0;
  text-align: center;
  border-left: 3px solid var(--color-accent);
  padding: 1.5rem 0 1.5rem 2rem;
  text-align: left;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-neutral-dark);
  margin-bottom: 1rem;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  padding-block: 4rem;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--color-neutral-light); max-width: 60ch; margin-inline: auto; margin-bottom: 1.75rem; }
.contact-inline { font-size: 0.95rem; }
.contact-inline a { color: #fff; text-decoration: underline; }

/* === Split section === */
.split__inner { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; }
.split__media img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }

/* === Article === */
.article { max-width: 65ch; margin-inline: auto; padding: 3rem 1rem 4rem; }
.article__head { margin-bottom: 2rem; }
.article__head 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); font-family: var(--font-heading); font-style: italic; }
.article__hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; margin-block: 2rem; }
.article p { font-size: 1.125rem; line-height: 1.75; margin-block: 1.25rem; }
.article__foot { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--color-border); }
.back-link { font-weight: 500; }

/* === Thank-you === */
.thank-you { padding-block: 5rem; }

/* === Contact form === */
.contact-form { display: grid; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.9rem; font-weight: 500; color: var(--color-neutral-dark); }
.field input, .field textarea {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--color-text);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--color-muted); }
.form-consent input { margin-top: 0.25rem; }
.contact-form .btn { justify-self: start; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding-block: 3rem 1.5rem;
  margin-top: 4rem;
}
.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(236, 253, 245, 0.15);
}
.site-footer h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: #fff; }
.site-footer address { font-style: normal; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.site-footer .tagline { color: var(--color-neutral-light); opacity: 0.8; font-size: 0.95rem; }
.logo--footer img { height: 60px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.legal-links { margin-top: 1rem; font-size: 0.875rem; }
.copyright {
  padding-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* === 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;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5);
  max-width: 520px;
  margin-inline: auto;
  font-size: 0.9rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  background: transparent;
  border: 1px solid rgba(236, 253, 245, 0.4);
  color: var(--color-neutral-light);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}
.cookie-banner [data-cookie-accept] {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.cookie-banner button:hover { opacity: 0.85; }
.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(236, 253, 245, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs [data-cookie-save] { margin-top: 0.5rem; align-self: flex-start; }

/* === Responsive === */
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .logo img { height: 96px; }
  .primary-nav ul { display: flex; flex-direction: row; position: static; padding: 0; box-shadow: none; background: transparent; border: 0; }
  .primary-nav.is-open ul { flex-direction: row; position: static; padding: 0; box-shadow: none; background: transparent; }
  .nav-toggle { display: none; }
  .section { padding-block: 5.5rem; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .split__inner { grid-template-columns: 1.15fr 1fr; gap: 4rem; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .hero-fs__inner { padding-block: 7rem; }
  .testimonial { padding-left: 3rem; }
  .testimonial p { font-size: 1.6rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
}
