/* =============================================================
   HEALTHY SEAWEED CAFE — Prototype Stylesheet
   Designed against competitive benchmark:
   gimme Seaweed · The Seaweed Company · Maine Coast Sea Vegetables
   Brand: #94B200 · Outfit font · East African coastal identity
============================================================= */

/* ─── 1. VARIABLES & RESET ─────────────────────────────── */

:root {
  --green:        #94B200;
  --green-dark:   #7A9400;
  --green-light:  #B8D930;
  --green-pale:   #EFF7CF;
  --green-deep:   #2D4A00;
  --ocean-deep:   #0C3D2A;
  --ocean-mid:    #165C3E;
  --black:        #111111;
  --charcoal:     #2D2D2D;
  --mid-grey:     #6B6B6B;
  --border:       #E4ECC4;
  --sand:         #F8F4EE;
  --sand-dark:    #EDE8DF;
  --white:        #FFFFFF;

  --font:         'Outfit', sans-serif;

  --max-w:        1200px;
  --max-w-narrow: 720px;
  --max-w-mid:    900px;
  --pad-x:        clamp(1.25rem, 5vw, 3rem);
  --section-v:    clamp(64px, 9vw, 108px);

  --radius:       12px;
  --radius-lg:    20px;
  --radius-pill:  100px;

  --shadow:       0 2px 20px rgba(0,0,0,.07);
  --shadow-md:    0 6px 32px rgba(0,0,0,.1);
  --shadow-green: 0 8px 32px rgba(148,178,0,.25);

  --ease:         cubic-bezier(.25,.46,.45,.94);
  --t:            0.22s;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── 2. TYPOGRAPHY ─────────────────────────────────────── */

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; }
p  { line-height: 1.72; }

.display {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ─── 3. UTILITY ────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--narrow { max-width: var(--max-w-narrow); }
.container--mid    { max-width: var(--max-w-mid); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.section-label--white { color: rgba(255,255,255,.7); }
.section-label--light { color: var(--green-light); }

.section-heading {
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.centred { text-align: center; }
.text-white { color: var(--white) !important; }
.text-green { color: var(--green); }

.divider {
  width: 48px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider--centre { margin-inline: auto; }

/* ─── 4. BUTTONS ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.78em 1.7em;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--t) var(--ease),
              color var(--t) var(--ease),
              transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--green);
  color: #fff;
}
.btn--primary:hover {
  background: var(--green-dark);
  box-shadow: var(--shadow-green);
}

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--green-dark);
}
.btn--white:hover {
  background: var(--green-pale);
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn--lg { padding: 0.9em 2.2em; font-size: 1rem; }
.btn--sm { padding: 0.6em 1.2em; font-size: 0.82rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.btn-group--centre { justify-content: center; }

/* ─── 5. IMAGE PLACEHOLDERS ──────────────────────────────── */

.img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-align: center;
  user-select: none;
  overflow: hidden;
  position: relative;
}
.img-ph__label {
  position: relative;
  z-index: 1;
  padding: 0 .5rem;
}
.img-ph--product {
  aspect-ratio: 1;
  min-height: 200px;
  background: linear-gradient(145deg, #b8d930 0%, #94B200 60%, #7a9400 100%);
}
.img-ph--farmer {
  aspect-ratio: 4/5;
  min-height: 240px;
  background: linear-gradient(160deg, #1a4a35 0%, #246b4a 50%, #2d8a5f 100%);
}
.img-ph--hero {
  inset: 0;
  position: absolute;
  background: linear-gradient(160deg, var(--ocean-deep) 0%, var(--ocean-mid) 40%, #1e8050 70%, #2d9c62 100%);
  border-radius: 0;
}
.img-ph--about {
  min-height: 480px;
  background: linear-gradient(145deg, var(--ocean-deep) 0%, #1d6b45 50%, #2d9460 100%);
}
.img-ph--wide {
  aspect-ratio: 16/7;
  background: linear-gradient(160deg, var(--ocean-deep) 0%, var(--ocean-mid) 50%, #2a7a52 100%);
}

/* Wave decoration SVG inline */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* ─── 6. TOPBAR ──────────────────────────────────────────── */

.topbar {
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px var(--pad-x);
  position: relative;
  z-index: 200;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar__sep { opacity: .45; }

/* ─── 7. HEADER & NAV ────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--t) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 var(--pad-x);
  height: 68px;
  max-width: var(--max-w);
  margin-inline: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--black);
  flex-shrink: 0;
  margin-right: auto;
}
.nav__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.nav__logo-text span { color: var(--green); }
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav__link {
  padding: 0.45em 0.85em;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius-pill);
  transition: background var(--t), color var(--t);
  white-space: nowrap;
}
.nav__link:hover { background: var(--green-pale); color: var(--green-dark); }
.nav__link--active { color: var(--green-dark); font-weight: 600; }

/* ── Dropdown nav ── */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav__dropdown-trigger svg {
  width: 12px; height: 12px;
  stroke: currentColor;
  transition: transform .2s;
  flex-shrink: 0;
}
.nav__dropdown.open .nav__dropdown-trigger svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: .4rem;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s, transform .18s;
  z-index: 200;
  list-style: none;
}
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: .55rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 8px;
  white-space: nowrap;
  transition: background var(--t), color var(--t);
}
.nav__dropdown-link:hover { background: var(--green-pale); color: var(--green-dark); }
.nav__dropdown-link--active { color: var(--green-dark); font-weight: 600; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__cart {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: background var(--t);
}
.nav__cart:hover { background: var(--green-pale); }
.nav__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--t);
}
.nav__burger:hover { background: var(--green-pale); }
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav__mobile-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  overflow-y: auto;
}
.nav__mobile.open .nav__mobile-panel { transform: translateX(0); }
.nav__mobile-close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--charcoal);
  cursor: pointer;
  margin-bottom: .5rem;
}
.nav__mobile-close:hover { background: var(--green-pale); }
.nav__mobile-link {
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  color: var(--charcoal);
  transition: background var(--t);
}
.nav__mobile-link:hover { background: var(--green-pale); color: var(--green-dark); }
.nav__mobile-link--sub { padding-left: 1.75rem; font-size: .92rem; opacity: .9; }
.nav__mobile-section {
  display: block;
  padding: .5rem 1rem .2rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.nav__mobile-divider { height: 1px; background: #eee; margin: 0.5rem 0; }

/* ─── 8. HERO ────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(10,40,25,.92) 0%, rgba(20,65,38,.82) 45%, rgba(35,100,60,.65) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: clamp(80px, 12vh, 140px) var(--pad-x) clamp(60px, 10vh, 120px);
  width: 100%;
}
.hero__credibility {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero__credibility-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-light);
  opacity: .6;
}
.hero h1 {
  color: #fff;
  max-width: 800px;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-light);
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(148,178,0,.25);
  border: 1px solid rgba(148,178,0,.45);
  color: var(--green-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
}
.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBob 2.5s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── 9. IMPACT BAR ──────────────────────────────────────── */

.impact-bar {
  background: var(--green);
  padding: 0;
}
.impact-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin-inline: auto;
}
.impact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3.5vw, 2.5rem) 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.18);
}
.impact-stat:last-child { border-right: none; }
.impact-stat__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.impact-stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

/* ─── 10. PRODUCTS SECTION ───────────────────────────────── */

.products-section {
  padding: var(--section-v) 0;
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
}
.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
.product-card__img-wrap .img-ph--product {
  border-radius: 0;
}
.product-card__img-real {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.product-card__img-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 1;
}
.product-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.product-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}
.product-card__tagline {
  font-size: 0.82rem;
  color: var(--mid-grey);
  line-height: 1.5;
  flex: 1;
}
.product-card__minerals {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem 1.25rem;
  gap: 0.5rem;
}
.product-card__price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
}
.product-card__price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mid-grey);
}
.products-section__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ─── 11. BENEFITS / WHY SEAMOSS ─────────────────────────── */

