/* ============================================================
   Global Fresh Fruits B.V. — Main Stylesheet
   Theme: Olive / Forest Green  ·  Cream  ·  White
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary-dark:   #3A4A0D;
  --primary:        #4E6114;
  --primary-light:  #6B7C1A;
  --accent:         #8FA32C;
  --accent-light:   #AABF35;
  --accent-pale:    #D4E06A;
  --cream:          #EAE6D5;
  --cream-dark:     #D5CEB8;
  --white:          #FFFFFF;
  --text:           #2C3409;
  --text-muted:     #66714A;
  --text-light:     #F5F3EC;
  --shadow-sm:      0 2px 12px rgba(0,0,0,.07);
  --shadow-md:      0 8px 30px rgba(0,0,0,.10);
  --shadow-lg:      0 20px 60px rgba(0,0,0,.14);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      22px;
  --transition:     0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--dark   { background: var(--primary-dark); }
.mt-lg { margin-top: 2rem; display: inline-block; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  padding: .75rem 0;
  box-shadow: 0 3px 24px rgba(0,0,0,.16);
}

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

/* Logo */
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-img { height: 58px; width: auto; flex-shrink: 0; }
.logo-img--sm { height: 50px; }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
}
.nav-link {
  color: var(--text);
  font-size: .9rem; font-weight: 500;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  border-radius: 25px;
  font-weight: 600;
  transition: background var(--transition), transform .2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text);
  transition: var(--transition);
}
.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;
  position: relative;
  display: flex; align-items: center;
  background: url('https://images.unsplash.com/photo-1726177551991-270f9e79b65e?auto=format&fit=crop&w=1920&q=80')
              center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,12,14,.72) 0%,
    rgba(10,12,14,.52) 45%,
    rgba(10,12,14,.32) 100%
  );
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; height: 110px;
  pointer-events: none;
}
.hero-wave svg { width: 100%; height: 100%; }

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 5rem;
}

/* Hero text */
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--accent-pale);
  font-size: .78rem; font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 20px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700; line-height: 1.18;
  margin-bottom: 1.4rem;
  animation: fadeUp .8s .15s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--accent-pale);
}
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.82);
  line-height: 1.85; max-width: 520px;
  margin-bottom: 2.2rem;
  animation: fadeUp .8s .3s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeUp .8s .45s ease both;
}
.hero-certs {
  display: flex; gap: .6rem; flex-wrap: wrap;
  animation: fadeUp .8s .6s ease both;
}
.cert-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.85);
  font-size: .75rem; font-weight: 600;
  padding: .3rem .8rem; border-radius: 20px;
  letter-spacing: .5px;
}

/* Hero fruit cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  animation: fadeUp .8s .3s ease both;
}
.fruit-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
  color: var(--white);
  transition: transform var(--transition), background var(--transition);
}
.fruit-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.2);
}
.fruit-card img {
  width: 90px; height: 90px;
  object-fit: cover; border-radius: 50%;
  margin: 0 auto .7rem;
  border: 3px solid rgba(255,255,255,.3);
}
.fruit-card span {
  display: block; font-size: .85rem; font-weight: 600;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--primary-dark);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: .5rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 2rem; font-weight: 800;
  color: var(--accent-light); line-height: 1;
}
.stat-lbl {
  font-size: .75rem; color: rgba(255,255,255,.6);
  margin-top: .3rem;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  background: rgba(78,97,20,.12);
  color: var(--primary);
  font-size: .72rem; font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 20px;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: .9rem;
}
.section-tag--light {
  background: rgba(255,255,255,.12);
  color: var(--accent-pale);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  color: var(--primary-dark);
  line-height: 1.25; margin-bottom: .9rem;
}
.section-title--light { color: var(--white); }
.section-sub {
  font-size: .98rem; color: #6a7250;
  max-width: 600px; margin: 0 auto; line-height: 1.75;
}
.section-sub--light { color: rgba(255,255,255,.65); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* About images */
.about-visuals { position: relative; }
.about-img-main-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-founded-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--primary);
  color: var(--white);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-founded-year {
  display: block;
  font-size: 1.9rem; font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
}
.about-founded-lbl {
  display: block;
  font-size: .7rem; opacity: .75;
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: .2rem;
}
.about-img-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 1.6rem;
}
.about-img-pair img {
  width: 100%; height: 150px;
  object-fit: cover; border-radius: var(--radius-md);
}

