:root {
  --green-950: #052d18;
  --green-900: #073f20;
  --green-800: #0c642f;
  --green-600: #168a43;
  --green-200: #cfeedd;
  --green-100: #eaf8ef;
  --green-50: #f6fbf8;
  --cream: #fbf8f1;
  --ink: #12291c;
  --muted: #63776b;
  --line: #d9e8df;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(5, 45, 24, 0.12);
  --shadow-card: 0 12px 28px rgba(5, 45, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--green-50);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-800);
  font-size: 1.18rem;
  font-weight: 800;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-800);
  border-color: var(--green-600);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-800);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 500px);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  min-height: calc(100vh - 78px);
  padding: clamp(52px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(234, 248, 239, 0.96)),
    radial-gradient(circle at 90% 18%, rgba(22, 138, 67, 0.14), transparent 30%);
}

.hero-copy-block {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: clamp(3.8rem, 9vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--green-800);
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--green-800);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green-950);
}

.button.secondary {
  color: var(--green-900);
  background: var(--white);
}

.hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-card-content {
  display: grid;
  gap: 4px;
  padding: 22px;
  background: var(--green-950);
  color: var(--white);
}

.hero-card-content p,
.hero-card-content strong {
  margin: 0;
}

.hero-card-content p {
  color: rgba(255, 255, 255, 0.74);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: var(--line);
}

.trust-strip div {
  padding: 24px;
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--green-950);
  font-size: 1.05rem;
}

.trust-strip span {
  color: var(--muted);
}

.section,
.statement-grid,
.contact-section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.about {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: var(--green-50);
}

.statement-card {
  min-height: 360px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.statement-card.dark {
  color: var(--white);
  background: var(--green-950);
}

.statement-card.dark h2,
.statement-card.dark .eyebrow {
  color: var(--white);
}

.statement-card.dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.statement-card.light {
  background: var(--white);
}

.statement-card.light p:not(.eyebrow) {
  color: var(--muted);
}

.products {
  background: var(--white);
}

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

.product-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-50);
  box-shadow: var(--shadow-card);
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  background: var(--green-950);
  color: var(--white);
}

.contact-copy h2,
.contact-copy .eyebrow {
  color: var(--white);
}

.contact-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-box {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.contact-row {
  display: grid;
  gap: 3px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-row a {
  color: var(--green-950);
  font-weight: 800;
  word-break: break-word;
}

.contact-actions {
  margin-top: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: #031d10;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .hero,
  .about-layout,
  .statement-grid,
  .product-grid,
  .contact-section,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 430px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 70px;
  }

  .brand span {
    font-size: 1rem;
  }

  .brand img,
  .footer-brand img {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    top: 70px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 4.4rem);
  }

  .hero-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

  .product-card,
  .statement-card,
  .contact-box {
    padding: 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
