:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #F97316;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --color-text: #0F2E24;
  --color-muted: #4A6B60;
  --color-border: rgba(6, 78, 59, 0.14);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --radius: 12px;
  --max-width: 1180px;
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
  font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover, a:focus { 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 0.6em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.container--narrow { max-width: 760px; }
.section { padding-block: 3.5rem; }
.section--muted { background: var(--color-neutral-light); }
.section__head { text-align: center; margin-bottom: 2.5rem; }
.section__sub {
  color: var(--color-muted);
  max-width: 56ch;
  margin-inline: auto;
  font-size: 1.05rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--color-primary);
  font-weight: 700;
  margin: 0 0 1rem;
}

@media (min-width: 768px) {
  .section { padding-block: 5.5rem; }
  .container { padding-inline: 2rem; }
}

/* === Header === */
.site-header {
  border-bottom: 1px solid var(--color-border);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}
.logo img {
  height: 72px;
  width: auto;
  display: block;
}
.logo:hover, .logo:focus { text-decoration: none; }
.nav-toggle {
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle__bar {
  width: 26px; height: 2px; background: var(--color-neutral-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.primary-nav {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 1.25rem 1.5rem;
}
.primary-nav.is-open { display: block; }
.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.primary-nav a {
  display: block;
  padding: 0.6rem 0.4rem;
  color: var(--color-neutral-dark);
  font-weight: 400;
  border-bottom: 1px solid var(--color-border);
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); font-weight: 700; }

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

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn:hover, .btn:focus { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  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: #ffffff;
  border-color: var(--color-accent);
}
.btn-accent:hover { background: #E5620A; border-color: #E5620A; }
.btn-ghost {
  background: transparent;
  color: var(--color-neutral-light);
  border-color: rgba(236, 253, 245, 0.4);
}
.btn-ghost:hover { background: rgba(236, 253, 245, 0.1); }

/* === Hero (centered) === */
.hero { padding-block: 3.5rem 2rem; text-align: center; }
.hero .container { max-width: 960px; }
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero__sub {
  max-width: 52ch;
  margin: 1.25rem auto 2rem;
  color: var(--color-muted);
  font-size: 1.15rem;
}
.hero__cta { margin: 0 0 2.5rem; }
.hero__figure {
  margin: 2rem 0 0;
}
.hero__figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .hero { padding-block: 6rem 3rem; }
}

/* === Cards === */
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card h3 { margin: 0.25rem 0 0.4rem; }
.card p { color: var(--color-muted); font-size: 0.98rem; margin: 0; }
.card .icon {
  width: 28px; height: 28px;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}
a.card-link {
  color: inherit;
  text-decoration: none;
}
a.card-link:hover, a.card-link:focus {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -25px rgba(6, 78, 59, 0.35);
  text-decoration: none;
}

/* === Testimonial === */
.testimonial {
  border: 0;
  margin: 0;
  padding: 1rem 0;
  text-align: center;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.4;
  color: var(--color-neutral-dark);
  margin: 0 0 1rem;
  font-style: italic;
}
.testimonial cite {
  font-style: normal;
  color: var(--color-muted);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* === CTA band === */
.cta-band {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding-block: 4rem;
}
.cta-band__inner { text-align: center; max-width: 720px; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(236, 253, 245, 0.85); font-size: 1.05rem; }

/* === Contact === */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-grid address { font-style: normal; margin-bottom: 1.25rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 400;
}
.hours th { color: var(--color-neutral-dark); font-weight: 700; }

/* === Form === */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: flex; flex-direction: column; gap: 0.35rem; }
.form-row label { font-weight: 700; font-size: 0.92rem; color: var(--color-neutral-dark); }
.form-row input,
.form-row textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-text);
  width: 100%;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.45;
}
.form-consent input { margin-top: 0.25rem; }

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

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(236, 253, 245, 0.85);
  padding-block: 3rem 1.5rem;
  margin-top: 2rem;
}
.site-footer h3 {
  color: var(--color-neutral-light);
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: var(--color-secondary); }
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; }
}
.logo--footer img { height: 60px; filter: brightness(1.6); }
.tagline { font-family: var(--font-heading); font-style: italic; color: rgba(236, 253, 245, 0.75); margin-top: 0.75rem; }
.footer-nav, .legal-nav {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.legal-nav { margin-top: 1rem; font-size: 0.9rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 0.5rem; }
.copyright {
  border-top: 1px solid rgba(236, 253, 245, 0.15);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  font-size: 0.88rem;
  text-align: center;
  color: rgba(236, 253, 245, 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 1.5rem;
  border-radius: 12px;
  max-width: 720px;
  margin-inline: auto;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.5);
  font-size: 0.95rem;
}
.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__actions .btn { padding: 0.55rem 1.1rem; font-size: 0.88rem; }
.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.6rem;
}
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; }
.cookie-banner__prefs .btn { align-self: flex-start; margin-top: 0.5rem; }