/* About content */
.about-content { }
.about-para {
  font-size: .97rem; color: #555; line-height: 1.85;
  margin-bottom: 1.1rem;
}
.feature-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .65rem; margin: 1.5rem 0;
}
.feature-list li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .88rem; font-weight: 500; color: var(--text);
}
.feature-list li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: .7rem; font-weight: 700;
}
.cert-row {
  display: flex; flex-wrap: wrap; gap: .7rem;
  margin-bottom: .5rem;
}
.cert-card {
  display: flex; align-items: center; gap: .4rem;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  padding: .45rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 700; color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition);
}
.cert-card:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative; height: 240px; overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-badge {
  position: absolute; top: .9rem; left: .9rem;
  background: var(--primary-dark);
  color: var(--white);
  font-size: .68rem; font-weight: 700;
  padding: .28rem .75rem; border-radius: 20px;
  letter-spacing: .5px; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.product-body { padding: 1.5rem; }
.product-name {
  font-size: 1.35rem; font-weight: 700;
  color: var(--primary-dark); margin-bottom: .5rem;
}
.product-desc {
  font-size: .88rem; color: #666; line-height: 1.65;
  margin-bottom: 1rem;
}
.product-tags {
  display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: 1.1rem;
}
.product-tags span {
  background: rgba(78,97,20,.09);
  color: var(--primary);
  font-size: .72rem; font-weight: 600;
  padding: .28rem .65rem; border-radius: 6px;
}
.product-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--cream);
}
.product-pack { font-size: .82rem; color: #888; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-5px);
}
.why-icon {
  font-size: 2.2rem;
  width: 66px; height: 66px;
  background: rgba(143,163,44,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.why-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: .75rem;
  line-height: 1.4;
}
.why-card p {
  font-size: .85rem; color: rgba(255,255,255,.62);
  line-height: 1.75;
}
.trust-stripe {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.trust-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; color: var(--accent-light);
  line-height: .8; flex-shrink: 0;
}
.trust-stripe p {
  font-size: 1.05rem; color: rgba(255,255,255,.80);
  font-style: italic; line-height: 1.75;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--accent);
}
.service-num {
  font-size: .7rem; font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px; margin-bottom: .9rem;
}
.service-icon { font-size: 2.3rem; margin-bottom: .9rem; }
.service-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--primary-dark); margin-bottom: .75rem;
}
.service-card p {
  font-size: .85rem; color: #777; line-height: 1.72;
}

/* ============================================================
   GOALS BANNER
   ============================================================ */
