/* ================================
   VARIABLES & BASE
================================ */
:root {
  --green-dark: #0d3320;
  --green-primary: #1a4731;
  --green-mid: #166534;
  --green-light: #22c55e;
  --green-neon: #4ade80;
  --lime: #a3e635;
  --cream: #fefce8;
  --gold: #d4a72c;
  --white: #ffffff;
  --dark: #0a1608;
  --dark-2: #0f1e0d;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  overflow-y: hidden;
  cursor: none;
}

body.loaded { overflow-y: auto; }

::selection { background: var(--green-neon); color: var(--dark); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green-primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-neon); }

/* ================================
   CUSTOM CURSOR
================================ */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--green-neon);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: exclusion;
  transition: width .25s, height .25s;
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(74,222,128,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, opacity .3s;
}
.cursor.grow { width: 18px; height: 18px; }
.cursor-ring.grow { width: 58px; height: 58px; opacity: .3; }

@media (max-width: 768px) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ================================
   SCROLL PROGRESS
================================ */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-neon), var(--lime));
  z-index: 99997;
  box-shadow: 0 0 8px var(--green-neon);
  transition: width .1s linear;
}

/* ================================
   PRELOADER
================================ */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.out { opacity: 0; visibility: hidden; }

.pre-ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(74,222,128,.15);
  border-top-color: var(--green-neon);
  animation: spin 1.2s linear infinite;
  margin-bottom: 28px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.pre-ring img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pre-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  animation: breathe 1.6s ease infinite;
}
@keyframes breathe { 0%,100%{opacity:.8} 50%{opacity:.3} }

.pre-bar {
  width: 180px; height: 1px;
  background: rgba(255,255,255,.08);
  margin-top: 20px;
  border-radius: 1px;
  overflow: hidden;
}
.pre-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-neon), var(--lime));
  animation: barLoad 2s ease forwards;
}
@keyframes barLoad { from{width:0} to{width:100%} }

/* ================================
   NAVBAR
================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding .4s ease, background .4s ease, border-color .4s ease;
}
#navbar.scrolled {
  padding: 12px 0;
  background: rgba(10,22,8,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(74,222,128,.08);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-brand img {
  width: 42px; height: 42px;
  border-radius: 50%; object-fit: cover;
  border: 1.5px solid var(--green-neon);
}
.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav-brand-text small {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .6rem;
  font-weight: 400;
  color: var(--green-neon);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--green-neon);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--green-neon); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--green-neon) !important;
  color: var(--dark) !important;
  padding: 8px 22px !important;
  border-radius: 100px;
  font-weight: 700 !important;
  transition: all .3s ease !important;
}
.nav-cta:hover { box-shadow: 0 0 22px rgba(74,222,128,.45); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobileMenu {
  position: fixed; inset: 0;
  background: rgba(10,22,8,.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden;
  transition: all .4s ease;
}
#mobileMenu.open { opacity: 1; visibility: visible; }
#mobileMenu a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-style: italic;
  transition: color .3s;
}
#mobileMenu a:hover { color: var(--green-neon); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ================================
   HERO
================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute; inset: 0;
  background: url('assets/cow.jpg') center/cover no-repeat;
  opacity: .12;
  transform: scale(1.08);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .25;
  animation: blobFloat 14s ease-in-out infinite;
  pointer-events: none;
}
.blob-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #22c55e, transparent 65%);
  top: -140px; right: -140px;
}
.blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #166534, transparent 65%);
  bottom: -80px; left: -80px;
  animation-delay: -5s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #a3e635, transparent 65%);
  top: 45%; left: 35%;
  animation-delay: -9s;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-28px) scale(1.04); }
  66%      { transform: translate(-20px,20px) scale(.96); }
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,222,128,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,222,128,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-inner {
  position: relative; z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 28px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.25);
  color: var(--green-neon);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp .8s ease 2.2s forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-neon);
  border-radius: 50%;
  animation: blink 1.6s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7.5vw, 7.5rem);
  font-weight: 900;
  line-height: 1.03;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-h1 .accent { color: var(--green-neon); font-style: italic; }
.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .line-inner {
  display: block;
  transform: translateY(105%);
  animation: slideUp .85s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-h1 .line:nth-child(2) .line-inner { animation-delay: .1s; }
.hero-h1 .line:nth-child(3) .line-inner { animation-delay: .2s; }
@keyframes slideUp { to { transform: translateY(0); } }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.5);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
  animation: fadeSlideUp .8s ease 2.6s forwards;
}

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp .8s ease 2.9s forwards;
}

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

/* Floating stat cards */
.hero-floats {
  position: absolute;
  right: 6%;
  bottom: 14%;
  display: flex; flex-direction: column; gap: 14px;
}
.hero-float-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 16px 22px;
  border-radius: 14px;
  text-align: center;
  animation: cardFloat 4.5s ease-in-out infinite;
}
.hero-float-card:nth-child(2) { animation-delay: -2.2s; }
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
.hero-float-card .f-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--green-neon); line-height: 1;
}
.hero-float-card .f-label {
  font-size: .65rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 3px;
}
@media (max-width: 1024px) { .hero-floats { display: none; } }

