/* === Tokens === */
:root {
  --color-primary: #15803D;
  --color-secondary: #22C55E;
  --color-accent: #0369A1;
  --color-neutral-dark: #14532D;
  --color-neutral-light: #F0FDF4;
  --color-text: #1a2e22;
  --color-muted: #4b6a58;
  --color-border: rgba(20, 83, 45, 0.14);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 20px 50px -30px rgba(20, 83, 45, 0.35);
  --shadow-hero: 0 40px 80px -40px rgba(20, 83, 45, 0.45);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: #fdfefb;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-neutral-dark); font-weight: 600; line-height: 1.2; letter-spacing: -0.005em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin: 0 0 1rem; }
h3 { font-size: 1.3rem; margin: 0 0 .5rem; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 760px; margin-inline: auto; }
.section { padding-block: 3.5rem; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-muted); }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; color: var(--color-primary); margin: 0 0 1rem; font-family: var(--font-body); }
.muted { color: var(--color-muted); font-size: .95rem; }

/* === Header === */
.site-header {
  background: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(1.2);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .9rem; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: var(--color-neutral-dark); display: block; }
.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1rem 1.25rem 1.25rem; border-bottom: 1px solid var(--color-border); }
.primary-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.primary-nav a { display: block; padding: .6rem .25rem; color: var(--color-neutral-dark); font-weight: 600; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

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

/* === Buttons === */
.btn { display: inline-block; padding: .85rem 1.6rem; border-radius: 999px; font-weight: 700; font-size: .95rem; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, background .2s ease; font-family: var(--font-body); }
.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: #fff; }
.btn-accent:hover { background: #024f7a; }
.btn-ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn-ghost:hover { background: rgba(20,83,45,0.06); }

/* === Hero card === */
.hero { background: linear-gradient(160deg, #e7f8ec 0%, #d4f0dc 60%, #c8ecd2 100%); padding-block: 3rem 4rem; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: -20% -10% auto auto; width: 60vw; height: 60vw; background: radial-gradient(circle at center, rgba(34,197,94,0.18), transparent 60%); pointer-events: none; }
.hero-card__inner { background: #fff; border-radius: var(--radius-lg); padding: 2.25rem 1.5rem; box-shadow: var(--shadow-hero); max-width: 880px; margin-inline: auto; position: relative; }
.hero-card__inner h1 { color: var(--color-neutral-dark); }
.hero .lede { color: var(--color-muted); font-size: 1.15rem; max-width: 60ch; margin-bottom: 1.75rem; }
.hero-actions { margin: 0 0 2rem; }
.hero-card__figure { margin: 1.5rem 0 0; border-radius: var(--radius); overflow: hidden; }
.hero-card__figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

@media (min-width: 768px) {
  .hero-card__inner { padding: 3.5rem 3rem; }
  .hero { padding-block: 5rem 6rem; }
}

/* === Grid & 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; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-2px); box-shadow: 0 30px 60px -30px rgba(20, 83, 45, 0.45); }
.card .icon { color: var(--color-primary); margin-bottom: .9rem; }
.card h3 { color: var(--color-neutral-dark); }
.card p { color: var(--color-muted); margin: 0; font-size: .96rem; }
.card-link { display: block; color: inherit; text-decoration: none; height: 100%; }
.card-link:hover { text-decoration: none; }

/* === Quote === */
.section-quote { background: var(--color-neutral-light); }
.quote { max-width: 780px; margin: 0 auto; text-align: center; font-family: var(--font-heading); }
.quote p { font-size: clamp(1.3rem, 2.4vw, 1.75rem); line-height: 1.45; color: var(--color-neutral-dark); font-style: italic; }
.quote cite { font-style: normal; font-family: var(--font-body); color: var(--color-muted); font-size: .95rem; }

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

/* === CTA band === */
.cta-band { background: var(--color-primary); color: #fff; padding-block: 3rem; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-band__inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.cta-band__action { margin: 0; }
.cta-band .muted { color: rgba(255,255,255,0.8); }
@media (min-width: 800px) { .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 4rem; } }
.contact-info address { font-style: normal; line-height: 1.7; margin-bottom: 1.5rem; }
.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { text-align: left; padding: .55rem 0; border-bottom: 1px solid var(--color-border); }
.hours th { color: var(--color-neutral-dark); font-weight: 600; }
.hours td { color: var(--color-muted); }

.contact-form { background: #fff; border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--color-border); box-shadow: var(--shadow-card); }
.contact-form h2 { margin-top: 0; }
.field { margin: 0 0 1rem; }
.field label { display: block; font-weight: 600; margin-bottom: .35rem; color: var(--color-neutral-dark); font-size: .95rem; }
.field input, .field textarea { width: 100%; padding: .7rem .85rem; border: 1px solid var(--color-border); border-radius: 10px; font: inherit; background: #fff; color: var(--color-text); }
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; border-color: transparent; }
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: var(--color-muted); margin: 0 0 1.25rem; line-height: 1.5; }
.form-consent input { margin-top: .2rem; }

/* === FAQ === */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .75rem; }
.faq details { background: #fff; border: 1px solid var(--color-border); border-radius: 12px; padding: 1rem 1.25rem; box-shadow: 0 6px 20px -18px rgba(20,83,45,.4); }
.faq summary { cursor: pointer; font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-neutral-dark); font-weight: 600; list-style: none; padding-right: 1.5rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 0; font-size: 1.4rem; color: var(--color-primary); }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--color-muted); margin: .75rem 0 0; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3rem 1.5rem; margin-top: 3rem; }
.site-footer h3 { color: #fff; font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: .75rem; }
.site-footer p, .site-footer address, .site-footer li { color: rgba(240,253,244,0.82); font-size: .95rem; font-style: normal; line-height: 1.7; }
.site-footer a { color: rgba(240,253,244,0.92); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; } }
.logo--footer img { height: 64px; margin-bottom: .75rem; filter: brightness(0) invert(1); }
.legal-links { margin-top: 1rem; display: flex; flex-direction: column; gap: .3rem; }
.footer-copy { border-top: 1px solid rgba(240,253,244,0.15); margin-top: 2rem; padding-top: 1.25rem; }
.footer-copy p { margin: 0; font-size: .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); border-radius: var(--radius); padding: 1.25rem; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4); max-width: 640px; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .92rem; line-height: 1.55; color: rgba(240,253,244,0.92); }
.cookie-banner__actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-banner__actions .btn { padding: .55rem 1rem; font-size: .85rem; }
.cookie-banner__actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.cookie-banner__prefs { margin-top: 1rem; display: grid; gap: .5rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs .btn { justify-self: start; margin-top: .5rem; }

@media (min-width: 700px) {
  .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; }
}
