:root {
  color-scheme: light;
  --ink: #102617;
  --muted: #57705d;
  --leaf: #2f8a32;
  --leaf-dark: #0f4c24;
  --lime: #94c856;
  --orange: #f07b22;
  --paper: #fbfaf5;
  --line: #d9e4cf;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(16, 38, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  z-index: -2;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(2, 26, 12, 0.92) 0%, rgba(2, 26, 12, 0.72) 38%, rgba(2, 26, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 26, 12, 0.55), transparent 34%);
  z-index: -1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: clamp(145px, 18vw, 225px);
  height: auto;
  border-radius: 4px;
  mix-blend-mode: screen;
}

.topbar__contact {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero__content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 105px 0 92px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(2.7rem, 6.5vw, 5.8rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: var(--lime);
}

.hero__lead {
  max-width: 630px;
  margin: 28px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: rgba(255, 255, 255, 0.9);
}

.construction {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding: 18px 22px;
  border-radius: 8px;
  background: rgba(21, 104, 36, 0.92);
  box-shadow: var(--shadow);
}

.construction__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--lime);
  font-size: 2rem;
  font-weight: 900;
}

.construction strong,
.construction small {
  display: block;
}

.construction strong {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.construction small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
}

main {
  overflow: hidden;
}

.intro,
.products,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 68px;
  padding: 74px 0 58px;
}

.intro h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.04;
  font-weight: 800;
}

.intro__text {
  border-left: 2px solid var(--line);
  padding-left: 40px;
  color: #263d2b;
  font-size: 1.06rem;
}

.intro__text p {
  margin: 0 0 20px;
}

.intro__text p:last-child {
  margin-bottom: 0;
}

.products {
  padding: 22px 0 70px;
}

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

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

.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(16, 38, 23, 0.07);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.84;
  object-fit: cover;
  object-position: center;
  background: #eef5e8;
}

.product-card h3 {
  margin: 16px 16px 4px;
  color: var(--leaf-dark);
  font-size: 1.04rem;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.product-card p {
  min-height: 46px;
  margin: 0;
  padding: 0 16px 18px;
  color: #304533;
  font-size: 0.92rem;
  text-align: center;
}

.contact {
  padding: 52px 0 56px;
  border-top: 1px solid var(--line);
}

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 38, 23, 0.07);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
}

.contact-card__icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.contact-card strong,
.contact-card small,
.contact-card em {
  display: block;
}

.contact-card strong {
  font-size: 1.12rem;
  font-weight: 800;
}

.contact-card small {
  color: #233a28;
  font-size: 1rem;
}

.contact-card em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
}

.location {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 110px;
  padding: 24px 20px;
  background: #052912;
  color: #fff;
  text-align: center;
}

.footer__logo {
  width: 140px;
  height: auto;
  border-radius: 4px;
  mix-blend-mode: screen;
}

.footer span {
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
}

@media (max-width: 980px) {
  .hero {
    min-height: 680px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .intro__text {
    border-left: 0;
    padding-left: 0;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 780px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(2, 26, 12, 0.9), rgba(2, 26, 12, 0.58)),
      linear-gradient(0deg, rgba(2, 26, 12, 0.68), transparent 42%);
  }

  .topbar {
    width: min(100% - 28px, 1180px);
    padding-top: 18px;
  }

  .brand__logo {
    width: 145px;
  }

  .topbar__contact {
    padding: 9px 13px;
    font-size: 0.9rem;
  }

  .hero__content,
  .intro,
  .products,
  .contact {
    width: min(100% - 28px, 1180px);
  }

  .hero__content {
    padding: 116px 0 62px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.5rem);
  }

  .construction {
    width: 100%;
    align-items: flex-start;
    padding: 16px;
  }

  .intro {
    padding: 54px 0 42px;
  }

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

  .product-card h3 {
    margin: 14px 10px 4px;
    font-size: 0.88rem;
  }

  .product-card p {
    padding: 0 10px 15px;
    font-size: 0.82rem;
  }

  .contact-card {
    padding: 18px;
  }

  .footer {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 420px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
