:root {
  --forest:   #114C47;
  --forest-d: #0D3935;
  --forest-l: #1A6B5E;
  --saffron:  #BD9E6D;
  --saff-l:   #CDB07F;
  --cream:    #FDF6EC;
  --sand:     #F0E0C4;
  --sand-d:   #D4B896;
  --charcoal: #1C1C1C;
  --warm-grey:#6B6157;
  --divider:  #E8DDD0;
  --white:    #FFFFFF;
  --teal:     #1B6B6B;
  --red-cert: #8B2020;
  --gold:     #BD9E6D;
  --gold-l:   #D4B88A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: rgba(253,246,236,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  transition: all .3s;
}

nav.scrolled {
  box-shadow: 0 4px 20px rgba(45,106,79,.08);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--forest);
  text-decoration: none; letter-spacing: -.01em;
  display: flex; align-items: center;
}
.nav-logo span { color: var(--saffron); }
.nav-logo img { height: 54px; width: auto; display: block; }

.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }

.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--warm-grey);
  text-decoration: none; letter-spacing: .02em;
  transition: color .2s;
}

.nav-links a:hover { color: var(--forest); }

.nav-links a.active {
  color: var(--forest);
  border-bottom: 2px solid var(--forest);
  padding-bottom: 2px;
}

.nav-cta {
  background: var(--forest); color: var(--white) !important;
  padding: 10px 22px; border-radius: 4px;
  font-size: .8rem !important; font-weight: 600 !important;
  letter-spacing: .04em !important; text-transform: uppercase;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--forest-d) !important; color: var(--white) !important; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; width: 24px; height: 20px;
}

.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--forest);
  border-radius: 2px; transition: all .3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 70px 0 0 0;
  background: var(--cream);
  position: relative; overflow: hidden;
}

.hero-text {
  position: relative; z-index: 1;
  padding: 64px 20px 64px 60px;
  display: flex; flex-direction: column; justify-content: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 700; color: var(--saffron);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--saffron);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700; line-height: 1.1;
  color: var(--charcoal); margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic; color: var(--forest);
}

.hero-sub {
  font-size: 1rem; font-weight: 400; line-height: 1.7;
  color: var(--warm-grey); margin-bottom: 36px;
}

.hero-badges {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px;
}

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--divider);
  border-radius: 100px; padding: 8px 16px 8px 10px;
  font-size: .78rem; font-weight: 600; color: var(--forest);
}

.badge svg { width: 36px; height: 36px; flex-shrink: 0; }

/* ── HERO SEALS (icon-only USP stamps) ── */
.hero-seals {
  display: flex; align-items: center;
  gap: 28px;
  margin-bottom: 32px;
}

.seal-icon {
  height: 82px; width: auto;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform .2s;
}

.seal-icon:hover { transform: scale(1.08); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--saffron); color: var(--white);
  padding: 14px 28px; border-radius: 4px; border: none;
  font-size: .875rem; font-weight: 600; letter-spacing: .03em;
  text-decoration: none; cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-block;
}

.btn-primary:hover { background: var(--saff-l); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--forest);
  padding: 13px 28px; border-radius: 4px;
  border: 1.5px solid var(--forest);
  font-size: .875rem; font-weight: 600; letter-spacing: .03em;
  text-decoration: none; cursor: pointer;
  transition: all .2s;
  display: inline-block;
}

.btn-outline:hover { background: var(--forest); color: var(--white); }

.hero-visual {
  position: relative; z-index: 1;
  padding: 0;
  align-self: stretch;
  overflow: hidden;
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cream);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.hero-slide-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,.5);
  padding: 5px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}

.hero-dot.active {
  background: white;
  border-color: white;
}

.hero-dot:hover {
  border-color: white;
  background: rgba(255,255,255,.5);
}

.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px; padding: 44px;
  backdrop-filter: blur(4px);
  width: 100%; max-width: 420px;
}

.hero-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 28px;
}

.spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.spec-row:last-child { border-bottom: none; }

.spec-label {
  font-size: .8rem; font-weight: 400; color: rgba(255,255,255,.6);
  letter-spacing: .02em;
}

.spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--white);
}

.spec-value.highlight { color: #D4B88A; }

.hero-markets {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-markets-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 12px;
}

.market-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.market-tag {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px; padding: 4px 12px;
  font-size: .75rem; color: rgba(255,255,255,.8); font-weight: 500;
}

/* ── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  background: var(--forest-d);
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}

.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.75);
  letter-spacing: .03em;
}

.trust-icon {
  width: 20px; height: 20px; color: #D4B88A;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px; height: 20px; background: rgba(255,255,255,.2);
}

/* ── SECTION BASE ──────────────────────────────────── */
section { padding: 60px 60px; }

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 600;
}

.section-eyebrow::after {
  content: ''; flex: 1; max-width: 48px; height: 1px; background: var(--saffron);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  color: var(--charcoal); margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--forest); }

.section-sub {
  font-size: 1rem; color: var(--warm-grey); line-height: 1.7;
  max-width: 100%; margin-bottom: 32px; text-align: justify;
}

.max-w { max-width: 1200px; margin: 0 auto; }

/* ── PAGE HERO (Inner Pages) ───────────────────────── */
.page-hero {
  min-height: auto;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 60px;
  margin-top: 70px;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  max-width: 100%;
  line-height: 1.7;
  margin: 0 auto;
}

