/* ==========================================================================
   GreenHarvest Farms — Shared Stylesheet
   Design system: Deep Green / Cream / Golden Yellow, Poppins + Inter
   Signature motifs: "Furrow" hatch dividers (tilled-soil rows) and
   "Harvest Stamp" circular seals for trust markers.
   ========================================================================== */

:root{
  /* Color tokens */
  --green-900:#173D1B;
  --green-800:#1B5E20;
  --green-700:#2E7D32;
  --green-600:#3C8F41;
  --green-100:#E8F0E4;
  --green-50:#F3F7F1;
  --cream:#F5F5DC;
  --cream-deep:#EDE9C9;
  --gold:#FFB300;
  --gold-dark:#E09E00;
  --white:#FFFFFF;
  --ink:#1A1F1B;
  --ink-soft:#4B554D;
  --ink-faint:#7C877E;
  --line:#DCE3D9;

  /* Type */
  --font-head:'Poppins', sans-serif;
  --font-body:'Inter', sans-serif;

  /* Layout */
  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;
  --shadow-sm:0 4px 16px rgba(23,61,27,0.08);
  --shadow-md:0 12px 32px rgba(23,61,27,0.14);
  --shadow-lg:0 24px 60px rgba(23,61,27,0.20);
  --container:1240px;
  --header-h:84px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5{
  font-family:var(--font-head);
  color:var(--green-900);
  line-height:1.15;
  margin:0 0 .5em;
  font-weight:600;
}
h1{font-weight:700;}
p{margin:0 0 1em;color:var(--ink-soft);}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
ul{margin:0;padding:0;list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
input,textarea,select{font-family:inherit;}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

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

:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
  border-radius:4px;
}

/* Eyebrow label */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--green-700);
  margin-bottom:14px;
}
.eyebrow::before{
  content:'';
  width:22px;height:2px;
  background:var(--gold);
  display:inline-block;
}

.section-head{
  max-width:640px;
  margin:0 0 48px;
}
.section-head.center{
  margin-left:auto;margin-right:auto;text-align:center;
}
.section-head h2{font-size:clamp(30px,4vw,42px);}
.section-head p{font-size:17px;}

/* ---------- Furrow divider (signature motif) ----------
   Repeating diagonal hatch lines evoking tilled soil rows,
   used at section seams instead of a plain hairline. */
.furrow{
  height:34px;
  width:100%;
  background-image:repeating-linear-gradient(
    115deg,
    var(--green-700) 0 3px,
    transparent 3px 26px
  );
  opacity:.16;
}
.furrow.on-dark{opacity:.28;}
.furrow--tight{height:18px;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 32px;
  border-radius:100px;
  font-weight:600;
  font-size:15px;
  letter-spacing:.01em;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--gold);
  color:var(--green-900);
  box-shadow:0 10px 24px rgba(255,179,0,0.35);
}
.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 32px rgba(255,179,0,0.45);
  background:var(--gold-dark);
}
.btn-outline{
  background:transparent;
  color:var(--white);
  border:1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover{
  background:rgba(255,255,255,0.14);
  border-color:var(--white);
  transform:translateY(-3px);
}
.btn-outline.on-light{
  color:var(--green-800);
  border-color:var(--green-700);
}
.btn-outline.on-light:hover{background:var(--green-50);}
.btn-solid-green{
  background:var(--green-700);
  color:var(--white);
  box-shadow:0 10px 24px rgba(46,125,50,0.3);
}
.btn-solid-green:hover{
  background:var(--green-800);
  transform:translateY(-3px);
}
.btn-sm{padding:11px 22px;font-size:13px;}
.btn-block{width:100%;}

/* ---------- Header / Nav ---------- */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  height:var(--header-h);
  display:flex;
  align-items:center;
  transition:background .35s ease, box-shadow .35s ease, height .35s ease, backdrop-filter .35s ease;
}
.site-header.transparent{background:transparent;}
.site-header.solid{
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  box-shadow:0 6px 24px rgba(23,61,27,0.08);
  height:72px;
}
.nav-wrap{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:21px;
  color:var(--white);
  transition:color .3s ease;
}
.site-header.solid .brand{color:var(--green-900);}
.brand .brand-mark{
  width:40px;height:40px;
  border-radius:50%;
  background:var(--gold);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.brand .brand-mark svg{width:22px;height:22px;}
.brand span em{
  display:block;
  font-family:var(--font-body);
  font-style:normal;
  font-weight:500;
  font-size:10.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  margin-top:1px;
}
.site-header.solid .brand span em{color:var(--green-700);}

.nav-links{
  display:flex;
  align-items:center;
  gap:40px;
}
.nav-links a{
  font-size:15px;
  font-weight:500;
  color:var(--white);
  position:relative;
  padding:6px 0;
  transition:color .3s ease;
}
.site-header.solid .nav-links a{color:var(--ink);}
.nav-links a::after{
  content:'';
  position:absolute;left:0;bottom:0;
  width:0;height:2px;
  background:var(--gold);
  transition:width .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after{width:100%;}
.nav-links a.active{color:var(--gold);}
.site-header.solid .nav-links a.active{color:var(--green-700);}

.nav-actions{display:flex;align-items:center;gap:18px;}
.nav-cta{
  padding:12px 26px;
  border-radius:100px;
  background:var(--green-700);
  color:var(--white)!important;
  font-weight:600;
  font-size:14px;
  transition:background .3s ease, transform .3s ease;
}
.nav-cta:hover{background:var(--green-800);transform:translateY(-2px);}

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  width:34px;height:34px;
  align-items:flex-end;
  justify-content:center;
}
.menu-toggle span{
  width:100%;height:2.5px;
  background:var(--white);
  border-radius:2px;
  transition:all .3s ease;
}
.site-header.solid .menu-toggle span{background:var(--green-900);}
.menu-toggle.open span:nth-child(1){transform:translateY(7.5px) rotate(45deg);}
.menu-toggle.open span:nth-child(2){opacity:0;}
.menu-toggle.open span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg);width:100%;}

