*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:     #ffffff;
  --off-white: #f8f6f2;
  --stone:     #ede9e1;
  --stone-mid: #d8d2c5;
  --green:     #3a6b47;
  --green-mid: #5a8a66;
  --green-lt:  #8ab898;
  --green-pale:#eef4f0;
  --earth:     #8b7355;
  --text:      #1c1c1a;
  --text-mid:  #5a5750;
  --text-lt:   #9a9590;
}

html { scroll-behavior: auto; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── SCROLLBAR ────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--green-lt); border-radius: 2px; }

/* ── NAV ──────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 5vw;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: padding .35s, border-color .35s, box-shadow .35s;
}
nav.scrolled {
  padding: 1rem 5vw;
  border-color: var(--stone);
  box-shadow: 0 2px 24px rgba(0,0,0,0.05);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600;
  color: var(--text); letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo em { color: var(--green); font-style: italic; }
.nav-links {
  display: flex; gap: 3rem; list-style: none;
}
.nav-links span {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mid); cursor: pointer;
  position: relative; padding-bottom: 3px;
  transition: color .25s;
}
.nav-links span::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-links span:hover, .nav-links span.active { color: var(--green); }
.nav-links span:hover::after, .nav-links span.active::after { transform: scaleX(1); }

/* ── SECTIONS BASE ────────────────── */
section { padding: 8rem 5vw; }

.label {
  display: inline-block;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1.2rem;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300; line-height: 1.18;
  color: var(--text); margin-bottom: 1.5rem;
}
h2 em { font-style: italic; color: var(--green); }

/* ── HERO ─────────────────────────── */
#hero {
  padding: 0; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
}
.hero-left {
  display: flex; flex-direction: column;
  justify-content: center; padding: 12vh 5vw 8vh 5vw;
  background: var(--off-white);
  position: relative; z-index: 2;
}
.hero-left .label { margin-bottom: 2rem; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 300; line-height: 1.06;
  color: var(--text); margin-bottom: 2rem;
}
.hero-title em { font-style: italic; color: var(--green); display: block; }
.hero-sub {
  font-size: 1rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.75;
  max-width: 380px; margin-bottom: 3rem;
}
.btn {
  display: inline-block;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  padding: 0.95rem 2.4rem;
  border: 1px solid var(--green);
  color: var(--green); background: transparent;
  border-radius: 2px;
  transition: background .25s, color .25s;
}
.btn:hover { background: var(--green); color: var(--white); }
.btn-solid {
  background: var(--green); color: var(--white);
}
.btn-solid:hover { background: #2d5438; border-color: #2d5438; }

.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.04); }
.hero-scroll-line {
  position: absolute; bottom: 3rem; left: 5vw;
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-lt);
}
.hero-scroll-line::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--stone-mid);
}

/* ── ABOUT ────────────────────────── */
#about { background: var(--white); }
.about-wrap {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 8vw; align-items: center;
}
.about-imgs {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 12px; position: relative;
}
.about-imgs img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: 3px;
}
.about-imgs img:first-child {
  grid-column: 1 / 3;
}
.about-stat {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--green);
  color: var(--white);
  padding: 1.4rem 1.8rem;
  border-radius: 3px;
}
.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; line-height: 1;
}
.about-stat-txt {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.8; margin-top: 0.3rem;
}
.about-text p {
  font-size: 1rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.85;
  margin-bottom: 1.4rem;
}
.about-divider {
  width: 40px; height: 1px;
  background: var(--green); margin: 2rem 0;
}

/* ── PRODUCTS ─────────────────────── */
#products { background: var(--off-white); padding: 8rem 0; }
.products-wrap { max-width: 100%; margin: 0; }
.products-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 4rem;
  gap: 2rem; padding: 0 5vw;
}
.products-head p {
  max-width: 360px;
  font-size: 0.95rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.75;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
}
.prod-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; cursor: default;
  background: var(--stone);
}
.prod-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94),
  filter .6s ease;
  filter: saturate(0.85);
}
.prod-card:hover img {
  transform: scale(1.06);
  filter: saturate(1);
}
.prod-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,40,25,0.72) 0%, transparent 55%);
}
.prod-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.8rem;
  transform: translateY(4px);
  transition: transform .35s ease;
}
.prod-card:hover .prod-card-body { transform: translateY(0); }
.prod-card-tag {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-lt); margin-bottom: 0.5rem;
}
.prod-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 400;
  color: var(--white); line-height: 1.2;
}
.prod-card-desc {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.65); line-height: 1.65;
  margin-top: 0.6rem;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.prod-card:hover .prod-card-desc { max-height: 80px; }

/* Product item lists */
.prod-item-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.prod-item-list li {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.4rem;
  line-height: 1;
}
.prod-item-list li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Vegetables — earthy green tones */
.prod-item-list--veg li {
  background: rgba(80, 160, 80, 0.22);
  color: #b6f0b6;
  border: 1px solid rgba(120, 200, 100, 0.3);
}
.prod-item-list--veg li::before {
  background: #7ddd7d;
}

