:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #F97316;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --color-bg: #FFFFFF;
  --color-text: #0F2E24;
  --color-muted: #4B6A5D;
  --color-border: rgba(6, 78, 59, 0.14);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow-sm: 0 6px 20px -12px rgba(6, 78, 59, 0.35);
  --shadow-md: 0 20px 50px -30px rgba(6, 78, 59, 0.5);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  font-weight: 400;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-primary);
  font-weight: 700;
  margin: 0 0 1rem;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-neutral-dark);
}
.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--color-border); }
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  font-size: 0.98rem;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav .nav-cta {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}
.primary-nav .nav-cta:hover { text-decoration: none; background: var(--color-neutral-dark); }

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

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-neutral-dark); border-color: var(--color-neutral-dark); }
.btn-accent { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn-accent:hover { background: #d95d0b; border-color: #d95d0b; }
.btn-outline { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-neutral-dark); }
.btn-outline:hover { background: var(--color-neutral-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--color-neutral-light); border-color: transparent; text-decoration: underline; }

/* === Hero (centered) === */
.hero {
  padding-block: 3.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--color-neutral-light) 0%, #fff 100%);
}
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero__sub {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 52ch;
  margin: 0 auto 1.75rem;
}
.hero__cta { margin-block: 1.5rem 2.5rem; }
.hero__figure {
  margin: 2.5rem auto 0;
  max-width: 1000px;
  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: 768px) {
  .hero { padding-block: 6rem; }
}

/* === Sections === */
.section { padding-block: 4rem; }
.section--narrow > .container { max-width: 760px; }
.section--narrow p { font-size: 1.075rem; }
.section--tinted { background: var(--color-neutral-light); }
.section__sub {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin: 0 0 2rem;
  max-width: 60ch;
}
.section--narrow .section__sub { margin-inline: auto; }
.section--narrow h2 { text-align: left; }
@media (min-width: 768px) {
  .section { padding-block: 5.5rem; }
}

/* === Grids & cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3, .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;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card h3 { color: var(--color-neutral-dark); margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin: 0; font-size: 0.98rem; line-height: 1.6; }
.icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  margin-bottom: 0.9rem;
}

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

/* === Testimonial === */
.testimonial {
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--color-neutral-dark);
  margin-bottom: 1rem;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.92rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === CTA band === */
.cta-band {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding-block: 4rem;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(236, 253, 245, 0.85); max-width: 55ch; margin-inline: auto; }
.cta-band .btn { margin-top: 0.75rem; }

/* === Contact band (about page) === */
.contact-band { display: grid; gap: 2rem; }
.contact-band a { color: var(--color-primary); }

/* === Contact form === */
.contact-form { display: grid; gap: 1.15rem; margin-top: 1.5rem; }
.form-row { display: grid; gap: 0.4rem; }
.form-row label { font-weight: 700; font-size: 0.92rem; color: var(--color-neutral-dark); }
.form-row input, .form-row select, .form-row textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
}
.form-row input:focus, .form-row select: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);
  flex-wrap: wrap;
}
.form-consent input { margin-top: 0.3rem; }
.contact-form .btn { justify-self: start; }

/* === Map block === */
.map-block { display: grid; gap: 1.5rem; }
.map-block figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-block img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
@media (min-width: 900px) { .map-block { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 2.5rem; } }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(236, 253, 245, 0.85);
  padding-block: 3rem 1.5rem;
  margin-top: 3rem;
}
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; margin: 0 0 0.5rem; }
.footer-title { font-weight: 700; color: #fff; margin: 0 0 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.85rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.site-footer address { font-style: normal; line-height: 1.7; }
.footer-legal { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(236, 253, 245, 0.15); }
.footer-copy { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(236, 253, 245, 0.15); font-size: 0.85rem; text-align: center; }
.footer-copy p { margin: 0; }

/* === 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.35rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.35);
  max-width: 560px;
  margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; font-size: 0.92rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn { padding: 0.55rem 1rem; font-size: 0.85rem; }
.cookie-banner__prefs { display: grid; gap: 0.5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(236, 253, 245, 0.15); }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; font-size: 0.9rem; }
.cookie-banner__prefs .btn { justify-self: start; margin-top: 0.25rem; }
