/* === Tokens === */
:root {
  --color-primary: #15803D;
  --color-secondary: #22C55E;
  --color-accent: #EC4899;
  --color-neutral-dark: #14532D;
  --color-neutral-light: #F0FDF4;
  --color-text: #14532D;
  --color-muted: #4a6b58;
  --color-line: rgba(20, 83, 45, 0.14);
  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px -6px rgba(20, 83, 45, 0.2);
  --shadow-md: 0 20px 40px -25px rgba(20, 83, 45, 0.35);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: #ffffff;
}
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); color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 0.75rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 720px; }
.section { padding-block: 4rem; }
.section--tint { background: var(--color-neutral-light); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section__head p { color: var(--color-muted); }
.muted { color: var(--color-muted); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 600; color: var(--color-secondary); margin: 0 0 1rem; }

/* === Header === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.75rem; }
.logo { display: inline-flex; text-decoration: none; }
.logo img { height: 72px; width: auto; display: block; }
.logo--footer img { height: 60px; }
.primary-nav { display: none; gap: 1.75rem; }
.primary-nav a { color: var(--color-neutral-dark); text-decoration: none; font-weight: 500; font-size: 0.98rem; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav a:hover { color: var(--color-primary); }
.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; background: transparent; border: 1px solid var(--color-line); border-radius: 8px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; }
@media (min-width: 768px) {
  .logo img { height: 96px; }
  .logo--footer img { height: 72px; }
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
  .site-header__inner { padding-block: 1rem; }
}
.primary-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 1.25rem 1.5rem 1.5rem; border-bottom: 1px solid var(--color-line); box-shadow: var(--shadow-sm); }

/* === Hero (fullscreen) === */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; color: var(--color-neutral-light); }
.hero--short { min-height: 60vh; }
.hero--solid { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(rgba(20, 83, 45, 0.55), rgba(20, 83, 45, 0.75)); z-index: 1; }
.hero__content { position: relative; z-index: 2; text-align: center; padding-block: 5rem; }
.hero__content h1 { color: #fff; max-width: 22ch; margin-inline: auto; }
.hero__content .eyebrow { color: rgba(240, 253, 244, 0.85); }
.hero__sub { font-size: 1.15rem; max-width: 52ch; margin: 1rem auto 2rem; color: rgba(240, 253, 244, 0.9); }

/* === Buttons === */
.btn { display: inline-block; padding: 0.9rem 1.75rem; border-radius: 999px; font-weight: 600; text-decoration: none; font-size: 1rem; border: 1px solid transparent; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease; cursor: pointer; }
.btn--primary { background: var(--color-neutral-light); color: var(--color-neutral-dark); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); color: var(--color-neutral-dark); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); color: #fff; }

/* === Grid === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* === Cards === */
.card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin: 0; font-size: 0.98rem; }
.card .icon { color: var(--color-primary); margin-bottom: 1rem; }
a.card-link { display: block; text-decoration: none; color: inherit; transition: transform 0.15s ease, box-shadow 0.15s ease; }
a.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
a.card-link h3 { color: var(--color-primary); }

/* === Quote === */
.quote { border-left: 3px solid var(--color-accent); padding: 1rem 1.5rem; margin: 0; }
.quote p { font-size: 1.2rem; font-style: italic; color: var(--color-neutral-dark); }
.quote cite { font-style: normal; font-weight: 600; color: var(--color-muted); font-size: 0.95rem; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; padding-block: 4rem; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(240, 253, 244, 0.9); max-width: 52ch; margin: 0 auto 1.75rem; }

/* === Article === */
.article { max-width: 65ch; margin-inline: auto; padding: 3rem 1.25rem 4rem; }
.article__head { margin-bottom: 2rem; }
.article h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1.25rem; }
.article__sub { font-size: 1.2rem; color: var(--color-muted); }
.article__hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-block: 2rem; border-radius: var(--radius); }
.article h2 { margin-top: 2.25rem; margin-bottom: 0.75rem; }
.article p { font-size: 1.1rem; line-height: 1.75; margin-block: 1.1rem; }
.back-link-wrap { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-line); }
.back-link { text-decoration: none; font-weight: 600; color: var(--color-primary); }
.back-link:hover { color: var(--color-neutral-dark); }

/* === Contact === */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.hours { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: 0.98rem; }
.hours caption { text-align: left; font-weight: 600; margin-bottom: 0.5rem; color: var(--color-neutral-dark); }
.hours th, .hours td { text-align: left; padding: 0.55rem 0.5rem; border-bottom: 1px solid var(--color-line); }
.hours th { font-weight: 500; color: var(--color-muted); }
.contact-band { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); padding: 2rem; display: grid; gap: 1.25rem; }
@media (min-width: 720px) { .contact-band { grid-template-columns: 1fr auto; align-items: center; } }

/* === Form === */
.contact-form { display: flex; flex-direction: column; gap: 1rem; background: #fff; padding: 2rem; border-radius: var(--radius); border: 1px solid var(--color-line); box-shadow: var(--shadow-sm); }
.contact-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.92rem; font-weight: 500; color: var(--color-neutral-dark); }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea { font: inherit; padding: 0.75rem 0.9rem; border: 1px solid var(--color-line); border-radius: 8px; background: #fff; color: var(--color-text); }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--color-secondary); outline-offset: 1px; border-color: var(--color-secondary); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-consent { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem; align-items: start; font-size: 0.88rem; font-weight: 400; color: var(--color-muted); }
.form-consent input { margin-top: 0.25rem; }
.contact-form button[type="submit"] { align-self: flex-start; background: var(--color-primary); color: #fff; }
.contact-form button[type="submit"]:hover { background: var(--color-neutral-dark); color: #fff; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3rem 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; margin-bottom: 0.75rem; }
.site-footer a { color: var(--color-neutral-light); text-decoration: none; display: block; padding: 0.2rem 0; }
.site-footer a:hover { color: var(--color-secondary); }
.site-footer address { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.site-footer .muted { color: rgba(240, 253, 244, 0.7); }
.legal-links { margin-top: 1rem; }
.copyright { border-top: 1px solid rgba(240, 253, 244, 0.15); margin-top: 2rem; padding-top: 1.25rem; font-size: 0.88rem; color: rgba(240, 253, 244, 0.7); }
.logo--footer { filter: brightness(0) invert(1); }

/* === 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); box-shadow: 0 25px 50px -15px rgba(0,0,0,0.35); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button { font: inherit; font-size: 0.88rem; font-weight: 600; padding: 0.55rem 1rem; border-radius: 999px; border: 1px solid rgba(240,253,244,0.3); background: transparent; color: var(--color-neutral-light); cursor: pointer; }
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner [data-cookie-save] { background: var(--color-secondary); border-color: var(--color-secondary); color: var(--color-neutral-dark); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.55rem; }

/* === Icons === */
.icon { width: 28px; height: 28px; }
