:root {
  --forest: #061f10;
  --forest-2: #0c3219;
  --leaf: #93c249;
  --leaf-2: #b9dd7d;
  --earth: #4b3828;
  --soil: #6f5739;
  --sand: #e9dec8;
  --paper: #fffaf0;
  --mist: #d9e5d3;
  --ink: #f8fff1;
  --muted: #b7c7ad;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  --radius: 6px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--forest);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
li,
dd {
  color: var(--mist);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.9rem);
}

h2 {
  font-size: clamp(1.75rem, 3.4vw, 3.45rem);
}

h3 {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(6, 31, 16, 0.94);
  border-bottom: 1px solid rgba(147, 194, 73, 0.18);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 142px;
  height: auto;
}

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

.nav-link {
  position: relative;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 650;
}

.nav-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--leaf);
  content: "";
  opacity: 0;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
}

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

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 0 0 82px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 8, 0.9), rgba(4, 18, 8, 0.58) 48%, rgba(4, 18, 8, 0.22)),
    linear-gradient(0deg, rgba(6, 31, 16, 1), rgba(6, 31, 16, 0) 42%);
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.hero-content p {
  max-width: 650px;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.hero-actions,
.section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--leaf);
  border-radius: var(--radius);
  background: var(--leaf);
  color: #09200f;
  font-weight: 800;
}

.button:hover {
  background: var(--leaf-2);
  border-color: var(--leaf-2);
}

.button-quiet,
.button-outline {
  background: transparent;
  color: white;
}

.button-quiet:hover,
.button-outline:hover {
  color: #09200f;
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--leaf-2);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(76px, 11vw, 132px) 0;
  background: var(--forest);
}

.section.muted {
  background: #0a2a15;
}

.section.brown,
.contact-band {
  background: var(--earth);
}

.section.brown,
.section.muted,
.contact-band {
  padding-top: calc(clamp(76px, 11vw, 132px) + 34px);
}

.section.brown::before,
.section.muted::before,
.contact-band::before {
  position: absolute;
  inset: -68px 0 auto;
  z-index: 0;
  height: 70px;
  background: var(--wave-color, var(--forest));
  content: "";
  pointer-events: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='1440' height='120' viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 56C150 12 280 12 430 54C575 94 725 96 880 52C1050 4 1195 8 1440 58V120H0V56Z' fill='%23000'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='1440' height='120' viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 56C150 12 280 12 430 54C575 94 725 96 880 52C1050 4 1195 8 1440 58V120H0V56Z' fill='%23000'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

.section.brown {
  --wave-color: var(--earth);
}

.section.muted {
  --wave-color: #0a2a15;
}

.contact-band {
  position: relative;
  --wave-color: var(--earth);
}

.section > .shell,
.contact-band > .shell {
  position: relative;
  z-index: 1;
}

.section-head {
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 780px;
}

.service-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.article-card,
.plant-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.service-card img,
.article-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card h3,
.service-card p,
.article-card div {
  padding-inline: 20px;
}

.service-card h3 {
  padding-top: 20px;
}

.service-card p {
  padding-bottom: 18px;
}

.article-card a {
  display: block;
  height: 100%;
}

.article-card div {
  padding-block: 20px 22px;
}

.article-card h3 {
  min-height: 2.4em;
}

.article-card p {
  min-height: 5.2em;
}

.text-link {
  color: var(--leaf-2);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
}

.portrait {
  width: min(420px, 100%);
  justify-self: end;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.check-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.check-list li::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf);
  content: "";
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.project-grid > div {
  grid-row: span 2;
  align-self: center;
}

.project-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.page-hero {
  padding: clamp(80px, 13vw, 150px) 0 72px;
  background: var(--forest);
  border-bottom: 1px solid var(--line);
}

.page-hero.compact h1 {
  max-width: 900px;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

.page-hero p {
  max-width: 720px;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.search-input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font: inherit;
  min-height: 46px;
  padding: 12px 14px;
}

.search-input::placeholder,
.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: transparent;
  color: white;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--leaf);
  color: #08200f;
}

.article-hero {
  padding: 82px 0;
  background: var(--forest);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.article-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 4.3rem);
}

.article-hero img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 56px;
  align-items: start;
  padding-block: 42px 96px;
}

.article-content h2,
.legal-text h2 {
  margin: 42px 0 12px;
  color: var(--leaf-2);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.article-content p,
.article-content li,
.legal-text p {
  font-size: 1.05rem;
}

.article-content ul {
  padding-left: 1.15rem;
}

.article-aside {
  position: sticky;
  top: 112px;
  padding: 24px;
  border: 1px solid rgba(147, 194, 73, 0.26);
  border-radius: var(--radius);
  background: #153b1e;
}

.article-aside h2 {
  font-size: 1.45rem;
}

.article-faq {
  padding: 80px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--earth);
}

.article-faq h2 {
  margin-bottom: 24px;
}

details {
  max-width: 850px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 0;
}

summary {
  color: var(--leaf-2);
  cursor: pointer;
  font-weight: 850;
}

.plant-grid {
  display: grid;
  gap: 22px;
}

.plant-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 18px;
}

.plant-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--paper);
}

.plant-card dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 18px;
  color: var(--mist);
}

.plant-card dt {
  color: var(--leaf-2);
  font-weight: 850;
}

.contact-band {
  padding: clamp(72px, 10vw, 120px) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(34px, 8vw, 94px);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.contact-strip a {
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--soil);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-note {
  min-height: 1.4em;
  margin: 0;
}

.contact-details {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 28px 20px;
  background: #041609;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-text {
  max-width: 840px;
}

.cms-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 24px auto;
  border-radius: var(--radius);
  object-fit: contain;
}

.cms-image--small {
  max-width: min(100%, 340px);
}

.cms-image--medium {
  max-width: min(100%, 680px);
}

.cms-image--full {
  width: 100%;
  max-width: 100%;
}

.cms-image--natural {
  max-width: 100%;
}

.cms-align-left {
  margin-left: 0;
  margin-right: auto;
}

.cms-align-center {
  margin-left: auto;
  margin-right: auto;
}

.cms-align-right {
  margin-left: auto;
  margin-right: 0;
}

[hidden] {
  display: none !important;
}

@media (max-width: 940px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 84px 0 auto 0;
    display: none;
    gap: 0;
    padding: 18px 20px 24px;
    background: #061f10;
    border-bottom: 1px solid var(--line);
  }

  .menu-open .main-nav {
    display: grid;
  }

  .nav-link {
    padding: 14px 0;
  }

  .service-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .project-grid,
  .article-hero-grid,
  .article-layout,
  .contact-grid,
  .toolbar {
    grid-template-columns: 1fr;
  }

  .portrait {
    justify-self: start;
  }

  .article-aside {
    position: static;
  }

  .contact-details {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    min-height: 72px;
  }

  .brand img {
    width: 118px;
  }

  .main-nav {
    top: 72px;
  }

  .hero {
    min-height: 82vh;
    padding-bottom: 44px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-actions,
  .section-head,
  .contact-strip,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-card h3,
  .article-card p {
    min-height: 0;
  }

  .field-pair,
  .plant-card {
    grid-template-columns: 1fr;
  }

  .article-hero {
    padding: 58px 0;
  }

  .cms-align-left,
  .cms-align-right {
    margin-left: auto;
    margin-right: auto;
  }
}
