:root {
  --leaf: #3a8f18;
  --leaf-dark: #073f17;
  --lime: #9bd31b;
  --harvest: #f35a1d;
  --soil: #342419;
  --cream: #fffaf0;
  --paper: #ffffff;
  --ink: #102816;
  --muted: #5e6f58;
  --line: #dde9d2;
  --shadow: 0 20px 55px rgba(7, 63, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  animation: pageFade 700ms ease both;
}

body.is-loading {
  overflow: hidden;
}

body:not(.is-loading) .site-header {
  animation: headerDrop 520ms ease both;
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(155, 211, 27, 0.22), transparent 34%),
    linear-gradient(135deg, var(--cream) 0%, #edf7df 52%, #ffffff 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 480ms ease, visibility 480ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  display: grid;
  width: min(430px, 88vw);
  justify-items: center;
  gap: 18px;
  padding: 30px 26px;
  border: 1px solid rgba(58, 143, 24, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: loaderRise 700ms ease both;
}

.loader-card img {
  width: min(170px, 46vw);
  height: auto;
  object-fit: contain;
  animation: logoPulse 1200ms ease-in-out infinite alternate;
}

.loader-card span {
  color: var(--leaf-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.loader-line {
  position: relative;
  overflow: hidden;
  width: min(260px, 68vw);
  height: 5px;
  border-radius: 999px;
  background: rgba(58, 143, 24, 0.14);
}

.loader-line::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 44%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--leaf), var(--lime), var(--harvest));
  animation: loaderMove 1100ms ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 96px;
}

.brand-logo {
  display: block;
  width: 78px;
  height: auto;
  max-height: 78px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #263d22;
  font-size: 14px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--leaf-dark);
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(7, 63, 23, 0.1);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.header-call,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(7, 63, 23, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header-call,
.button.primary {
  color: #fff;
  background-color: var(--leaf);
  background-image: linear-gradient(90deg, var(--leaf-dark), var(--leaf-dark));
  background-repeat: no-repeat;
  background-size: 0 100%;
  background-position: left center;
}

.header-call:hover,
.header-call:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-3px);
  background-size: 100% 100%;
  box-shadow: 0 0 0 4px rgba(155, 211, 27, 0.24), 0 16px 30px rgba(7, 63, 23, 0.28);
}

.button.secondary {
  color: var(--leaf-dark);
  background-color: #fff;
  background-image: linear-gradient(90deg, rgba(155, 211, 27, 0.34), rgba(243, 90, 29, 0.12));
  background-repeat: no-repeat;
  background-size: 0 100%;
  background-position: left center;
  border: 1px solid var(--line);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  transform: translateY(-3px);
  color: var(--leaf-dark);
  background-size: 100% 100%;
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(155, 211, 27, 0.26), 0 16px 30px rgba(52, 36, 25, 0.18);
}

.header-call:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(155, 211, 27, 0.78);
  outline-offset: 3px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 78px);
  background: var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.84) 38%, rgba(255, 250, 240, 0.12) 69%);
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: heroSlide 10s ease-in-out infinite;
}

.hero-slider img:nth-child(2) {
  animation-delay: 5s;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  animation: riseIn 850ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(42px, 4vw, 42px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 28px;
  color: #3d5238;
  font-size: 18px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(58, 143, 24, 0.2);
  border-radius: 8px;
  color: var(--leaf-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.section,
.service-band,
.contact-section {
  padding: 76px clamp(18px, 5vw, 78px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1fr);
  gap: 42px;
  align-items: start;
  background: #fff;
}

.intro p:last-child {
  color: #485f41;
  font-size: 18px;
}

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

.slider-section {
  overflow: hidden;
  padding: 76px 0;
  background: #edf7df;
}

.slider-section .section-heading {
  padding: 0 clamp(18px, 5vw, 78px);
}

.image-slider {
  overflow: hidden;
  width: 100%;
}

.slide-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: slideMove 26s linear infinite;
}

.slide-track:hover {
  animation-play-state: paused;
}

.slide-track img {
  width: min(620px, 82vw);
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 0 24px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(7, 63, 23, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: calc(100% + 48px);
  height: 150px;
  margin: 0 -24px 22px;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.product-card:hover img {
  transform: scale(1.06);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--leaf-dark);
  background: #eef8d6;
  font-weight: 800;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0 clamp(18px, 5vw, 78px) 76px;
  background: var(--cream);
}

.photo-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(7, 63, 23, 0.12);
  animation: floatSoft 5.5s ease-in-out infinite;
}

.photo-strip img:nth-child(2),
.photo-strip img:nth-child(4) {
  animation-delay: 650ms;
}

.product-card p,
.service-list p,
.why-grid span {
  color: var(--muted);
}

.service-band {
  color: #fff;
  background: linear-gradient(135deg, var(--leaf-dark), #13540f);
}

.service-band .eyebrow {
  color: var(--lime);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.service-list > div {
  overflow: hidden;
  min-height: 210px;
  padding: 0 0 28px;
  background: rgba(255, 255, 255, 0.08);
}

.service-list img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  margin-bottom: 24px;
  opacity: 0.92;
  transition: transform 600ms ease, opacity 240ms ease;
}

.service-list > div:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.service-list h3,
.service-list p {
  padding: 0 28px;
}

.service-list p {
  color: rgba(255, 255, 255, 0.78);
}

.crop-section {
  background: #fff;
}

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

.crop-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.crop-grid article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.crop-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.crop-grid h3,
.crop-grid p {
  padding: 0 22px;
}

.crop-grid h3 {
  margin-top: 22px;
}

.crop-grid p {
  padding-bottom: 24px;
  color: var(--muted);
}

.process-section {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98), rgba(255, 250, 240, 0.9)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=80") center / cover no-repeat;
}

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

.process-grid div {
  padding: 24px;
  border: 1px solid rgba(58, 143, 24, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
}

.process-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--soil);
  font-weight: 800;
}

.process-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.why {
  background: #fff;
}

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

.why-grid div {
  display: grid;
  gap: 8px;
  padding: 24px 0;
  border-top: 3px solid var(--harvest);
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf-dark), var(--leaf) 62%, var(--harvest));
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, #062f12, var(--leaf-dark));
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 1fr));
  gap: 34px;
  padding: 58px clamp(18px, 5vw, 78px) 42px;
}