/* Scroll line */
.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-cue-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(74,222,128,.8), transparent);
  animation: lineAnim 2.2s ease-in-out infinite;
}
@keyframes lineAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ================================
   BUTTONS
================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-neon);
  color: var(--dark);
  padding: 13px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all .3s ease;
  letter-spacing: .02em;
}
.btn-primary:hover {
  background: var(--lime);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(74,222,128,.38);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 100px;
  font-weight: 500;
  font-size: .88rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.18);
  transition: all .3s ease;
  letter-spacing: .02em;
}
.btn-outline:hover {
  border-color: var(--green-neon);
  color: var(--green-neon);
  transform: translateY(-2px);
}

/* ================================
   MARQUEE
================================ */
.marquee-wrap {
  background: var(--green-neon);
  padding: 13px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 56px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.m-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .75rem; font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  flex-shrink: 0;
}
.m-dot {
  width: 5px; height: 5px;
  background: rgba(10,22,8,.4);
  border-radius: 50%;
}

/* ================================
   SECTION COMMONS
================================ */
section { padding: 110px 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--green-neon);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--green-neon);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 14px;
}
.section-title em { color: var(--green-neon); font-style: italic; }

.section-desc {
  color: rgba(255,255,255,.45);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ================================
   STATS
================================ */
#stats {
  padding: 64px 0;
  background: var(--green-primary);
  position: relative; overflow: hidden;
}
#stats::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(74,222,128,.12) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-ico {
  width: 46px; height: 46px;
  background: rgba(74,222,128,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--green-neon);
  font-size: 1.1rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--white); line-height: 1;
  margin-bottom: 6px;
}
.stat-num .suf { font-size: 2.2rem; color: var(--green-neon); }
.stat-lbl {
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ================================
   PRODUCTS
================================ */
#products { background: var(--dark); }

.products-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap; gap: 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 768px) { .products-grid { grid-template-columns: 1fr; } }

.p-card {
  background: rgba(26,71,49,.18);
  border: 1px solid rgba(74,222,128,.08);
  border-radius: 22px;
  padding: 38px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.p-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(74,222,128,.05), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.p-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74,222,128,.35);
  box-shadow: 0 28px 56px rgba(0,0,0,.3), 0 0 0 1px rgba(74,222,128,.08);
}
.p-card:hover::before { opacity: 1; }