/* ── WHY WHOLICIUS ─────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border: 1px solid var(--divider); border-radius: 8px;
  overflow: hidden;
}

.why-card {
  padding: 44px; border-right: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  transition: background .2s;
  position: relative;
}

.why-card:nth-child(2n) { border-right: none; }
.why-card:nth-child(3), .why-card:nth-child(4) { border-bottom: none; }
.why-card:hover { background: var(--white); }

.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: var(--sand);
  line-height: 1; margin-bottom: 20px;
}

.why-title {
  font-size: 1.1rem; font-weight: 600; color: var(--forest);
  margin-bottom: 12px; line-height: 1.3;
}

.why-desc {
  font-size: .9rem; color: var(--warm-grey); line-height: 1.7; text-align: justify;
}

.why-tag {
  display: inline-block; margin-top: 16px;
  background: var(--forest); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
}

/* ── TECHNOLOGY SECTION ──────────────────────────── */
.tech-section {
  background: var(--forest); color: var(--white);
  position: relative; overflow: hidden;
}

.tech-section::before {
  display: none;
}

.tech-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}

.tech-text .section-eyebrow { color: #D4B88A; }
.tech-text .section-eyebrow::after { background: #D4B88A; }
.tech-text .section-title { color: var(--white); }
.tech-text .section-sub { color: rgba(255,255,255,.6); margin-bottom: 40px; text-align: justify; }

.stat-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
  margin-bottom: 44px;
}

.stat-box {
  padding: 24px; border: 1px solid rgba(255,255,255,.1); border-radius: 6px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; color: #D4B88A;
  line-height: 1; margin-bottom: 8px; white-space: nowrap;
}

.stat-label {
  font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.4;
}

.tech-comparison {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px; overflow: hidden;
}

.comp-header {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  padding: 16px 24px; background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.comp-header span {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.comp-header span.winner { color: #D4B88A; }

.comp-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,.05);
  align-items: center;
}

.comp-row:last-child { border-bottom: none; }

.comp-attr {
  font-size: .85rem; color: rgba(255,255,255,.55);
}

.comp-val {
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.4);
  font-family: 'Montserrat', sans-serif; font-size: .82rem;
}

.comp-val.w {
  color: #7EC8A0; font-weight: 600;
}

/* ── PRODUCTS ──────────────────────────────────────── */
.products-section { background: var(--white); }

.sku-tabs {
  display: flex; gap: 0; margin-bottom: 48px;
  border: 1px solid var(--divider); border-radius: 6px;
  overflow: hidden; width: fit-content;
}

.sku-tab {
  padding: 11px 24px; cursor: pointer; border: none; background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem; font-weight: 500; color: var(--warm-grey);
  border-right: 1px solid var(--divider);
  transition: all .2s; white-space: nowrap;
}

.sku-tab:last-child { border-right: none; }
.sku-tab.active { background: var(--forest); color: var(--white); }
.sku-tab:hover:not(.active) { background: var(--cream); }

.sku-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.sku-grid.hidden { display: none; }

.sku-card {
  border: 1px solid var(--divider); border-radius: 8px;
  overflow: hidden; transition: all .25s; cursor: pointer;
  background: var(--cream);
}

.sku-card:hover { border-color: var(--forest); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(45,106,79,.1); }

.sku-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--warm-grey); font-style: italic;
}

.sku-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-d) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  position: relative;
}

.sku-img-placeholder svg { width: 36px; height: 36px; color: var(--warm-grey); opacity: .5; }

.sku-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

.sku-img-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: .85rem; color: var(--warm-grey); opacity: .7;
}

.sku-body { padding: 18px; }

.sku-category {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 6px;
}

.sku-name {
  font-size: .95rem; font-weight: 600; color: var(--charcoal);
  margin-bottom: 8px; line-height: 1.3;
}

.sku-meta { display: flex; gap: 8px; flex-wrap: wrap; }

.sku-pill {
  background: var(--white); border: 1px solid var(--divider);
  border-radius: 100px; padding: 2px 9px;
  font-size: .68rem; font-weight: 500; color: var(--warm-grey);
}

.sku-pill.veg { color: var(--forest); border-color: var(--forest); }

/* ── B2B BUYER TYPES ───────────────────────────────── */
.buyers-section { background: var(--forest); }

.buyers-section .section-eyebrow { color: #D4B88A; }
.buyers-section .section-eyebrow::after { background: #D4B88A; }
.buyers-section .section-title { color: var(--white); }
.buyers-section .section-sub { color: rgba(255,255,255,.6); }

.buyer-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.buyer-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 40px 32px;
  transition: all .25s;
  display: flex; flex-direction: column;
}

.buyer-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}

.buyer-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: #D4B88A;
  padding: 8px;
}

.buyer-type {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 10px;
}

.buyer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600; color: var(--white);
  margin-bottom: 16px; line-height: 1.3;
}

.buyer-desc {
  font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7;
  margin-bottom: 24px; text-align: justify;
}

.buyer-features { list-style: none; flex: 1; }

.buyer-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .82rem; color: rgba(255,255,255,.7);
  margin-bottom: 10px; line-height: 1.5;
}

.buyer-features li::before {
  content: '→'; color: #D4B88A; font-size: .75rem;
  flex-shrink: 0; margin-top: 2px;
}