.benefits {
  background: var(--green-pale);
  padding: var(--section-v) 0;
}
.benefits__feature {
  text-align: center;
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin: 3rem 0;
  color: #fff;
}
.benefits__feature-num {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.benefits__feature-text {
  font-size: clamp(1rem, 2vw, 1.3rem);
  opacity: .85;
  max-width: 560px;
  margin-inline: auto;
  margin-top: .75rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(148,178,0,.2);
  transition: transform var(--t), box-shadow var(--t);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}
.benefit-card__icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.benefit-card h3 { font-size: 1.05rem; }
.benefit-card p  { font-size: 0.875rem; color: var(--mid-grey); }

/* ─── 12. ORIGIN / PROVENANCE ────────────────────────────── */

.origin {
  background: var(--charcoal);
  color: #fff;
  overflow: hidden;
}
.origin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.origin__image {
  position: relative;
  overflow: hidden;
}
.origin__image .img-ph--about {
  position: absolute;
  inset: 0;
  border-radius: 0;
  min-height: unset;
  height: 100%;
  width: 100%;
}
.origin__content {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.origin .section-label { color: var(--green-light); }
.origin h2 { color: #fff; }
.origin p   { color: rgba(255,255,255,.78); font-size: .95rem; }
.origin__facts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.origin__fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
}
.origin__fact::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

/* ─── 12b. IMPACT MODEL ──────────────────────────────────── */

.impact-model {
  background: var(--charcoal);
  padding: var(--section-v) 0 calc(var(--section-v) * 1.25);
  overflow: hidden;
  position: relative;
}
.impact-model::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 55% at 50% 110%, rgba(148,178,0,.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Header */
.im-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.25rem;
}
.im-header .section-label { color: var(--green-light); margin-bottom: .6rem }
.im-header h2 {
  color: #fff;
  font-size: clamp(1.65rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.im-header__sub {
  color: rgba(255,255,255,.58);
  font-size: .92rem;
  line-height: 1.7;
  max-width: 490px;
  margin: 0 auto;
}
.im-header__ornament {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 1rem;
}
.im-header__ornament svg:last-child { transform: scaleX(-1) }

/* Track */
.im-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-x: auto;
  padding: 0 var(--pad-x) 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.im-track::-webkit-scrollbar { display: none }

/* Arrow connector */
.im-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 42px;
  color: rgba(255,255,255,.14);
  transition: color .4s;
}
.im-arrow.passed { color: var(--green) }

/* Step card */
.im-step {
  flex-shrink: 0;
  width: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: .75rem .5rem 1rem;
  border-radius: 16px;
  outline: none;
  text-decoration: none;
}
.im-step:focus-visible { outline: 2px solid var(--green); outline-offset: 3px }

/* Bubble */
.im-step__bubble {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid rgba(255,255,255,.1);
  transition: transform .35s cubic-bezier(.175,.885,.32,1.275), box-shadow .35s, border-color .35s;
}
.im-step[data-step="0"] .im-step__bubble { background: linear-gradient(145deg,#0d2e20,#1c4d34) }
.im-step[data-step="1"] .im-step__bubble { background: linear-gradient(145deg,#182a0d,#2d4a10) }
.im-step[data-step="2"] .im-step__bubble { background: linear-gradient(145deg,#2a1a05,#4a3010) }
.im-step[data-step="3"] .im-step__bubble { background: linear-gradient(145deg,#0d2a0d,#1e4a1e) }
.im-step[data-step="4"] .im-step__bubble { background: linear-gradient(145deg,#0d0d30,#1a1a50) }
.im-step[data-step="5"] .im-step__bubble { background: linear-gradient(145deg,#05182e,#0a2e4a) }

.im-step:hover .im-step__bubble {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
  border-color: rgba(148,178,0,.5);
}
.im-step.active .im-step__bubble {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 3px rgba(148,178,0,.3),
    0 0 0 7px rgba(148,178,0,.1),
    0 12px 28px rgba(0,0,0,.5);
  border-color: var(--green);
}

/* Step number badge */
.im-step__num {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.65);
  font-size: .68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background .3s, color .3s;
}
.im-step.active .im-step__num { background: var(--green); color: #fff }

/* Icon */
.im-step__icon {
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .3s;
}
.im-step.active .im-step__icon { color: rgba(148,178,0,.9) }
.im-step:hover  .im-step__icon { color: rgba(255,255,255,.9) }

/* Title */
.im-step__title {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .055em;
  color: rgba(255,255,255,.38);
  text-align: center;
  line-height: 1.4;
  transition: color .3s;
}
.im-step.active .im-step__title { color: var(--green-light) }
.im-step:hover  .im-step__title { color: rgba(255,255,255,.8) }

/* Progress bar */
.im-progress {
  height: 2px;
  background: rgba(255,255,255,.07);
  margin: .25rem var(--pad-x) 1.75rem;
  border-radius: 2px;
  overflow: hidden;
}
.im-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  border-radius: 2px;
  width: 0%;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}

/* Detail panel */
.im-panel {
  margin: 0 var(--pad-x) 2.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--green);
  border-radius: 16px;
}
.im-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  padding: 2rem 2rem 2rem 2.25rem;
  align-items: start;
}
.im-panel__step-label {
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .5rem;
}
.im-panel h3 {
  color: #fff;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.2;
  margin-bottom: .85rem;
}
.im-panel p {
  color: rgba(255,255,255,.62);
  font-size: .88rem;
  line-height: 1.72;
  margin: 0;
}
.im-panel__outcomes-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.32);
  margin-bottom: .75rem;
}
.im-outcomes { display: flex; flex-direction: column; gap: .55rem }
.im-outcome {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .84rem;
  color: rgba(255,255,255,.68);
}
.im-outcome::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Playback controls */
.im-panel__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  padding-top: .25rem;
}
.im-ctrl {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.im-ctrl:hover { border-color: var(--green); color: var(--green); background: rgba(148,178,0,.12) }
.im-ctrl--play { background: var(--green); border-color: var(--green); color: #fff }
.im-ctrl--play:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff }
.im-ctrl--play.playing { background: rgba(148,178,0,.18); color: var(--green-light); border-color: rgba(148,178,0,.4) }

@keyframes imSlideIn {
  from { opacity: 0; transform: translateY(8px) }
  to   { opacity: 1; transform: translateY(0) }
}
.im-panel-anim { animation: imSlideIn .32s ease forwards }

/* Stats bar */
.im-stats {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr 1fr 1fr 1fr;
  margin: 0 var(--pad-x) 2rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
}
.im-together {
  background: var(--green);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .8rem;
  min-width: 110px;
}
.im-together__title {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #fff;
  line-height: 1.55;
}
.im-stat {
  padding: 1.25rem .75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .28rem;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.07);
}
.im-stat__icon { line-height: 0; margin-bottom: .15rem }
.im-stat__num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.im-stat__label {
  font-size: .64rem;
  color: rgba(255,255,255,.42);
  line-height: 1.35;
}

/* Tagline */
.im-tagline {
  text-align: center;
  font-size: .77rem;
  color: rgba(255,255,255,.28);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  padding: 0 var(--pad-x);
  letter-spacing: .04em;
}
.im-tagline__heart { color: var(--green); font-size: .85rem }

/* Responsive */
@media (max-width: 1100px) {
  .im-stats { grid-template-columns: 1fr 1fr 1fr }
  .im-together { grid-column: 1 / -1; flex-direction: row; align-items: center; min-width: unset; gap: 1rem }
  .im-stat:nth-child(2) { border-left: none }
  .im-stat { border-top: 1px solid rgba(255,255,255,.07) }
}
@media (max-width: 860px) {
  .im-step { width: 112px }
  .im-step__bubble { width: 80px; height: 80px }
  .im-step__icon svg { width: 30px; height: 30px }
  .im-panel__inner { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem 1.5rem 1.5rem 1.75rem }
  .im-panel__controls { flex-direction: row; padding-top: 0 }
  .im-stats { grid-template-columns: 1fr 1fr }
  .im-together { grid-column: 1 / -1 }
}
@media (max-width: 520px) {
  .im-step { width: 92px }
  .im-step__bubble { width: 70px; height: 70px }
  .im-step__icon svg { width: 26px; height: 26px }
  .im-arrow svg { width: 18px; height: 18px }
  .im-panel { margin: 0 1rem 2rem }
  .im-stats { margin: 0 1rem 2rem; grid-template-columns: 1fr 1fr }
}

/* ─── 13. FARMERS ────────────────────────────────────────── */

.farmers {
  background: var(--sand);
  padding: var(--section-v) 0;
}
.farmers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.farmer-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sand-dark);
  transition: transform var(--t), box-shadow var(--t);
}
.farmer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.farmer-card__img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.farmer-card__years {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.farmer-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.farmer-card__name { font-size: 1rem; font-weight: 700; }
.farmer-card__location { font-size: 0.78rem; color: var(--green-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.farmer-card__quote {
  font-size: 0.875rem;
  color: var(--mid-grey);
  font-style: italic;
  border-left: 3px solid var(--green);
  padding-left: 0.85rem;
  margin-top: 0.25rem;
  line-height: 1.6;
}
.farmers__cta { text-align: center; }

/* ─── 14. ENVIRONMENTAL IMPACT ───────────────────────────── */

.env-impact {
  background: linear-gradient(155deg, var(--ocean-deep) 0%, var(--ocean-mid) 50%, #2d8055 100%);
  color: #fff;
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}
.env-impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(148,178,0,.12) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(148,178,0,.08) 0%, transparent 50%);
}
.env-impact .container { position: relative; z-index: 1; }
.env-impact .section-label { color: var(--green-light); }
.env-impact h2 { color: #fff; }
.env-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  text-align: center;
}
.env-number__val {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.env-number__label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.env-number__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}
.env-impact__claim {
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2.5rem;
  text-align: center;
}
.env-impact__claim p {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin-inline: auto;
}

/* ─── 15. VIDEO SECTION ──────────────────────────────────── */

.brand-video {
  background: var(--charcoal);
  padding: var(--section-v) 0;
  text-align: center;
}
.brand-video .section-label { color: var(--green-light); }
.brand-video h2 { color: #fff; margin-bottom: 2rem; }
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 820px;
  margin-inline: auto;
  background: #000;
}
.video-wrap .img-ph--wide {
  aspect-ratio: 16/7;
  border-radius: 0;
  font-size: 1rem;
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-play__btn {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green-dark);
  transition: transform var(--t), background var(--t);
  padding-left: 4px;
}
.video-play:hover .video-play__btn {
  transform: scale(1.1);
  background: var(--green-light);
}

/* ─── 16. TESTIMONIALS ───────────────────────────────────── */

.testimonials {
  background: var(--sand);
  padding: var(--section-v) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--sand-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card__stars {
  color: var(--green);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-card__meta { flex: 1; }
.testimonial-card__name  { font-size: 0.875rem; font-weight: 700; display: block; }
.testimonial-card__loc   { font-size: 0.78rem; color: var(--mid-grey); }
.testimonial-card__source {
  font-size: 0.72rem;
  color: var(--mid-grey);
  white-space: nowrap;
}

/* ─── 17. AWARDS ─────────────────────────────────────────── */

.awards {
  background: var(--white);
  padding: var(--section-v) 0;
}
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 1.5rem 1.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 160px;
  transition: border-color var(--t), background var(--t), transform var(--t);
  cursor: default;
}
.award-item:hover {
  border-color: var(--green);
  background: var(--green-pale);
  transform: translateY(-3px);
}
.award-item__icon {
  font-size: 1.8rem;
  line-height: 1;
}
.award-item__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
}
.award-item__detail {
  font-size: 0.72rem;
  color: var(--mid-grey);
}

/* ─── 18. USE CASE GUIDE ─────────────────────────────────── */

.use-case {
  background: var(--green-pale);
  padding: var(--section-v) 0;
}
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.use-case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  border: 1.5px solid rgba(148,178,0,.2);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform var(--t), box-shadow var(--t);
}
.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-green);
}
.use-case-card--featured {
  border-color: var(--green);
}
.use-case-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.use-case-card__icon { font-size: 2.25rem; text-align: center; }
.use-case-card h3    { font-size: 1.1rem; text-align: center; }
.use-case-card__tag  { text-align: center; font-size: .8rem; color: var(--green-dark); font-weight: 600; }
.use-case-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  flex: 1;
}
.use-case-table tr { border-bottom: 1px solid #f4f4f4; }
.use-case-table tr:last-child { border-bottom: none; }
.use-case-table th {
  text-align: left;
  padding: 8px 8px 8px 0;
  width: 36%;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #aaa;
  vertical-align: top;
}
.use-case-table td {
  padding: 8px 0;
  color: var(--charcoal);
  line-height: 1.5;
  vertical-align: top;
}
.use-case-card .btn { text-align: center; width: 100%; margin-top: 0.5rem; }

/* ─── 19. STOCKIST CTA ───────────────────────────────────── */

.stockist-cta {
  background: var(--green);
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}
.stockist-cta::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -30%;
  width: 50%;
  height: 160%;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}
.stockist-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.stockist-cta .section-label { color: rgba(255,255,255,.65); }
.stockist-cta h2 { color: #fff; }
.stockist-cta__sub { color: rgba(255,255,255,.78); font-size: 1rem; max-width: 420px; }

/* ─── 20. FOOTER ─────────────────────────────────────────── */

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
}
.footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem var(--pad-x);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
}
.footer-trust__item span:first-child { color: var(--green-light); }
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding: 3.5rem var(--pad-x) 2.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
.footer-col__logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-col__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.footer-col p    { font-size: 0.83rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-col h4   { font-size: 0.72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.footer-col ul   { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--t);
}
.footer-col li a:hover { color: var(--green-light); }
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.footer-social__link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,.5);
  transition: background var(--t), border-color var(--t), color var(--t);
}
.footer-social__link:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem var(--pad-x);
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--green-light); }

/* ─── 21. SHOP PAGE ──────────────────────────────────────── */

.shop-banner {
  background: linear-gradient(155deg, var(--ocean-deep) 0%, var(--ocean-mid) 60%, #2d8055 100%);
  padding: 5rem var(--pad-x) 4rem;
  min-height: 200px;
  text-align: center;
  color: #fff;
}
.shop-banner .section-label { color: var(--green-light); }
.shop-banner h1 { color: #fff; margin-bottom: 0.75rem; }
.shop-banner p  { color: rgba(255,255,255,.75); font-size: 1.05rem; }

.shop-body { padding: var(--section-v) 0; background: #fff; }
.shop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.shop-bar__filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-pill {
  padding: 0.4em 1em;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
}
.filter-pill.active, .filter-pill:hover { border-color: var(--green); }
.shop-bar__sort {
  font-size: 0.82rem;
  color: var(--mid-grey);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Shop product card variant (slightly larger) */
.shop-grid .product-card { border-radius: var(--radius-lg); }
.shop-grid .product-card__img-wrap .img-ph--product { aspect-ratio: 4/5; min-height: unset; }

/* ─── 22. ABOUT PAGE ─────────────────────────────────────── */

.about-banner {
  background: linear-gradient(155deg, var(--ocean-deep) 0%, var(--ocean-mid) 60%, #2d8055 100%);
  padding: 5rem var(--pad-x) 4.5rem;
  min-height: 200px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Columns container — h1 spans all columns, text flows below in 2 */
.about-banner__cols {
  column-count: 2;
  column-gap: 2.5rem;
}
.about-banner__cols h1 {
  column-span: all;
  color: #fff;
  margin-bottom: 2rem;
}
.about-banner__cols p {
  color: rgba(255,255,255,.78);
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 0;
  break-inside: avoid-column;
}

@media (max-width: 768px) {
  .about-banner__cols { column-count: 1; }
  .about-banner__cols h1 { margin-bottom: 1.5rem; }
  .about-banner__cols p { font-size: 1rem; }
}

.about-banner .section-label { color: var(--green-light); }
.about-banner h1 { color: #fff; max-width: 560px; margin: 0; }

.founder-section {
  padding: var(--section-v) 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.founder-img { position: relative; }
.founder-img .img-ph {
  height: clamp(360px, 38vw, 490px);
  background: linear-gradient(145deg, var(--ocean-deep) 0%, #2d8055 100%);
  border-radius: var(--radius-lg);
}
.founder-img__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: var(--shadow-green);
}
.founder-content { display: flex; flex-direction: column; gap: 1.25rem; }
.founder-content h2 { margin-bottom: 0; }
.founder-content p  { color: var(--mid-grey); }
.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.founder-credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--charcoal);
}
.founder-credential__dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.about-impact {
  background: var(--green-pale);
  padding: var(--section-v) 0;
}
.about-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.about-impact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(148,178,0,.2);
}
.about-impact-card__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: .5rem;
}
.about-impact-card__label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .35rem;
}
.about-impact-card__desc { font-size: .78rem; color: var(--mid-grey); line-height: 1.5; }

.mission-section {
  padding: var(--section-v) 0;
  background: var(--white);
}
.mission-pull {
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}
.mission-pull p {
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  max-width: 740px;
  margin-inline: auto;
}
.mission-pull cite {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  font-style: normal;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ─── 23. SCROLL ANIMATIONS ──────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ─── 24. RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main   { grid-template-columns: 1fr 1fr; }
  .shop-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .origin__grid     { grid-template-columns: 1fr; }
  .origin__image    { min-height: 320px; }
  .origin__image .img-ph--about { position: relative; min-height: 320px; height: auto; }
  .env-numbers      { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .use-case-grid    { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .stockist-cta__inner { flex-direction: column; text-align: center; }
  .founder-grid     { grid-template-columns: 1fr; }
  .founder-img      { max-width: 380px; margin-inline: auto; }
}

@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: block; }
  .nav__cta    { display: none; }

  .topbar__inner { gap: 0.75rem; font-size: 0.72rem; }

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

  .benefits-grid    { grid-template-columns: 1fr; }
  .farmers-grid     { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .awards-grid      { gap: 0.75rem; }
  .award-item       { min-width: 130px; }
  .products-grid    { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .shop-grid        { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .footer-main      { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-trust     { gap: 1.25rem; }
  .about-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__scroll     { display: none; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .impact-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.2rem; }
  .about-impact-grid { grid-template-columns: 1fr; }
}

/* ─── 25. PRINT ──────────────────────────────────────────── */
@media print {
  .topbar, .site-header, .site-footer,
  .stockist-cta, .brand-video, .hero__scroll { display: none !important; }
  body { font-size: 11pt; }
}

/* ─── 26. SVG ICON UTILITY ───────────────────────────────── */

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Scale SVGs inside semantic icon containers */
.benefit-card__icon svg,
.benefit-card__icon .icon {
  width: 28px;
  height: 28px;
  color: var(--green-dark);
  stroke: var(--green-dark);
}
.award-item__icon svg,
.award-item__icon .icon {
  width: 30px;
  height: 30px;
  color: var(--green);
  stroke: var(--green);
}
.use-case-card__icon svg,
.use-case-card__icon .icon {
  width: 40px;
  height: 40px;
  color: var(--green);
  stroke: var(--green);
}
.footer-trust__item svg,
.footer-trust__item .icon {
  width: 16px;
  height: 16px;
  color: var(--green);
  stroke: var(--green);
  margin-right: .25rem;
  vertical-align: -3px;
  flex-shrink: 0;
}
.topbar svg,
.topbar .icon {
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  margin-right: 2px;
}
/* Mobile close button */
.nav__mobile-close svg { width: 18px; height: 18px; display: block; }

/* ─── 27. WHATSAPP FLOAT ORDER BUTTON ────────────────────── */

.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: none;
}
.wa-float.visible { display: block; }
.wa-float__btn {
  position: relative;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .8rem 1.35rem .8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: .875rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.wa-float__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .65);
}
.wa-float__btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}
.wa-float__badge {
  position: absolute;
  top: -7px;
  right: -7px;
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 800;
  border: 2px solid #fff;
  pointer-events: none;
}

/* Stories page — blog listing */
.stories-hero {
  background: var(--charcoal);
  color: #fff;
  padding: 6rem 0 4rem;
  min-height: 200px;
  text-align: center;
}
.stories-hero h1 { color: #fff; }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: var(--section-v) 0;
}
.story-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.story-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-green); }
.story-card__img { aspect-ratio: 16/9; }
.story-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.story-card__tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-dark);
}
.story-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
}
.story-card__excerpt {
  font-size: .85rem;
  color: var(--mid-grey);
  line-height: 1.6;
  flex: 1;
}
.story-card__meta {
  font-size: .75rem;
  color: var(--mid-grey);
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-top: .75rem;
  border-top: 1px solid #f0f0f0;
  margin-top: .5rem;
}
.story-card__read {
  margin-top: auto;
  padding: .6rem 1.25rem;
  font-size: .8rem;
}