.p-icon {
  width: 62px; height: 62px;
  background: rgba(74,222,128,.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 22px;
  transition: all .4s ease;
}
.p-card:hover .p-icon {
  background: var(--green-neon);
  transform: scale(1.1) rotate(-6deg);
}

.p-tag {
  display: inline-block;
  background: rgba(74,222,128,.1);
  color: var(--green-neon);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 10px;
}
.p-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  transition: color .3s;
}
.p-card:hover .p-name { color: var(--green-neon); }
.p-desc {
  color: rgba(255,255,255,.45);
  font-size: .88rem;
  line-height: 1.65;
  margin-bottom: 22px;
}
.p-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.p-chip {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  padding: 4px 11px;
  border-radius: 100px;
  font-size: .72rem;
  transition: all .3s;
}
.p-card:hover .p-chip {
  border-color: rgba(74,222,128,.25);
  color: var(--green-neon);
}
.p-arrow {
  position: absolute; bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: rgba(74,222,128,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-neon);
  font-size: .85rem;
  transition: all .4s ease;
}
.p-card:hover .p-arrow {
  background: var(--green-neon);
  color: var(--dark);
  transform: translate(4px,-4px);
}

/* ================================
   ABOUT
================================ */
#about {
  background: linear-gradient(180deg, var(--dark) 0%, var(--green-dark) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-img-wrap { position: relative; }
.about-img {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--green-neon);
  color: var(--dark);
  padding: 22px;
  border-radius: 18px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(74,222,128,.28);
}
.about-badge .big {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; line-height: 1;
}
.about-badge .sml {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .8;
}

.about-story {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.82;
  margin-bottom: 24px;
  font-weight: 300;
}
.about-story strong { color: var(--white); font-weight: 600; }

.mission-quote {
  background: rgba(74,222,128,.05);
  border-left: 3px solid var(--green-neon);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 32px;
}
.mission-quote p {
  color: rgba(255,255,255,.75);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.7;
}

/* Farm life cards */
.farm-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 80px;
}
@media (max-width: 768px) { .farm-cards { grid-template-columns: 1fr; } }

.farm-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 28px 22px;
  position: relative; overflow: hidden;
  transition: transform .4s, border-color .4s;
}
.farm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green-neon), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.farm-card:hover { transform: translateY(-5px); border-color: rgba(74,222,128,.18); }
.farm-card:hover::before { opacity: 1; }
.farm-card-icon { font-size: 1.9rem; margin-bottom: 14px; }
.farm-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--white);
  margin-bottom: 10px;
}
.farm-card-desc {
  color: rgba(255,255,255,.38);
  font-size: .82rem; line-height: 1.7;
}

/* ================================
   GALLERY
================================ */
#gallery {
  background: var(--green-dark);
  position: relative; overflow: hidden;
}
.gallery-head { text-align: center; margin-bottom: 56px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
.g-item:nth-child(1) { grid-column: span 2; }
.g-item:nth-child(4) { grid-column: span 2; }

.g-item {
  position: relative; overflow: hidden;
  border-radius: 14px; cursor: pointer;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover; min-height: 240px;
  transition: transform .6s ease;
  display: block;
}
.g-item:hover img { transform: scale(1.07); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,8,.8), transparent);
  opacity: 0;
  transition: opacity .4s;
  display: flex; align-items: flex-end; padding: 20px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-expand {
  width: 40px; height: 40px;
  background: var(--green-neon);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: .9rem;
  margin-left: auto;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .g-item:nth-child(1),
  .g-item:nth-child(4) { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item:nth-child(1),
  .g-item:nth-child(4) { grid-column: span 1; }
}

/* Lightbox */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all .4s ease;
  backdrop-filter: blur(20px);
}
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox img {
  max-width: 90vw; max-height: 86vh;
  object-fit: contain; border-radius: 10px;
  transform: scale(.88);
  transition: transform .4s ease;
}
#lightbox.open img { transform: scale(1); }
.lb-close {
  position: absolute; top: 22px; right: 22px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08);
  border: none; border-radius: 50%;
  color: white; cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.lb-close:hover { background: var(--green-neon); color: var(--dark); }

/* ================================
   VALUES
================================ */
#values { background: var(--dark); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 56px;
}
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