.buyer-cta {
  display: inline-block; margin-top: 28px;
  background: rgba(255,255,255,.12); color: var(--white);
  padding: 10px 20px; border-radius: 4px;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(255,255,255,.2);
  transition: all .2s;
  align-self: flex-start;
}

.buyer-cta:hover { background: rgba(255,255,255,.2); }

/* ── PRIVATE LABEL ─────────────────────────────────── */
.pl-section {
  background: var(--cream);
}

.pl-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}

.pl-visual {
  position: relative;
}

.pl-box {
  background: var(--white); border: 1px solid var(--divider);
  border-radius: 10px; padding: 36px;
}

.pl-box-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--forest);
  margin-bottom: 24px;
}

.pl-steps { list-style: none; }

.pl-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--divider);
}

.pl-step:last-child { border-bottom: none; }

.pl-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--forest); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pl-step-text { font-size: .875rem; color: var(--charcoal); line-height: 1.6; text-align: justify; }
.pl-step-text strong { color: var(--forest); }

.pl-accent {
  position: absolute; top: -20px; right: -20px;
  background: var(--saffron); color: var(--white);
  border-radius: 8px; padding: 20px 24px;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  font-weight: 600; max-width: 180px; text-align: center; line-height: 1.4;
  box-shadow: 0 8px 24px rgba(200,101,26,.3);
}

.pl-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px;
}

.pl-feat {
  background: var(--white); border: 1px solid var(--divider);
  border-radius: 6px; padding: 20px;
}

.pl-feat-title {
  font-size: .875rem; font-weight: 600; color: var(--forest);
  margin-bottom: 6px;
}

.pl-feat-desc {
  font-size: .8rem; color: var(--warm-grey); line-height: 1.5; text-align: justify;
}

/* ── SPECS SECTION ─────────────────────────────────── */
.specs-section { background: var(--white); }

.specs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--divider); border: 1px solid var(--divider); border-radius: 8px;
  overflow: hidden;
}

.spec-card {
  background: var(--white); padding: 36px 32px;
  transition: background .2s;
}

.spec-card:hover { background: var(--cream); }

.spec-card-icon {
  width: 56px; height: 56px; margin-bottom: 20px;
  color: var(--forest);
}

.spec-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--warm-grey); margin-bottom: 8px;
}

.spec-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--charcoal);
  margin-bottom: 8px; line-height: 1;
}

.spec-card-note {
  font-size: .8rem; color: var(--warm-grey); line-height: 1.5;
}

/* ── CERTIFICATIONS ────────────────────────────────── */
.cert-section { background: var(--sand); }

.cert-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 48px;
}

.cert-card {
  background: var(--white); border: 1px solid var(--divider);
  border-radius: 8px; padding: 32px 24px; text-align: center;
}

.cert-badge-img {
  width: 120px; height: 120px; margin: 0 auto 18px;
  object-fit: contain;
}

.cert-name {
  font-size: .95rem; font-weight: 700; color: var(--charcoal);
  margin-bottom: 8px;
}

.cert-desc {
  font-size: .8rem; color: var(--warm-grey); line-height: 1.5;
}

.cert-status {
  display: inline-block; margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 3px;
}

.cert-status.active { background: #E8F4EE; color: var(--forest); }
.cert-status.pending { background: #FFF3E8; color: var(--saffron); }

/* ── EXPORT PROCESS ─────────────────────────────────── */
.export-section { background: var(--cream); }

.export-steps {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 0;
  position: relative; margin-bottom: 48px;
}

.export-steps::before {
  content: '';
  position: absolute; top: 28px; left: 14%; right: 14%;
  height: 1px; background: var(--divider); z-index: 0;
}

.export-step { text-align: center; position: relative; z-index: 1; }

.step-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-family: 'Montserrat', sans-serif;
  font-size: .8rem; font-weight: 500; color: var(--forest);
  transition: all .2s;
}

.export-step:hover .step-dot {
  background: var(--forest); border-color: var(--forest); color: var(--white);
}

.step-label {
  font-size: .75rem; color: var(--warm-grey); line-height: 1.4; font-weight: 500;
}

/* ── TEAM SECTION ──────────────────────────────── */
.team-section {
  background: var(--white);
}

.team-intro {
  max-width: 800px; margin-bottom: 80px;
}

.team-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--warm-grey);
  margin-bottom: 20px;
}

.team-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}

.team-member {
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: 10px;
  padding: 40px;
}

.member-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 16px;
}

.member-role {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 20px;
}

.member-bio {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 24px;
  text-align: justify;
}

.member-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 600;
  transition: color .2s;
}

.member-link:hover {
  color: var(--saffron);
}

/* ── FOUNDER SECTION ─────────────────────────────────── */
.founder-section {
  background: var(--charcoal); color: var(--white);
}

.founder-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px;
  align-items: center;
}

.founder-portrait {
  aspect-ratio: 4/5; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}

.founder-portrait svg { width: 64px; height: 64px; color: rgba(255,255,255,.2); }

.founder-portrait-label {
  font-size: .8rem; color: rgba(255,255,255,.3); font-style: italic;
}

.founder-section .section-eyebrow { color: #D4B88A; }
.founder-section .section-eyebrow::after { background: #D4B88A; }
.founder-section .section-title { color: var(--white); }

.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-style: italic; line-height: 1.65;
  color: rgba(255,255,255,.85); margin-bottom: 36px;
  border-left: 3px solid #D4B88A; padding-left: 24px;
}

.founder-bio {
  font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.75;
  margin-bottom: 32px;
}

.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--white);
  margin-bottom: 4px;
}

