* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background:
    radial-gradient(circle at top, rgba(217, 239, 122, 0.18), transparent 28%),
    linear-gradient(180deg, #f7fbef 0%, #eef7de 35%, #f8fbf2 100%);
  color: #14351c;
  overflow-x: hidden;
}

/* NAVBAR */
.plant-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #D9EF7A;
  border-bottom: 1px solid rgba(20, 53, 28, 0.08);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.plant-nav.hide-nav {
  transform: translateY(-110%);
}

.plant-nav-inner {
  width: min(1280px, 92%);
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plant-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.plant-brand-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.plant-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.plant-brand-top {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #215a28;
}

.plant-brand-bottom {
  font-size: 22px;
  font-weight: 800;
  color: #17451f;
}

.plant-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.plant-links a,
.plant-mobile-menu a {
  text-decoration: none;
  color: #17451f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.plant-links a:hover,
.plant-mobile-menu a:hover {
  color: #2d7e35;
}

.plant-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.plant-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #17451f;
  margin: 5px 0;
  border-radius: 20px;
}

.plant-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 0 4% 22px;
  background: #D9EF7A;
}

/* HERO 

.plant-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 5% 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(217,239,122,0.24), transparent 22%),
    radial-gradient(circle at 82% 22%, rgba(116,180,67,0.16), transparent 24%),
    linear-gradient(180deg, #eaf8bf 0%, #f4fbdf 42%, #f7fbef 100%);
}

.plant-hero-layout {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-tree-side {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
  position: relative;

}

.palm-scene {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 620px;
}

.palm-shadow {
  position: absolute;
  bottom: 56px;
  left: 50%;
  width: 210px;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,53,28,0.26) 0%, rgba(20,53,28,0.08) 48%, transparent 75%);
  filter: blur(8px);
  animation: shadowPulse 4.8s ease-in-out infinite;
}

.palm-tree {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%) scale(0.22);
  width: 260px;
  height: 500px;
  animation: treeGrow 4.8s cubic-bezier(.2,.8,.2,1) forwards;
}

.palm-trunk {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 54px;
  height: 300px;
  transform: translateX(-50%);
  border-radius: 36px;
  background: linear-gradient(180deg, #8d5c2f 0%, #6f4524 48%, #4d2f17 100%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.05);
}

.palm-trunk span {
  position: absolute;
  left: 50%;
  width: 72px;
  height: 16px;
  transform: translateX(-50%) skewY(-8deg);
  border-radius: 20px;
  background: rgba(255,255,255,0.10);
}

.palm-trunk span:nth-child(1) { top: 28px; }
.palm-trunk span:nth-child(2) { top: 72px; }
.palm-trunk span:nth-child(3) { top: 118px; }
.palm-trunk span:nth-child(4) { top: 164px; }
.palm-trunk span:nth-child(5) { top: 210px; }
.palm-trunk span:nth-child(6) { top: 256px; }

.palm-crown {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 300px;
  height: 220px;
  transform: translateX(-50%);
}

.frond {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 34px;
  transform-origin: left center;
  border-radius: 0 100px 100px 0;
  background: linear-gradient(90deg, #2a7d36 0%, #58a83d 52%, #84c850 100%);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.08);
}

.frond::before,
.frond::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 12px;
  width: 90px;
  height: 10px;
  border-radius: 30px;
  background: rgba(255,255,255,0.10);
}

.frond::after {
  top: 18px;
  width: 74px;
  right: 18px;
}

.frond-1 { transform: translate(-8%, -50%) rotate(20deg); }
.frond-2 { transform: translate(-8%, -50%) rotate(40deg); }
.frond-3 { transform: translate(-8%, -50%) rotate(60deg); }
.frond-4 { transform: translate(-8%, -50%) rotate(80deg); }
.frond-5 { transform: translate(-8%, -50%) rotate(100deg); }
.frond-6 { transform: translate(-8%, -50%) rotate(120deg); }
.frond-7 { transform: translate(-8%, -50%) rotate(140deg); }
.frond-8 { transform: translate(-8%, -50%) rotate(160deg); }
.frond-9 { transform: translate(-8%, -50%) rotate(180deg); }
.frond-10 { transform: translate(-8%, -50%) rotate(200deg); }
.frond-11 { transform: translate(-8%, -50%) rotate(220deg); }
.frond-12 { transform: translate(-8%, -50%) rotate(240deg); }
.frond-13 { transform: translate(-8%, -50%) rotate(260deg); }
.frond-14 { transform: translate(-8%, -50%) rotate(280deg); }
.frond-15 { transform: translate(-8%, -50%) rotate(300deg); }
.frond-16 { transform: translate(-8%, -50%) rotate(320deg); }
.frond-17 { transform: translate(-8%, -50%) rotate(340deg); }
.frond-18 { transform: translate(-8%, -50%) rotate(360deg); }

.fruit-cluster {
  position: absolute;
  top: 150px;
  left: 50%;
  width: 74px;
  height: 74px;
  transform: translateX(-50%);
}

.fruit {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffb23c 0%, #d66b1b 55%, #8d2f08 100%);
  box-shadow: inset -2px -3px 5px rgba(0,0,0,0.18);
}

.fruit:nth-child(1) { top: 0; left: 24px; }
.fruit:nth-child(2) { top: 14px; left: 8px; }
.fruit:nth-child(3) { top: 14px; left: 40px; }
.fruit:nth-child(4) { top: 28px; left: 0; }
.fruit:nth-child(5) { top: 28px; left: 24px; }
.fruit:nth-child(6) { top: 28px; left: 48px; }
.fruit:nth-child(7) { top: 44px; left: 22px; }

.falling-fruit {
  position: absolute;
  left: 58%;
  top: 210px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle at 30% 30%, #ffb23c 0%, #d66b1b 55%, #8d2f08 100%);
  box-shadow: inset -2px -3px 5px rgba(0,0,0,0.18);
}

.drop-1 { animation: fruitDrop 4.8s ease-in-out infinite 3.3s; }
.drop-2 { animation: fruitDrop 4.8s ease-in-out infinite 3.7s; }
.drop-3 { animation: fruitDrop 4.8s ease-in-out infinite 4.0s; }
.drop-4 { animation: fruitDrop 4.8s ease-in-out infinite 4.3s; }
.drop-5 { animation: fruitDrop 4.8s ease-in-out infinite 4.6s; }

@keyframes treeGrow {
  0% {
    transform: translateX(-50%) scale(0.18);
    opacity: 0.2;
  }
  25% {
    transform: translateX(-50%) scale(0.38);
    opacity: 0.7;
  }
  55% {
    transform: translateX(-50%) scale(0.72);
    opacity: 1;
  }
  75% {
    transform: translateX(-50%) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

@keyframes fruitDrop {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.8);
  }
  10% {
    opacity: 1;
  }
  65% {
    opacity: 1;
    transform: translate(-40px, 245px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-56px, 300px) scale(0.9);
  }
}

@keyframes shadowPulse {
  0%, 100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.9;
  }
  50% {
    transform: translateX(-50%) scaleX(1.08);
    opacity: 0.7;
  }
}



*/



