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

:root {
  --green-dark:   #1b4d25;
  --green-mid:    #2e7d32;
  --green-bright: #3cb54a;
  --green-light:  #e8f5e9;
  --green-pale:   #f4faf5;
  --dark:         #1a2b1c;
  --gray:         #5a6e5c;
  --white:        #ffffff;
  --shadow:       0 4px 24px rgba(26,77,37,.10);
  --shadow-lg:    0 8px 40px rgba(26,77,37,.18);
  --radius:       12px;
  --transition:   all .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--green-bright);
  color: var(--white);
  border-color: var(--green-bright);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60,181,74,.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.9);
}
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* ── SECTION COMMON ── */
.section { padding: 96px 0; }
.section-alt { background: var(--green-pale); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header--light { margin-bottom: 48px; }

.section-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-bright);
  margin-bottom: 10px;
}
.section-eyebrow--light { color: rgba(255,255,255,.55); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
}
.section-title span { color: var(--green-mid); }
.section-title--light { color: var(--white); }
.section-title--light span { color: var(--green-bright); }

.section-sub {
  margin-top: 16px;
  color: var(--gray);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-social {
  display: flex;
  gap: 14px;
}
.topbar-social a {
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  transition: color .2s;
}
.topbar-social a:hover { color: var(--green-bright); }

/* ── NAV ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
#navbar.scrolled {
  border-bottom-color: var(--green-light);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.nav-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: height .3s;
}
#navbar.scrolled .nav-logo-img { height: 50px; }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}
.nav-links a {
  padding: 9px 16px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: 6px;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green-mid); }

.nav-links .nav-cta {
  background: var(--green-bright);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 9px 24px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--green-mid); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO — SPLIT SCREEN ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 76px - 37px);
}

.hero-left {
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 4rem;
  box-shadow: 8px 0 48px rgba(0,0,0,.28);
  z-index: 1;
}

/* subtle decorative circles */
.hero-left::before,
.hero-left::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}
.hero-left::before { width: 420px; height: 420px; top: -120px; right: -160px; }
.hero-left::after  { width: 260px; height: 260px; bottom: -80px; left: -80px; }

.hero-left-inner { position: relative; z-index: 1; max-width: 520px; }

.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--green-bright);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  color: var(--green-bright);
  font-style: italic;
}
.hero-tagline {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,.75);
  margin-bottom: 12px;
}
.hero-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.4);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── ABOUT — text left, image right ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text p { color: var(--gray); margin-bottom: 16px; }
.about-text .section-title { margin-bottom: 20px; }

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 2px solid var(--green-light);
}
.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-mid);
  line-height: 1;
}
.stat span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  font-weight: 600;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--green-bright);
  color: white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-weight: 800;
  text-align: center;
}
.badge-line:first-child { font-size: 1.5rem; line-height: 1.1; }
.badge-line:last-child  { font-size: .65rem; text-transform: uppercase; letter-spacing: 1px; }

/* ── PRODUCTS — magazine overlay ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}
.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: default;
}
.product-card--large {
  grid-column: span 2;
}
.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover img { transform: scale(1.06); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10,30,12,.88) 0%,
    rgba(10,30,12,.35) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: var(--transition);
}
.product-num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--green-bright);
  margin-bottom: 4px;
}
.product-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.product-overlay p {
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: all .35s ease;
}
.product-card:hover .product-overlay p {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
}

/* ── FEATURES — numbered editorial ── */
.features {
  background: var(--green-dark);
  padding: 80px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 2.5rem;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
}
.feature-item:hover { background: rgba(255,255,255,.04); }
.feature-item:nth-child(even) { border-right: none; }
.feature-item:nth-child(3),
.feature-item:nth-child(4) { border-bottom: none; }

.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.08);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
  transition: color .3s;
}
.feature-item:hover .feature-num { color: rgba(60,181,74,.3); }

.feature-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.feature-body p {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

/* ── LOCATION ── */
.location-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: stretch;
}
.location-info { display: flex; flex-direction: column; gap: 24px; }
.loc-item { display: flex; gap: 16px; align-items: flex-start; }
.loc-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-icon svg { color: var(--green-mid); }
.loc-item strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.loc-item p { color: var(--gray); font-size: .9rem; line-height: 1.6; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-lg);
}
.map-wrap iframe { display: block; }

/* ── CONTACT ── */
.contact-form { max-width: 720px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.form-group input,
.form-group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  padding: 14px 18px;
  border: 2px solid #d4e8d6;
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(60,181,74,.10);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.contact-form .btn { width: 100%; justify-content: center; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}

/* ── FOOTER ── */
.footer { background: var(--green-dark); color: rgba(255,255,255,.6); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 24px;
}
.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}
.footer-logo-text em   { color: rgba(255,255,255,.6); font-style: italic; }
.footer-logo-text strong { color: var(--green-bright); }
.footer-brand p { font-size: .82rem; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: .85rem; font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: var(--green-bright); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green-bright); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 24px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom strong { color: rgba(255,255,255,.6); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left  { padding: 4rem 2rem; min-height: 90vh; }
  .hero-right { display: none; }
  /* show bg image on mobile */
  .hero-left {
    background-image: url('hero-vegetables.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .hero-left::before,
  .hero-left::after { display: none; }
  .hero-left { isolation: isolate; }
  .hero-left::before {
    display: block;
    width: 100%; height: 100%;
    top: 0; left: 0;
    background: rgba(10,30,12,.85);
    border-radius: 0;
    border: none;
  }
  .hero-left-inner { max-width: 600px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img { height: 360px; }
  .about-badge { left: auto; right: -12px; bottom: -12px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; }
  .feature-item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.08) !important; }
  .location-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 300px; }
}

@media (max-width: 768px) {
  .topbar-item { display: none; }
  .topbar-inner { justify-content: center; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .nav-links .nav-cta { text-align: center; margin-left: 0; margin-top: 4px; }
  .section { padding: 64px 0; }
  .products-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .product-card--large { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .product-card--large { grid-column: span 1; }
  .about-stats { flex-direction: column; gap: 20px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .feature-item { flex-direction: column; gap: 8px; }
  .feature-num { font-size: 2.5rem; }
}