.v-card {
  padding: 38px 30px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.05);
  background: rgba(26,71,49,.12);
  position: relative; overflow: hidden;
  transition: all .4s ease;
}
.v-card::after {
  content: attr(data-n);
  position: absolute;
  bottom: -18px; right: -8px;
  font-family: 'Playfair Display', serif;
  font-size: 7.5rem; font-weight: 900;
  color: rgba(74,222,128,.03);
  line-height: 1;
  pointer-events: none;
}
.v-card:hover {
  border-color: rgba(74,222,128,.18);
  transform: translateY(-6px);
  background: rgba(26,71,49,.25);
}
.v-icon {
  width: 54px; height: 54px;
  background: rgba(74,222,128,.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 22px;
  transition: background .4s;
}
.v-card:hover .v-icon { background: var(--green-neon); }
.v-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--white);
  margin-bottom: 10px;
}
.v-desc { color: rgba(255,255,255,.4); font-size: .88rem; line-height: 1.7; }

/* ================================
   CONTACT / FOOTER
================================ */
#contact {
  background: var(--green-primary);
  position: relative; overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -180px; left: -180px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(74,222,128,.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 18px;
}
.contact-h2 em { color: var(--green-neon); }
.contact-p {
  color: rgba(255,255,255,.45);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-items { display: flex; flex-direction: column; gap: 12px; }

.c-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 13px;
  text-decoration: none;
  transition: all .3s ease;
}
.c-item:hover {
  background: rgba(74,222,128,.09);
  border-color: rgba(74,222,128,.25);
  transform: translateX(4px);
}
.c-ico {
  width: 38px; height: 38px;
  background: rgba(74,222,128,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-neon); font-size: .85rem;
  flex-shrink: 0;
}
.c-lbl {
  font-size: .6rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2px;
}
.c-val { color: var(--white); font-size: .88rem; font-weight: 500; }
.c-arr { color: rgba(255,255,255,.18); margin-left: auto; font-size: .8rem; }

.hours-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 20px;
}
.hours-ttl {
  color: var(--green-neon);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-k { color: rgba(255,255,255,.45); }
.hours-v { color: var(--white); font-weight: 500; }

.social-row { display: flex; gap: 10px; }
.soc-btn {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  text-decoration: none;
  transition: all .3s ease;
}
.soc-btn:hover {
  background: var(--green-neon);
  color: var(--dark);
  border-color: var(--green-neon);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 56px; padding-top: 28px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: rgba(255,255,255,.25); font-size: .78rem; }
.footer-love { color: rgba(255,255,255,.25); font-size: .78rem; }
.footer-love span { color: #ef4444; }

/* ================================
   CHATBOT
================================ */
#chatBtn {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: var(--green-neon);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 500;
  border: none; font-size: 1.35rem; color: var(--dark);
  box-shadow: 0 4px 22px rgba(74,222,128,.45);
  transition: all .3s ease;
}
#chatBtn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(74,222,128,.6); }
#chatBtn .pulse {
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--green-neon);
  animation: pulseOut 2.2s ease-out infinite;
}
@keyframes pulseOut {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}

#chatHint {
  position: fixed; bottom: 98px; right: 28px;
  background: var(--white);
  color: var(--dark);
  padding: 9px 14px;
  border-radius: 12px 12px 4px 12px;
  font-size: .78rem; font-weight: 500;
  z-index: 500; white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0,0,0,.16);
  animation: fadein .5s 1.8s both;
}
@keyframes fadein { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

#chatWidget {
  position: fixed; bottom: 98px; right: 28px;
  width: 370px;
  background: #0b1a0f;
  border: 1px solid rgba(74,222,128,.2);
  border-radius: 24px;
  overflow: hidden;
  z-index: 500;
  display: flex; flex-direction: column;
  transform: scale(.88) translateY(20px);
  opacity: 0; visibility: hidden;
  transition: all .42s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 32px 64px rgba(0,0,0,.5);
}
#chatWidget.open {
  transform: scale(1) translateY(0);
  opacity: 1; visibility: visible;
}
@media (max-width: 480px) {
  #chatWidget { width: calc(100vw - 20px); right: 10px; bottom: 84px; }
  #chatBtn { right: 16px; bottom: 16px; }
  #chatHint { right: 16px; }
}