.founder-title {
  font-size: .8rem; color: rgba(255,255,255,.4);
  font-family: 'Montserrat', sans-serif; letter-spacing: .08em;
}

.founder-linkedin {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  padding: 8px 16px; border-radius: 4px; text-decoration: none;
  font-size: .78rem; font-weight: 500; border: 1px solid rgba(255,255,255,.12);
  transition: all .2s;
}

.founder-linkedin:hover { background: rgba(255,255,255,.14); color: var(--white); }

/* ── CONTACT SECTION ─────────────────────────────────── */
.contact-section {
  background: var(--cream); padding: 70px 60px;
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}

.contact-text .section-sub { max-width: 100%; }

.contact-info {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 10px;
  padding: 36px;
  margin-top: 40px;
}

.contact-info-item {
  margin-bottom: 32px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 8px;
}

.contact-info-value {
  font-size: .95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}

.contact-info-value a:hover {
  color: var(--saffron);
}

.contact-reasons {
  list-style: none; margin-top: 36px;
}

.contact-reason {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid var(--divider);
  font-size: .9rem; color: var(--charcoal); line-height: 1.6;
}

.contact-reason:last-child { border-bottom: none; }

.cr-icon {
  width: 36px; height: 36px; background: var(--forest); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--white);
}

.cr-icon svg { width: 16px; height: 16px; }

.contact-form {
  background: var(--white); border: 1px solid var(--divider);
  border-radius: 10px; padding: 44px;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--charcoal);
  margin-bottom: 8px;
}

.form-sub {
  font-size: .85rem; color: var(--warm-grey); margin-bottom: 32px;
}

.form-row { margin-bottom: 20px; }

.form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 20px;
}

label {
  display: block; font-size: .78rem; font-weight: 600;
  color: var(--charcoal); letter-spacing: .03em;
  text-transform: uppercase; margin-bottom: 8px;
}

label::after {
  content: ' *';
  color: var(--saffron);
}

label.optional::after {
  content: '';
}

input, select, textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--divider); border-radius: 5px;
  background: var(--cream); color: var(--charcoal);
  font-family: 'Montserrat', sans-serif; font-size: .9rem;
  transition: border-color .2s;
  outline: none; appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--forest);
}

textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%; padding: 14px;
  background: var(--forest); color: var(--white);
  border: none; border-radius: 5px; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  transition: background .2s;
  margin-top: 8px;
}

.form-submit:hover { background: var(--forest-d); }

.form-note {
  text-align: center; font-size: .75rem; color: var(--warm-grey);
  margin-top: 12px;
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--sand); color: var(--warm-grey);
  padding: 60px 60px 32px;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px; margin-bottom: 48px;
}

.footer-brand .nav-logo { font-size: 1.5rem; margin-bottom: 20px; display: flex; }
.footer-brand .nav-logo img { height: 72px; width: auto; }

.footer-brand p {
  font-size: .85rem; line-height: 1.7; margin-bottom: 20px;
  color: var(--warm-grey);
}

.footer-heading {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 20px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: .85rem; color: var(--warm-grey); text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover { color: var(--forest); }

.footer-contact p {
  font-size: .82rem; line-height: 1.8; color: var(--warm-grey);
}

.footer-contact a { color: var(--forest); text-decoration: none; font-weight: 500; }

.footer-bottom {
  border-top: 1px solid var(--divider);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}

.footer-bottom p { font-size: .78rem; color: var(--warm-grey); }

/* ── CTA BANNER ────────────────────────────────────── */
.cta-banner {
  background: var(--forest);
  padding: 48px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}

.cta-text .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 10px;
}

.cta-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--white);
  margin-bottom: 8px; line-height: 1.2;
}

.cta-text p { font-size: .95rem; color: rgba(255,255,255,.75); }

.btn-white {
  background: var(--saffron); color: var(--white);
  padding: 14px 28px; border-radius: 4px; border: none;
  font-size: .875rem; font-weight: 700; letter-spacing: .03em;
  text-decoration: none; white-space: nowrap;
  transition: all .2s; display: inline-block;
}

.btn-white:hover { background: var(--saff-l); }

/* ── CSR GALLERY ───────────────────────────────────── */
.csr-gallery-wrap { position: relative; }

.csr-gallery {
  overflow: hidden;
  border-radius: 10px;
}

.csr-gallery-track {
  display: flex; gap: 16px;
  transition: transform .4s ease;
}

.csr-gallery-slide {
  flex: 0 0 calc(33.333% - 11px);
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.csr-gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 8px;
}

.csr-slide-placeholder {
  display: none;
}

.csr-gallery-slide.empty {
  background: var(--sand);
  border: 2px dashed var(--divider);
  display: flex; align-items: center; justify-content: center;
}

.csr-gallery-slide.empty img { display: none; }

.csr-gallery-slide.empty .csr-slide-placeholder {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: .9rem; font-style: italic;
  color: var(--warm-grey);
}

.csr-gallery-nav {
  display: flex; gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}

.csr-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--forest);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}

.csr-nav-btn svg { width: 18px; height: 18px; color: var(--forest); }

.csr-nav-btn:hover {
  background: var(--forest);
}

.csr-nav-btn:hover svg { color: var(--white); }

@media (max-width: 768px) {
  .csr-gallery-slide { flex: 0 0 calc(50% - 8px); }
}

