:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #F97316;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --color-text: #0f2a22;
  --color-muted: #4b6b60;
  --color-border: rgba(6, 78, 59, 0.14);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --shadow-sm: 0 4px 12px -6px rgba(6, 78, 59, 0.18);
  --shadow-md: 0 20px 40px -20px rgba(6, 78, 59, 0.25);
}

/* === Base === */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fdfefb;
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--color-neutral-dark); margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 254, 251, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .75rem 1.25rem; gap: 1rem; }
.logo { display: inline-block; }
.logo img { height: 72px; width: auto; }
.nav-toggle {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: .4rem .5rem;
  color: var(--color-neutral-dark);
  cursor: pointer;
}
.primary-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  gap: .75rem;
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: .35rem 0;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    border: 0;
    gap: 2rem;
  }
}

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

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

/* === Sections === */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--color-neutral-light); }
.section-head { margin-bottom: 2rem; }
.section-head.center { text-align: center; }
.section-sub { color: var(--color-muted); max-width: 60ch; font-size: 1.05rem; }
.section-intro { text-align: center; }
.section-intro .section-sub { margin: 0 auto 1.5rem; }

/* === Grid + cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card h3 { color: var(--color-neutral-dark); }
.card p { color: var(--color-muted); margin: 0; }
.card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--color-neutral-light);
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card-link { display: block; color: inherit; }
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); text-decoration: none; }
.card-link:hover h3 { color: var(--color-primary); }

/* === Split section === */
.split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* === Testimonial === */
.testimonial-section { background: var(--color-neutral-light); }
.quote {
  margin: 0 auto;
  max-width: 62ch;
  text-align: center;
  padding: 1rem 0;
}
.quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
  color: var(--color-neutral-dark);
  font-style: italic;
  margin-bottom: 1rem;
}
.quote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
  font-size: .95rem;
}

/* === CTA band === */
.cta-band { background: var(--color-primary); color: #fff; padding: 3rem 0; }
.cta-band h2 { color: #fff; margin: 0 0 .5rem; }
.cta-band p { color: rgba(255,255,255,0.92); margin: 0; }
.cta-band-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
@media (min-width: 700px) {
  .cta-band-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* === Article === */
.article {
  max-width: 65ch;
  margin: 3rem auto;
  padding: 0 1.25rem;
}
.article-head { margin-bottom: 1.5rem; }
.article-head h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
.article-sub { font-size: 1.2rem; color: var(--color-muted); }
.article-hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 2rem 0;
}
.article p { font-size: 1.1rem; line-height: 1.75; margin-bottom: 1.4rem; }
.back-link { margin-top: 2.5rem; }
.back-link a { font-weight: 600; }

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 3rem; }
}
.contact-info address { font-style: normal; line-height: 1.9; color: var(--color-muted); }
.contact-info strong { color: var(--color-neutral-dark); }
.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.contact-form h2 { margin-top: 0; }
.contact-form label { font-weight: 600; font-size: .9rem; color: var(--color-neutral-dark); }
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: .7rem .85rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: #fdfefb;
  color: var(--color-text);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.18);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-weight: 400;
  font-size: .85rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.form-consent input { margin-top: .25rem; }
.contact-form .btn { align-self: flex-start; margin-top: .5rem; }

/* === Thank you === */
.thankyou { padding: 5rem 0; }
.thankyou .lede { margin-left: auto; margin-right: auto; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: #d4ede2;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; margin: 0 0 .75rem; font-size: 1rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.site-footer nav { display: flex; flex-direction: column; gap: .4rem; }
.site-footer a { color: #d4ede2; }
.site-footer a:hover { color: #fff; }
.site-footer address { font-style: normal; line-height: 1.7; }
.footer-logo img { height: 64px; margin-bottom: .5rem; filter: brightness(1.2); }
.legal-links { margin-top: 1rem; font-size: .85rem; }
.copyright { text-align: center; margin: 1.5rem 0 0; font-size: .85rem; color: rgba(255,255,255,0.65); }

/* === 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.4);
  max-width: 640px;
  margin: 0 auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .9rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button {
  font: inherit;
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
  font-size: .85rem;
  font-weight: 500;
}
.cookie-banner__actions button[data-cookie-accept] {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .85rem; }
.cookie-banner__prefs button {
  align-self: flex-start;
  margin-top: .5rem;
  padding: .5rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
}
