:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #FBBF24;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --color-text: #0F2A22;
  --color-muted: #4B6A5F;
  --color-border: rgba(6, 78, 59, 0.14);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --radius: 10px;
  --shadow: 0 20px 40px -24px rgba(6, 78, 59, 0.25);
}

/* === Reset === */
*, *::before, *::after { 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: #FBFFFD;
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === Typography === */
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-neutral-dark); font-weight: 600; line-height: 1.2; margin: 0 0 0.75rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 600; color: var(--color-primary); margin: 0 0 1rem; }
.lede { font-size: 1.15rem; color: var(--color-muted); max-width: 60ch; }

/* === Layout === */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.narrow    { max-width: 720px; margin: 0 auto; }
.section   { padding-block: 3.5rem; }
.section-quiet { background: var(--color-neutral-light); }
.section-head { text-align: center; margin: 0 auto 2.5rem; max-width: 60ch; }
.section-sub  { color: var(--color-muted); margin: 0; }

/* === Header === */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--color-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.9rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; 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 { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid var(--color-border); }
.primary-nav.is-open { display: block; }
.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; background: transparent; border: 1px solid var(--color-border); border-radius: 8px; cursor: pointer; padding: 0 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; }

/* === Hero (stacked) === */
.hero { padding-block: 2.5rem 3rem; }
.hero-inner { max-width: 780px; margin: 0 auto; }
.hero h1 { margin-top: 0.25rem; }
.hero-figure { margin: 2rem 0; }
.hero-figure img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* === Buttons === */
.btn { display: inline-block; padding: 0.85rem 1.5rem; font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-neutral-dark); }
.btn-accent { background: var(--color-accent); color: var(--color-neutral-dark); }
.btn-accent:hover { background: #F59E0B; }
.btn-ghost { background: transparent; color: var(--color-neutral-light); border-color: rgba(236, 253, 245, 0.35); }

/* === Grids & cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 6px 16px -14px rgba(6,78,59,0.35); }
.card h3 { margin-top: 0.75rem; }
.card p { color: var(--color-muted); margin-bottom: 0; }
.icon { color: var(--color-primary); }
.card-link { display: block; color: inherit; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; }
.card-link:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 18px 32px -22px rgba(6,78,59,0.35); border-color: var(--color-secondary); }

/* === Testimonial === */
.testimonial { margin: 0 auto; text-align: center; max-width: 60ch; }
.testimonial p { font-family: var(--font-heading); font-size: 1.35rem; line-height: 1.5; color: var(--color-neutral-dark); font-style: italic; }
.testimonial cite { display: block; margin-top: 1rem; font-style: normal; color: var(--color-muted); font-size: 0.95rem; letter-spacing: 0.02em; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: var(--color-neutral-light); padding-block: 3rem; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(236,253,245,0.9); }
.cta-band .contact-line a { color: #fff; text-decoration: underline; }
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }

/* === Contact === */
.contact-grid { align-items: start; }
.contact-address { font-style: normal; line-height: 1.7; margin-bottom: 1.5rem; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table caption { text-align: left; font-weight: 600; margin-bottom: 0.5rem; color: var(--color-neutral-dark); }
.hours-table th, .hours-table td { padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); text-align: left; }
.hours-table td { color: var(--color-muted); }

/* === Form === */
.contact-form label { display: block; font-weight: 500; font-size: 0.95rem; margin: 0.9rem 0 0.35rem; color: var(--color-neutral-dark); }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.7rem 0.85rem; font-family: inherit; font-size: 1rem; border: 1px solid var(--color-border); border-radius: 8px; background: #fff; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 400; font-size: 0.9rem; color: var(--color-muted); margin: 1rem 0 1.25rem; }
.form-consent input { width: auto; margin-top: 0.2rem; }

/* === FAQ === */
.faq details { border: 1px solid var(--color-border); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 0.75rem; background: #fff; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--color-neutral-dark); font-family: var(--font-heading); font-size: 1.08rem; }
.faq details[open] { border-color: var(--color-secondary); }
.faq p { margin: 0.75rem 0 0; color: var(--color-muted); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); margin-top: 3rem; padding: 3rem 0 1.5rem; }
.site-footer a { color: var(--color-neutral-light); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer-heading { font-size: 1rem; font-family: var(--font-heading); color: #fff; margin: 0 0 0.75rem; }
.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; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem; }
.legal-links a { text-decoration: underline; opacity: 0.85; }
.tagline { color: rgba(236,253,245,0.75); margin-top: 0.75rem; }
.logo-footer img { height: 60px; }
.copyright { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(236,253,245,0.15); color: rgba(236,253,245,0.65); font-size: 0.85rem; }

/* === 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.15rem 1.25rem; border-radius: 12px; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.35); max-width: 620px; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.8rem; font-size: 0.92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn { padding: 0.55rem 1rem; font-size: 0.88rem; }
.cookie-banner__prefs { margin-top: 0.9rem; display: grid; gap: 0.4rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; }
.cookie-banner__prefs .btn { margin-top: 0.5rem; justify-self: start; }

/* === Responsive === */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  body { font-size: 18px; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: block; position: static; padding: 0; background: transparent; border: 0; }
  .primary-nav ul { flex-direction: row; gap: 1.4rem; }
  .section { padding-block: 5rem; }
  .hero { padding-block: 4rem 5rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.3fr; }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .container { padding: 0 2rem; }
}