/* Header */
.chat-head {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  padding: 16px 20px;
  display: flex; align-items: center; gap: 11px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(74,222,128,.1);
}
.chat-av-wrap { position: relative; flex-shrink: 0; }
.chat-av {
  width: 40px; height: 40px;
  background: var(--green-neon);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--dark);
}
.chat-av-dot {
  position: absolute; bottom: 1px; right: 1px;
  width: 9px; height: 9px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #0b1a0f;
}
.chat-head-info { flex: 1; }
.chat-name { font-weight: 600; color: var(--white); font-size: .88rem; line-height: 1.2; }
.chat-status { font-size: .63rem; color: var(--green-neon); opacity: .85; margin-top: 1px; }
.chat-x {
  background: rgba(255,255,255,.07); border: none;
  color: rgba(255,255,255,.5);
  width: 30px; height: 30px; border-radius: 50%;
  cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.chat-x:hover { background: rgba(255,255,255,.14); color: var(--white); }

/* Messages area */
#chatMessages {
  height: 300px;
  overflow-y: auto;
  padding: 16px 16px 8px;
  display: flex; flex-direction: column; gap: 8px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(74,222,128,.18) transparent;
}

/* Message animation */
@keyframes msgSlide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Bot row: small avatar + bubble */
.chat-bot-row {
  display: flex; align-items: flex-end; gap: 7px;
  align-self: flex-start;
  animation: msgSlide .22s ease;
  max-width: 90%;
}
.chat-bot-av {
  width: 24px; height: 24px;
  background: rgba(74,222,128,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; flex-shrink: 0;
}

.chat-msg {
  padding: 9px 13px;
  border-radius: 14px;
  font-size: .82rem;
  line-height: 1.56;
  white-space: pre-line;
}
.chat-msg.bot {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.85);
  border-radius: 4px 14px 14px 14px;
}
.chat-msg.user {
  background: var(--green-neon);
  color: var(--dark); font-weight: 500;
  border-radius: 14px 14px 4px 14px;
  align-self: flex-end;
  animation: msgSlide .22s ease;
  max-width: 85%;
}

/* Typing indicator */
.chat-typing {
  display: flex; align-items: flex-end; gap: 7px;
  align-self: flex-start;
  animation: msgSlide .2s ease;
}
.chat-typing-av {
  width: 24px; height: 24px;
  background: rgba(74,222,128,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; flex-shrink: 0;
}
.typing-bubble {
  background: rgba(255,255,255,.07);
  border-radius: 4px 14px 14px 14px;
  padding: 11px 16px;
  display: flex; gap: 4px; align-items: center;
}
.t-dot {
  width: 6px; height: 6px;
  background: rgba(74,222,128,.6);
  border-radius: 50%;
  animation: dotBounce 1.2s ease infinite;
}
.t-dot:nth-child(2) { animation-delay: .18s; }
.t-dot:nth-child(3) { animation-delay: .36s; }
@keyframes dotBounce {
  0%,80%,100% { transform: translateY(0); opacity: .5; }
  40%          { transform: translateY(-5px); opacity: 1; }
}

/* Contact card inside chat */
.chat-contact-card {
  background: rgba(74,222,128,.06);
  border: 1px solid rgba(74,222,128,.2);
  border-radius: 14px;
  padding: 14px;
  animation: msgSlide .22s ease;
  align-self: flex-start;
  max-width: 90%;
}
.chat-contact-card-title {
  color: rgba(255,255,255,.7);
  font-size: .78rem; margin-bottom: 10px;
  line-height: 1.5;
}
.chat-contact-btns {
  display: flex; flex-direction: column; gap: 7px;
}
.chat-c-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 13px;
  border-radius: 10px;
  text-decoration: none;
  font-size: .78rem; font-weight: 600;
  transition: all .25s ease;
}
.chat-c-btn.call   { background: rgba(59,130,246,.15); color: #93c5fd; border: 1px solid rgba(59,130,246,.25); }
.chat-c-btn.wa     { background: rgba(34,197,94,.12);  color: #86efac; border: 1px solid rgba(34,197,94,.25); }
.chat-c-btn.email  { background: rgba(245,158,11,.1);  color: #fcd34d; border: 1px solid rgba(245,158,11,.2); }
.chat-c-btn:hover  { filter: brightness(1.15); transform: translateX(2px); }
.chat-c-btn i { width: 16px; text-align: center; }

/* Suggestions strip */
#chatSuggestions {
  display: flex; gap: 6px;
  padding: 6px 16px 10px;
  flex-wrap: wrap;
  min-height: 0;
  transition: all .3s ease;
}
.chat-sug {
  background: rgba(74,222,128,.07);
  border: 1px solid rgba(74,222,128,.2);
  color: var(--green-neon);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .71rem;
  cursor: pointer;
  transition: all .25s;
  animation: msgSlide .25s ease;
  white-space: nowrap;
}
.chat-sug:hover { background: var(--green-neon); color: var(--dark); }

/* Input */
.chat-input-wrap {
  display: flex; gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.05);
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 9px 13px;
  color: var(--white);
  font-size: .82rem;
  font-family: inherit;
  outline: none;
  transition: border-color .3s;
}
.chat-input::placeholder { color: rgba(255,255,255,.25); }
.chat-input:focus { border-color: rgba(74,222,128,.4); }
.chat-send {
  width: 38px; height: 38px;
  background: var(--green-neon);
  border: none; border-radius: 9px;
  color: var(--dark);
  cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; flex-shrink: 0;
}
.chat-send:hover { background: var(--lime); transform: scale(1.06); }

/* ================================
   MODAL
================================ */
#productModal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: all .4s ease;
  backdrop-filter: blur(12px);
}
#productModal.open { opacity: 1; visibility: visible; }

