/* === Tokens === */
:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #FBBF24;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --color-text: #0f2e24;
  --color-muted: #4b6b60;
  --color-border: rgba(6, 78, 59, 0.12);
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 4px 14px -8px rgba(6, 78, 59, 0.25);
  --shadow-lg: 0 30px 60px -30px rgba(6, 78, 59, 0.35);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); }
a:hover { color: var(--color-neutral-dark); }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-neutral-dark);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 780px; }
.section { padding-block: 4rem; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-sub { color: var(--color-muted); font-size: 1.05rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 1rem;
}

/* === Header === */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky; top: 0; z-index: 100;
}
.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; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--color-neutral-dark); display: block; }
.primary-nav { display: none; }
.primary-nav ul { list-style: none; padding: 0; margin: 0; }
.primary-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--color-border); padding: 1rem 1.25rem; }
.primary-nav.is-open ul { display: flex; flex-direction: column; gap: 0.75rem; }
.primary-nav a { text-decoration: none; color: var(--color-neutral-dark); font-weight: 500; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

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

/* === Hero stacked === */
.hero { padding-block: 3.5rem 4rem; background: linear-gradient(180deg, var(--color-neutral-light) 0%, #fff 100%); }
.hero-stacked__inner { max-width: 780px; margin: 0 auto; text-align: left; }
.hero-stacked h1 { margin-bottom: 1.5rem; }
.hero-stacked__image { margin: 2.5rem 0 2rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-stacked__image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.hero-stacked__sub { font-size: 1.15rem; color: var(--color-muted); margin-bottom: 1.75rem; }
.cta-wrap { margin: 0; }

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

/* === Intro === */
.intro { padding-block: 3rem; }
.intro h2 { margin-bottom: 1rem; }
.intro p { font-size: 1.08rem; color: var(--color-text); }

/* === Grid / cards === */
.grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; 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; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.card .icon { color: var(--color-primary); margin-bottom: 0.75rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin: 0; font-size: 0.98rem; }

/* === Testimonial === */
.testimonial { background: var(--color-neutral-light); }
.testimonial blockquote {
  margin: 0; text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  color: var(--color-neutral-dark);
}
.testimonial blockquote p { margin: 0 0 1rem; }
.testimonial cite {
  display: block; font-family: var(--font-body);
  font-style: normal; font-size: 0.95rem;
  color: var(--color-muted); font-weight: 500;
}

/* === CTA band === */
.cta-band { background: var(--color-primary); color: #fff; padding: 3.5rem 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-band .contact-inline { font-size: 0.98rem; }
.cta-band .contact-inline a { color: #fff; text-decoration: underline; }

/* === FAQ === */
.faq details {
  border-top: 1px solid var(--color-border);
  padding: 1rem 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--color-border); }
.faq summary {
  cursor: pointer; font-family: var(--font-heading); font-weight: 600;
  font-size: 1.1rem; color: var(--color-neutral-dark);
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--color-primary); font-size: 1.5rem; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.75rem; color: var(--color-muted); }

/* === Gallery === */
.gallery-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* === Form === */
.form-section h2 { margin-bottom: 0.75rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-weight: 600; font-size: 0.95rem; color: var(--color-neutral-dark); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff; color: var(--color-text);
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--color-primary); outline-offset: 1px; border-color: var(--color-primary);
}
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--color-muted); }
.form-consent input { margin-top: 0.25rem; }

/* === Map === */
.map-block {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--color-neutral-light);
}
.map-block img { width: 100%; height: 100%; object-fit: cover; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: #d9ece3; padding: 3rem 0 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.3fr; } }
.footer-col h4 { color: #fff; font-family: var(--font-heading); margin-bottom: 0.75rem; font-size: 1.05rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col a { color: #d9ece3; text-decoration: none; }
.footer-col a:hover { color: var(--color-accent); }
.footer-col address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { margin-top: 0.5rem; font-size: 0.9rem; }
.footer-logo img { height: 60px; }
.tagline { color: #d9ece3; font-style: italic; margin-top: 0.5rem; font-size: 0.98rem; }
.copyright { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.88rem; color: #a8c7bb; text-align: center; }

/* === 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-lg);
  box-shadow: var(--shadow-lg); max-width: 620px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; font-size: 0.95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  padding: 0.55rem 1rem; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25); background: transparent; color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner button[data-cookie-accept] { background: var(--color-accent); color: var(--color-neutral-dark); border-color: var(--color-accent); }
.cookie-banner button:hover { filter: brightness(1.1); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; padding-top: 0.9rem; border-top: 1px solid rgba(255,255,255,0.15); }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; font-size: 0.9rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; background: var(--color-primary); border-color: var(--color-primary); }