.mobile-nav{
  position:fixed;
  top:0;right:0;
  height:100vh;
  width:min(78vw,340px);
  background:var(--green-900);
  z-index:1100;
  transform:translateX(100%);
  transition:transform .4s cubic-bezier(.65,0,.35,1);
  padding:100px 34px 40px;
  display:flex;flex-direction:column;gap:8px;
}
.mobile-nav.open{transform:translateX(0);}
.mobile-nav a{
  color:var(--cream);
  font-family:var(--font-head);
  font-size:20px;
  font-weight:500;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.mobile-nav .btn{margin-top:24px;}
.nav-scrim{
  position:fixed;inset:0;background:rgba(10,20,10,0.5);
  z-index:1050;opacity:0;pointer-events:none;transition:opacity .3s ease;
}
.nav-scrim.open{opacity:1;pointer-events:auto;}

/* Progress bar */
.scroll-progress{
  position:fixed;top:0;left:0;
  height:3px;background:var(--gold);
  width:0%;z-index:1200;
  transition:width .1s linear;
}

/* ---------- Hero (home) ---------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  color:var(--white);
  overflow:hidden;
}
.hero-media{position:absolute;inset:0;z-index:0;}
.hero-media img{width:100%;height:100%;object-fit:cover;}
.hero-media::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(15,35,17,0.55) 0%, rgba(15,35,17,0.35) 45%, rgba(15,35,17,0.82) 100%);
}
/* Anchored (not vertically centered) so the eyebrow + first heading line
   can never render above the fixed header on short viewports. */
.hero-content{
  position:relative;
  z-index:1;
  max-width:720px;
  margin:0;
  margin-left:52px;
  padding-top:calc(var(--header-h) + 20px);
  padding-bottom:70px;
  width:100%;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.3);
  backdrop-filter:blur(6px);
  padding:9px 18px;border-radius:100px;
  font-size:13px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  margin-bottom:26px;
}
.hero-eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--gold);}
.hero h1{
  font-size:clamp(38px,5.6vw,68px);
  color:var(--white);
  font-weight:700;
  margin-bottom:22px;
  letter-spacing:-.01em;
}
.hero h1 .accent{color:var(--gold);}
.hero p.lead{
  font-size:19px;
  color:rgba(255,255,255,0.88);
  max-width:540px;
  margin-bottom:36px;
}
.hero-ctas{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:64px;}

