:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #F97316;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --font-heading: 'Lora', serif;
  --font-body: 'Source Sans 3', sans-serif;
  --radius: 12px;
  --shadow-sm: 0 4px 12px -6px rgba(6, 78, 59, 0.15);
  --shadow-md: 0 20px 40px -20px rgba(6, 78, 59, 0.25);
}

/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-neutral-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
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; font-weight: 600; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === Layout === */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 780px; }
.section { padding-block: 4rem; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-title-center { text-align: center; }
.section-sub { color: var(--color-primary); font-size: 1.05rem; }
.eyebrow { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.16em; font-size: .8rem; font-weight: 600; color: var(--color-accent); margin: 0 0 1rem; }
.eyebrow-dark { color: var(--color-primary); }
.lede { font-size: 1.2rem; color: var(--color-primary); }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(6,78,59,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .9rem; }
.logo { display: inline-block; text-decoration: none; }
.logo img { height: 72px; width: auto; display: block; }
.primary-nav { display: flex; align-items: center; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(6,78,59,0.15); color: var(--color-neutral-dark); border-radius: 8px; padding: .45rem; cursor: pointer; }
.nav-list { list-style: none; padding: 0; margin: 0; display: none; flex-direction: column; gap: .25rem; position: absolute; left: 1rem; right: 1rem; top: 72px; background: #fff; border: 1px solid rgba(6,78,59,0.08); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow-md); }
.nav-list.is-open { display: flex; }
.nav-list a { display: block; padding: .6rem .75rem; text-decoration: none; color: var(--color-neutral-dark); font-weight: 500; border-radius: 6px; }
.nav-list a[aria-current="page"], .nav-list a:hover { background: var(--color-neutral-light); color: var(--color-primary); }

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .nav-list { display: flex; position: static; flex-direction: row; padding: 0; border: 0; background: transparent; box-shadow: none; gap: .25rem; }
  .nav-list a { padding: .5rem .9rem; }
}

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

/* === Hero fullscreen === */
.hero-fullscreen { position: relative; min-height: 88vh; display: flex; align-items: center; justify-content: center; color: var(--color-neutral-light); overflow: hidden; }
.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(135deg, rgba(6,78,59,0.72), rgba(6,78,59,0.45) 50%, rgba(6,78,59,0.75)); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; padding-block: 5rem; max-width: 900px; }
.hero-content h1 { color: #fff; max-width: 22ch; margin-inline: auto; text-shadow: 0 2px 20px rgba(0,0,0,0.25); }
.hero-content .eyebrow { color: #FED7AA; }
.hero-sub { color: rgba(255,255,255,0.92); font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 52ch; margin: 1rem auto 2rem; }

@media (min-width: 768px) {
  .hero-fullscreen { min-height: 92vh; }
  .hero-content { padding-block: 7rem; }
}

/* === Intro === */
.intro { background: #fff; }
.intro.alt { background: var(--color-neutral-light); }
.intro .narrow h2 { margin-bottom: 1.25rem; }
.intro p { font-size: 1.075rem; line-height: 1.75; }

/* === Highlights grid === */
.highlights { background: var(--color-neutral-light); }
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: #fff; border: 1px solid rgba(6,78,59,0.08); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card .icon { color: var(--color-primary); margin-bottom: .75rem; }
.card h3 { margin-bottom: .5rem; }
.card p { margin-bottom: 0; color: rgba(6,78,59,0.85); }
a.card-link { text-decoration: none; color: inherit; display: block; }
a.card-link .read-more { display: inline-block; margin-top: .75rem; color: var(--color-primary); font-weight: 600; }
a.card-link:hover .read-more { color: var(--color-accent); }

/* === Testimonial === */
.testimonial { background: #fff; }
.testimonial blockquote { margin: 0; text-align: center; padding: 1.5rem 0; }
.testimonial blockquote p { font-family: var(--font-heading); font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-style: italic; line-height: 1.45; color: var(--color-neutral-dark); max-width: 42ch; margin: 0 auto 1rem; }
.testimonial cite { display: block; font-style: normal; color: var(--color-primary); font-weight: 600; letter-spacing: .04em; }

/* === 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; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; max-width: 48ch; margin-inline: auto; }

/* === Contact band === */
.contact-band { background: var(--color-neutral-light); }
.contact-band.alt { background: #fff; }
.contact-band p { font-size: 1.05rem; }

/* === Contact form === */
.contact-form-section { background: var(--color-neutral-light); }
.contact-form { background: #fff; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-top: 1.5rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: .35rem; }
.field label { font-weight: 600; font-size: .95rem; }
.field input, .field textarea { font: inherit; padding: .75rem .9rem; border: 1px solid rgba(6,78,59,0.2); border-radius: 8px; background: #fff; color: var(--color-neutral-dark); }
.field input:focus, .field 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: .6rem; font-size: .9rem; margin: 1rem 0 1.25rem; line-height: 1.4; }
.form-consent input { margin-top: .2rem; flex-shrink: 0; }

/* === Article detail === */
.article-detail { max-width: 65ch; margin-inline: auto; padding: 3rem 1rem 4rem; }
.article-detail header { margin-bottom: 1.5rem; }
.article-detail h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1rem; }
.article-sub { font-size: 1.2rem; color: var(--color-primary); margin-bottom: 0; }
.article-hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-block: 2rem; border-radius: 8px; }
.article-detail p { font-size: 1.115rem; line-height: 1.75; margin-block: 1.25rem; }
.article-footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(6,78,59,0.1); }
.back-link { text-decoration: none; color: var(--color-primary); font-weight: 600; }
.back-link:hover { color: var(--color-accent); }

/* === Thank you === */
.thankyou { padding-block: 5rem; text-align: center; }
.thankyou h1 { max-width: 24ch; margin-inline: auto; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(236,253,245,0.85); padding-block: 3rem 1.5rem; margin-top: 4rem; }
.site-footer h3 { color: #fff; font-family: var(--font-body); font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.25rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.footer-logo img { height: 64px; width: auto; margin-bottom: .75rem; filter: brightness(0) invert(1); }
.footer-tagline { font-style: italic; color: rgba(236,253,245,0.7); }
.footer-nav, .legal-links { list-style: none; padding: 0; margin: 0; }
.footer-nav li, .legal-links li { margin-bottom: .4rem; }
.footer-nav a, .legal-links a, .site-footer address a { color: rgba(236,253,245,0.85); text-decoration: none; }
.footer-nav a:hover, .legal-links a:hover, .site-footer address a:hover { color: #fff; text-decoration: underline; }
.site-footer address { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.legal-links { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(236,253,245,0.15); }
.copyright { text-align: center; font-size: .85rem; color: rgba(236,253,245,0.55); padding-top: 1.25rem; border-top: 1px solid rgba(236,253,245,0.12); }

/* === 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.4rem; border-radius: var(--radius); box-shadow: 0 25px 60px -20px rgba(0,0,0,0.4); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 .9rem; font-size: .95rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button { font: inherit; font-size: .9rem; padding: .55rem 1.1rem; border-radius: 999px; border: 1px solid rgba(236,253,245,0.3); background: transparent; color: var(--color-neutral-light); cursor: pointer; }
.cookie-banner button:hover { background: rgba(236,253,245,0.1); }
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; font-weight: 600; }
.cookie-banner [data-cookie-accept]:hover { background: #ea6a0d; }
.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: .5rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; margin-top: .5rem; background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