@media (max-width: 480px) {
  .csr-gallery-slide { flex: 0 0 100%; }
}

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

.fade-up {
  opacity: 0; animation: fadeUp .7s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: .1s; }
.fade-up:nth-child(2) { animation-delay: .2s; }
.fade-up:nth-child(3) { animation-delay: .3s; }
.fade-up:nth-child(4) { animation-delay: .4s; }

/* scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sand-d); border-radius: 3px; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 16px 40px; }
  section { padding: 80px 40px; }
  .max-w { max-width: 100%; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 60px 40px; }
  .hero-visual { padding: 0 !important; margin: 0 40px 40px !important; min-height: auto; }
  .hero-slider { aspect-ratio: 3/4; height: auto; }

  .tech-grid { grid-template-columns: 1fr; gap: 60px; }
  .pl-grid { grid-template-columns: 1fr; gap: 60px; }
  .team-grid { grid-template-columns: 1fr; }
  .buyer-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav {
    padding: 14px 30px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(253,246,236,0.98);
    border-bottom: 1px solid var(--divider);
    padding: 20px;
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  section { padding: 50px 30px; }
  .page-hero { padding: 50px 30px; }

  .hero-text { padding: 60px 30px; }
  .hero-visual { padding: 0; }
  .hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); }

  .why-grid { grid-template-columns: 1fr; }
  .why-card:nth-child(2n) { border-right: 1px solid var(--divider); }
  .why-card { border-right: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
  .why-card:nth-child(3), .why-card:nth-child(4) { border-bottom: 1px solid var(--divider); }

  .sku-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .buyer-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .form-row-2 { grid-template-columns: 1fr; }

  .hero-seals { gap: 18px; }
  .seal-icon { height: 64px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .export-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .export-steps::before {
    left: 10%;
    right: 10%;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .tech-comparison {
    overflow-x: auto;
  }

  .comp-header, .comp-row {
    min-width: 400px;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .trust-bar {
    gap: 20px;
    padding: 20px 30px;
  }

  .trust-divider {
    display: none;
  }

  .pl-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  nav { padding: 12px 20px; }
  section { padding: 40px 20px; }
  .page-hero { padding: 40px 20px; }

  .hero-text { padding: 50px 20px; }
  .hero-visual { padding: 0 !important; margin: 0 20px 30px !important; }
  .hero-slider { aspect-ratio: 4/3; }
  .hero h1 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }

  .hero-badges { flex-direction: column; }
  .badge { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }

  .hero-seals { gap: 14px; flex-wrap: wrap; }
  .seal-icon { height: 52px; }

  .sku-tabs { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  .icon-strip { padding: 20px; gap: 16px; }
  .icon-strip-item svg, .icon-strip-img { width: 48px; height: 48px; }
  .icon-strip-label { font-size: .8rem; }

  .sku-grid { grid-template-columns: 1fr; }
  .export-steps { grid-template-columns: repeat(3, 1fr); }
  .export-steps::before { left: 5%; right: 5%; }

  .why-number { font-size: 2rem; }
  .section-title { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
  .footer-grid { grid-template-columns: 1fr; }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .form-title {
    font-size: 1.2rem;
  }

  .cta-text h3 {
    font-size: 1.4rem;
  }

  .page-hero h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
  }
}

/* ── NEW UTILITY & COMPONENT STYLES ──────────────────── */
.text-justify { text-align: justify; }

.sku-badge-row { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; z-index: 2; }
.sku-category-badge { background: var(--forest); color: var(--white); font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; }
.sku-spice-badge { background: var(--white); color: var(--charcoal); font-size: .65rem; font-weight: 600; padding: 5px 12px; border-radius: 4px; border: 1px solid var(--divider); }
.sku-desc { font-size: .82rem; color: var(--warm-grey); line-height: 1.5; margin-bottom: 12px; text-align: justify; }
.sku-dietary-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sku-dietary-tag { font-size: .65rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border: 1px solid var(--forest); color: var(--forest); border-radius: 3px; }
.sku-img-placeholder { position: relative; }
.sku-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.sku-availability { font-size: .78rem; color: var(--warm-grey); margin-top: 12px; font-style: italic; }

/* ── ACCORDION STEPS ── */
.steps-accordion { display: flex; flex-direction: column; gap: 0; }
.accordion-step {
  border: 1px solid var(--divider); border-bottom: none;
  background: var(--white); cursor: pointer;
  transition: background .2s;
}
.accordion-step:first-child { border-radius: 10px 10px 0 0; }
.accordion-step:last-child { border-bottom: 1px solid var(--divider); border-radius: 0 0 10px 10px; }
.accordion-step:hover { background: var(--cream); }
.accordion-step.active { background: var(--cream); }
.accordion-header {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 32px;
}
.accordion-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--sand-d);
  min-width: 40px;
}
.accordion-step.active .accordion-num { color: var(--forest); }
.accordion-title { flex: 1; }
.accordion-name {
  font-size: .95rem; font-weight: 600; color: var(--forest);
  margin-bottom: 2px;
}
.accordion-hint {
  font-size: .78rem; color: var(--warm-grey);
}
.accordion-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .2s;
  flex-shrink: 0;
}
.accordion-icon svg { width: 14px; height: 14px; color: var(--forest); }
.accordion-step.active .accordion-icon {
  transform: rotate(45deg);
  background: var(--forest);
}
.accordion-step.active .accordion-icon svg { color: var(--white); }
.accordion-body {
  max-height: 0; overflow: hidden;
  padding: 0 32px 0 92px;
  transition: max-height .4s ease, padding .3s ease;
}
.accordion-step.active .accordion-body {
  max-height: 200px;
  padding: 0 32px 24px 92px;
}
.accordion-body p {
  font-size: .9rem; color: var(--warm-grey); line-height: 1.7;
  margin-bottom: 12px; text-align: justify;
}
.accordion-meta {
  font-size: .78rem; color: var(--forest);
  background: rgba(17,76,71,.06); display: inline-block;
  padding: 4px 12px; border-radius: 4px;
}
.accordion-meta span { font-weight: 700; }

