:root {
  --primary: #2E7D32;
  --secondary: #A5D6A7;
  --accent: #FBC02D;
  --bg: #F1F8E9;
  --surface: #FFFFFF;
  --text: #18241b;
  --muted: #536356;
  --border: #d4e5d5;
  --shadow: 0 14px 35px rgba(26, 78, 30, 0.12);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.68;
}

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

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

.container {
  width: min(100% - 2.4rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  font-weight: 800;
  color: #446848;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  max-width: 13.5ch;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

p {
  margin: 0;
}

.lead {
  margin-top: 1.15rem;
  max-width: 60ch;
  font-size: clamp(1.03rem, 1.25vw, 1.18rem);
  color: var(--muted);
}

.section-intro {
  max-width: 860px;
}

.section-intro h2 {
  max-width: 16ch;
}

.section-intro p {
  margin-top: 1rem;
  max-width: 60ch;
  color: #3d4f40;
}

.left-heavy {
  margin-left: clamp(0rem, 5vw, 3rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(241, 248, 233, 0.84);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(248, 252, 243, 0.95);
  box-shadow: 0 8px 28px rgba(24, 61, 26, 0.12);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #1f5f25;
  font-weight: 800;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #2a8d36, #4fac56);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: inline-flex;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 650;
  color: #38533a;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: #e1f0e1;
  color: #1f6726;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  display: none;
  cursor: pointer;
}

.hero-split {
  padding: 4.6rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  gap: clamp(1.3rem, 3.2vw, 3.8rem);
  align-items: end;
}

.hero-copy {
  padding: clamp(1rem, 1.5vw, 1.6rem) 0 2rem;
}

.hero-copy h1 {
  margin-top: 0.8rem;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  border-radius: 32px 16px 30px 20px;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(22, 65, 25, 0.2);
}

.hero-visual img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: clamp(1rem, 2.5vw, 1.8rem);
  bottom: clamp(1rem, 2vw, 1.4rem);
  padding: 0.7rem 0.95rem;
  border-radius: 12px;
  background: rgba(13, 47, 16, 0.8);
  color: #ebffed;
  font-size: 0.88rem;
  max-width: 27ch;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.28rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #225f27;
  color: #fff;
  box-shadow: 0 10px 22px rgba(34, 95, 39, 0.25);
}

.btn-primary:hover {
  background: #1b5120;
}

.btn-accent {
  background: var(--accent);
  color: #362b03;
  box-shadow: 0 10px 22px rgba(251, 192, 45, 0.32);
}

.btn-accent:hover {
  filter: brightness(0.95);
}

.btn-outline {
  background: #f7fbf3;
  color: #1e5f24;
  border-color: #b7d8b9;
  box-shadow: 0 5px 12px rgba(22, 60, 25, 0.1);
}

.btn-outline:hover {
  background: #edf6ea;
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18%;
  height: 68%;
  background: linear-gradient(180deg, rgba(165, 214, 167, 0.19), rgba(165, 214, 167, 0));
  z-index: -1;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.section-head.uneven {
  margin-left: clamp(0rem, 4vw, 2.5rem);
  margin-right: clamp(0rem, 1.5vw, 1rem);
}

.section-link {
  font-weight: 700;
  color: #2b7030;
}

.featured-stack {
  display: grid;
  gap: clamp(1.2rem, 2.6vw, 2rem);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.5rem);
}

.feature-row.reverse .feature-image {
  order: 2;
}

.feature-row.reverse .feature-content {
  order: 1;
}

.card-shift {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(0.6rem, 1.5vw, 1rem);
}

.feature-row:nth-child(2) {
  margin-left: clamp(0rem, 3.5vw, 2.8rem);
}

.feature-row:nth-child(3) {
  margin-right: clamp(0rem, 2.4vw, 1.8rem);
}

.feature-image img {
  border-radius: 17px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-content {
  padding: clamp(0.4rem, 1.4vw, 1rem) clamp(0.2rem, 1.2vw, 0.7rem);
}

.feature-content p {
  margin-top: 0.8rem;
  color: var(--muted);
  max-width: 42ch;
}

.feature-content .btn {
  margin-top: 1rem;
}

.highlight-block {
  padding-top: 4.2rem;
}

.cta-asym {
  background: linear-gradient(120deg, #1f6426 0%, #2f8034 58%, #2a7430 100%);
  color: #eef8ef;
  border-radius: 28px 14px 28px 18px;
  padding: clamp(1.4rem, 3vw, 2.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 1.2rem;
}

.cta-asym h2 {
  margin-top: 0.7rem;
  max-width: 16ch;
  color: #fff;
}

.cta-asym p {
  margin-top: 0.8rem;
  color: #d7ecd9;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: 4.8rem 0 2.5rem;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: start;
}

.contact-banner,
.contact-note,
.info-panel,
.trust-panel,
.product-card,
.form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-banner {
  padding: 1.2rem 1.35rem;
}

.contact-banner.tall {
  border-radius: 16px 22px 14px 22px;
}

.contact-banner p {
  color: #354b37;
}

.product-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(24, 67, 27, 0.18);
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card.wide {
  grid-column: span 2;
}

.product-card.shift-down {
  margin-top: 1.2rem;
}

.product-card.shift-up {
  margin-top: -0.7rem;
}

.card-body {
  padding: 1.1rem;
}

.card-body p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.card-body .btn {
  margin-top: 1rem;
}

.story-grid {
  display: grid;
  gap: 1.4rem;
}

.story-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 1.4rem;
}

.story-block.reverse .story-text {
  order: 2;
}

.story-block.reverse .story-image {
  order: 1;
}

.story-text {
  padding-inline: clamp(0rem, 1.8vw, 1.2rem);
}

.story-text p {
  margin-top: 0.9rem;
  color: var(--muted);
}

.story-image img {
  border-radius: 25px 14px 26px 16px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  box-shadow: 0 22px 40px rgba(20, 55, 23, 0.18);
}

.trust-panel {
  padding: clamp(1.2rem, 2.2vw, 2rem);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.trust-grid.custom > div {
  background: #f7fbf4;
  border: 1px solid #dbeadc;
  border-radius: 14px;
  padding: 1rem;
}

.trust-grid h3 {
  color: #226127;
}

.trust-grid p {
  margin-top: 0.6rem;
  color: #506253;
}

.contact-intro .lead {
  max-width: 48ch;
}

.contact-note {
  padding: 1.2rem 1.3rem;
  align-self: end;
  border-radius: 14px 22px 14px 18px;
}

.contact-note h3 {
  color: #215f26;
}

.contact-note p {
  margin-top: 0.6rem;
  color: #4d6050;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
}

.contact-layout.custom {
  align-items: start;
}

.info-panel {
  padding: 1.3rem;
}

.info-panel h2 {
  color: #225f27;
}

.info-panel p {
  margin-top: 0.7rem;
  color: #495a4b;
}

.form-panel {
  margin-top: 1.1rem;
}

.button-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.mt-lg {
  margin-top: 1.6rem;
}

.map-wrap {
  margin-top: 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d3e4d5;
}

.contact-form {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

label {
  font-weight: 700;
  color: #2a5e2f;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cadbcc;
  border-radius: 11px;
  padding: 0.74rem 0.85rem;
  background: #fcfffb;
  font: inherit;
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(46, 125, 50, 0.24);
  border-color: #75b27c;
}

.status-text {
  min-height: 1.2rem;
  color: #215f26;
  font-weight: 700;
}

.site-footer {
  margin-top: 4rem;
  background: #194d1d;
  color: #d6e8d8;
}

.footer-grid {
  padding: 2.4rem 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-grid h4 {
  color: #f4fff4;
}

.footer-grid p {
  margin-top: 0.45rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem 0;
  font-size: 0.92rem;
}

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

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

@media (max-width: 1040px) {
  .hero-grid,
  .page-grid,
  .feature-row,
  .story-block,
  .cta-asym,
  .contact-layout,
  .footer-grid,
  .product-masonry,
  .trust-grid,
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card.wide {
    grid-column: span 1;
  }

  .product-card.shift-up,
  .product-card.shift-down,
  .feature-row:nth-child(2),
  .feature-row:nth-child(3),
  .form-panel {
    margin: 0;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.1rem 0;
  }

  .container {
    width: min(100% - 1.3rem, var(--container));
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    right: 0.7rem;
    top: 73px;
    width: min(92vw, 310px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 0.8rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .page-grid,
  .feature-row,
  .story-block,
  .cta-asym,
  .contact-layout,
  .footer-grid,
  .product-masonry,
  .trust-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-image,
  .feature-row.reverse .feature-content,
  .story-block.reverse .story-image,
  .story-block.reverse .story-text {
    order: unset;
  }

  .left-heavy,
  .section-head.uneven {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions .btn,
  .button-row .btn,
  .cta-actions .btn {
    width: 100%;
  }
}