.trust-strip{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.stamp{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 20px 10px 10px;
  border:1.5px dashed rgba(255,255,255,0.5);
  border-radius:100px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(4px);
}
.stamp .stamp-seal{
  width:38px;height:38px;
  border-radius:50%;
  border:1.5px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  transform:rotate(-8deg);
}
.stamp .stamp-seal svg{width:18px;height:18px;color:var(--gold);}
.stamp span{font-size:13.5px;font-weight:600;color:var(--white);}

.hero-scroll-cue{
  position:absolute;bottom:32px;left:50%;
  transform:translateX(-50%);
  z-index:1;
  display:flex;flex-direction:column;align-items:center;gap:8px;
  color:rgba(255,255,255,0.75);
  font-size:11px;letter-spacing:.14em;text-transform:uppercase;
}
.hero-scroll-cue .line{
  width:1px;height:38px;
  background:linear-gradient(180deg, rgba(255,255,255,.8), transparent);
  animation:scrollcue 2s ease infinite;
}
@keyframes scrollcue{
  0%{transform:scaleY(0);transform-origin:top;}
  50%{transform:scaleY(1);transform-origin:top;}
  50.1%{transform-origin:bottom;}
  100%{transform:scaleY(0);transform-origin:bottom;}
}

/* Page hero (inner pages) */
.page-hero{
  position:relative;
  min-height:56vh;
  display:flex;
  align-items:flex-end;
  color:var(--white);
  overflow:hidden;
  padding-bottom:70px;
}
.page-hero .hero-media::after{
  background:linear-gradient(180deg, rgba(15,35,17,0.5) 0%, rgba(15,35,17,0.55) 60%, rgba(15,35,17,0.92) 100%);
}
.page-hero-content{position:relative;z-index:1;}
.breadcrumb{
  display:flex;align-items:center;gap:10px;
  font-size:13px;font-weight:500;color:rgba(255,255,255,0.75);
  margin-bottom:18px;
}
.breadcrumb span{color:var(--gold);}
.page-hero h1{color:var(--white);font-size:clamp(34px,5vw,56px);margin-bottom:14px;}
.page-hero p{color:rgba(255,255,255,0.85);max-width:560px;font-size:17px;margin:0;}

/* ---------- Sections generic ---------- */
section{position:relative;}
.section-pad{padding:100px 0;}
.bg-cream{background:var(--cream);}
.bg-green-soft{background:var(--green-50);}
.bg-green-deep{background:var(--green-900);color:var(--cream);}
.bg-green-deep h2,.bg-green-deep h3{color:var(--white);}
.bg-green-deep p{color:rgba(245,245,220,0.78);}

/* Reveal animation */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{opacity:1;transform:translateY(0);}
.reveal-stagger .reveal:nth-child(1){transition-delay:.05s;}
.reveal-stagger .reveal:nth-child(2){transition-delay:.15s;}
.reveal-stagger .reveal:nth-child(3){transition-delay:.25s;}
.reveal-stagger .reveal:nth-child(4){transition-delay:.35s;}
.reveal-stagger .reveal:nth-child(5){transition-delay:.45s;}
.reveal-stagger .reveal:nth-child(6){transition-delay:.55s;}

/* ---------- About preview / two-col ---------- */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
}
.split-media{position:relative;}
.split-media .img-main{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/5;
}
.split-media .img-main img{width:100%;height:100%;object-fit:cover;}
.floating-card{
  position:absolute;
  bottom:-28px;left:-28px;
  background:var(--white);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-md);
  padding:22px 26px;
  display:flex;align-items:center;gap:16px;
  max-width:260px;
}
.floating-card .fc-icon{
  width:52px;height:52px;border-radius:14px;
  background:var(--green-100);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.floating-card .fc-icon svg{width:26px;height:26px;color:var(--green-700);}
.floating-card strong{display:block;font-family:var(--font-head);font-size:22px;color:var(--green-900);}
.floating-card span{font-size:12.5px;color:var(--ink-faint);}

.mission-quote{
  margin-top:28px;
  padding:22px 26px;
  background:var(--green-50);
  border-left:3px solid var(--gold);
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  font-family:var(--font-head);
  font-size:17px;
  color:var(--green-900);
  font-weight:500;
}

/* ---------- Feature / Why choose cards ---------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;}
.feature-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:34px 30px;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
  border-color:transparent;
}
.feature-card .f-icon{
  width:58px;height:58px;
  border-radius:16px;
  background:var(--green-900);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:22px;
  transition:background .35s ease, transform .35s ease;
}
.feature-card:hover .f-icon{background:var(--gold);transform:rotate(-6deg);}
.feature-card .f-icon svg{width:26px;height:26px;color:var(--gold);transition:color .35s ease;}
.feature-card:hover .f-icon svg{color:var(--green-900);}
.feature-card h3{font-size:19px;margin-bottom:10px;}
.feature-card p{font-size:14.5px;margin:0;}

/* ---------- Product cards ---------- */
.grid-products{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.product-card{
  background:var(--white);
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform .35s ease, box-shadow .35s ease;
  display:flex;flex-direction:column;
}
.product-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-md);}
.product-card .pc-media{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
}
.product-card .pc-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.product-card:hover .pc-media img{transform:scale(1.08);}
.product-card .pc-tag{
  position:absolute;top:16px;left:16px;
  background:var(--gold);
  color:var(--green-900);
  font-size:11.5px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
  padding:6px 13px;border-radius:100px;
}
.product-card .pc-body{padding:24px 24px 26px;flex:1;display:flex;flex-direction:column;}
.product-card h3{font-size:18.5px;margin-bottom:8px;}
.product-card p{font-size:14px;flex:1;margin-bottom:16px;}
.product-card .pc-link{
  display:inline-flex;align-items:center;gap:8px;
  font-weight:600;font-size:14px;color:var(--green-700);
}
.product-card .pc-link svg{width:16px;height:16px;transition:transform .25s ease;}
.product-card:hover .pc-link svg{transform:translateX(4px);}