/* Fruits — warm citrus/coral tones */
.prod-item-list--fruit li {
  background: rgba(220, 130, 40, 0.22);
  color: #ffd9a0;
  border: 1px solid rgba(240, 170, 60, 0.3);
}
.prod-item-list--fruit li::before {
  background: #f9b84a;
}

/* ── SUSTAINABILITY ────────────────── */
#sustainability { background: var(--white); padding: 0; }
.sus-grid {
  display: grid; grid-template-columns: 1fr 1fr;
}
.sus-img {
  position: relative; overflow: hidden;
  min-height: 600px;
}
.sus-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.sus-content {
  padding: 8rem 6vw;
  background: var(--green-pale);
  display: flex; flex-direction: column; justify-content: center;
}
.sus-content h2 { margin-bottom: 1rem; }
.sus-content > p {
  font-size: 0.95rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.85;
  margin-bottom: 3rem;
}
.sus-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pillar {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 3px;
  border-left: 2px solid var(--green-lt);
  transition: border-color .25s, transform .25s;
}
.pillar:hover { border-color: var(--green); transform: translateX(4px); }
.pillar-icon { font-size: 1.5rem; margin-bottom: 0.7rem; display: block; }
.pillar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.4rem;
}
.pillar-desc {
  font-size: 0.82rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.65;
}

/* ── LOGISTICS STRIP ──────────────── */
.logistics-strip {
  background: var(--off-white);
  padding: 0; overflow: hidden;
  display: grid; grid-template-columns: repeat(3, 1fr);
  height: 320px;
}
.log-item {
  position: relative; overflow: hidden;
}
.log-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.7) brightness(0.9);
  transition: filter .5s ease, transform .5s ease;
}
.log-item:hover img { filter: saturate(1) brightness(1); transform: scale(1.04); }
.log-item-label {
  position: absolute; bottom: 1.2rem; left: 1.5rem;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* ── CONTACT ──────────────────────── */
#contact { background: var(--white); }
.contact-wrap {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 8vw; align-items: start;
}
.contact-left h2 { margin-bottom: 1rem; }
.contact-left > p {
  font-size: 0.95rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.8;
  margin-bottom: 3rem;
}
.contact-detail {
  display: flex; gap: 1rem;
  align-items: flex-start; margin-bottom: 1.6rem;
}
.contact-detail-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.contact-detail-text {
  font-size: 0.88rem; font-weight: 300;
  color: var(--text-mid); line-height: 1.7;
  padding-top: 0.4rem;
}
.contact-detail-text a { color: var(--green); text-decoration: none; }
.contact-detail-text a:hover { text-decoration: underline; }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1rem; }
.fg label {
  display: block; font-size: 0.67rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-lt); margin-bottom: 0.5rem;
}
.fg input, .fg textarea, .fg select {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--stone);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem; font-weight: 300;
  color: var(--text); outline: none;
  transition: border-color .25s, background .25s;
  appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-lt); }
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--green); background: var(--white);
}
.fg textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; margin-top: 0.5rem;
  background: var(--green); color: var(--white);
  border: 1px solid var(--green);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1rem; border-radius: 2px;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-submit:hover { background: #2d5438; border-color: #2d5438; }
.btn-submit:active { transform: scale(0.99); }

/* ── FOOTER ───────────────────────── */
footer {
  background: var(--text);
  padding: 3rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.footer-logo em { color: var(--green-lt); font-style: italic; }
.footer-copy {
  font-size: 0.72rem; font-weight: 300;
  color: rgba(255,255,255,0.3); letter-spacing: 0.06em;
}

/* ── REVEAL ───────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.up { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── RESPONSIVE ───────────────────── */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vw; }
  .about-wrap { grid-template-columns: 1fr; gap: 4rem; }
  .about-imgs { display: none; }
  .sus-grid { grid-template-columns: 1fr; }
  .sus-img { min-height: 300px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 4rem; }
  .logistics-strip { height: 200px; }
}
@media (max-width: 768px) {
  nav { padding: 1.2rem 5vw; }
  .nav-links { display: none; }
  .nav-links span { font-size: 0.62rem; letter-spacing: 0.12em; }
  section { padding: 5rem 5vw; }
  .products-head { flex-direction: column; align-items: flex-start; }
  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sus-pillars { grid-template-columns: 1fr; }
  .logistics-strip { grid-template-columns: 1fr; height: auto; }
  .log-item { height: 180px; }
}

/* ── HAMBURGER BUTTON ─────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* ── MOBILE MENU DRAWER ───────────────── */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 200;
  padding: 5rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu ul li {
  border-bottom: 1px solid var(--stone);
}
.mobile-menu ul li span {
  display: block;
  padding: 1.1rem 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: color .2s, padding-left .2s;
}
.mobile-menu ul li span:hover {
  color: var(--green);
  padding-left: 0.5rem;
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}