/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --green-darkest: #0d2b1a;
  --green-dark:    #1a4731;
  --green-mid:     #2e7d52;
  --green-light:   #4caf50;
  --green-pale:    #e8f5e9;
  --gold:          #c8963e;
  --gold-light:    #f0c97a;
  --cream:         #fdf8f0;
  --white:         #ffffff;
  --text:          #1a1a1a;
  --text-muted:    #5a6872;
  --border:        #dde3dd;
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover:  0 8px 32px rgba(0,0,0,0.14);
  --radius:        12px;
  --radius-sm:     8px;
  --transition:    0.25s ease;
  --font:          'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 0.95rem; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title {
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
}

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

section { padding: 88px 0; }

/* Explicit section backgrounds — no automatic alternating rule */
#about   { background: var(--cream); }
#fresh   { background: var(--white); }
#frozen  { background: var(--white); }
#prices  { background: var(--cream); }
#other   { background: var(--white); }
#contact { background: var(--green-darkest); padding: 88px 0; }

.section-header {
  margin-bottom: 52px;
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(13, 43, 26, 0.97);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--white); }
.nav-menu {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-menu a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold);
  color: var(--green-darkest) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
#hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
#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); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-darkest) 0%, #1a4731 50%, #0f3522 100%);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-side {
  width: 260px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  display: block;
}
.hero-side-left::after,
.hero-side-right::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-side-left::after {
  background: linear-gradient(to right, rgba(13,43,26,0.6) 0%, transparent 100%);
}
.hero-side-right::after {
  background: linear-gradient(to left, rgba(13,43,26,0.6) 0%, transparent 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 24px 60px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(200,150,62,0.18);
  border: 1px solid rgba(200,150,62,0.4);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-primary { background: var(--gold); color: var(--green-darkest); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-green { background: var(--green-mid); color: var(--white); }
.btn-green:hover { background: var(--green-light); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--gold-light); }
.hero-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border-left: 4px solid var(--green-mid);
  box-shadow: var(--shadow);
}
.mv-card.vision { border-left-color: var(--gold); }
.mv-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}
.mv-card.vision .mv-card-label { color: var(--gold); }
.mv-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-top-color: var(--green-mid); }
.cat-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}
.cat-card h4 { color: var(--green-dark); margin-bottom: 8px; font-size: 1rem; }
.cat-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ============================================================
   PRODUCT CARDS (shared)
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* ── Product card photo ─────────────────────────────────── */
.product-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: var(--green-pale);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.04);
}
.product-card-header {
  background: var(--green-dark);
  padding: 20px 22px 18px;
}
.product-cat-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product-cat-badge.vegetable { background: rgba(76,175,80,0.25); color: #a5d6a7; }
.product-cat-badge.fruit     { background: rgba(255,167,38,0.25); color: #ffcc80; }
.product-cat-badge.dates     { background: rgba(200,150,62,0.3);  color: #f0c97a; }
.product-cat-badge.frozen    { background: rgba(100,181,246,0.25); color: #90caf9; }

.product-name { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.product-variety { color: rgba(255,255,255,0.55); font-size: 0.8rem; margin-top: 4px; font-style: italic; }

.product-card-body {
  padding: 20px 22px;
  flex: 1;
  border-bottom: 1px solid var(--border);
}
.product-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 16px; }
.product-detail-row {
  display: flex;
  gap: 8px;
  font-size: 0.83rem;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}
.product-detail-row:last-child { border-bottom: none; }
.detail-label {
  font-weight: 600;
  color: var(--green-mid);
  min-width: 80px;
  flex-shrink: 0;
}
.product-card-footer {
  padding: 16px 22px;
}

/* Availability month bar */
.availability-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.month-bar { display: flex; gap: 3px; margin-bottom: 6px; flex-wrap: wrap; }
.month-pip {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 3px 5px;
  border-radius: 4px;
  background: #f0f0f0;
  color: #aaa;
  transition: background var(--transition);
}
.month-pip.active { background: var(--green-mid); color: var(--white); }
.availability-text { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* Nutrition panel */
.nutri-toggle {
  width: 100%;
  background: var(--green-pale);
  border: 1px solid var(--border);
  color: var(--green-dark);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition);
}
.nutri-toggle:hover { background: #d0ecd6; }
.nutri-panel { margin-top: 12px; }
.nutri-panel.hidden { display: none; }
.nutri-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.nutri-table thead tr { background: var(--green-dark); color: var(--white); }
.nutri-table thead th { padding: 8px 12px; text-align: left; font-size: 0.78rem; letter-spacing: 0.05em; }
.nutri-table tbody tr:nth-child(even) { background: var(--green-pale); }
.nutri-table tbody td { padding: 6px 12px; }
.nutri-table tbody td:last-child { font-weight: 600; text-align: right; }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--green-mid); color: var(--green-mid); }
.filter-btn.active { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }

/* ============================================================
   FROZEN SECTION
   ============================================================ */
.segments-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.segment-card {
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 22px;
  border-left: 3px solid var(--green-mid);
}
.segment-card h4 { color: var(--green-dark); margin-bottom: 6px; }
.segment-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ============================================================
   PRICING
   ============================================================ */
.price-banner {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}
.price-banner-item { font-size: 0.88rem; }
.price-banner-item strong { color: var(--gold-light); display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding: 12px 16px;
  background: #fff8e1;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}

.price-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.875rem;
}
.price-table thead tr { background: var(--green-dark); color: var(--white); }
.price-table thead th {
  padding: 14px 14px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-table thead th.group-header {
  text-align: center;
  background: #133826;
  border-bottom: 2px solid var(--gold);
  padding: 8px;
  font-size: 0.72rem;
  color: var(--gold-light);
}
.price-table tbody tr { transition: background var(--transition); }
.price-table tbody tr:hover { background: var(--green-pale); }
.price-table tbody tr:nth-child(even) { background: #f9fbf9; }
.price-table tbody tr:nth-child(even):hover { background: var(--green-pale); }
.price-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.price-no { color: var(--text-muted); font-weight: 600; width: 36px; }
.price-name strong { color: var(--green-dark); }
.price-val { font-weight: 700; color: var(--green-dark); white-space: nowrap; }
.divider-row td { background: #f0f4f1; color: var(--text-muted); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 14px; }

/* ============================================================
   OTHER PRODUCTS
   ============================================================ */
#other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.other-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.other-card:hover { transform: translateY(-4px); }
.other-card h3 { color: var(--green-dark); margin-bottom: 10px; font-size: 1.05rem; }
.other-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 14px; line-height: 1.6; }
.other-card ul { display: flex; flex-direction: column; gap: 5px; }
.other-card li { font-size: 0.85rem; color: var(--text); padding-left: 14px; position: relative; }
.other-card li::before { content: '–'; position: absolute; left: 0; color: var(--gold); }

/* ============================================================
   CERTIFICATIONS STRIP
   ============================================================ */
.cert-strip {
  background: var(--green-darkest);
  padding: 48px 0;
  text-align: center;
}
.cert-strip h3 { color: var(--white); margin-bottom: 10px; }
.cert-strip p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 520px; margin: 0 auto 24px; }
.cert-badges { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cert-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact .section-title { color: var(--white); }
#contact .section-subtitle { color: rgba(255,255,255,0.6); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(200,150,62,0.18);
  border: 1px solid rgba(200,150,62,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
  font-size: 1rem;
}
.contact-info-text strong { color: var(--white); display: block; font-size: 0.9rem; margin-bottom: 2px; }
.contact-info-text span { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--green-darkest); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #060f09;
  padding: 48px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-brand .nav-logo { font-size: 1.5rem; display: block; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.7; max-width: 320px; }
.footer-col h5 { color: var(--gold-light); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color var(--transition); }
.footer-col li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .mv-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .segments-strip { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .price-table { font-size: 0.8rem; }
}

@media (max-width: 660px) {
  section { padding: 60px 0; }
  .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--green-darkest); flex-direction: column; align-items: center; justify-content: center; gap: 28px; z-index: 998; }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 1.2rem; }
  #hamburger { display: flex; z-index: 999; }
  .hero-stats { gap: 24px; }
  .hero-side { display: none; }
  .hero-content { padding: 100px 16px 60px; }
  .categories-grid { grid-template-columns: 1fr; }
  .filter-bar { gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  #other-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  #other-grid { grid-template-columns: 1fr; }
}