.plant-hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;

  /* 🔥 BACKGROUND IMAGE */
  background: 
    linear-gradient(rgba(10, 25, 12, 0.6), rgba(10, 25, 12, 0.75)),
    url("images/plant.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

.plant-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 5% 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  
}
@media (max-width: 1100px) {
  .plant-hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-tree-side {
    min-height: 500px;
    order: 2;
  }

  .plant-hero-content {
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .hero-tree-side {
    min-height: 420px;
  }

  .palm-scene {
    max-width: 320px;
    height: 420px;
  }

  .palm-tree {
    width: 200px;
    height: 400px;
  }

  .palm-trunk {
    width: 42px;
    height: 230px;
  }

  .palm-crown {
    width: 220px;
    height: 170px;
    top: 34px;
  }

  .frond {
    width: 112px;
    height: 26px;
  }

  .fruit-cluster {
    top: 126px;
  }

  .falling-fruit {
    top: 180px;
    left: 57%;
  }
}



.sun-glow {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,255,171,0.85) 0%, rgba(250,255,171,0.2) 45%, transparent 72%);
  filter: blur(10px);
  animation: breatheGlow 5s ease-in-out infinite;
}

.hill {
  position: absolute;
  left: -5%;
  width: 110%;
  border-radius: 50% 50% 0 0;

}

.hill-back {
  bottom: 90px;
  height: 240px;
  background: linear-gradient(180deg, #8dca5f 0%, #5b9842 100%);
  opacity: 0.75;
  z-index: 0;
}

.hill-front {
  bottom: -40px;
  height: 320px;
  background: linear-gradient(180deg, #387a35 0%, #184a22 100%);
  z-index: 2;
}

.mist {
  position: absolute;
  width: 60%;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.0) 70%);
  filter: blur(20px);
  z-index: 1;
}

.mist-1 {
  bottom: 180px;
  left: 5%;
  animation: driftMist 12s linear infinite;
}

.mist-2 {
  bottom: 130px;
  right: 2%;
  animation: driftMist 15s linear infinite reverse;
}