@media (max-width: 768px) {
  .accordion-header { padding: 18px 20px; gap: 14px; }
  .accordion-body { padding: 0 20px 0 60px; }
  .accordion-step.active .accordion-body { padding: 0 20px 20px 60px; }
  .accordion-num { font-size: 1.2rem; min-width: 30px; }
}

.why-icon { width: 48px; height: 48px; margin-bottom: 16px; color: var(--forest); }

.member-photo { width: 120px; height: 120px; border-radius: 50%; background: var(--sand); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; margin-bottom: 24px; border: 2px solid var(--divider); }
.member-photo svg { width: 40px; height: 40px; color: var(--warm-grey); opacity: .5; }
.member-photo-label { font-size: .65rem; color: var(--warm-grey); }

/* ── ABOUT PAGE: INLINE GRID CLASSES ──────────────── */
.about-mission-section { background: var(--forest); color: var(--white); padding: 100px 60px; }
.about-mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 0;
}
.about-philosophy-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.about-sdg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.about-sdg-grid > div {
  display: flex; flex-direction: column;
}
.about-sdg-grid > div > img { flex-shrink: 0; width: 100px; height: 100px; object-fit: contain; }
.about-sdg-grid > div > div:nth-child(2) { min-height: 44px; display: flex; align-items: flex-end; }
.about-sdg-grid > div > div:nth-child(3) { min-height: 58px; display: flex; align-items: flex-start; }
.about-sdg-grid > div > p { flex: 1; }
.about-offices-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px;
}

/* ── CONTACT PAGE: INLINE GRID CLASS ─────────────── */
.contact-why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}

/* ── HOW WE WORK: INLINE GRID CLASS ──────────────── */
.hww-economics-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
}

@media (max-width: 1024px) {
  .about-mission-section { padding: 80px 40px; }
  .about-mission-grid { gap: 50px; }
  .about-philosophy-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
  .about-mission-section { padding: 50px 30px; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 0; }
  .about-philosophy-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-sdg-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-offices-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
  .contact-why-grid { grid-template-columns: 1fr; gap: 24px; }
  .hww-economics-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 480px) {
  .about-mission-section { padding: 40px 20px; }
}

/* ── HERO CERTIFICATION ICONS ── */
.hero-cert-icons {
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 32px;
}
.hero-cert-icons img {
  width: 52px; height: 52px;
  opacity: .75; transition: opacity .2s;
}
.hero-cert-icons img:hover { opacity: 1; }

/* ── HERO IMAGE PLACEHOLDER ── */
.hero-image-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-image-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
  border-radius: 0;
  display: block;
}

.hero-image-placeholder .hero-image-label {
  display: none;
}

.hero-image-placeholder.empty {
  background: rgba(255,255,255,.06);
  border: 2px dashed rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  min-height: 400px;
}

.hero-image-placeholder.empty .hero-image-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic;
  color: rgba(255,255,255,.35);
}

/* ── HERO RIGHT STACK (Collage + Spec Card) ── */
.hero-right-stack {
  width: 100%; max-width: 480px;
  display: flex; flex-direction: column; gap: 20px;
}

.hero-collage {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; border-radius: 12px; overflow: hidden;
}
.hero-collage img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 8px;
}

/* ── HERO SPEC CARD ── */
.hero-spec-card {
  background: var(--forest); border-radius: 10px;
  padding: 28px 32px; color: var(--white);
}
.hero-spec-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-spec-attr {
  font-size: .85rem; color: rgba(255,255,255,.6);
}
.hero-spec-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--white);
}
.hero-spec-val.highlight { color: #D4B88A; }
.hero-spec-markets {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-spec-markets-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 10px;
}

/* ── OBJECTIONS BAR ── */
.objections-bar {
  background: var(--forest-d);
  padding: 50px 60px;
}
.objections-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.objection-item {
  padding: 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
}
.objection-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600; font-style: italic;
  color: #D4B88A; margin-bottom: 14px; line-height: 1.4;
}
.objection-a {
  font-size: .85rem; color: rgba(255,255,255,.65);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .objections-grid { grid-template-columns: 1fr; gap: 20px; }
  .objections-bar { padding: 40px 30px; }
  .hero-collage { grid-template-columns: 1fr 1fr; }
  .hero-right-stack { max-width: 100%; }
  .hero-cert-icons img { width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  .objections-bar { padding: 30px 20px; }
  .hero-spec-card { padding: 20px; }
  .hero-cert-icons { gap: 12px; }
  .hero-cert-icons img { width: 38px; height: 38px; }
}

/* ── EVENTS PAGE ─────────────────────────────────────── */

/* Photo Strip */
.events-photo-strip {
  padding: 0;
  background: var(--charcoal);
}

.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

.photo-strip-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--charcoal);
}