/* Product page: filter + search */
.product-toolbar{
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  flex-wrap:wrap;
  margin-bottom:44px;
  padding-bottom:28px;
  border-bottom:1px solid var(--line);
}
.filter-tabs{display:flex;flex-wrap:wrap;gap:10px;}
.filter-tab{
  padding:10px 20px;
  border-radius:100px;
  border:1.5px solid var(--line);
  font-size:13.5px;font-weight:600;
  color:var(--ink-soft);
  transition:all .25s ease;
}
.filter-tab:hover{border-color:var(--green-700);color:var(--green-700);}
.filter-tab.active{background:var(--green-700);border-color:var(--green-700);color:var(--white);}

.search-box{
  position:relative;
  min-width:260px;
}
.search-box input{
  width:100%;
  padding:12px 18px 12px 44px;
  border-radius:100px;
  border:1.5px solid var(--line);
  font-size:14px;
  color:var(--ink);
  background:var(--green-50);
  transition:border-color .25s ease, background .25s ease;
}
.search-box input:focus{border-color:var(--green-700);background:var(--white);outline:none;}
.search-box svg{
  position:absolute;left:16px;top:50%;transform:translateY(-50%);
  width:17px;height:17px;color:var(--ink-faint);
}

.category-block{margin-bottom:70px;}
.category-block-head{
  display:flex;align-items:baseline;gap:16px;
  margin-bottom:26px;
}
.category-block-head h2{font-size:26px;margin:0;}
.category-block-head .count{
  font-size:13px;color:var(--ink-faint);font-weight:500;
}
.category-block-head::after{
  content:'';flex:1;height:1px;background:var(--line);
}

.pc-meta{
  display:flex;gap:14px;
  font-size:12px;color:var(--ink-faint);
  margin-bottom:14px;
  flex-wrap:wrap;
}
.pc-meta span{display:flex;align-items:center;gap:5px;}
.pc-meta svg{width:13px;height:13px;color:var(--green-700);}
.pc-avail{
  display:inline-flex;align-items:center;gap:6px;
  font-size:12px;font-weight:600;color:var(--green-700);
}
.pc-avail .avail-dot{width:6px;height:6px;border-radius:50%;background:var(--green-700);}

.no-results{
  display:none;
  text-align:center;
  padding:60px 20px;
  color:var(--ink-faint);
}
.no-results.show{display:block;}

