/* === Tokens === */
:root {
  --color-primary: #15803D;
  --color-secondary: #22C55E;
  --color-accent: #EC4899;
  --color-neutral-dark: #14532D;
  --color-neutral-light: #F0FDF4;
  --color-text: #14532D;
  --color-muted: #4b6b58;
  --color-border: rgba(20, 83, 45, 0.12);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --radius: 12px;
  --shadow-soft: 0 20px 40px -25px rgba(20, 83, 45, 0.35);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-neutral-light);
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
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.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 1.25rem;
}
.container--narrow { max-width: 780px; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn--primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn--primary:hover { background: var(--color-neutral-dark); color: var(--color-neutral-light); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #be2e78; color: #fff; }

/* === Header === */
.site-header {
  background: var(--color-neutral-light);
  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;
  gap: 1rem;
  padding-block: 0.75rem;
}
.logo img { height: 72px; width: auto; display: block; }
.logo { display: inline-flex; align-items: center; text-decoration: none; line-height: 0; }
.logo--footer img { height: 64px; }
.primary-nav { display: none; gap: 1.25rem; flex-wrap: wrap; }
.primary-nav a {
  color: var(--color-neutral-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.4rem 0.2rem;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] {
  border-bottom-color: var(--color-accent);
}
.nav-toggle {
  background: none; border: 1px solid var(--color-border);
  color: var(--color-neutral-dark);
  padding: 0.5rem; border-radius: 8px; cursor: pointer;
}
.primary-nav.is-open { display: flex; flex-direction: column; width: 100%; padding-top: 1rem; }

/* === Hero (centered) === */
.hero {
  text-align: center;
  padding-block: 3.5rem 2.5rem;
}
.hero h1 {
  max-width: 28ch;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.hero__sub {
  max-width: 52ch;
  margin: 0 auto 1.75rem;
  color: var(--color-muted);
  font-size: 1.1rem;
}
.hero__image {
  margin: 2.5rem auto 0;
  max-width: 1100px;
}
.hero__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* === Sections === */
.section { padding-block: 3.5rem; }
.section--narrow .container { max-width: 780px; }
.section--narrow { text-align: left; }
.section--tint { background: #E9FBEF; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head h2 { margin-bottom: 0.5rem; }
.section-head p { color: var(--color-muted); }

.split { display: grid; gap: 2.5rem; }
.split__image img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-soft); }

/* === 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.75rem;
  transition: transform .2s ease, box-shadow .2s ease;
  display: block;
}
.card__icon {
  color: var(--color-primary);
  margin-bottom: 0.9rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin: 0; font-size: 0.98rem; }
.card-link { text-decoration: none; color: inherit; }
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }

/* === Testimonial === */
.section--quote { background: var(--color-neutral-dark); color: var(--color-neutral-light); }
.section--quote blockquote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-heading);
}
.section--quote blockquote p {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  color: var(--color-neutral-light);
  margin-bottom: 1.25rem;
}
.section--quote cite {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding-block: 3.5rem;
  text-align: center;
}
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(240,253,244,0.9); max-width: 56ch; margin: 0 auto 1.75rem; }

/* === Contact === */
.contact-grid { display: grid; gap: 2.5rem; }
.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.contact-form label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-neutral-dark);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-neutral-light);
  color: var(--color-text);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1px;
}
.contact-form textarea { resize: vertical; }
.contact-form button { margin-top: 1.25rem; width: 100%; }
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--color-muted);
}
.form-consent input { width: auto; margin-top: 0.25rem; }

.hours { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours th, .hours td { padding: 0.5rem 0.25rem; text-align: left; border-bottom: 1px solid var(--color-border); font-size: 0.95rem; }
.hours th { font-weight: 700; color: var(--color-neutral-dark); }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-neutral-dark);
  font-size: 1.05rem;
  list-style: none;
  padding-right: 1.5rem;
  position: relative;
}
.faq summary::after {
  content: '+';
  position: absolute; right: 0; top: 0;
  font-size: 1.5rem; line-height: 1;
  color: var(--color-primary);
}
.faq details[open] summary::after { content: '–'; }
.faq details p { margin-top: 0.75rem; color: var(--color-muted); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding-top: 3rem;
  margin-top: 3rem;
}
.site-footer a { color: var(--color-secondary); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2rem;
}
.footer-tagline { color: rgba(240,253,244,0.75); font-style: italic; }
.site-footer h4 { color: var(--color-neutral-light); font-size: 1.1rem; margin-bottom: 0.75rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.footer-legal { margin-top: 1rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-legal li { margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(240,253,244,0.15);
  padding-block: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(240,253,244,0.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;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.4);
  max-width: 640px;
  margin: 0 auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.92rem; }
.cookie-banner__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-banner__actions button {
  border: 1px solid var(--color-secondary);
  background: transparent;
  color: var(--color-neutral-light);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}
.cookie-banner__actions button[data-cookie-accept] {
  background: var(--color-accent); border-color: var(--color-accent); color: #fff;
}
.cookie-banner__prefs { margin-top: 1rem; display: grid; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs button {
  margin-top: 0.5rem;
  background: var(--color-primary);
  color: var(--color-neutral-light);
  border: none;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

/* === Responsive === */
@media (min-width: 640px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; }
  .split { grid-template-columns: 1.1fr 1fr; align-items: center; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; align-items: start; }
}
@media (min-width: 768px) {
  body { font-size: 17px; }
  .logo img { height: 96px; }
  .logo--footer img { height: 80px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
  .hero { padding-block: 6rem 3rem; }
  .section { padding-block: 5rem; }
  .cta-band { padding-block: 5rem; }
}
@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