.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .9;
  transition: opacity .3s ease, transform .4s ease;
}

.photo-strip-item img:hover {
  opacity: 1;
  transform: scale(1.03);
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 10px;
  padding: 32px 28px;
  transition: box-shadow .3s ease, transform .3s ease;
}

.event-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  transform: translateY(-3px);
}

.event-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(17, 76, 71, .08);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.event-card--foodtech .event-card-tag {
  color: var(--saffron);
  background: rgba(189, 158, 109, .12);
}

.event-card--organic .event-card-tag {
  color: #5a8a3c;
  background: rgba(90, 138, 60, .12);
}

.event-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.event-card-location {
  font-size: .82rem;
  color: var(--warm-grey);
  margin-bottom: 14px;
  font-weight: 500;
}

.event-card-desc {
  font-size: .88rem;
  color: var(--charcoal);
  line-height: 1.7;
  opacity: .85;
}

/* Upcoming Event Card */
.event-card:has(.event-card-upcoming) {
  border: 1.5px solid var(--saffron);
  position: relative;
}

.event-card-upcoming {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--saffron);
  padding: 4px 12px;
  border-radius: 4px;
}

/* Quote Card */
.events-quote-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 10px;
  padding: 48px;
}

.events-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--charcoal);
  border-left: 3px solid var(--forest);
  padding-left: 28px;
  margin: 0 0 24px;
}

.events-quote-author {
  font-size: .85rem;
  color: var(--warm-grey);
  padding-left: 31px;
}

/* Who We Feed photo strip (4 images, not 5) */
#who-we-feed .photo-strip-grid {
  grid-template-columns: repeat(4, 1fr);
}

#who-we-feed .photo-strip-item {
  background: var(--cream);
}

@media (max-width: 900px) {
  #who-we-feed .photo-strip-grid { grid-template-columns: repeat(2, 1fr); }
  #who-we-feed .photo-strip-item:nth-child(n+3) { display: none; }
}

@media (max-width: 600px) {
  #who-we-feed .photo-strip-grid { grid-template-columns: 1fr; }
  #who-we-feed .photo-strip-item:nth-child(n+2) { display: none; }
}

/* Events Page Responsive */
@media (max-width: 900px) {
  .photo-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-strip-item:nth-child(n+4) { display: none; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .photo-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip-item:nth-child(n+3) { display: none; }
  .events-grid { grid-template-columns: 1fr; }
  .events-quote-card { padding: 28px 24px; }
  .events-quote-text { font-size: 1.05rem; padding-left: 20px; }
  .events-quote-author { padding-left: 23px; }
}

/* ── 3-ICON STRIP ─────────────────────────────────── */
.icon-strip {
  background: var(--forest-d);
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}

.icon-strip-item {
  display: flex; align-items: center; gap: 14px;
  color: var(--white);
}

.icon-strip-item svg {
  width: 72px; height: 72px;
  flex-shrink: 0;
  stroke: rgba(255,255,255,.9);
}

.icon-strip-img {
  width: 72px; height: 72px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
}

.icon-strip-item svg circle[fill],
.icon-strip-item svg path[fill] { fill: #D4B88A; }

.icon-strip-label {
  font-size: .95rem; font-weight: 600; letter-spacing: .03em;
  color: rgba(255,255,255,.95);
}

.icon-strip-divider {
  width: 1px; height: 28px; background: rgba(255,255,255,.15);
}

@media (max-width: 768px) {
  .icon-strip { padding: 24px 30px; gap: 24px; }
  .icon-strip-divider { display: none; }
}

/* ── LAUNCH SKU SHOWCASE ──────────────────────────── */
.launch-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  margin-top: 48px;
}

.launch-card {
  background: var(--white); border: 1px solid var(--divider);
  border-radius: 10px; overflow: hidden;
  transition: all .25s; cursor: pointer;
  display: flex; flex-direction: column;
}

.launch-card:hover {
  border-color: var(--forest); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(45,106,79,.1);
}

.launch-card-img {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-d) 100%);
  position: relative; overflow: hidden;
}

.launch-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}

.launch-card-img .img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: .85rem; color: var(--warm-grey);
}

.launch-card-body {
  padding: 16px;
  display: flex; flex-direction: column; flex-grow: 1;
}

.launch-card-name {
  font-size: .9rem; font-weight: 600; color: var(--charcoal);
  margin-bottom: 4px; line-height: 1.3;
}

.launch-card-sub {
  font-size: .78rem; color: var(--warm-grey); line-height: 1.5;
}

.launch-card-badge {
  display: inline-block; margin-top: auto; padding-top: 12px;
  font-size: .62rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 3px;
  background: rgba(17,76,71,.08); color: var(--forest);
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .launch-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .launch-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .launch-grid { grid-template-columns: 1fr; }
}

/* ── PRODUCT PAGE: PRIMARY / SECONDARY TIERS ─────── */
.sku-primary-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}

.sku-primary-card {
  background: var(--white); border: 1.5px solid var(--forest);
  border-radius: 10px; overflow: hidden;
  transition: all .25s;
}

.sku-primary-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(45,106,79,.12);
}

.sku-primary-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-d) 100%);
  position: relative; overflow: hidden;
}

.sku-primary-img img {
  width: 100%; height: 100%; object-fit: cover;
}

.sku-primary-body {
  padding: 24px;
}

