:root {
  color-scheme: light;
  --green: #0d6338;
  --green-dark: #063f2a;
  --leaf: #22a65b;
  --amber: #ffbd24;
  --orange: #f26a2e;
  --cream: #fff6df;
  --paper: #ffffff;
  --ink: #15231b;
  --muted: #647168;
  --line: #eadfc9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(
    to bottom,
    rgba(6, 42, 29, 0.72),
    rgba(6, 42, 29, 0)
  );
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber), #fff2a3);
  color: var(--green-dark);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 86px) 64px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(4, 39, 28, 0.88), rgba(4, 39, 28, 0.34)),
    url("https://img.magnific.com/free-psd/vibrant-vegetable-harvest-colorful-collection-fresh-produce_191095-79960.jpg?semt=ais_hybrid&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(to top, var(--cream), rgba(255, 246, 223, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-bottom: 36px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--amber);
}

.eyebrow.dark {
  color: var(--orange);
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(56px, 10vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(18px, 2.4vw, 25px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-link,
.secondary-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 24px;
  font-weight: 900;
}

.primary-link {
  background: var(--amber);
  color: var(--green-dark);
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.section {
  padding: 60px clamp(20px, 6vw, 86px);
}

.section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p:last-child,
.service-band p {
  color: var(--muted);
  line-height: 1.65;
}

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

.category-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(69, 54, 22, 0.13);
}

.category-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  background: #eef6ea;
}

.category-card div {
  padding: 18px;
}

.category-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.category-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.service-band {
  margin: 20px clamp(20px, 6vw, 86px) 70px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 189, 36, 0.22), rgba(34, 166, 91, 0.16)),
    #fffdf7;
  box-shadow: inset 0 0 0 1px rgba(13, 99, 56, 0.08);
}

.stats {
  display: grid;
  gap: 12px;
}

.stats span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  box-shadow: 0 14px 34px rgba(69, 54, 22, 0.1);
}

.stats strong {
  color: var(--green);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 86px);
  background: var(--green-dark);
  color: #fff;
}

.footer p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  font-weight: 800;
  color: var(--amber);
}

@media (max-width: 900px) {
  .category-grid,
  .service-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding: 108px 20px 42px;
  }

  .hero-content {
    padding-bottom: 26px;
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .section {
    padding: 44px 18px;
  }

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

  .service-band {
    margin: 8px 18px 48px;
  }

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