/* Admin panel */
.admin-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  background: #f4f6f8;
  font-family: var(--font);
}
.admin-sidebar {
  background: var(--charcoal);
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.admin-sidebar__logo {
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.admin-sidebar__logo-mark {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8rem; color: #fff;
}
.admin-sidebar__name { font-weight: 700; font-size: .9rem; }
.admin-sidebar__sub  { font-size: .7rem; opacity: .5; }
.admin-nav { flex: 1; padding: 1rem 0; }
.admin-nav__section { padding: .5rem 1.25rem .25rem; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .4; }
.admin-nav__link {
  display: flex; align-items: center; gap: .65rem;
  padding: .65rem 1.25rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .85rem;
  transition: background .15s, color .15s;
  border-radius: 0;
}
.admin-nav__link:hover,
.admin-nav__link.active {
  background: rgba(148,178,0,.15);
  color: var(--green-light);
}
.admin-nav__link svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .7; }
.admin-nav__link.active svg { opacity: 1; }
.admin-main { padding: 2rem 2.5rem; overflow-y: auto; }
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.admin-topbar h1 { font-size: 1.5rem; font-weight: 800; color: var(--black); }
.admin-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.admin-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e2e8f0;
  display: flex; flex-direction: column; gap: .4rem;
}
.admin-stat-card__label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--mid-grey); }
.admin-stat-card__value { font-size: 1.8rem; font-weight: 800; color: var(--black); line-height: 1; }
.admin-stat-card__change { font-size: .75rem; color: #22c55e; font-weight: 600; }
.admin-stat-card__change--down { color: #ef4444; }
.admin-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.admin-card__head {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-card__head h2 { font-size: 1rem; font-weight: 700; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.admin-table th {
  background: #f8fafc;
  padding: .65rem 1rem;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mid-grey);
  border-bottom: 1px solid #e2e8f0;
}
.admin-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #f8fafc; }
.badge {
  display: inline-flex; align-items: center;
  padding: .2rem .6rem;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
}
.badge--green  { background: #dcfce7; color: #15803d; }
.badge--orange { background: #fef3c7; color: #92400e; }
.badge--grey   { background: #f1f5f9; color: #475569; }
.badge--red    { background: #fee2e2; color: #b91c1c; }
.badge--blue   { background: #dbeafe; color: #1d4ed8; }
.admin-btn { padding: .4rem .85rem; border-radius: 8px; font-size: .78rem; font-weight: 600; cursor: pointer; border: 1.5px solid transparent; transition: background .15s; }
.admin-btn--primary { background: var(--green); color: #fff; border-color: var(--green); }
.admin-btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.admin-btn--outline { background: transparent; color: var(--black); border-color: #d1d5db; }
.admin-btn--outline:hover { background: #f9fafb; }
.admin-btn--danger { background: #fee2e2; color: #b91c1c; border-color: #fecaca; }
.admin-settings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.admin-setting-card { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; padding: 1.5rem; }
.admin-setting-card h3 { font-size: .9rem; font-weight: 700; margin-bottom: 1rem; }
.admin-field { margin-bottom: 1rem; }
.admin-field label { display: block; font-size: .78rem; font-weight: 600; color: var(--mid-grey); margin-bottom: .35rem; }
.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  padding: .55rem .85rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-family: var(--font);
  font-size: .85rem;
  color: var(--black);
  background: #fff;
  transition: border-color .15s;
  box-sizing: border-box;
}
.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
  outline: none;
  border-color: var(--green);
}
.admin-field textarea { min-height: 80px; resize: vertical; }

@media (max-width: 768px) {
  .wa-float { bottom: 1rem; right: 1rem; }
  .wa-float__btn { font-size: .8rem; padding: .7rem 1rem .7rem .9rem; }
  .stories-grid { grid-template-columns: 1fr; }
  .admin-wrap { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-settings-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   28. MEDIA LIBRARY (admin)
═══════════════════════════════════════════════════════════ */

.media-upload-zone {
  border: 2px dashed #d0dbe8;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: #fafbfc;
}
.media-upload-zone:hover,
.media-upload-zone.dragover {
  border-color: #94B200;
  background: #f5fadf;
}

.media-preset-selector {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .75rem;
}
.media-preset-btn {
  padding: .38rem .9rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid #d8e0e8;
  background: #fff;
  color: #2d3748;
  transition: all .15s;
}
.media-preset-btn:hover  { border-color: #94B200; color: #5a7200; }
.media-preset-btn.active { border-color: #94B200; background: #eff7cf; color: #5a7200; }

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.media-card {
  background: #fff;
  border: 1.5px solid #e9eef4;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, box-shadow .15s;
}
.media-card:hover { border-color: #94B200; box-shadow: 0 4px 16px rgba(148,178,0,.15); }
.media-card--picker:hover { border-color: #94B200; }
.media-card__preview {
  overflow: hidden;
  background: #f8fafc;
}
.media-card__preview img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.media-card__info {
  padding: .5rem .6rem .25rem;
}
.media-card__name {
  font-size: .72rem;
  font-weight: 600;
  color: #2d3748;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.media-card__meta {
  font-size: .68rem;
  color: #8a9aac;
}
.media-card__actions {
  padding: .4rem .6rem .6rem;
  display: flex;
  gap: .35rem;
}

.img-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: .75rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e9eef4;
}
.img-compare__panel {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.img-compare__label {
  font-size: .72rem;
  font-weight: 600;
  color: #5a6a7a;
}
.img-compare__panel img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  background: #eee;
}

/* ═══════════════════════════════════════════════════════════
   28b. SECTION IMAGE + OVERLAY LAYERS (admin-controlled)
═══════════════════════════════════════════════════════════ */

/* Background image layer — sits behind overlay */
.sc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
/* Colour overlay layer */
.sc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
/* Sections that now host bg + overlay layers */
.shop-banner,
.about-banner,
.stories-hero,
.stores-hero,
.stockist-hero {
  position: relative;
  overflow: hidden;
}
/* Push section content above the overlay layers */
.shop-banner    > :not(.sc-bg):not(.sc-overlay),
.about-banner   > :not(.sc-bg):not(.sc-overlay),
.stories-hero   > :not(.sc-bg):not(.sc-overlay),
.stores-hero    > :not(.sc-bg):not(.sc-overlay),
.stockist-hero  > :not(.sc-bg):not(.sc-overlay) {
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   29. STOCKIST / STORES PAGE (public)
═══════════════════════════════════════════════════════════ */

.stores-hero {
  background: linear-gradient(155deg, #2D4A00 0%, #5a7200 50%, #94B200 100%);
  padding: 5rem var(--pad-x) 4rem;
  min-height: 200px;
  text-align: center;
  color: #fff;
}
.stores-hero .section-label { color: rgba(255,255,255,.7); }
.stores-hero h1 { color: #fff; margin-bottom: .75rem; }
.stores-hero p  { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 540px; margin-inline: auto; }

.stores-filter {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: .85rem var(--pad-x);
  position: sticky;
  top: 68px;
  z-index: 10;
}
.stores-filter .container { display: flex; gap: .5rem; flex-wrap: wrap; }

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.store-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: transform var(--t), box-shadow var(--t);
}
.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}
.store-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
}
.store-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}
.store-card__type {
  display: inline-flex;
  align-items: center;
  padding: .18rem .65rem;
  border-radius: 50px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: capitalize;
  background: #dbeafe;
  color: #1d4ed8;
  white-space: nowrap;
  flex-shrink: 0;
}
.store-card__address,
.store-card__phone,
.store-card__hours {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .82rem;
  color: var(--mid-grey);
  line-height: 1.45;
}
.store-card__address svg,
.store-card__phone svg,
.store-card__hours svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: var(--green);
}
.store-card__featured-badge {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-dark);
  background: var(--green-pale);
  padding: .15rem .55rem;
  border-radius: 50px;
  align-self: flex-start;
}

.stores-map {
  width: 100%;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  margin-top: 0;
}
#stores-leaflet-map {
  height: 100%;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   30. BECOME A STOCKIST PAGE
═══════════════════════════════════════════════════════════ */

.stockist-hero {
  background: linear-gradient(155deg, #0C3D2A 0%, #165C3E 50%, #2d7a50 100%);
  padding: 5.5rem var(--pad-x) 4.5rem;
  min-height: 200px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stockist-hero::before {
  content: '';
  position: absolute;
  right: -8%;
  top: -30%;
  width: 45%;
  height: 160%;
  background: rgba(148,178,0,.07);
  border-radius: 50%;
  pointer-events: none;
}
.stockist-hero .section-label { color: var(--green-light); }
.stockist-hero h1 { color: #fff; margin-bottom: .75rem; max-width: 700px; margin-inline: auto; }
.stockist-hero p  { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 540px; margin-inline: auto; }

.stockist-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stockist-benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  transition: transform var(--t), box-shadow var(--t);
}
.stockist-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}
.stockist-benefit-card__icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stockist-benefit-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stockist-benefit-card h3 { font-size: 1.05rem; margin: 0; }
.stockist-benefit-card p  { font-size: .875rem; color: var(--mid-grey); margin: 0; }

.stockist-form-section {
  max-width: 680px;
  margin-inline: auto;
  padding: var(--section-v) var(--pad-x);
}
.stockist-form-section h2 {
  margin-bottom: .5rem;
  text-align: center;
}
.stockist-form-section .section-label {
  display: block;
  text-align: center;
  margin-bottom: .35rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.form-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--charcoal);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: .7rem 1rem;
  border: 1.5px solid #d8e0e8;
  border-radius: 10px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--black);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(148,178,0,.12);
}
.form-field textarea { min-height: 90px; resize: vertical; }

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

.wa-submit-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  background: #25D366;
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  margin-top: 1.5rem;
}
.wa-submit-btn:hover {
  background: #1ebe5e;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.wa-submit-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.stockist-cta-banner {
  background: var(--green-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem var(--pad-x);
  text-align: center;
}
.stockist-cta-banner h3  { margin-bottom: .5rem; }
.stockist-cta-banner p   { color: var(--mid-grey); margin-bottom: 1.25rem; font-size: .95rem; }

@media (max-width: 900px) {
  .stores-grid           { grid-template-columns: repeat(2, 1fr); }
  .stockist-benefits     { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .stores-grid           { grid-template-columns: 1fr; }
  .form-grid-2           { grid-template-columns: 1fr; }
  .stores-map            { height: 300px; }
}

/* ─── 31. IMAGE PICKER FIELD (admin forms) ──────────────── */

.image-picker-field {
  border: 1px solid var(--adm-border, #2a3145);
  border-radius: 8px;
  padding: .75rem;
  background: var(--adm-input-bg, #1a2035);
}
.image-picker-preview {
  width: 100%;
  max-height: 180px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: .5rem;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-picker-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.image-picker-placeholder {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a9aac;
  font-size: .85rem;
  border: 2px dashed #2a3145;
  border-radius: 6px;
  margin-bottom: .5rem;
}

/* ═══════════════════════════════════════════════════════════
   ADMIN — Section Image Editor UI
═══════════════════════════════════════════════════════════ */

.sc-editor-row {
  border-bottom: 1px solid #f0f4f8;
}
.sc-editor-row:last-child { border-bottom: none; }
.sc-editor-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background .15s;
}
.sc-editor-row__head:hover { background: #fafbfc; }
.sc-chevron { transition: transform .2s; flex-shrink: 0; stroke: #8a9aac; }
.sc-editor-body {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid #f0f4f8;
  background: #fafbfc;
}

.sc-preview-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-img-preview {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 10px;
  border: 1.5px solid #d1d9e0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sc-live-preview {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid #d1d9e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-live-preview__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a3a2a;
}
.sc-live-preview__overlay {
  position: absolute;
  inset: 0;
}
.sc-live-preview__label {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

/* ── Team grid ─────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.team-card:hover { box-shadow: var(--shadow-green); }
.team-card__photo {
  background: linear-gradient(135deg, var(--ocean-deep), #2d8055);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  border: 3px solid rgba(255,255,255,.35);
}
.team-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}
.team-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}
.team-card__role {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green-dark);
}
.team-card__bio {
  font-size: .85rem;
  color: var(--mid-grey);
  line-height: 1.6;
  margin: .35rem 0 0;
}
.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #0077b5;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: .75rem;
  text-decoration: none;
  margin-top: .75rem;
}
.team-card__linkedin:hover { background: #005f91; }

/* ═══════════════════════════════════════════════════════════
   IMPACT REPORTS PAGE
═══════════════════════════════════════════════════════════ */

.ir-hero {
  background: var(--ocean-deep);
  padding: 5rem 0 4rem;
  color: #fff;
  text-align: center;
}
.ir-hero h1 { color: #fff; }
.ir-hero__sub {
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.ir-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 68px;
  z-index: 90;
  padding: .75rem 0;
}
.ir-filter-wrap {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.ir-filter-btn {
  padding: .45rem 1rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--charcoal);
  transition: all .15s;
  white-space: nowrap;
}
.ir-filter-btn:hover { border-color: var(--green); color: var(--green-dark); }
.ir-filter-btn--active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.ir-section { padding: var(--section-v) 0; }

.ir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.ir-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.ir-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-green); }

.ir-card__cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}
.ir-card__tag {
  position: absolute;
  top: .75rem;
  left: .75rem;
  font-size: .65rem !important;
}
.ir-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ir-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .5rem;
}
.ir-card__date {
  font-size: .75rem;
  color: var(--mid-grey);
  margin-bottom: .75rem;
}
.ir-card__desc {
  font-size: .85rem;
  color: var(--mid-grey);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.ir-card__actions { margin-top: auto; }
.ir-card__soon {
  font-size: .8rem;
  color: var(--mid-grey);
  font-style: italic;
}

@media (max-width: 1024px) { .ir-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .ir-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px)  { .ir-filter-bar { top: 60px; } }

/* ═══════════════════════════════════════════════════════════
   CAREERS PAGE
═══════════════════════════════════════════════════════════ */

.careers-hero {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--green-deep) 100%);
  padding: 5rem 0 4rem;
  min-height: 200px;
  color: #fff;
  text-align: center;
}
.careers-hero h1 { color: #fff; }
.careers-hero__sub {
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.careers-values {
  background: var(--sand);
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.careers-values__grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.careers-value {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--green-deep);
}
.careers-value svg { flex-shrink: 0; color: var(--green); stroke: var(--green); }

.careers-section { padding: var(--section-v) 0; }

.careers-filter {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.careers-filter__btn {
  padding: .45rem 1rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--charcoal);
  transition: all .15s;
}
.careers-filter__btn:hover { border-color: var(--green); color: var(--green-dark); }
.careers-filter__btn--active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

#careers-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.career-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  transition: box-shadow var(--t);
}
.career-card:hover { box-shadow: var(--shadow-green); }
.career-card--closed { opacity: .6; }

.career-card__poster {
  width: 140px;
  flex-shrink: 0;
  overflow: hidden;
}
.career-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.career-card__body {
  padding: 1.5rem;
  flex: 1;
  min-width: 0;
}
.career-card__meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.career-card__deadline {
  font-size: .75rem;
  color: var(--mid-grey);
  margin-left: auto;
}
.career-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.career-card__info {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--mid-grey);
  margin-bottom: .75rem;
}
.career-card__info span {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.career-card__desc {
  font-size: .88rem;
  color: var(--mid-grey);
  line-height: 1.6;
  margin: 0;
}
.career-card__closed-msg {
  font-size: .8rem;
  color: var(--mid-grey);
  margin-top: 1rem;
  font-style: italic;
}

@media (max-width: 600px) {
  .career-card { flex-direction: column; }
  .career-card__poster { width: 100%; height: 180px; }
  .career-card__deadline { margin-left: 0; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE-FIRST IMPROVEMENTS — all pages
═══════════════════════════════════════════════════════════ */

/* Hero — tighter at small screens */
@media (max-width: 768px) {
  .hero { min-height: 92svh; }
  .hero__content { padding: 0 var(--pad-x); }
  .hero__badge { font-size: .68rem; padding: .35rem .85rem; }
  .hero__credibility { gap: .4rem; font-size: .7rem; flex-wrap: wrap; justify-content: center; }
  .hero__credibility-dot { display: none; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .btn-group--hero-keep-row { flex-direction: row; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero__sub { font-size: .9rem; }
}

/* Nav — ensure mobile panel isn't clipped */
@media (max-width: 768px) {
  .nav { padding: 0 var(--pad-x); }
  .nav__mobile-panel { padding: 1.5rem 1.25rem 2rem; }
  .nav__mobile-link { font-size: .95rem; padding: .7rem 0; }
  .nav__mobile-link--sub { font-size: .88rem; }
  .nav__mobile-section { font-size: .65rem; padding: .75rem 0 .2rem; }
}

/* Topbar */
@media (max-width: 480px) {
  .topbar { display: none; }
}

/* Impact bar */
@media (max-width: 480px) {
  .impact-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .impact-stat__number { font-size: 1.8rem; }
}

/* Products grid */
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; max-width: 360px; }
  .product-card { max-width: 100%; }
}

/* Benefits */
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 1.5rem; }
}

/* Farmers */
@media (max-width: 600px) {
  .farmers-grid { max-width: 100%; grid-template-columns: 1fr; }
}

/* Use cases */
@media (max-width: 600px) {
  .use-case-grid { max-width: 100%; }
}

/* Awards */
@media (max-width: 480px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); justify-items: center; }
}

/* Section padding at mobile */
@media (max-width: 768px) {
  :root { --section-v: clamp(48px, 8vw, 80px); }
  .section-label { font-size: .68rem; }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}

/* Story cards (stories page) */
@media (max-width: 768px) {
  .stories-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .stories-hero { padding: 4rem 0 2.5rem; }
  .stories-hero h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
}

/* Team grid */
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
}

/* Footer mobile */
@media (max-width: 480px) {
  .footer-main { gap: 1.5rem; }
  .footer-col { width: 100%; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; font-size: .78rem; }
  .footer-trust { flex-wrap: wrap; gap: .75rem; justify-content: center; }
}

/* Forms (stockist, become-stockist) */
@media (max-width: 600px) {
  .stockist-form__grid,
  .bs-form__grid { grid-template-columns: 1fr; }
  .stockist-cta__inner { padding: 2rem var(--pad-x); }
}

/* About page */
@media (max-width: 600px) {
  .about-impact-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 1.25rem; }
  .timeline-item { padding-left: 1.5rem; }
}

/* Admin responsive improvements */
@media (max-width: 600px) {
  .adm-content { padding: 1rem; }
  .adm-topbar { padding: .75rem 1rem; }
  .adm-stats { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .adm-card-head { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .adm-card-head .adm-btn { width: 100%; justify-content: center; }
  .admin-table { font-size: .75rem; }
  .admin-table th, .admin-table td { padding: .5rem .65rem; }
  .sc-editor-row__head { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .adm-settings { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   30. MOBILE RESPONSIVE — COMPREHENSIVE IMPROVEMENTS
═══════════════════════════════════════════════════════════ */

/* ── Tablet / large mobile (≤900px) ── */
@media (max-width: 900px) {
  /* Stores grid → 2 columns at tablet */
  .stores-grid { grid-template-columns: repeat(2, 1fr); }

  /* Farmers grid → 2 columns at tablet, consistent with product grid */
  .farmers-grid { grid-template-columns: repeat(2, 1fr); max-width: none; margin-inline: 0; }

  /* Careers hero */
  .careers-hero { padding: 4rem var(--pad-x) 3rem; }

  /* Banners: reduce padding */
  .shop-banner, .about-banner { padding: 4rem var(--pad-x) 3rem; }
  .stores-hero, .stockist-hero { padding: 4rem var(--pad-x) 3rem; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {

  /* --- Placeholder labels: scale down on mobile --- */
  .img-ph__label {
    font-size: 0.72rem;
    line-height: 1.5;
    padding: 0 .75rem;
    gap: 4px;
  }
  .img-ph__label svg { width: 18px; height: 18px; }

  /* --- Hero --- */
  .hero__badge { font-size: .68rem; padding: 5px 10px; }
  .hero__credibility { font-size: .68rem; gap: .3rem .6rem; margin-bottom: 1.25rem; }
  .hero__credibility-dot { display: none; }

  /* --- Banner sections: compact on mobile --- */
  .shop-banner, .about-banner {
    padding: 3.5rem var(--pad-x) 2.5rem;
    text-align: center;
  }
  .about-banner h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .shop-banner h1  { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .stories-hero { padding: 3.5rem var(--pad-x) 2.5rem; }
  .stories-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .stores-hero  { padding: 3rem var(--pad-x) 2rem; }
  .stores-hero h1 { font-size: clamp(1.4rem, 5.5vw, 2rem); }

  .stockist-hero { padding: 3rem var(--pad-x) 2rem; }
  .stockist-hero h1 { font-size: clamp(1.4rem, 5.5vw, 2rem); }

  .careers-hero { padding: 3.5rem var(--pad-x) 2.5rem; }
  .careers-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* --- Topbar: simplify on mobile --- */
  .topbar__sep:nth-child(4) { display: none; }
  span[class="topbar__sep"] + span:last-child { display: none; }

  /* --- Origin image placeholder: readable on mobile --- */
  .origin__image .img-ph--about { min-height: 280px; height: 280px; }

  /* --- Stores grid → 1 column on mobile --- */
  .stores-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  /* --- Farmers grid → 1 column on mobile (already at 768px, ensure max-width is unset) --- */
  .farmers-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }

  /* --- Farmer card image: limit height on mobile to avoid very tall cards --- */
  .img-ph--farmer { max-height: 320px; }
  .farmer-card__img .img-ph--farmer { max-height: 300px; }

  /* --- Founder image: constrain height when stacked --- */
  .founder-img .img-ph { height: clamp(280px, 55vw, 400px); min-height: unset; }
  .founder-img__badge { position: relative; bottom: auto; right: auto; margin-top: 0.75rem; margin-left: auto; width: fit-content; }

  /* --- Product cards (shop grid): cap image height on mobile --- */
  .shop-grid .product-card__img-real { max-height: 380px; }

  /* --- Env impact: centre text and tighten spacing --- */
  .env-numbers { gap: 2rem; margin-top: 2.5rem; }
  .env-number__label { font-size: .9rem; }
  .env-impact__claim { margin-top: 2.5rem; padding-top: 2rem; }

  /* --- About page: compact impact numbers --- */
  .about-impact-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .about-impact-card__num { font-size: clamp(1.8rem, 5vw, 2.8rem); }

  /* --- Mission pull: reduce padding --- */
  .mission-section .container { padding-inline: var(--pad-x); }
  .mission-pull { padding: 2.5rem; }

  /* --- Stockist CTA: stack content --- */
  .stockist-cta__inner { padding: 2.5rem var(--pad-x); }
  .stockist-cta h2 { font-size: clamp(1.4rem, 5vw, 1.85rem); }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {

  /* --- Topbar: hide free delivery span on very small screens --- */
  .topbar__inner span:nth-child(3),
  .topbar__inner span:nth-child(2) { display: none; }
  .topbar__inner { justify-content: center; }

  /* --- Hero --- */
  .hero__content { padding-top: clamp(60px, 18vh, 100px); padding-bottom: clamp(40px, 8vh, 80px); }
  .hero__badge { display: none; }

  /* --- Banner sections: minimal padding at 480px --- */
  .shop-banner, .about-banner, .stories-hero,
  .stores-hero, .stockist-hero, .careers-hero {
    padding: 3rem var(--pad-x) 2rem;
  }
  .about-banner h1 { font-size: clamp(1.45rem, 6.5vw, 1.85rem); }

  /* --- Placeholder: img-ph--about min height --- */
  .img-ph--about { min-height: 260px; }
  .origin__image .img-ph--about { height: 260px; min-height: 260px; }

  /* --- Farmer card image: tighter on very small screens --- */
  .img-ph--farmer, .farmer-card__img .img-ph--farmer { max-height: 260px; }

  /* --- Founder image: compact on very small screens --- */
  .founder-img .img-ph { height: clamp(220px, 65vw, 320px); }
  .founder-img__badge { font-size: 0.72rem; padding: 0.75rem 1rem; }

  /* --- Product card images on shop grid --- */
  .shop-grid .product-card__img-real { max-height: 320px; }

  /* --- Homepage product cards: fix too-tall placeholder in 1-column layout --- */
  .products-grid .img-ph--product { aspect-ratio: 3/2; min-height: unset; }

  /* --- Impact bar: tighten spacing --- */
  .impact-stat__number { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  .impact-stat__label  { font-size: .65rem; }
  .impact-stat { padding: 1.25rem .75rem; }

  /* --- Env numbers stacked: centre align --- */
  .env-numbers { gap: 1.5rem; }
  .env-number__val { font-size: clamp(2.2rem, 9vw, 3.5rem); }

  /* --- Origin content: tighten padding --- */
  .origin__content { padding: 2.5rem var(--pad-x); }

  /* --- Img placeholder labels: even smaller --- */
  .img-ph__label { font-size: .68rem; }

  /* --- Stores grid: full-width cards --- */
  .stores-grid { max-width: none; }

  /* --- Awards grid: 2 columns --- */
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .award-item { min-width: unset; }
}

/* ═══════════════════════════════════════════════
   UX ENHANCEMENTS
═══════════════════════════════════════════════ */

/* ─── Hero entry animations ──────────────────── */

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__badge {
  animation: heroFadeIn 0.6s var(--ease) 0.05s both;
}
.hero__credibility {
  animation: heroFadeIn 0.6s var(--ease) 0.18s both;
}
.hero h1, .hero__content h1 {
  animation: heroFadeIn 0.7s var(--ease) 0.3s both;
}
.hero__sub {
  animation: heroFadeIn 0.6s var(--ease) 0.46s both;
}
.hero .btn-group {
  animation: heroFadeIn 0.6s var(--ease) 0.6s both;
}
.hero__scroll {
  animation: heroFadeIn 0.6s var(--ease) 0.9s both, scrollBob 2.5s ease-in-out 1.5s infinite;
}

/* ─── Cart feedback states ───────────────────── */

[data-add-to-cart].btn--cart-added {
  background: var(--green-dark) !important;
  color: #fff;
  pointer-events: none;
  transform: scale(1.02);
}
.add-to-cart.btn--cart-added {
  background: var(--green-dark) !important;
  pointer-events: none;
}

/* ─── Testimonial slider ─────────────────────── */

.testi-slider {
  position: relative;
  margin-top: 3rem;
}
.testi-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testi-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.testi-track .testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  border-radius: var(--radius-lg);
  min-width: 0;
}
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--charcoal);
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
  flex-shrink: 0;
}
.testi-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: scale(1.08);
}
.testi-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t), width var(--t);
  padding: 0;
}
.testi-dot.active {
  background: var(--green);
  width: 22px;
  border-radius: 4px;
}

/* ─── Footer newsletter ──────────────────────── */

.footer-newsletter {
  background: rgba(148,178,0,.12);
  border-top: 1px solid rgba(148,178,0,.18);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 2.5rem var(--pad-x);
}
.footer-newsletter__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-newsletter__copy h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  text-transform: none;
  letter-spacing: 0;
}
.footer-newsletter__copy p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 0;
  line-height: 1.5;
}
.footer-newsletter__form {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  max-width: 380px;
  width: 100%;
}
.footer-newsletter__input {
  flex: 1;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--font);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--t), background var(--t);
}
.footer-newsletter__input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter__input:focus {
  border-color: var(--green-light);
  background: rgba(255,255,255,.12);
}
.footer-newsletter__btn {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.4rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
}
.footer-newsletter__btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.footer-newsletter__success {
  display: none;
  font-size: 0.82rem;
  color: var(--green-light);
  font-weight: 600;
  padding: 0.5rem 0;
}
.footer-newsletter__success.show { display: block; }
@media (max-width: 640px) {
  .footer-newsletter__inner { flex-direction: column; gap: 1.25rem; }
  .footer-newsletter__form  { max-width: 100%; width: 100%; }
  .footer-newsletter__copy h4 { font-size: .92rem; }
}

/* =====================================================
   FAQ PAGE
   ===================================================== */

/* Hero */
.faq-hero {
  background: linear-gradient(135deg, #f8fdf2 0%, #f0f9e8 60%, #e8f5e0 100%);
  padding: 5rem var(--pad-x) 4rem;
  border-bottom: 1px solid var(--border);
}
.faq-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
}
.faq-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.faq-hero__badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.faq-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.18;
  margin-bottom: 1rem;
}
.faq-hero__accent { color: var(--green); }
.faq-hero__sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 540px;
}
.faq-search-wrap {
  position: relative;
  max-width: 480px;
}
.faq-search-wrap svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}
.faq-search-wrap input {
  width: 100%;
  padding: 0.85rem 3rem 0.85rem 2.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: #fff;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.faq-search-wrap input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(148,178,0,.15);
}
.faq-search-wrap input::placeholder { color: var(--muted); }
#faq-search-clear {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.2rem;
  display: none;
}
#faq-search-clear.visible { display: block; }

/* Hero stat card */
.faq-hero__card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.faq-hero__card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.faq-hero__card-fact {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.faq-hero__card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}
.faq-hero__card-stats > div {
  text-align: center;
}
.faq-hero__stat-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.faq-hero__stat-lbl {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.25rem;
  display: block;
}

/* FAQ category pill overrides (builds on shared .filter-pill base) */
.faq-cats .filter-pill {
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.faq-cats .filter-pill.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.faq-cats .filter-pill.active .faq-pill-count {
  background: rgba(255,255,255,.25);
}

/* Category pills */
.faq-cats {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem var(--pad-x);
  position: sticky;
  top: 64px;
  z-index: 90;
}
.faq-cats__row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.faq-cats__row::-webkit-scrollbar { display: none; }
.faq-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s;
  flex-shrink: 0;
}
.faq-cat-pill:hover {
  border-color: var(--green);
  color: var(--green);
}
.faq-cat-pill.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.faq-pill-count {
  background: rgba(0,0,0,.08);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  line-height: 1.4;
}
.faq-cat-pill.active .faq-pill-count {
  background: rgba(255,255,255,.25);
}

/* Body layout */
.faq-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem var(--pad-x) 5rem;
}
.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sidebar */
.faq-sidebar {
  position: sticky;
  top: 120px;
}
.faq-sidebar__heading,
.faq-sidebar__title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.faq-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 2rem;
}
.faq-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: all 0.15s;
  font-weight: 500;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.faq-sidebar__link:hover {
  background: var(--surface);
  color: var(--green);
}
.faq-sidebar__link.active {
  background: rgba(148,178,0,.12);
  color: var(--green);
  font-weight: 700;
}
.faq-sidebar__link svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.6; }
.faq-sidebar__link.active svg { opacity: 1; }
.faq-sidebar__cta {
  background: linear-gradient(135deg, #f0f9e8, #e8f5e0);
  border: 1px solid rgba(148,178,0,.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.faq-sidebar__cta p {
  font-size: 0.82rem;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.faq-sidebar__cta .btn {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
}

/* Results label */
.faq-results-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* FAQ groups + items */
.faq-group {
  margin-bottom: 2.5rem;
}
.faq-group[data-group].hidden { display: none; }

.faq-group__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}
.faq-group__label svg { width: 14px; height: 14px; color: var(--green); }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
  background: #fff;
}
.faq-item:hover { box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.faq-item.open { box-shadow: 0 4px 24px rgba(0,0,0,.08); border-color: rgba(148,178,0,.35); }
.faq-item.hidden { display: none; }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.45;
  transition: color 0.15s;
}
.faq-item__q:hover { color: var(--green); }
.faq-item.open .faq-item__q { color: var(--green); }

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.faq-item__icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}
.faq-item.open .faq-item__icon {
  background: var(--green);
  border-color: var(--green);
}
.faq-item.open .faq-item__icon svg {
  color: #fff;
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(.4,0,.2,1);
}
.faq-item__a-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.93rem;
  color: var(--body);
  line-height: 1.7;
}
.faq-item__a-inner p { margin-bottom: 0.75rem; }
.faq-item__a-inner p:last-child { margin-bottom: 0; }

/* FAQ answer sub-components */
.faq-list-benefits {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}
.faq-list-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--charcoal);
  background: #f8fdf2;
  border: 1px solid rgba(148,178,0,.2);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
}
.faq-list-benefits li svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