.modal-box {
  background: #0e1e13;
  border: 1px solid rgba(74,222,128,.18);
  border-radius: 22px;
  max-width: 540px; width: 100%;
  padding: 38px;
  position: relative;
  max-height: 84vh;
  overflow-y: auto;
  transform: scale(.94) translateY(18px);
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
#productModal.open .modal-box { transform: scale(1) translateY(0); }

.modal-x {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.06);
  border: none; border-radius: 50%;
  color: rgba(255,255,255,.5);
  cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.modal-x:hover { background: rgba(255,255,255,.12); color: var(--white); }

.modal-icon { font-size: 2.4rem; margin-bottom: 14px; }
.modal-tag {
  color: var(--green-neon);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 6px;
}
.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; color: var(--white);
  margin-bottom: 14px;
}
.modal-desc {
  color: rgba(255,255,255,.55);
  font-size: .9rem; line-height: 1.72;
  margin-bottom: 22px;
}
.modal-vars-ttl {
  font-size: .7rem; font-weight: 600;
  color: rgba(255,255,255,.35);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 10px;
}
.modal-vars { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.modal-var {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 11px;
  padding: 13px 15px;
}
.modal-var-name { color: var(--white); font-weight: 600; font-size: .88rem; margin-bottom: 3px; }
.modal-var-desc { color: rgba(255,255,255,.38); font-size: .78rem; line-height: 1.5; }

/* ================================
   MOBILE OPTIMISATIONS
================================ */

/* iOS text-size & tap highlight */
html { -webkit-text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }

/* Prevent horizontal overflow */
html, body { max-width: 100%; overflow-x: hidden; }

/* ── Reduce section spacing ── */
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
}
@media (max-width: 480px) {
  section { padding: 56px 0; }
  .container { padding: 0 16px; }
}