.goals-banner {
  background: var(--primary);
  padding: 5rem 0;
  overflow: hidden;
}
.goals-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
}
.goals-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--white); margin-bottom: 1rem; line-height: 1.3;
}
.goals-text p {
  color: rgba(255,255,255,.75); font-size: .98rem;
  line-height: 1.75; margin-bottom: 2rem; max-width: 480px;
}
.goals-map img {
  width: 100%; border-radius: var(--radius-md);
  opacity: .8; filter: saturate(.7);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(78,97,20,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-item h4 {
  font-size: .78rem; font-weight: 700;
  color: var(--primary); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: .3rem;
}
.contact-item p {
  font-size: .88rem; color: #555; line-height: 1.55;
}
.contact-farm-img {
  margin-top: .5rem;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-farm-img img { width: 100%; height: 200px; object-fit: cover; }

/* Contact form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-size: 1.3rem; font-weight: 700;
  color: var(--primary-dark); margin-bottom: 1.8rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .8rem; font-weight: 700;
  color: var(--primary); margin-bottom: .4rem;
  text-transform: uppercase; letter-spacing: .8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid rgba(78,97,20,.18);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea {
  resize: vertical; min-height: 130px;
}
.form-note {
  font-size: .78rem; color: #888;
  text-align: center; margin-top: .8rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem;
  padding: .75rem 1.8rem;
  border-radius: 28px;
  font-size: .92rem; font-weight: 600;
  transition: background var(--transition), transform .2s, box-shadow var(--transition);
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 8px 24px rgba(78,97,20,.35);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-light);
  box-shadow: 0 8px 24px rgba(143,163,44,.4);
}
.btn-accent-inv {
  background: var(--white);
  color: var(--primary);
}
.btn-accent-inv:hover {
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(255,255,255,.3);
}
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: var(--white);
}
.btn-sm {
  background: var(--primary);
  color: var(--white);
  font-size: .78rem; padding: .45rem 1.1rem;
  border-radius: 20px; font-weight: 600;
}
.btn-sm:hover { background: var(--accent); }
.btn-full { width: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--white); padding-top: 4rem; border-top: 1px solid var(--cream-dark); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-brand-name {
  font-size: 1.05rem; font-weight: 700; color: var(--text);
}
.footer-brand-sub {
  font-size: .68rem; color: var(--primary);
  letter-spacing: 1px; text-transform: uppercase;
}
.footer-brand p {
  font-size: .85rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 1.2rem;
}
.footer-certs { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer-certs span {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  color: var(--text-muted);
  font-size: .72rem; font-weight: 600;
  padding: .3rem .7rem; border-radius: 16px;
}
.footer-col h4 {
  font-size: .9rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  font-size: .84rem; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--cream-dark);
  padding: 1.4rem 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: .78rem; color: var(--text-muted);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 46px; height: 46px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem; font-weight: 700;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); background: var(--accent-light); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
  /* Navbar */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    justify-content: center; align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 998;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links .nav-link { font-size: 1.2rem; color: var(--white); }
  .nav-links .nav-link:hover { color: var(--accent-pale); }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 7rem;
    padding-bottom: 6rem;
    text-align: center;
  }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .hero-certs { justify-content: center; }
  .hero-cards { max-width: 380px; margin: 0 auto; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-founded-badge { right: 1rem; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }

  /* Why / Services */
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  /* Goals */
  .goals-inner { grid-template-columns: 1fr; }
  .goals-map { display: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; gap: .4rem; text-align: center; }

  /* Page-specific mobile */
  .product-detail-card,
  .product-detail-card--reverse { grid-template-columns: 1fr; }
  .product-detail-card--reverse .product-detail-img { order: -1; }
  .service-detail-body { grid-template-columns: 1fr; }
  .service-detail-body .service-detail-img { display: none; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .office-pair { grid-template-columns: 1fr; }
  .goals-cards-grid { grid-template-columns: 1fr; }
  .cert-big-grid { grid-template-columns: 1fr; }
  .packaging-grid { grid-template-columns: 1fr 1fr; }
  .quick-links-grid { grid-template-columns: 1fr; }
  .contact-img-strip { grid-template-columns: 1fr; }
  .home-products-grid { grid-template-columns: 1fr 1fr; }
  .about-home-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 52vh;
  position: relative;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  padding-bottom: 80px;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,12,14,.70) 0%,
    rgba(10,12,14,.50) 60%,
    rgba(10,12,14,.30) 100%
  );
}
.page-hero-content {
  position: relative; z-index: 1;
  padding-top: 9rem;
  color: var(--white);
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700; line-height: 1.2;
  margin-bottom: .7rem;
}
.page-hero-content p {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  max-width: 560px; line-height: 1.75;
}
.page-hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  pointer-events: none;
}
.page-hero-wave svg { width: 100%; height: 100%; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; margin-bottom: 1.2rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: var(--accent-pale); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,.5); }

/* ============================================================
   HOME PAGE — About teaser
   ============================================================ */
.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-home-img {
  position: relative;
}
.about-home-img img {
  width: 100%; height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* HOME PAGE — Products teaser tiles */
.home-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; margin-bottom: 2.5rem;
}
.home-product-tile {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; height: 280px;
  display: block;
}
.home-product-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.home-product-tile:hover img { transform: scale(1.08); }
.home-product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.05) 55%);
  display: flex; align-items: flex-end;
  padding: 1.2rem;
}
.home-product-overlay span {
  color: var(--white); font-size: 1rem; font-weight: 700;
}