.footer-brand img {
  display: block;
  width: 92px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 360px;
  line-height: 1.75;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 17px;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  transition: color 200ms ease, transform 200ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--lime);
  transform: translateX(4px);
}

.footer-contact p {
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 78px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  background: rgba(0, 0, 0, 0.16);
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 32px);
  bottom: clamp(18px, 3vw, 32px);
  z-index: 20;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(7, 63, 23, 0.26);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px);
  background: #1ebe5d;
  box-shadow: 0 20px 42px rgba(7, 63, 23, 0.34);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(155, 211, 27, 0.8);
  outline-offset: 4px;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.reveal.is-visible:nth-child(2) {
  animation-delay: 120ms;
  transition-delay: 120ms;
}

.reveal.is-visible:nth-child(3) {
  animation-delay: 240ms;
  transition-delay: 240ms;
}

.reveal.is-visible:nth-child(4) {
  animation-delay: 360ms;
  transition-delay: 360ms;
}

.section,
.slider-section,
.photo-strip,
.service-band,
.contact-section {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 780ms ease, transform 780ms ease;
}

.section.is-visible,
.slider-section.is-visible,
.photo-strip.is-visible,
.service-band.is-visible,
.contact-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section.is-visible .section-heading,
.service-band.is-visible .section-heading,
.slider-section.is-visible .section-heading {
  animation: riseIn 720ms ease both;
}

.product-card,
.crop-grid article,
.service-list > div,
.process-grid div,
.why-grid div,
.photo-strip img {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease, box-shadow 240ms ease;
}

.is-visible .product-card,
.is-visible .crop-grid article,
.is-visible .service-list > div,
.is-visible .process-grid div,
.is-visible .why-grid div,
.photo-strip.is-visible img {
  opacity: 1;
  transform: translateY(0);
}

.is-visible .product-card:nth-child(2),
.is-visible .crop-grid article:nth-child(2),
.is-visible .service-list > div:nth-child(2),
.is-visible .process-grid div:nth-child(2),
.is-visible .why-grid div:nth-child(2),
.photo-strip.is-visible img:nth-child(2) {
  transition-delay: 120ms;
}

.is-visible .product-card:nth-child(3),
.is-visible .crop-grid article:nth-child(3),
.is-visible .service-list > div:nth-child(3),
.is-visible .process-grid div:nth-child(3),
.is-visible .why-grid div:nth-child(3),
.photo-strip.is-visible img:nth-child(3) {
  transition-delay: 240ms;
}

.is-visible .product-card:nth-child(4),
.is-visible .process-grid div:nth-child(4),
.photo-strip.is-visible img:nth-child(4) {
  transition-delay: 360ms;
}

.is-visible .product-card:hover,
.is-visible .crop-grid article:hover {
  transform: translateY(-8px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .section,
  .slider-section,
  .photo-strip,
  .service-band,
  .contact-section,
  .reveal,
  .product-card,
  .crop-grid article,
  .service-list > div,
  .process-grid div,
  .why-grid div,
  .photo-strip img {
    opacity: 1;
    transform: none;
  }
}

@keyframes pageFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes loaderRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoPulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.025);
  }
}

@keyframes loaderMove {
  0% {
    transform: translateX(-110%);
  }
  55%,
  100% {
    transform: translateX(245%);
  }
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  8%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes slideMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-top: 6px;
  }

  .hero {
    min-height: 610px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 250, 240, 0.9) 50%, rgba(255, 250, 240, 0.28) 100%);
  }

  .intro,
  .product-grid,
  .service-list,
  .why-grid,
  .photo-strip,
  .crop-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: sticky;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand-logo {
    width: 60px;
    max-height: 60px;
  }

  .menu-toggle {
    display: flex;
    flex: 0 0 auto;
  }

  .site-header.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links,
  .header-call {
    display: none;
  }

  .site-header.is-open .nav-links {
    order: 3;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    padding: 8px 0;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .nav-links a {
    padding: 11px 4px;
    border-bottom: 1px solid rgba(221, 233, 210, 0.75);
    font-size: 14px;
  }

  .site-header.is-open .header-call {
    order: 4;
    display: inline-flex;
  }

  .header-call {
    width: 100%;
  }

  .hero {
    min-height: 680px;
    align-items: flex-start;
  }

  h1 {
    font-size: 40px;
  }

  .intro,
  .product-grid,
  .service-list,
  .why-grid,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .photo-strip img {
    height: 220px;
  }

  .product-card,
  .service-list > div {
    min-height: auto;
  }

  .slide-track img {
    height: 260px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 42px;
  }

  .footer-bottom {
    flex-direction: column;
    padding-bottom: 96px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 620px) {
  .crop-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}