/* ---------- Process section ---------- */
.process-row{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
  position:relative;
}
.process-row::before{
  content:'';
  position:absolute;
  top:36px;left:8%;right:8%;
  height:2px;
  background-image:repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
}
.process-step{position:relative;text-align:center;padding-top:0;}
.process-num{
  width:72px;height:72px;
  border-radius:50%;
  background:var(--white);
  border:2px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-head);
  font-weight:700;
  font-size:22px;
  color:var(--green-900);
  margin:0 auto 20px;
  position:relative;
  z-index:1;
  box-shadow:0 0 0 8px var(--white);
}
.process-step h3{font-size:16.5px;margin-bottom:8px;}
.process-step p{font-size:13.5px;}

/* ---------- Gallery ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:160px;
  gap:16px;
}
.gallery-item{
  position:relative;
  border-radius:var(--radius-sm);
  overflow:hidden;
  cursor:zoom-in;
}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.gallery-item:hover img{transform:scale(1.1);}
.gallery-item .gi-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(23,61,27,0.75));
  display:flex;align-items:flex-end;padding:14px;
  opacity:0;transition:opacity .3s ease;
}
.gallery-item:hover .gi-overlay{opacity:1;}
.gallery-item .gi-overlay span{color:var(--white);font-size:12.5px;font-weight:600;}
.gallery-item.tall{grid-row:span 2;}
.gallery-item.wide{grid-column:span 2;}

.lightbox{
  position:fixed;inset:0;z-index:2000;
  background:rgba(10,20,10,0.94);
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;
  transition:opacity .3s ease;
}
.lightbox.open{opacity:1;pointer-events:auto;}
.lightbox img{max-width:82vw;max-height:80vh;border-radius:12px;box-shadow:0 30px 80px rgba(0,0,0,0.5);}
.lightbox-close,.lightbox-prev,.lightbox-next{
  position:absolute;
  color:var(--white);
  background:rgba(255,255,255,0.12);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  width:48px;height:48px;
  transition:background .25s ease;
}
.lightbox-close:hover,.lightbox-prev:hover,.lightbox-next:hover{background:rgba(255,255,255,0.25);}
.lightbox-close{top:26px;right:26px;}
.lightbox-prev{left:26px;top:50%;transform:translateY(-50%);}
.lightbox-next{right:26px;top:50%;transform:translateY(-50%);}
.lightbox-caption{
  position:absolute;bottom:30px;left:50%;transform:translateX(-50%);
  color:rgba(255,255,255,0.8);font-size:14px;
}

/* ---------- Counters ---------- */
.counter-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.counter-item{text-align:center;}
.counter-num{
  font-family:var(--font-head);
  font-size:clamp(34px,4vw,48px);
  font-weight:700;
  color:var(--gold);
}
.counter-item span{
  display:block;font-size:13.5px;color:rgba(245,245,220,0.75);
  margin-top:6px;font-weight:500;
}

/* ---------- Testimonials ---------- */
.testimonial-wrap{position:relative;max-width:760px;margin:0 auto;}
.testimonial-track{overflow:hidden;}
.testimonial-slides{display:flex;transition:transform .5s cubic-bezier(.65,0,.35,1);}
.t-slide{min-width:100%;padding:8px;}
.t-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:44px 44px 36px;
  box-shadow:var(--shadow-sm);
  text-align:center;
}
.t-quote-mark{
  width:46px;height:46px;
  border-radius:50%;
  background:var(--green-100);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
}
.t-quote-mark svg{width:22px;height:22px;color:var(--green-700);}
.t-card p{font-size:17.5px;color:var(--green-900);font-family:var(--font-head);font-weight:500;line-height:1.5;margin-bottom:26px;}
.t-person{display:flex;align-items:center;justify-content:center;gap:14px;}
.t-person img{width:52px;height:52px;border-radius:50%;object-fit:cover;}
.t-person strong{display:block;font-size:14.5px;color:var(--ink);}
.t-person span{display:block;font-size:12.5px;color:var(--ink-faint);}
.t-stars{display:flex;gap:3px;justify-content:center;margin-bottom:14px;}
.t-stars svg{width:15px;height:15px;color:var(--gold);}

.t-nav{display:flex;justify-content:center;gap:12px;margin-top:30px;}
.t-dot{width:9px;height:9px;border-radius:50%;background:var(--line);transition:background .25s ease, transform .25s ease;}
.t-dot.active{background:var(--gold);transform:scale(1.3);}
.t-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:46px;height:46px;border-radius:50%;
  background:var(--white);box-shadow:var(--shadow-sm);
  display:flex;align-items:center;justify-content:center;
  color:var(--green-800);
}
.t-arrow:hover{background:var(--green-700);color:var(--white);}
.t-arrow.prev{left:-64px;}
.t-arrow.next{right:-64px;}
@media(max-width:900px){.t-arrow{display:none;}}