/* CTA row */
.section-cta-row {
  display: flex; justify-content: center;
  margin-top: 2.5rem;
}

/* CTA Banner */
.cta-banner {
  background: var(--primary);
  padding: 4rem 0;
}
.cta-banner-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--white); margin-bottom: .5rem;
}
.cta-banner-inner p {
  color: rgba(255,255,255,.72); font-size: .97rem;
  max-width: 520px;
}

/* ============================================================
   ABOUT PAGE — Goals cards
   ============================================================ */
.goals-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.goal-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border-top: 4px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.goal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.goal-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.goal-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--primary-dark); margin-bottom: .7rem;
}
.goal-card p { font-size: .87rem; color: #666; line-height: 1.72; }

/* ============================================================
   ABOUT PAGE — Cert big grid
   ============================================================ */
.cert-big-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-bottom: 3rem;
}
.cert-big-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.cert-big-card:hover { background: rgba(255,255,255,.12); transform: translateY(-5px); }
.cert-big-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.cert-big-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.cert-big-card p { font-size: .87rem; color: rgba(255,255,255,.65); line-height: 1.75; }

/* ============================================================
   ABOUT PAGE — Offices
   ============================================================ */
.offices-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 0 auto;
  gap: 2.5rem;
}
.office-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--accent);
}
.office-flag { font-size: 3rem; margin-bottom: 1rem; }
.office-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary-dark); margin-bottom: .3rem; }
.office-role { font-size: .82rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem; }
.office-detail {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .88rem; color: #555; margin-bottom: .55rem;
}
.office-detail span:first-child { flex-shrink: 0; }

/* ============================================================
   PRODUCTS PAGE — Detail cards
   ============================================================ */
.product-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 3.5rem;
  border: 1px solid rgba(0,0,0,.06);
}
.product-detail-card--reverse { direction: rtl; }
.product-detail-card--reverse > * { direction: ltr; }

.product-detail-img {
  position: relative; min-height: 420px;
  overflow: hidden;
}
.product-detail-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.product-detail-card:hover .product-detail-img img { transform: scale(1.05); }