.sku-primary-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--charcoal);
  margin-bottom: 6px;
}

.sku-consumer-line {
  font-size: .9rem; color: var(--charcoal); line-height: 1.6;
  margin-bottom: 10px; font-style: italic;
}

.sku-b2b-note {
  font-size: .82rem; color: var(--warm-grey); line-height: 1.6;
  margin-bottom: 14px;
}

.sku-meta-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px;
}

.sku-meta-pill {
  font-size: .7rem; font-weight: 600; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 100px;
  background: var(--cream); color: var(--warm-grey);
  border: 1px solid var(--divider);
}

.sku-hotwater-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px; padding: 6px 14px;
  background: var(--forest); color: var(--white);
  border-radius: 4px; font-size: .72rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}

.sku-hotwater-badge svg { width: 14px; height: 14px; }

.sku-secondary-section {
  margin-top: 80px; padding-top: 60px;
  border-top: 1px solid var(--divider);
}

.sku-secondary-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  margin-top: 32px;
}

.sku-secondary-card {
  background: var(--cream); border: 1px solid var(--divider);
  border-radius: 8px; overflow: hidden;
  transition: all .2s; opacity: .85;
}

.sku-secondary-card:hover { opacity: 1; border-color: var(--forest); }

.sku-secondary-img {
  width: 100%; aspect-ratio: 1;
  background: var(--sand); overflow: hidden;
}

.sku-secondary-img img {
  width: 100%; height: 100%; object-fit: cover;
}

.sku-secondary-body { padding: 14px; }

.sku-secondary-name {
  font-size: .82rem; font-weight: 600; color: var(--charcoal);
  margin-bottom: 4px;
}

.sku-secondary-desc {
  font-size: .72rem; color: var(--warm-grey); line-height: 1.5;
}

@media (max-width: 1024px) {
  .sku-primary-grid { grid-template-columns: repeat(2, 1fr); }
  .sku-secondary-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .sku-primary-grid { grid-template-columns: 1fr; }
  .sku-secondary-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .sku-secondary-grid { grid-template-columns: 1fr; }
}

/* ── DISTRIBUTOR PAGE ─────────────────────────────── */
.dist-market-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 48px;
}

.dist-stat-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; padding: 32px 24px; text-align: center;
}

.dist-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: #D4B88A;
  line-height: 1; margin-bottom: 10px;
}

.dist-stat-label {
  font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.5;
}

.dist-offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}

.dist-offer-card {
  background: var(--white); border: 1px solid var(--divider);
  border-radius: 10px; padding: 32px 28px;
  transition: all .2s;
}

.dist-offer-card:hover {
  border-color: var(--forest); transform: translateY(-2px);
}

.dist-offer-icon {
  width: 44px; height: 44px; background: rgba(17,76,71,.08);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}

.dist-offer-icon svg { width: 22px; height: 22px; color: var(--forest); }

.dist-offer-title {
  font-size: .95rem; font-weight: 600; color: var(--forest);
  margin-bottom: 8px;
}

.dist-offer-desc {
  font-size: .85rem; color: var(--warm-grey); line-height: 1.7;
}

.dist-mfg-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 48px;
}

.dist-mfg-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
}

.dist-mfg-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.dist-mfg-icon img { width: 34px; height: 34px; object-fit: contain; }

.dist-mfg-icon svg { width: 20px; height: 20px; color: #D4B88A; }

.dist-mfg-title {
  font-size: .9rem; font-weight: 600; color: var(--white);
  margin-bottom: 4px;
}

.dist-mfg-desc {
  font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6;
}

.dist-philosophy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 48px;
}

.dist-phil-card {
  padding: 36px; background: var(--white);
  border: 1px solid var(--divider); border-radius: 10px;
}

.dist-phil-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--sand);
  margin-bottom: 16px;
}

.dist-phil-title {
  font-size: .95rem; font-weight: 600; color: var(--forest);
  margin-bottom: 10px;
}

.dist-phil-desc {
  font-size: .85rem; color: var(--warm-grey); line-height: 1.7;
}

.dist-cta-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 40px;
}

.dist-cta-card {
  background: var(--white); border: 1px solid var(--divider);
  border-radius: 10px; padding: 28px; text-align: center;
  transition: all .2s;
}

.dist-cta-card:hover { border-color: var(--forest); }

.dist-cta-card svg {
  width: 28px; height: 28px; color: var(--forest);
  margin-bottom: 12px;
}

.dist-cta-card .cta-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--saffron); margin-bottom: 6px;
}

.dist-cta-card .cta-value {
  font-size: .95rem; font-weight: 600; color: var(--forest);
}

.dist-cta-card a {
  color: var(--forest); text-decoration: none;
}

.dist-cta-card a:hover { color: var(--saffron); }

@media (max-width: 1024px) {
  .dist-market-grid { grid-template-columns: repeat(2, 1fr); }
  .dist-offer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .dist-market-grid { grid-template-columns: 1fr; }
  .dist-offer-grid { grid-template-columns: 1fr; }
  .dist-mfg-grid { grid-template-columns: 1fr; }
  .dist-philosophy-grid { grid-template-columns: 1fr; }
  .dist-cta-grid { grid-template-columns: 1fr; }
}

/* ── FLOATING WHATSAPP BUTTON ─────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

.whatsapp-float svg { width: 28px; height: 28px; }

@media (max-width: 480px) {
  .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}