/* ---------- CTA banner ---------- */
.cta-banner{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  padding:70px 60px;
  text-align:center;
  color:var(--white);
}
.cta-banner .cta-media{position:absolute;inset:0;z-index:0;}
.cta-banner .cta-media img{width:100%;height:100%;object-fit:cover;}
.cta-banner .cta-media::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(120deg, rgba(23,61,27,0.92), rgba(46,125,50,0.82));
}
.cta-banner-content{position:relative;z-index:1;max-width:560px;margin:0 auto;}
.cta-banner h2{color:var(--white);font-size:clamp(28px,3.6vw,38px);}
.cta-banner p{color:rgba(255,255,255,0.85);margin-bottom:30px;}

/* ---------- Footer ---------- */
.site-footer{background:var(--green-900);color:rgba(245,245,220,0.75);padding-top:80px;}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1.3fr;
  gap:48px;
  padding-bottom:60px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-brand p{color:rgba(245,245,220,0.65);font-size:14px;margin:18px 0 22px;max-width:280px;}
.footer-social{display:flex;gap:10px;}
.footer-social a{
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:center;
  transition:background .25s ease, transform .25s ease;
}
.footer-social a:hover{background:var(--gold);color:var(--green-900);transform:translateY(-3px);}
.footer-social svg{width:16px;height:16px;}
.site-footer h4{color:var(--white);font-size:15px;margin-bottom:20px;letter-spacing:.02em;}
.footer-links li{margin-bottom:12px;}
.footer-links a{font-size:14px;color:rgba(245,245,220,0.7);transition:color .25s ease,padding-left .25s ease;}
.footer-links a:hover{color:var(--gold);padding-left:4px;}
.footer-contact li{
  display:flex;gap:12px;margin-bottom:16px;font-size:13.5px;color:rgba(245,245,220,0.7);
}
.footer-contact svg{width:17px;height:17px;color:var(--gold);flex-shrink:0;margin-top:2px;}
.newsletter-form{display:flex;gap:0;margin-top:6px;border-radius:100px;overflow:hidden;background:rgba(255,255,255,0.08);padding:5px;}
.newsletter-form input{
  flex:1;background:transparent;border:none;padding:10px 16px;color:var(--white);font-size:13.5px;
}
.newsletter-form input::placeholder{color:rgba(245,245,220,0.5);}
.newsletter-form input:focus{outline:none;}
.newsletter-form button{
  background:var(--gold);color:var(--green-900);border-radius:100px;
  padding:10px 20px;font-weight:700;font-size:13px;flex-shrink:0;
}
.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;
  padding:26px 0;font-size:13px;color:rgba(245,245,220,0.55);
  flex-wrap:wrap;gap:10px;
}
.footer-bottom-links{display:flex;gap:24px;}
.footer-bottom-links a{color:rgba(245,245,220,0.55);}
.footer-bottom-links a:hover{color:var(--gold);}

/* ---------- Floating buttons ---------- */
.back-to-top{
  position:fixed;bottom:28px;left:28px;
  width:50px;height:50px;border-radius:50%;
  background:var(--green-800);color:var(--white);
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-md);
  opacity:0;pointer-events:none;transform:translateY(12px);
  transition:all .3s ease;
  z-index:900;
}
.back-to-top.show{opacity:1;pointer-events:auto;transform:translateY(0);}
.back-to-top:hover{background:var(--gold);color:var(--green-900);}
.back-to-top svg{width:20px;height:20px;}

.whatsapp-float{
  position:fixed;bottom:28px;right:28px;
  width:56px;height:56px;border-radius:50%;
  background:#25D366;color:var(--white);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 26px rgba(37,211,102,0.45);
  z-index:900;
  animation:pulse-wa 2.6s ease infinite;
}
.whatsapp-float svg{width:26px;height:26px;}
@keyframes pulse-wa{
  0%,100%{box-shadow:0 10px 26px rgba(37,211,102,0.45);}
  50%{box-shadow:0 10px 26px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.12);}
}