.product-detail-body {
  padding: 3rem 2.5rem;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.product-detail-emoji { font-size: 3rem; margin-bottom: .5rem; }
.product-detail-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--primary-dark); margin-bottom: 1rem;
}
.product-detail-desc {
  font-size: .95rem; color: #555; line-height: 1.8;
  margin-bottom: 1rem;
}
.product-detail-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .7rem; margin: 1.5rem 0;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
}
.spec-item { display: flex; flex-direction: column; gap: .2rem; }
.spec-label { font-size: .7rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
.spec-val { font-size: .88rem; font-weight: 600; color: var(--text); }

/* Packaging cards */
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.packaging-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), background var(--transition);
}
.packaging-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.packaging-img-wrap { height: 160px; overflow: hidden; }
.packaging-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.packaging-card:hover .packaging-img-wrap img { transform: scale(1.06); }
.packaging-body { padding: 1.2rem 1.3rem 1.4rem; text-align: center; }
.packaging-body h3 { font-size: .98rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.packaging-body p { font-size: .84rem; color: rgba(255,255,255,.62); line-height: 1.7; }

/* ============================================================
   SERVICES PAGE — Detail blocks
   ============================================================ */
.service-detail-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 3rem;
  border: 1px solid rgba(0,0,0,.05);
}
.service-detail-block--alt {
  background: var(--white);
}
.service-detail-header {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: var(--primary-dark);
  color: var(--white);
}
.service-detail-num {
  font-size: 3rem; font-weight: 800;
  color: var(--accent-light); line-height: 1;
  flex-shrink: 0;
}
.service-detail-icon { font-size: 2.2rem; flex-shrink: 0; }
.service-detail-title { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.service-detail-sub { font-size: .9rem; color: rgba(255,255,255,.65); }
.service-detail-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; padding: 2.5rem;
  align-items: start;
}
.service-detail-text p {
  font-size: .95rem; color: #555; line-height: 1.82;
  margin-bottom: 1rem;
}
.service-feature-list {
  list-style: none; margin-top: 1rem;
  display: flex; flex-direction: column; gap: .55rem;
}
.service-feature-list li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .88rem; color: var(--text); font-weight: 500;
}
.service-feature-list li::before {
  content: '✓';
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--accent); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
}
.service-detail-img img {
  width: 100%; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); object-fit: cover; height: 300px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem; align-items: start;
}
.contact-info-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--primary-dark);
  margin-bottom: .8rem;
}
.contact-info-intro {
  font-size: .97rem; color: #666;
  line-height: 1.78; margin-bottom: 2rem;
}
.contact-cards {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2rem;
}
.contact-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
}
.contact-card-icon {
  font-size: 1.3rem;
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(78,97,20,.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-card h4 {
  font-size: .75rem; font-weight: 700;
  color: var(--primary); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: .35rem;
}
.contact-card p { font-size: .88rem; color: #555; line-height: 1.55; }
.contact-card a { color: var(--primary); transition: color var(--transition); }
.contact-card a:hover { color: var(--accent); }

.office-pair {
  display: grid; grid-template-columns: 1fr;
  gap: 1rem; margin-bottom: 1.5rem;
}
.office-mini-card {
  background: var(--primary-dark);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem;
  display: flex; gap: .8rem; align-items: flex-start;
}
.office-mini-flag { font-size: 1.6rem; flex-shrink: 0; }
.office-mini-card h4 {
  font-size: .78rem; font-weight: 700; color: var(--accent-light);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: .3rem;
}
.office-mini-card p { font-size: .8rem; color: rgba(255,255,255,.62); line-height: 1.45; }

.contact-img-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: .8rem;
  border-radius: var(--radius-md); overflow: hidden;
}
.contact-img-strip img { width: 100%; height: 150px; object-fit: cover; }

.contact-form-col { }
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-size: 1.4rem; font-weight: 700;
  color: var(--primary-dark); margin-bottom: .4rem;
}
.form-intro {
  font-size: .88rem; color: #777;
  margin-bottom: 1.8rem; line-height: 1.6;
}
.req { color: #c0392b; }

/* Quick links — Contact page */
.quick-links-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.quick-link-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.quick-link-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--accent);
}
.ql-icon { font-size: 2rem; margin-bottom: 1rem; }
.quick-link-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--primary-dark);
  margin-bottom: .6rem;
}
.quick-link-card p {
  font-size: .87rem; color: #777; line-height: 1.65;
  flex: 1;
}
.ql-arrow {
  display: inline-block; margin-top: 1.2rem;
  font-size: 1.1rem; color: var(--accent); font-weight: 700;
  transition: transform var(--transition);
}
.quick-link-card:hover .ql-arrow { transform: translateX(4px); }

/* ============================================================
   Tablet overrides for new sections
   ============================================================ */
@media (max-width: 1024px) {
  .home-products-grid { grid-template-columns: repeat(2, 1fr); }
  .goals-cards-grid   { grid-template-columns: repeat(2, 1fr); }
  .cert-big-grid      { grid-template-columns: 1fr 1fr; }
  .packaging-grid     { grid-template-columns: repeat(2, 1fr); }
  .product-detail-card,
  .product-detail-card--reverse { grid-template-columns: 1fr; direction: ltr; }
  .product-detail-img { min-height: 300px; }
  .service-detail-body { grid-template-columns: 1fr; }
  .contact-main-grid  { grid-template-columns: 1fr; }
  .quick-links-grid   { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   AVOCADO-SPECIFIC COMPONENTS
   ============================================================ */

/* Hero — Two-variety cards on home hero */
.hero-avo-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  animation: fadeUp .8s .3s ease both;
}
.avo-hero-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), background var(--transition);
  color: var(--white);
  display: block;
}
.avo-hero-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.18); }
.avo-hero-card img {
  width: 100%; height: 160px; object-fit: cover;
  transition: transform .5s ease;
}
.avo-hero-card:hover img { transform: scale(1.06); }
.avo-hero-card-body { padding: 1.1rem 1.2rem; }
.avo-variety-tag {
  display: inline-block;
  font-size: .65rem; font-weight: 700;
  color: var(--accent-pale); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: .3rem;
}
.avo-hero-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: .3rem; line-height: 1;
}
.avo-hero-card-body p {
  font-size: .78rem; color: rgba(255,255,255,.7); line-height: 1.4;
}

