:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #F97316;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1160px;
  --radius: 8px;
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-neutral-dark);
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* === Header === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) {
  .logo img { height: 96px; }
}
.primary-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-size: 0.95rem;
  font-weight: 500;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.nav-toggle {
  background: transparent;
  border: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-neutral-dark);
  display: block;
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex !important;
    flex-direction: row;
    position: static;
    padding: 0;
    gap: 1.5rem;
    background: transparent;
    border: 0;
  }
}

/* === Layout wrappers === */
main { display: block; }
.section, .cta-band, .hero {
  padding: 3rem 1.25rem;
  max-width: var(--max-width);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .section, .hero { padding-block: 4.5rem; }
}

/* === Hero (stacked) === */
.hero-stacked {
  max-width: 780px;
  margin-inline: auto;
  text-align: left;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.hero-figure {
  margin: 2rem 0;
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(6, 78, 59, 0.75);
  max-width: 60ch;
  margin-bottom: 1.5rem;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.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: #ea6a0d; }

/* === Sections === */
.section-intro { max-width: 780px; }
.section-intro p { font-size: 1.05rem; color: rgba(6, 78, 59, 0.85); }
.inline-figure { margin: 1.5rem 0; }
.inline-figure img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}
.section-head { margin-bottom: 2rem; max-width: 60ch; }
.section-sub { color: rgba(6, 78, 59, 0.7); margin-top: -0.5rem; }

/* === 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: var(--color-neutral-light);
  border: 1px solid rgba(6, 78, 59, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--color-neutral-dark);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: block;
}
.card p { color: rgba(6, 78, 59, 0.8); font-size: 0.95rem; margin-bottom: 0; }
.card h3 { margin-bottom: 0.5rem; }
.card-link { text-decoration: none; }
.card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(6, 78, 59, 0.25);
  text-decoration: none;
}
.card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  margin-bottom: 1rem;
}
.listing-card { padding: 0; overflow: hidden; }
.listing-figure { margin: 0; }
.listing-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.listing-card h3, .listing-card p { padding-inline: 1.25rem; }
.listing-card h3 { padding-top: 1rem; }
.listing-card p { padding-bottom: 1.25rem; }

/* === Quote === */
.section-quote { max-width: 760px; }
.section-quote blockquote {
  margin: 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(6, 78, 59, 0.15);
  border-bottom: 1px solid rgba(6, 78, 59, 0.15);
  text-align: center;
}
.section-quote p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-neutral-dark);
  margin-bottom: 1rem;
}
.section-quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  text-align: center;
  padding: 3rem 1.5rem;
  margin-block: 2rem;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 55ch; margin-inline: auto; }

/* === Contact band === */
.section-contact-band { padding-inline: 0; max-width: 100%; }
.contact-band-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 3rem 1.5rem;
  background: var(--color-neutral-light);
  border-radius: var(--radius);
  text-align: center;
}

/* === Form === */
.form-wrap { max-width: 640px; margin-inline: auto; }
.form-row { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.form-row label { font-weight: 500; font-size: 0.9rem; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(6, 78, 59, 0.2);
  border-radius: var(--radius);
  font: inherit;
  color: inherit;
  background: #fff;
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(6, 78, 59, 0.8);
  margin: 1rem 0 1.25rem;
  flex-wrap: wrap;
}
.form-consent input { margin-top: 3px; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(236, 253, 245, 0.85);
  padding: 3rem 1.25rem 1.5rem;
  margin-top: 3rem;
}
.footer-grid {
  max-width: var(--max-width);
  margin-inline: auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; }
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.site-footer .logo img { filter: brightness(1.4); }
.site-footer nav { display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer nav a, .site-footer address a { color: rgba(236, 253, 245, 0.85); font-size: 0.9rem; }
.site-footer nav a:hover, .site-footer address a:hover { color: #fff; }
.site-footer address { font-style: normal; font-size: 0.9rem; line-height: 1.7; }
.legal-links { font-size: 0.85rem; margin-top: 1rem; }
.legal-links a { color: rgba(236, 253, 245, 0.7); }
.copyright {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(236, 253, 245, 0.12);
  font-size: 0.8rem;
  color: rgba(236, 253, 245, 0.55);
  text-align: center;
}

/* === 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 20px 40px -10px rgba(0,0,0,0.35);
  max-width: 520px;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.85rem; font-size: 0.9rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  border: 0;
  padding: 0.55rem 0.95rem;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  background: rgba(236, 253, 245, 0.15);
  color: var(--color-neutral-light);
}
.cookie-banner [data-cookie-accept] { background: var(--color-accent); color: #fff; }
.cookie-banner [data-cookie-reject] { background: rgba(236, 253, 245, 0.2); }
.cookie-banner__prefs {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
}
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; }
.cookie-banner__prefs button {
  align-self: flex-start;
  margin-top: 0.5rem;
  background: var(--color-primary);
  color: #fff;
}