/* ── Hero ── */
@media (max-width: 768px) {
  .hero-inner { padding: 100px 20px 64px; }
  .hero-badge { font-size: .62rem; padding: 5px 12px; margin-bottom: 20px; }
  .hero-h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); margin-bottom: 18px; }
  .hero-sub { font-size: .92rem; margin-bottom: 28px; }
  .scroll-cue { display: none; }
}
@media (max-width: 480px) {
  .hero-inner { padding: 86px 16px 56px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary,
  .btn-outline { width: 100%; justify-content: center; padding: 13px 20px; }
}

/* ── Marquee ── */
@media (max-width: 480px) {
  .marquee-wrap { padding: 10px 0; }
  .m-item { font-size: .68rem; gap: 10px; }
}

/* ── Stats ── */
@media (max-width: 768px) {
  .stat-item { padding: 28px 16px; }
  .stat-num { font-size: 2.4rem; }
  .stat-num .suf { font-size: 1.8rem; }
  .stat-lbl { font-size: .65rem; }
}

/* ── Products ── */
@media (max-width: 768px) {
  .products-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 36px; }
  .p-card { padding: 24px 20px 60px; }
  .p-icon { width: 52px; height: 52px; font-size: 1.4rem; margin-bottom: 16px; }
  .p-name { font-size: 1.3rem; }
  .p-arrow { bottom: 18px; right: 18px; width: 36px; height: 36px; }
}

/* ── About ── */
@media (max-width: 768px) {
  .about-img { height: 280px; }
  .about-img-wrap { margin-bottom: 40px; }
  .about-badge { bottom: -16px; right: -8px; padding: 16px 18px; }
  .about-badge .big { font-size: 1.9rem; }
  .about-story { font-size: .95rem; }
  .farm-cards { margin-top: 48px; gap: 12px; }
  .farm-card { padding: 24px 18px; }
}
@media (max-width: 480px) {
  .about-img { height: 220px; }
  .about-badge { bottom: -12px; right: -6px; padding: 12px 14px; }
  .about-badge .big { font-size: 1.6rem; }
  .about-badge .sml { font-size: .55rem; }
  .mission-quote { padding: 14px 16px; }
}

/* ── Gallery ── */
@media (max-width: 768px) {
  .gallery-head { margin-bottom: 36px; }
  .g-item img { min-height: 190px; }
}

/* ── Values ── */
@media (max-width: 768px) {
  .values-grid { margin-top: 40px; gap: 12px; }
  .v-card { padding: 26px 20px; }
  .v-icon { width: 46px; height: 46px; font-size: 1.15rem; margin-bottom: 16px; }
}

/* ── Contact / Footer ── */
@media (max-width: 768px) {
  .contact-h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .contact-p { font-size: .9rem; }
  .c-item { padding: 12px 14px; gap: 10px; }
  .c-ico { width: 34px; height: 34px; font-size: .8rem; border-radius: 9px; }
  .c-val { font-size: .82rem; }
  .c-lbl { font-size: .58rem; }
  .hours-card { padding: 22px 18px; }
  .hours-row { font-size: .82rem; padding: 8px 0; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; margin-top: 40px; }
}

/* ── Modals ── */
@media (max-width: 480px) {
  .modal-box { padding: 28px 20px; border-radius: 18px; }
  .modal-name { font-size: 1.45rem; }
}

/* ── Section titles ── */
@media (max-width: 480px) {
  .section-title { font-size: clamp(1.75rem, 7vw, 2.2rem); }
  .eyebrow { font-size: .65rem; }
}

/* ── Mobile menu touch targets ── */
@media (max-width: 768px) {
  #mobileMenu a { padding: 8px 0; }
}

/* ── iOS: prevent input zoom (needs 16px) ── */
.chat-input { font-size: 16px; }

/* ── Touch active states (hover doesn't fire on touch) ── */
@media (hover: none) {
  .p-card:active { transform: translateY(-4px); border-color: rgba(74,222,128,.3); }
  .g-item:active img { transform: scale(1.04); }
  .c-item:active { background: rgba(74,222,128,.09); transform: translateX(2px); }
  .v-card:active { transform: translateY(-4px); }
  .btn-primary:active { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74,222,128,.3); }
  .btn-outline:active { border-color: var(--green-neon); color: var(--green-neon); }
  .chat-sug:active { background: var(--green-neon); color: var(--dark); }
  .chat-c-btn:active { filter: brightness(1.15); }
  .soc-btn:active { background: var(--green-neon); color: var(--dark); }
}