.plant-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(33, 90, 40, 0.14);
  color: #1f5a28;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}



.plant-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 22px;
}

.plant-hero p {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 34px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 34px;
  ;
}

.hero-stat {
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.46);
  border: 1px solid rgba(17, 70, 26, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(35, 74, 23, 0.08);
  
}

.hero-stat strong {
  display: block;
  font-size: 23px;
  font-weight: 800;
  color: #17451f;
  margin-bottom: 6px;
}

.hero-stat span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(23, 69, 31, 0.82);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d7e35 0%, #17451f 100%);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(28, 82, 34, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(28, 82, 34, 0.28);
}

.hero-btn.alt {
  background: linear-gradient(135deg, #D9EF7A 0%, #87bc44 100%);
  color: #16391d;
}

.scroll-indicator {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(20, 53, 28, 0.35);
  border-radius: 999px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #215a28;
  animation: scrollDot 2s infinite;
}

/* LEAF ANIMATION */
.leaf {
  position: absolute;
  top: -80px;
  width: 28px;
  height: 28px;
  background: linear-gradient(145deg, #6ab746, #2f7d3c);
  border-radius: 0 100% 0 100%;
  opacity: 0.75;
  z-index: 1;
  filter: blur(0.2px);
  box-shadow: inset -3px -3px 6px rgba(255,255,255,0.15);
}

.leaf::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 12px;
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,0.28);
  transform: rotate(35deg);
  transform-origin: top;
  border-radius: 20px;
}

.leaf-1 { left: 8%;  animation: leafFall 11s linear infinite; animation-delay: 0s; }
.leaf-2 { left: 22%; animation: leafFall 9s linear infinite; animation-delay: 2s; }
.leaf-3 { left: 46%; animation: leafFall 13s linear infinite; animation-delay: 1s; }
.leaf-4 { left: 63%; animation: leafFall 10s linear infinite; animation-delay: 4s; }
.leaf-5 { left: 80%; animation: leafFall 12s linear infinite; animation-delay: 3s; }
.leaf-6 { left: 92%; animation: leafFall 8.5s linear infinite; animation-delay: 5s; }

/* SECTIONS */
.plant-section {
  position: relative;
  padding: 110px 0;
}

.section-shell {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  color: #14351c;
  margin-top: 14px;
  font-weight: 800;
}

.section-heading.center {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #2f7d3c;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-copy p,
.section-intro,
.crop-card p,
.estate-card p,
.value-box p,
.cta-shell p {
  font-size: 16px;
  line-height: 1.95;
  color: rgba(20, 53, 28, 0.82);
}

.section-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.rubber-estates-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #f7fbf6 0%, #edf5ec 100%);
  overflow: hidden;
}

.rubber-estates-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(47,125,60,0.12) 0%, rgba(47,125,60,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.rubber-estates-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(36,120,58,0.10) 0%, rgba(36,120,58,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.rubber-estates-container {
  width: min(1240px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.rubber-estates-heading {
  max-width: 860px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2f7d3c;
  margin-bottom: 14px;
}

.rubber-estates-heading h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  color: #16351f;
  margin-bottom: 20px;
  font-weight: 800;
}

.rubber-estates-heading p {
  font-size: 17px;
  line-height: 1.8;
  color: #4d5f52;
  max-width: 760px;
  margin: 0 auto;
}

.rubber-estates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.rubber-estate-card {
  position: relative;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(47,125,60,0.10);
  border-radius: 28px;
  padding: 36px 34px;
  box-shadow: 0 16px 38px rgba(13, 52, 24, 0.08);
  backdrop-filter: blur(4px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.rubber-estate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(47,125,60,0.08), transparent 30%),
    linear-gradient(135deg, rgba(47,125,60,0.03), transparent 45%);
  pointer-events: none;
}

.rubber-estate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(13, 52, 24, 0.12);
}

.estate-card-top-line {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, #24783A, #72b56d);
  border-radius: 999px;
  margin-bottom: 18px;
}

.estate-location {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #2f7d3c;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.rubber-estate-card h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2;
  color: #183823;
  margin-bottom: 18px;
  font-weight: 800;
}

.rubber-estate-card p {
  font-size: 15.8px;
  line-height: 1.85;
  color: #516257;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.rubber-estate-card p:last-child {
  margin-bottom: 0;
}

/* reveal animation support */
.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

/* responsive */
@media (max-width: 900px) {
  .rubber-estates-grid {
    grid-template-columns: 1fr;
  }

  .rubber-estates-section {
    padding: 85px 0;
  }

  .rubber-estate-card {
    padding: 30px 24px;
  }
}

@media (max-width: 600px) {
  .rubber-estates-heading h2 {
    font-size: 30px;
  }

  .rubber-estates-heading p,
  .rubber-estate-card p {
    font-size: 15px;
  }
}

/* Image container */
.estate-image {
  width: 100%;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 22px;
  position: relative;
}

.estate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover zoom effect */
.rubber-estate-card:hover .estate-image img {
  transform: scale(1.08);
}

/* Slight overlay for premium look */
.estate-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.25)
  );
}

