:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #FBBF24;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --color-text: #0f2a24;
  --color-muted: #4b6b62;
  --color-border: rgba(6, 78, 59, 0.12);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --radius: 12px;
  --shadow-sm: 0 4px 16px -8px rgba(6, 78, 59, 0.18);
  --shadow-md: 0 20px 40px -24px rgba(6, 78, 59, 0.35);
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
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;
  color: var(--color-neutral-dark);
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; color: var(--color-neutral-dark); }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}
.lede { font-size: 1.125rem; color: var(--color-muted); max-width: 52ch; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1;
}
.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: var(--color-neutral-dark); }
.btn--accent:hover { background: #f0a900; text-decoration: none; }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn--ghost:hover { background: var(--color-neutral-light); text-decoration: none; }

/* === 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: 1rem;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  background: transparent; border: 0; color: var(--color-neutral-dark);
  padding: 0.5rem; cursor: pointer;
}
.primary-nav { display: none; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  text-decoration: none;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav.is-open {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; padding: 1rem 1.25rem; gap: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

/* === Hero split === */
.hero { padding-block: 3rem; }
.hero__grid { display: grid; gap: 2.5rem; align-items: center; }
.hero__text h1 { margin-bottom: 1.25rem; }
.hero__media img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* === Sections === */
.section { padding-block: 4rem; }
.section--tall { padding-block: 6rem 3rem; }
.section--tinted { background: var(--color-neutral-light); }
.section__head { text-align: center; margin-bottom: 2.5rem; max-width: 720px; margin-inline: auto; }
.section__sub { color: var(--color-muted); font-size: 1.05rem; }

/* === Grid + 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;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card__icon { color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin-bottom: 0; font-size: 0.95rem; }

/* === Split media/text === */
.split { display: grid; gap: 2.5rem; align-items: center; }
.split__media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* === Quote === */
.quote {
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-neutral-dark);
  line-height: 1.4;
  max-width: 60ch;
}
.quote cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 700;
}

/* === 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: rgba(255,255,255,0.9); max-width: 60ch; margin-inline: auto; }
.cta-band__contact { font-family: var(--font-body); font-size: 0.95rem; margin-block: 1rem 1.5rem; }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.faq summary {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-neutral-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 0;
  font-size: 1.4rem; color: var(--color-primary);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 0.75rem; color: var(--color-muted); }

/* === Form === */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--color-neutral-dark); }
.field input, .field select, .field 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;
  color: var(--color-text);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-color: var(--color-primary);
}
.form-consent {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.85rem; color: var(--color-muted);
  line-height: 1.4;
}
.form-consent input { margin-top: 0.2rem; flex: 0 0 auto; }

/* === Map placeholder === */
.map-block {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 3rem 1rem;
  text-align: center;
  color: var(--color-primary);
}
.map-block p { color: var(--color-muted); font-size: 0.9rem; margin: 1rem 0 0; }
.map-block svg { margin-inline: auto; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(255,255,255,0.85);
  padding-block: 3rem 1.5rem;
  margin-top: 3rem;
}
.site-footer h4 { color: #fff; margin-bottom: 1rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer__grid ul { list-style: none; padding: 0; margin: 0; }
.footer__grid li { margin-bottom: 0.5rem; }
.footer__grid a { color: rgba(255,255,255,0.85); }
.footer__grid a:hover { color: var(--color-accent); }
.footer__tag { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 0.75rem; }
.footer__legal { margin-top: 1.25rem; font-size: 0.85rem; }
.footer__copy {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem; margin-top: 2rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-align: center;
}
.logo--footer img { height: 60px; }
.site-footer address { font-style: normal; font-size: 0.9rem; line-height: 1.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: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
  max-width: 640px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.9rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn { padding: 0.6rem 1rem; font-size: 0.85rem; }
.cookie-banner__actions .btn--ghost { color: var(--color-neutral-light); border-color: rgba(236,253,245,0.3); }
.cookie-banner__actions .btn--ghost:hover { background: rgba(255,255,255,0.08); }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs .btn { align-self: flex-start; margin-top: 0.5rem; }

/* === Responsive === */
@media (min-width: 640px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex; gap: 2rem; position: static;
    background: transparent; padding: 0; box-shadow: none; border: 0;
    flex-direction: row;
  }
  .hero { padding-block: 5rem; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .section { padding-block: 6rem; }
  .footer__grid { grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; }
}
@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