.faq-use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.faq-use-card {
  background: #f8fdf2;
  border: 1px solid rgba(148,178,0,.2);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  text-align: center;
}
.faq-use-card__icon,
.faq-use-icon { font-size: 1.5rem; margin-bottom: 0.35rem; display: block; }
.faq-use-card strong { display: block; font-size: 0.82rem; color: var(--charcoal); margin-bottom: 0.2rem; }
.faq-use-card span { font-size: 0.76rem; color: var(--muted); line-height: 1.4; }

.faq-storage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.faq-storage-card {
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid;
}
.faq-storage-card.do {
  background: #f0f9e8;
  border-color: rgba(148,178,0,.3);
}
.faq-storage-card.dont {
  background: #fff8f0;
  border-color: rgba(220,100,0,.2);
}
.faq-storage-card__head {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.faq-storage-card.do .faq-storage-card__head { color: var(--green-dark); }
.faq-storage-card.dont .faq-storage-card__head { color: #c2410c; }
.faq-storage-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq-storage-card li {
  font-size: 0.84rem;
  color: var(--charcoal);
  padding: 0.2rem 0;
  display: flex;
  gap: 0.4rem;
}

.faq-steps {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  counter-reset: faq-step;
}
.faq-steps li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.55;
}
.faq-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item__tip {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: #fffbeb;
  border: 1px solid rgba(234,179,8,.25);
  border-radius: var(--radius);
  padding: 0.75rem;
  margin-top: 0.85rem;
  font-size: 0.84rem;
  color: #92400e;
  line-height: 1.55;
}
.faq-item__tip svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: #d97706; }

.faq-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.faq-reason {
  background: #f8fdf2;
  border: 1px solid rgba(148,178,0,.2);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
}
.faq-reason strong {
  display: block;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.faq-reason span { font-size: 0.8rem; color: var(--muted); line-height: 1.45; }

.faq-regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.faq-region {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: #f8fdf2;
  border: 1px solid rgba(148,178,0,.2);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
}
.faq-region strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.faq-region strong svg { width: 13px; height: 13px; color: var(--green); flex-shrink: 0; }
.faq-region p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.faq-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.faq-item__tag,
.faq-item__tags span {
  font-size: 0.72rem;
  background: rgba(148,178,0,.1);
  color: var(--green-dark);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  font-weight: 600;
  display: inline-block;
}

/* Empty state */
.faq-empty {
  text-align: center;
  padding: 4rem 2rem;
  display: none;
}
.faq-empty.visible { display: block; }
.faq-empty svg { width: 48px; height: 48px; color: var(--border); margin: 0 auto 1rem; }
.faq-empty h3 { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.faq-empty p { font-size: 0.9rem; color: var(--muted); }

/* Disclaimer */
.faq-disclaimer-section {
  margin-top: 3rem;
}
.faq-disclaimer-card {
  display: flex;
  gap: 1rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}
.faq-disclaimer-card svg { width: 20px; height: 20px; color: #3b82f6; flex-shrink: 0; margin-top: 1px; }
.faq-disclaimer-card p {
  font-size: 0.84rem;
  color: #1e40af;
  line-height: 1.6;
  margin: 0;
}
.faq-disclaimer-card strong { color: #1e3a8a; }

/* CTA section */
.faq-cta-section {
  background: linear-gradient(135deg, #f8fdf2 0%, #e8f5e0 100%);
  border-top: 1px solid rgba(148,178,0,.2);
  padding: 4rem var(--pad-x);
  margin-top: 2rem;
}
.faq-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.faq-cta-icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.faq-cta-icon svg { width: 24px; height: 24px; color: #fff; }
.faq-cta-inner h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.faq-cta-inner p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.faq-cta-inner .btn-group {
  justify-content: center;
}

/* Responsive — tablet */
@media (max-width: 900px) {
  .faq-hero__inner { grid-template-columns: 1fr; }
  .faq-hero__card { display: none !important; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; display: none; }
  .faq-cats { top: 56px; }
}

/* Responsive — mobile */
@media (max-width: 640px) {
  /* Hero */
  .faq-hero {
    padding: 2rem var(--pad-x) 1.75rem;
  }
  .faq-hero h1 {
    font-size: 1.85rem;
    line-height: 1.15;
  }
  .faq-hero__badge {
    font-size: 0.68rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.9rem;
  }
  .faq-hero__sub {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  .faq-search-wrap input {
    font-size: 1rem; /* prevents iOS auto-zoom */
    padding: 0.8rem 2.75rem 0.8rem 2.5rem;
  }
  /* Suppress native search cancel button so our custom × is the only one */
  .faq-search-wrap input[type="search"]::-webkit-search-cancel-button,
  .faq-search-wrap input[type="search"]::-webkit-search-decoration { display: none; }

  /* Category pills bar */
  .faq-cats {
    padding: 0.85rem var(--pad-x);
    top: 56px;
  }
  .faq-cats__row { gap: 0.4rem; }
  .faq-cat-pill,
  .faq-cats__row .filter-pill {
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
  }
  .faq-pill-count { font-size: 0.65rem; }

  /* Body */
  .faq-body {
    padding: 1.5rem var(--pad-x) 3.5rem;
  }
  .faq-results-label { font-size: 0.75rem; margin-bottom: 1rem; }

  /* Groups */
  .faq-group { margin-bottom: 1.75rem; }
  .faq-group__label { font-size: 0.68rem; margin-bottom: 0.75rem; }

  /* FAQ item accordion */
  .faq-item { border-radius: var(--radius); }
  .faq-item__q {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
    gap: 0.75rem;
  }
  .faq-item__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .faq-item__icon svg { width: 12px; height: 12px; }
  .faq-item__a-inner {
    padding: 0 1rem 1rem;
    font-size: 0.875rem;
  }

  /* Benefit list — single column on mobile */
  .faq-list-benefits {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .faq-list-benefits li { font-size: 0.84rem; }

  /* Use-case grid — 2 columns on mobile */
  .faq-use-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .faq-use-card { padding: 0.7rem 0.6rem; }
  .faq-use-icon,
  .faq-use-card__icon { font-size: 1.25rem; margin-bottom: 0.25rem; }
  .faq-use-card strong { font-size: 0.78rem; }
  .faq-use-card span,
  .faq-use-card p { font-size: 0.72rem; }

  /* Storage grid — single column */
  .faq-storage-grid { grid-template-columns: 1fr; gap: 0.5rem; }

  /* Step list */
  .faq-steps li { font-size: 0.855rem; }
  .faq-step-num { width: 22px; height: 22px; font-size: 0.68rem; }

  /* Tip callout */
  .faq-item__tip { padding: 0.65rem; font-size: 0.8rem; }

  /* Reasons grid — single column */
  .faq-reasons-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .faq-reason { padding: 0.75rem; }
  .faq-reason strong { font-size: 0.82rem; }
  .faq-reason span { font-size: 0.76rem; }

  /* Regions grid — 2 cols */
  .faq-regions-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .faq-region { padding: 0.7rem 0.75rem; }
  .faq-region strong { font-size: 0.82rem; }
  .faq-region p { font-size: 0.74rem; }

  /* Tags */
  .faq-item__tags { gap: 0.35rem; margin-top: 0.65rem; }
  .faq-item__tag,
  .faq-item__tags span { font-size: 0.69rem; padding: 0.18rem 0.55rem; }

  /* Disclaimer */
  .faq-disclaimer-card { padding: 1rem; gap: 0.75rem; }
  .faq-disclaimer-card p { font-size: 0.8rem; }

  /* CTA section */
  .faq-cta-section { padding: 2.5rem var(--pad-x); }
  .faq-cta-inner h2 { font-size: 1.35rem; }
  .faq-cta-inner p { font-size: 0.88rem; }
  .faq-cta-inner .btn-group { flex-direction: column; align-items: stretch; }
  .faq-cta-inner .btn-group .btn { text-align: center; }
  .faq-cta-icon { width: 44px; height: 44px; margin-bottom: 1rem; }
}

/* =====================================================
   PARTNERS & FUNDERS — LOGO SECTIONS
   ===================================================== */

/* ── Homepage marquee strip ── */
.logo-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
}
.logo-strip__header {
  text-align: center;
  margin-bottom: 1.25rem;
}
.logo-strip__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.logo-strip__marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logo-strip__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.logo-strip__track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 0.5rem;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.25s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.logo-item:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}
.logo-item img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}
.logo-item svg-logo {
  display: block;
}

/* ── Partners full section (About page) ── */
.partners-section {
  padding: var(--section-v) 0;
  background: #f8fdf2;
  border-top: 1px solid rgba(148,178,0,.15);
}
.partner-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.partner-tab {
  padding: 0.6rem 1.5rem;
  border: none;
  background: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.partner-tab.active {
  color: var(--green-dark);
  border-bottom-color: var(--green);
}
.partner-tab:hover { color: var(--green); }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.partner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
  filter: grayscale(70%) opacity(0.75);
}
.partner-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border-color: rgba(148,178,0,.35);
  transform: translateY(-2px);
  filter: grayscale(0%) opacity(1);
}
.partner-card img {
  max-height: 50px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .partner-grid { grid-template-columns: repeat(3, 1fr); gap: 0.65rem; }
  .partner-card { min-height: 70px; padding: 0.75rem 0.5rem; }
  .partner-card img { max-height: 36px; max-width: 100px; }
  .logo-strip__track { animation-duration: 28s; }
}

/* Partners section heading/sub moved from inline */
.partners-section__heading { margin-bottom: 0.5rem; }
.partners-section__sub {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

/* =====================================================
   21st.dev UI IMPROVEMENTS
   ===================================================== */

/* ── Better nav: tighter, cleaner, frosted on scroll ── */
.site-header { transition: box-shadow 0.3s, background 0.3s; }
.site-header.scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 24px rgba(0,0,0,.06);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Better buttons: smoother hover, micro-lift ── */
.btn {
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.15s;
}
.btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: none;
}
.btn--primary {
  background: var(--green);
  box-shadow: 0 2px 8px rgba(148,178,0,.25);
}
.btn--primary:hover:not(:disabled) {
  box-shadow: 0 6px 18px rgba(148,178,0,.35);
}

/* ── Product cards: cleaner without price ── */
.product-card {
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  border: 1px solid var(--border);
}
.product-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.product-card__footer {
  padding: 0.75rem 1.25rem 1.25rem;
  display: flex;
  justify-content: center;
}
.product-card__footer .btn,
.product-card__footer button.btn--primary {
  width: 100%;
  text-align: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
}

/* ── Dynamic product card CTA (script.js-generated, no .btn class) ── */
.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0.62em 1.3em;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.product-card__cta:hover { transform: translateY(-1px); }

/* ── Order via WhatsApp button: WhatsApp green + icon ── */
.product-card__footer [data-add-to-cart],
.product-card__footer .add-to-cart,
.product-card__footer .product-card__cta {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  width: 100%;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(37,211,102,.2);
}
.product-card__footer [data-add-to-cart]::before,
.product-card__footer .add-to-cart::before,
.product-card__footer .product-card__cta::before {
  content: '';
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url("data:image/svg+xml,%3Csvg viewBox%3D%220 0 24 24%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 fill%3D%22%23fff%22%3E%3Cpath d%3D%22M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z%22%2F%3E%3C%2Fsvg%3E") no-repeat center/contain;
  flex-shrink: 0;
}
.product-card__footer [data-add-to-cart]:hover,
.product-card__footer .add-to-cart:hover,
.product-card__footer .product-card__cta:hover {
  background: #20c85a;
  border-color: #20c85a;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

/* ── Better section headings ── */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.65rem;
}
h2 { letter-spacing: -0.03em; }
h1 { letter-spacing: -0.04em; }

/* ── Better topbar: more refined ── */
.topbar {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

/* ── Better impact bar ── */
.impact-bar__stat-value {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

/* ── Hero: more dramatic text contrast ── */
.hero h1, .hero__content h1 {
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
}

/* ── Testimonial cards: glass effect ── */
.testimonial-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
}

/* ── Award items: pill-style instead of square ── */
.award-item {
  border-radius: 12px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.award-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  border-color: rgba(148,178,0,.3);
}

/* ── Better footer: cleaner layout ── */
.site-footer a:hover { color: var(--green-light); }

/* ── Smooth scroll restore for anchor navigation ── */
html { scroll-behavior: smooth; }

/* =====================================================
   MOBILE — CORE FIXES (all pages)
   ===================================================== */

/* 1. Prevent horizontal scroll bleed.
      overflow-x:clip (not hidden) — clip never creates a scroll container,
      so Leaflet transforms, position:sticky, and position:fixed all work.
      Falls back to visible on very old browsers (acceptable). */
html, body { overflow-x: clip; }

/* 2. Remove native tap highlight flash on all interactive elements */
a, button, [role="button"], input, select, textarea, label {
  -webkit-tap-highlight-color: transparent;
}

/* 3. Prevent 300ms double-tap zoom delay on buttons and links */
a, button { touch-action: manipulation; }

/* 4. iOS auto-zoom fix — any input < 16px triggers zoom on focus in Safari.
      Set all inputs to exactly 1rem on mobile so the OS never zooms. */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 1rem;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 1rem;
  }
  .footer-newsletter__input {
    font-size: 1rem;
  }
  .admin-field input,
  .admin-field select,
  .admin-field textarea {
    font-size: 1rem;
  }
}

/* 5. Minimum 44×44px touch targets (WCAG 2.5.5) */
@media (max-width: 768px) {
  .nav__burger,
  .nav__cart {
    min-width: 44px;
    min-height: 44px;
  }
  .nav__mobile-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Buttons: adequate tap target */
  .btn {
    min-height: 44px;
  }
  /* Careers filter pills: taller tap target */
  .careers-filter__btn {
    min-height: 40px;
    padding: .6rem 1.1rem;
  }
}

/* 6. Very small screens — 360px (iPhone SE, older Androids) */
@media (max-width: 380px) {
  /* Mission blockquote: reduce padding so content breathes */
  .mission-pull { padding: 1.75rem 1.25rem; }

  /* WhatsApp float: shrink to avoid covering content */
  .wa-float__btn {
    font-size: .76rem;
    padding: .6rem .85rem .6rem .75rem;
    gap: .4rem;
  }

  /* Nav: tighter horizontal padding on very narrow screens */
  .nav { padding: 0 1rem; }

  /* Topbar: ensure it doesn't overflow */
  .topbar { font-size: .68rem; padding: 7px 1rem; }

  /* Hero heading: tighter at 360px */
  .hero h1 { font-size: clamp(1.75rem, 8.5vw, 2.2rem); }

  /* Footer bottom: stack cleanly */
  .footer-bottom { font-size: .72rem; }
}

/* 7. Safe-area insets for notched phones (iPhone X+) */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer { padding-bottom: calc(1rem + env(safe-area-inset-bottom)); }
  .wa-float     { bottom: calc(1.5rem + env(safe-area-inset-bottom)); }
  .nav__mobile-panel { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
}

/* 8. Landscape phone — hero should not be 92svh (too tall when keyboard is gone) */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { min-height: 100vw; }
  .hero__content { padding-top: 3.5rem; padding-bottom: 3rem; }
}

/* 9. Prevent long words / URLs from breaking layout on mobile */
@media (max-width: 600px) {
  p, li, h1, h2, h3, h4 {
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

/* ── Skip link accessibility ── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--green);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Better form inputs site-wide ── */
input, textarea, select {
  transition: border-color 0.2s, box-shadow 0.2s;
}