/* Keep text spacing clean */
.estate-card-content {
  position: relative;
  z-index: 2;
}











/* CROPS */
.crops-section {
  background:
    linear-gradient(180deg, rgba(217,239,122,0.08), rgba(255,255,255,0)),
    radial-gradient(circle at 50% 0%, rgba(116, 180, 67, 0.12), transparent 30%);
}

.crop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.crop-card {
  position: relative;
  padding: 42px 34px;
  border-radius: 30px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(34, 96, 37, 0.08);
  box-shadow: 0 20px 45px rgba(28, 74, 33, 0.08);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.crop-card:hover,
.estate-card:hover,
.value-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(28, 74, 33, 0.12);
}

.crop-card-glow {
  position: absolute;
  top: -60px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,239,122,0.45) 0%, transparent 70%);
}

.crop-icon {
  font-size: 38px;
  margin-bottom: 18px;
}

.crop-card h3,
.estate-card h3,
.value-box h3 {
  font-size: 24px;
  font-weight: 800;
  color: #17451f;
  margin-bottom: 16px;
}

/* ESTATES */
.estates-section {
  background: linear-gradient(180deg, #f8fbf2 0%, #edf8e3 100%);
}

.estate-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 30px;
}

.estate-photo-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(33,90,40,0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(28, 74, 33, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.estate-photo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 52px rgba(28, 74, 33, 0.12);
}

.estate-photo-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.estate-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.estate-photo-card:hover .estate-photo-wrap img {
  transform: scale(1.08);
}

.estate-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,52,24,0.18), rgba(16,52,24,0.02));
}

.estate-photo-content {
  padding: 28px 26px 30px;
}

.estate-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #D9EF7A;
  color: #17451f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.estate-photo-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: #17451f;
  margin-bottom: 14px;
}

.estate-photo-content p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(20, 53, 28, 0.82);
}

@media (max-width: 900px) {
  .estate-photo-grid {
    grid-template-columns: 1fr;
  }

  .estate-photo-wrap {
    height: 250px;
  }
}
/* VALUES */
.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-box {
  padding: 34px 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(34, 96, 37, 0.08);
  box-shadow: 0 16px 35px rgba(28, 74, 33, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* CTA */
.cta-section {
  padding-top: 60px;
}

.cta-shell {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;   
  justify-content: center;
}
.cta-logo {
  width: 90px; /* adjust size */
  margin-bottom: 18px;
  display: block;
}
.cta-shell h2 {
  font-size: clamp(30px, 4vw, 52px);
  color: #14351c;
  margin: 16px 0;
  font-weight: 800;
}

.cta-shell p {
  max-width: 760px;
  margin: 0 auto 26px;
}

/* REVEAL */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMATIONS */
@keyframes leafFall {
  0% {
    transform: translateY(-80px) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.75;
  }
  50% {
    transform: translateY(50vh) translateX(30px) rotate(140deg);
  }
  100% {
    transform: translateY(110vh) translateX(-20px) rotate(320deg);
    opacity: 0;
  }
}

@keyframes driftMist {
  0% { transform: translateX(0); }
  50% { transform: translateX(60px); }
  100% { transform: translateX(0); }
}

@keyframes breatheGlow {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.08); opacity: 0.75; }
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .two-col,
  .values-row {
    grid-template-columns: 1fr 1fr;
  }

  .crop-grid,
  .estate-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .plant-links {
    display: none;
  }

  .plant-menu-toggle {
    display: block;
  }

  .plant-mobile-menu.active {
    display: flex;
  }

  .two-col,
  .values-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .plant-hero {
    padding-top: 130px;
  }

  .plant-hero h1 {
    font-size: clamp(34px, 10vw, 58px);
  }

  .hero-stats {
    flex-direction: column;
  }

  .hero-stat {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .plant-nav-inner {
    min-height: 76px;
  }

  .plant-brand-logo {
    width: 46px;
    height: 46px;
  }

  .plant-brand-bottom {
    font-size: 18px;
  }

  .plant-section {
    padding: 85px 0;
  }

  .crop-card,
  .estate-card,
  .value-box,
  .cta-shell {
    border-radius: 22px;
  }
}