/* ---------- Preloader ---------- */
.preloader{
  position:fixed;inset:0;z-index:3000;
  background:var(--green-900);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:18px;
  transition:opacity .5s ease, visibility .5s ease;
}
.preloader.hide{opacity:0;visibility:hidden;}
.preloader-mark{
  width:64px;height:64px;border-radius:50%;
  border:3px solid rgba(255,179,0,0.25);
  border-top-color:var(--gold);
  animation:spin 0.9s linear infinite;
}
.preloader span{color:var(--cream);font-family:var(--font-head);font-size:13px;letter-spacing:.16em;text-transform:uppercase;}
@keyframes spin{to{transform:rotate(360deg);}}

/* ---------- About page specific ---------- */
.value-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.value-card{
  padding:30px 26px;
  border-radius:var(--radius-md);
  background:var(--white);
  border:1px solid var(--line);
  text-align:left;
}
.value-card .v-num{
  font-family:var(--font-head);font-weight:700;font-size:14px;
  color:var(--gold);letter-spacing:.06em;margin-bottom:14px;display:block;
}
.value-card h3{font-size:17px;margin-bottom:8px;}
.value-card p{font-size:13.5px;margin:0;}

.timeline{position:relative;padding-left:0;margin-top:20px;}
.timeline::before{
  content:'';position:absolute;left:29px;top:8px;bottom:8px;width:2px;
  background-image:repeating-linear-gradient(180deg, var(--green-700) 0 6px, transparent 6px 12px);
}
.timeline-item{
  position:relative;
  display:flex;gap:28px;
  padding-bottom:44px;
}
.timeline-item:last-child{padding-bottom:0;}
.timeline-dot{
  flex-shrink:0;
  width:60px;height:60px;border-radius:50%;
  background:var(--green-900);color:var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-head);font-weight:700;font-size:14px;
  position:relative;z-index:1;
  box-shadow:0 0 0 6px var(--white);
}
.timeline-body{padding-top:10px;}
.timeline-body h3{font-size:18px;margin-bottom:6px;}
.timeline-body p{font-size:14px;margin:0;max-width:520px;}

.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:26px;}
.team-card{text-align:center;}
.team-photo{
  aspect-ratio:1/1.05;border-radius:var(--radius-md);overflow:hidden;
  margin-bottom:18px;position:relative;box-shadow:var(--shadow-sm);
}
.team-photo img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;}
.team-card:hover .team-photo img{transform:scale(1.06);}
.team-card h3{font-size:16.5px;margin-bottom:4px;}
.team-card span{font-size:12.5px;color:var(--green-700);font-weight:600;letter-spacing:.02em;}

.cert-row{display:flex;gap:20px;flex-wrap:wrap;justify-content:center;}
.cert-stamp{
  display:flex;flex-direction:column;align-items:center;gap:12px;
  width:150px;text-align:center;
}
.cert-seal{
  width:96px;height:96px;border-radius:50%;
  border:2px dashed var(--green-700);
  display:flex;align-items:center;justify-content:center;
  transform:rotate(-4deg);
  background:var(--green-50);
}
.cert-seal svg{width:38px;height:38px;color:var(--green-700);}
.cert-stamp span{font-size:12.5px;font-weight:600;color:var(--ink-soft);}