/* Origin section pill */
.origin-pill {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--primary-dark);
  color: var(--accent-light);
  font-size: .75rem; font-weight: 700;
  padding: .4rem .9rem; border-radius: 20px;
  letter-spacing: .5px;
}
.region-badges {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin: 1.2rem 0 .5rem;
}
.region-badge {
  background: rgba(78,97,20,.1);
  color: var(--primary);
  font-size: .8rem; font-weight: 600;
  padding: .35rem .9rem; border-radius: 20px;
  border: 1.5px solid rgba(78,97,20,.2);
}

/* ============================================================
   HOME — Variety showcase cards
   ============================================================ */
.variety-showcase {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2rem;
}
.variety-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.variety-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.variety-img-wrap {
  position: relative; height: 280px; overflow: hidden;
}
.variety-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.variety-card:hover .variety-img-wrap img { transform: scale(1.07); }
.variety-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.variety-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700;
  color: rgba(255,255,255,.25); line-height: 1;
}
.variety-body { padding: 1.8rem; }
.variety-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1rem;
  margin-bottom: 1rem;
}
.variety-label {
  display: block;
  font-size: .68rem; font-weight: 700;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: .2rem;
}
.variety-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--primary-dark);
}
.variety-season-badge {
  background: var(--primary-dark);
  color: var(--accent-light);
  font-size: .7rem; font-weight: 700;
  padding: .3rem .75rem; border-radius: 20px;
  white-space: nowrap; flex-shrink: 0;
  letter-spacing: .5px;
}
.variety-body > p {
  font-size: .9rem; color: #666; line-height: 1.72; margin-bottom: 1.2rem;
}
.variety-specs-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .5rem; margin-bottom: 1.5rem;
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 1rem;
}
.vspec { display: flex; flex-direction: column; gap: .15rem; }
.vspec span { font-size: .65rem; color: #888; text-transform: uppercase; letter-spacing: .8px; }
.vspec strong { font-size: .82rem; color: var(--text); font-weight: 700; }

/* ============================================================
   PRODUCTS PAGE — Tagline + Highlights
   ============================================================ */
.variety-tagline {
  font-size: .95rem; font-style: italic;
  color: var(--accent); font-weight: 600;
  margin-bottom: 1rem; display: block;
}
.product-highlights {
  background: rgba(78,97,20,.06);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin: 1rem 0 1.5rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.ph-item {
  display: flex; gap: .6rem; align-items: center;
  font-size: .87rem; color: var(--text); font-weight: 500;
}
.ph-item span {
  color: var(--accent); font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   PRODUCTS PAGE — Comparison Table
   ============================================================ */
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%; border-collapse: collapse;
  font-size: .9rem; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.comparison-table thead tr {
  background: var(--primary-dark); color: var(--white);
}
.comparison-table th {
  padding: 1rem 1.2rem; text-align: left;
  font-size: .85rem; font-weight: 700; letter-spacing: .5px;
}
.comparison-table th:first-child { width: 30%; }
.comparison-table td {
  padding: .85rem 1.2rem;
  border-bottom: 1px solid var(--cream);
  color: #444;
}
.comparison-table tbody tr:nth-child(even) { background: var(--cream); }
.comparison-table tbody tr:hover { background: rgba(143,163,44,.08); }
.comparison-table td:first-child { font-weight: 600; color: var(--primary-dark); }

/* ============================================================
   SEASON CALENDAR TABLE
   ============================================================ */
.season-table-wrap { overflow-x: auto; }
.season-table {
  width: 100%; border-collapse: collapse;
  box-shadow: var(--shadow-sm); border-radius: var(--radius-md);
  overflow: hidden; font-size: .88rem;
}
.season-table th {
  background: var(--primary-dark);
  color: var(--white);
  padding: .8rem .6rem; text-align: center;
  font-size: .78rem; font-weight: 700; letter-spacing: .5px;
}
.season-table th:first-child { text-align: left; padding-left: 1.2rem; }
.season-table td {
  padding: .9rem .5rem; text-align: center;
  border: 1px solid rgba(0,0,0,.05);
}
.variety-name-cell {
  text-align: left !important; padding-left: 1.2rem !important;
}
.variety-name-cell span { font-weight: 700; color: var(--primary-dark); }
.season-table td.peak { background: var(--accent); }
.season-table td.avail { background: rgba(143,163,44,.3); }
.season-table td.empty { background: rgba(0,0,0,.03); }
.season-legend {
  display: flex; gap: 1.5rem; align-items: center;
  margin-top: 1.2rem; flex-wrap: wrap;
}
.legend-peak, .legend-avail, .legend-empty {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; color: #555;
}
.legend-peak::before  { content: ''; display: block; width: 20px; height: 14px; background: var(--accent); border-radius: 4px; }
.legend-avail::before { content: ''; display: block; width: 20px; height: 14px; background: rgba(143,163,44,.3); border-radius: 4px; border: 1.5px solid var(--accent); }
.legend-empty::before { content: ''; display: block; width: 20px; height: 14px; background: rgba(0,0,0,.06); border-radius: 4px; border: 1px solid #ccc; }

/* ============================================================
   Responsive — Avocado components
   ============================================================ */
@media (max-width: 1024px) {
  .variety-showcase { grid-template-columns: 1fr; }
  .variety-specs-row { grid-template-columns: repeat(2, 1fr); }
  .hero-avo-cards { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .variety-showcase { grid-template-columns: 1fr; }
  .variety-specs-row { grid-template-columns: repeat(2, 1fr); }
  .comparison-table th, .comparison-table td { padding: .6rem .8rem; font-size: .8rem; }
  .season-table th, .season-table td { padding: .6rem .3rem; font-size: .72rem; }
  .hero-avo-cards { max-width: 100%; }

  .container,
  .nav-inner,
  .hero-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .goals-cards-grid,
  .cert-big-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-block {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
  }

  .service-detail-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem 1rem;
    padding: 1.35rem;
  }

  .service-detail-header > div:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
  }

  .service-detail-num {
    font-size: 2.25rem;
  }

  .service-detail-icon {
    font-size: 1.85rem;
  }

  .service-detail-title {
    font-size: 1.22rem;
    line-height: 1.28;
  }

  .service-detail-sub {
    font-size: .86rem;
    line-height: 1.55;
  }

  .service-detail-body {
    padding: 1.35rem;
    gap: 1.25rem;
  }

  .service-detail-text p {
    font-size: .9rem;
    line-height: 1.75;
  }

  .service-feature-list li {
    align-items: flex-start;
    line-height: 1.55;
    min-width: 0;
  }

  .section-header,
  .page-hero-content,
  .service-detail-text,
  .cta-banner-inner > *,
  .footer-brand,
  .footer-col {
    max-width: 100%;
    min-width: 0;
  }

  .section-title {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .section-sub {
    font-size: .92rem;
    max-width: 100%;
  }

  .section-title,
  .section-sub,
  .page-hero-content h1,
  .page-hero-content p,
  .service-detail-title,
  .service-detail-sub,
  .service-detail-text p,
  .service-feature-list li,
  .why-card h3,
  .why-card p,
  .cta-banner-inner h2,
  .cta-banner-inner p,
  .footer-brand p,
  .footer-col a {
    overflow-wrap: anywhere;
  }

  .about-home-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  .about-home-img {
    order: -1;
    width: 100%;
  }

  .about-home-img img {
    height: clamp(240px, 70vw, 360px);
    border-radius: var(--radius-md);
  }

  .about-home-text {
    width: 100%;
  }

  .origin-pill {
    top: .85rem;
    left: .85rem;
    max-width: calc(100% - 1.7rem);
  }
}
