@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

:root {
  --ink: #14211b;
  --muted: #5b6d64;
  --green: #1f8a5b;
  --green-dark: #146a45;
  --mint: #e8f5ee;
  --gold: #c99b3a;
  --paper: #fbfcf8;
  --line: #dce8df;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 52, 39, 0.12);
  --radius: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; }

p {
  max-width: 700px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.container {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 248, 0.9);
  border-bottom: 1px solid rgba(220, 232, 223, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), #65bd8b);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(31, 138, 91, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  color: #30443a;
  font-weight: 400;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover, .nav a.active {
  background: var(--mint);
  color: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  min-height: 650px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 34, 24, 0.82), rgba(11, 69, 46, 0.58), rgba(20, 33, 27, 0.16));
  z-index: 1;
}

.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  background: var(--mint);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 400;
  margin-bottom: 18px;
}

.hero .eyebrow {
  color: #dff8ea;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero h1 {
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  max-width: 950px;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  margin: 24px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 10px;
  border: 0;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(31, 138, 91, 0.24);
}

.btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: none;
}

.btn.secondary:hover { background: rgba(255, 255, 255, 0.23); }

.section {
  padding: 88px 0;
}

.section.alt {
  background: #f1f7f3;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2, .page-title h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 760px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid rgba(220, 232, 223, 0.72);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 56px rgba(23, 52, 39, 0.16);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { margin: 0; font-size: 0.96rem; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 33, 27, 0), rgba(20, 33, 27, 0.22));
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #31483d;
  font-weight: 400;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
}

.stat span { color: rgba(255, 255, 255, 0.76); }

.cta {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 56px;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(20, 33, 27, 0.96), rgba(31, 138, 91, 0.84)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.cta p { color: rgba(255, 255, 255, 0.85); }

.page-hero {
  padding: 74px 0 52px;
  background:
    linear-gradient(135deg, rgba(232, 245, 238, 0.94), rgba(251, 252, 248, 0.96)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumbs a {
  color: var(--green-dark);
  text-decoration: none;
}

.breadcrumbs span::before {
  content: "/";
  margin-right: 8px;
  color: #91a89b;
}

.article-card {
  padding: 0;
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.article-body { padding: 24px; }

.date {
  display: block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.article-content {
  max-width: 860px;
  margin: 0 auto;
}

.article-content img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin: 28px 0 34px;
}

.article-content h2 { margin-top: 34px; font-size: 1.7rem; }
.article-content p { max-width: 820px; }

.form {
  display: grid;
  gap: 16px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-weight: 400;
  color: #30443a;
}

.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}

.field textarea { min-height: 140px; resize: vertical; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 400;
}

.form-message {
  min-height: 24px;
  font-weight: 400;
  color: var(--green-dark);
}

.map {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-height: 390px;
}

.map iframe {
  width: 100%;
  height: 390px;
  border: 0;
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(23, 52, 39, 0.08);
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.accordion-button::after {
  content: "+";
  color: var(--green-dark);
  font-size: 1.5rem;
}

.accordion-item.open .accordion-button::after { content: "−"; }

.accordion-panel {
  display: none;
  padding: 0 20px 20px;
}

.accordion-item.open .accordion-panel { display: block; }

.site-footer {
  background: #101c17;
  color: var(--white);
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr;
  gap: 34px;
}

.site-footer p, .site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links, .socials {
  display: grid;
  gap: 10px;
}

.footer-links a, .socials a {
  text-decoration: none;
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  color: #dff8ea;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.62);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: 920px;
  margin: 0 auto;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: 0.93rem; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { min-height: 42px; padding: 10px 14px; }
.cookie-actions .decline { background: #46564f; box-shadow: none; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .grid, .grid.four, .stats { grid-template-columns: repeat(2, 1fr); }
  .split, .footer-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .hero { min-height: 590px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 18px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open { display: grid; }
  .nav a {
    padding: 15px 12px;
    border-radius: 10px;
  }
  .grid, .grid.four, .stats { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .hero-content { padding: 76px 0; }
  .actions, .cookie-banner, .cookie-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .cta { padding: 34px 22px; border-radius: 16px; }
  .image-panel { min-height: 300px; }
}