.impact-split{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
.impact-list li{
  display:flex;gap:16px;padding:18px 0;border-bottom:1px solid var(--line);
}
.impact-list li:first-child{padding-top:0;}
.impact-list .il-icon{
  width:44px;height:44px;border-radius:12px;background:var(--green-100);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.impact-list .il-icon svg{width:20px;height:20px;color:var(--green-700);}
.impact-list h4{margin:0 0 4px;font-size:15.5px;font-family:var(--font-head);color:var(--ink);}
.impact-list p{margin:0;font-size:13.5px;}

/* ---------- Contact page ---------- */
.contact-grid{display:grid;grid-template-columns:0.85fr 1.15fr;gap:60px;}
.contact-info-card{
  background:var(--green-900);
  color:var(--cream);
  border-radius:var(--radius-lg);
  padding:44px 38px;
}
.contact-info-card h3{color:var(--white);font-size:20px;margin-bottom:6px;}
.contact-info-card>p{color:rgba(245,245,220,0.7);font-size:14px;margin-bottom:30px;}
.info-row{display:flex;gap:16px;padding:18px 0;border-bottom:1px solid rgba(255,255,255,0.1);}
.info-row:last-of-type{border-bottom:none;}
.info-row .ir-icon{
  width:44px;height:44px;border-radius:12px;background:rgba(255,179,0,0.15);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.info-row .ir-icon svg{width:20px;height:20px;color:var(--gold);}
.info-row strong{display:block;font-size:14px;color:var(--white);margin-bottom:3px;}
.info-row span{font-size:13.5px;color:rgba(245,245,220,0.72);display:block;line-height:1.5;}

.form-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:44px;
  box-shadow:var(--shadow-sm);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:20px;}
.field{margin-bottom:20px;}
.field label{
  display:block;font-size:13.5px;font-weight:600;color:var(--ink);margin-bottom:8px;
}
.field input,.field select,.field textarea{
  width:100%;
  padding:14px 16px;
  border:1.5px solid var(--line);
  border-radius:var(--radius-sm);
  font-size:14.5px;
  color:var(--ink);
  background:var(--green-50);
  transition:border-color .25s ease, background .25s ease;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--green-700);background:var(--white);
}
.field textarea{resize:vertical;min-height:120px;}
.form-note{font-size:12.5px;color:var(--ink-faint);margin-top:6px;}
.form-success{
  display:none;
  align-items:center;gap:14px;
  background:var(--green-50);
  border:1px solid var(--green-600);
  border-radius:var(--radius-sm);
  padding:18px 20px;margin-top:20px;
  color:var(--green-900);font-size:14px;font-weight:500;
}
.form-success.show{display:flex;}
.form-success svg{width:22px;height:22px;color:var(--green-700);flex-shrink:0;}

.map-frame{
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:16/6;
  position:relative;
  background:var(--green-100);
  box-shadow:var(--shadow-sm);
}
.map-frame img{width:100%;height:100%;object-fit:cover;}
.map-pin{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-100%);
  display:flex;flex-direction:column;align-items:center;
}
.map-pin .pin-dot{
  width:40px;height:40px;border-radius:50% 50% 50% 0;
  background:var(--gold);transform:rotate(-45deg);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}
.map-pin .pin-dot svg{transform:rotate(45deg);width:18px;height:18px;color:var(--green-900);}
.map-pin .pin-label{
  margin-top:8px;background:var(--white);padding:6px 14px;border-radius:100px;
  font-size:12.5px;font-weight:600;box-shadow:var(--shadow-sm);
}

/* ---------- Utility ---------- */
.mt-0{margin-top:0;}
.text-center{text-align:center;}
.tag-pill{
  display:inline-block;padding:6px 14px;border-radius:100px;
  background:var(--green-100);color:var(--green-700);
  font-size:11.5px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media(max-width:1080px){
  .grid-3,.grid-products{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .value-grid{grid-template-columns:repeat(2,1fr);}
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-grid{grid-template-columns:repeat(3,1fr);}
  .process-row{grid-template-columns:repeat(1,1fr);gap:36px;}
  .process-row::before{display:none;}
  .contact-grid{grid-template-columns:1fr;}
  .impact-split{grid-template-columns:1fr;}
  .counter-row{grid-template-columns:repeat(2,1fr);gap:32px;}
}
@media(max-width:900px){
  .nav-links,.nav-actions .nav-cta-desktop{display:none;}
  .menu-toggle{display:flex;}
  .split{grid-template-columns:1fr;gap:40px;}
  .split-media{order:-1;}
  .floating-card{left:16px;bottom:-24px;}
}
@media(max-width:768px){
  .container{padding:0 22px;}
  .section-pad{padding:70px 0;}
  .hero-content{padding-top:calc(var(--header-h) + 16px);padding-bottom:50px;margin-left:0;}
  .hero-ctas{margin-bottom:44px;}
  .grid-3,.grid-products,.grid-2,.value-grid,.team-grid{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:130px;}
  .footer-grid{grid-template-columns:1fr;gap:36px;}
  .form-row{grid-template-columns:1fr;}
  .cta-banner{padding:50px 26px;}
  .t-arrow{display:none;}
  .form-card{padding:28px 22px;}
  .contact-info-card{padding:32px 24px;}
  .product-toolbar{flex-direction:column;align-items:stretch;}
  .search-box{min-width:0;}
}
