/* ==========================================================================
   EasternRidge Organics — Design System
   ========================================================================== */

:root {
  /* Brand colors, sampled from the EasternRidge Organics logo/catalogue */
  --forest-900: #0a2e19;
  --forest-800: #0b4421;
  --forest-700: #145a2c;
  --forest-600: #1f7a3f;
  --forest-500: #3a9457;
  --forest-100: #e1ebe2;
  --forest-50: #f1f6f1;

  --gold-800: #8a5a12;
  --gold-700: #a8620f;
  --gold-600: #c07914;
  --gold-500: #cf7b17;
  --gold-400: #dd9a3f;
  --gold-300: #ecb968;
  --gold-100: #f6e3bf;

  --cream-50: #fbf9f4;
  --cream-100: #f5f0e4;
  --cream-200: #ece3cd;
  --cream-300: #e2d6b8;

  --ink-900: #201f1a;
  --ink-700: #3c3a32;
  --ink-500: #6b6858;
  --ink-300: #9c9787;

  --white: #ffffff;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-w: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 10px rgba(10, 46, 25, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 46, 25, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 46, 25, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

/* ------------------------- Reset & base ------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }
section[id] { scroll-margin-top: 90px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold-500);
  display: inline-block;
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h2.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  color: var(--forest-900);
  margin-top: 14px;
  letter-spacing: -0.01em;
}

.section-sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-500);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn-primary {
  background: var(--forest-800);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--forest-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-whatsapp {
  background: #25D366;
  color: #06340f;
}
.btn-whatsapp:hover { background: #22c15e; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

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

.btn-sm { padding: 11px 22px; font-size: 13.5px; }

/* ------------------------- Reveal animation ------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.23s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.30s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.37s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.44s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.51s; }
.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: 0.58s; }
.reveal-stagger.is-visible > *:nth-child(10) { transition-delay: 0.65s; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(6,20,12,0.55) 0%, rgba(6,20,12,0.32) 55%, rgba(6,20,12,0) 100%);
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.site-header.is-scrolled {
  height: 72px;
  background: rgba(251, 249, 244, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(10,46,25,0.06), 0 10px 30px rgba(10,46,25,0.06);
}
.site-header.is-scrolled::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207,123,23,0.5), transparent);
}

.brand {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 18px 7px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 8px 24px rgba(6,20,12,0.22), inset 0 0 0 1px rgba(255,255,255,0.6);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, transform 0.3s ease;
}
.brand:hover { transform: translateY(-1px); }
.brand img { height: 38px; width: auto; display: block; transition: height 0.4s ease; }
.site-header.is-scrolled .brand {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.site-header.is-scrolled .brand img { height: 34px; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  transition: background 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.site-header.is-scrolled .main-nav a { color: var(--ink-700); text-shadow: none; }
.main-nav a:hover { background: rgba(255,255,255,0.16); }
.site-header.is-scrolled .main-nav a:hover { background: var(--forest-50); color: var(--forest-800); }
.main-nav a.active { color: var(--gold-300); }
.site-header.is-scrolled .main-nav a.active { color: var(--gold-600); }
.main-nav a.active::after {
  content: "";
  position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: var(--gold-400);
}
.site-header.is-scrolled .main-nav a.active::after { background: var(--gold-600); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.btn-outline-header {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.btn-outline-header:hover { background: rgba(255,255,255,0.18); }
.site-header.is-scrolled .btn-outline-header {
  border-color: var(--forest-800);
  color: var(--forest-800);
  background: transparent;
  text-shadow: none;
}
.site-header.is-scrolled .btn-outline-header:hover { background: var(--forest-800); color: var(--white); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.16);
  align-items: center; justify-content: center;
  color: var(--white);
}
.site-header.is-scrolled .nav-toggle { background: var(--forest-50); color: var(--forest-800); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-900);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08) translate3d(0,0,0); }
  to { transform: scale(1.16) translate3d(-1%, -1%, 0); }
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,26,15,0.55) 0%, rgba(8,26,15,0.35) 38%, rgba(8,26,15,0.72) 100%),
    linear-gradient(90deg, rgba(6,20,12,0.75) 0%, rgba(6,20,12,0.15) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: calc(var(--header-h) + 26px);
  padding-bottom: 30px;
  color: var(--white);
}
.hero .eyebrow { color: var(--gold-300); }
.hero .eyebrow::before { background: var(--gold-300); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-top: 22px;
}
.hero-title em { font-style: italic; color: var(--gold-300); }

.hero-sub {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
  max-width: 560px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 22px; }

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 920px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.hero-stat .num span.suffix { font-size: 22px; color: var(--gold-300); }
.hero-stat .label {
  margin-top: 6px;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.scroll-cue {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}
.scroll-cue .line {
  width: 1px; height: 22px;
  background: linear-gradient(rgba(255,255,255,0.8), transparent);
  animation: scrollCue 2.2s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4;}
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0.3); transform-origin: bottom; opacity: 0.4; }
}

/* ==========================================================================
   Marquee / trust strip
   ========================================================================== */
.trust-strip {
  background: var(--forest-900);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.marquee { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; }
.marquee span {
  color: rgba(255,255,255,0.8);
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 28px;
  white-space: nowrap;
  font-weight: 600;
}
.marquee span.dot { color: var(--gold-400); padding: 0 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   About / Who we are
   ========================================================================== */
.about {
  padding: 130px 0 100px;
  background: var(--cream-50);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(251,249,244,0.94);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.about-badge .ico {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--forest-800);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 17px; color: var(--forest-900); }
.about-badge span { font-size: 13px; color: var(--ink-500); }

.about-body p { color: var(--ink-700); font-size: 16.5px; margin-top: 18px; line-height: 1.8; }
.about-body p:first-of-type { margin-top: 22px; }

.values-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.value-item { display: flex; gap: 14px; }
.value-item .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--forest-50);
  color: var(--forest-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-item strong { font-size: 15px; color: var(--forest-900); display: block; margin-bottom: 3px; }
.value-item p { font-size: 13.8px; color: var(--ink-500); margin: 0; line-height: 1.55; }

/* ==========================================================================
   Why Northeast section
   ========================================================================== */
.origin-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--forest-50) 0%, var(--cream-50) 100%);
}
.origin-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.origin-copy .section-sub { margin-top: 20px; }
.origin-facts { margin-top: 34px; display: grid; gap: 18px; }
.origin-fact { display: flex; gap: 14px; align-items: flex-start; }
.origin-fact .num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-600);
  font-weight: 700;
  min-width: 34px;
}
.origin-fact p { font-size: 14.5px; color: var(--ink-500); }
.origin-fact strong { color: var(--forest-900); }

.origin-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-100);
  box-shadow: var(--shadow-lg);
}
.origin-visual::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 90px;
  background: linear-gradient(180deg, var(--cream-100) 0%, rgba(245,240,228,0) 100%);
  z-index: 2;
}
.origin-visual img { width: 100%; display: block; }

/* ==========================================================================
   Regions
   ========================================================================== */
.regions {
  padding: 110px 0;
  background: var(--forest-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.regions::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(207,123,23,0.14) 0%, rgba(207,123,23,0) 70%);
  pointer-events: none;
}
.regions .eyebrow { color: var(--gold-300); }
.regions .eyebrow::before { background: var(--gold-300); }
.regions .section-title { color: var(--white); }
.regions .section-sub { color: rgba(255,255,255,0.68); }

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 10px;
}
.region-card {
  background: #0d3821;
  padding: 30px 26px;
  transition: background 0.4s ease, transform 0.4s ease;
  position: relative;
}
.region-card:hover { background: #124a2b; }
.region-card .pin {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-400);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.region-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--white);
  margin-bottom: 8px;
}
.region-card p { font-size: 13.5px; color: rgba(255,255,255,0.62); line-height: 1.6; }
.region-card .ladakh-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-300);
  border: 1px solid rgba(207,123,23,0.5);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ==========================================================================
   Products
   ========================================================================== */
.products { padding: 110px 0 100px; background: var(--cream-50); }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--cream-300);
  background: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--forest-600); color: var(--forest-800); }
.filter-btn.active { background: var(--forest-800); border-color: var(--forest-800); color: var(--white); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  opacity: 1;
}
.product-card.is-hidden { display: none; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.product-media { position: relative; aspect-ratio: 4/3.1; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(11,68,33,0.92);
  color: var(--gold-300);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.product-badge.alt { background: rgba(207,123,23,0.92); color: #2a1a02; }

.product-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-600); }
.product-body h3 { font-family: var(--font-display); font-size: 21px; color: var(--forest-900); margin-top: 8px; }
.product-origin { font-size: 13px; color: var(--ink-500); margin-top: 6px; display: flex; align-items: center; gap: 6px; }
.product-tagline { margin-top: 14px; font-size: 14px; color: var(--ink-700); line-height: 1.6; flex: 1; }

.product-more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--forest-800);
}
.product-more svg { transition: transform 0.3s ease; }
.product-card:hover .product-more svg { transform: translateX(4px); }

/* ==========================================================================
   Sourcing journey
   ========================================================================== */
.journey { padding: 110px 0; background: var(--forest-50); }
.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 30px;
}
.journey-track::before {
  content: "";
  position: absolute;
  top: 34px; left: 10%; right: 10%;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--gold-400) 0 8px, transparent 8px 16px);
}
.journey-step { position: relative; text-align: center; padding: 0 10px; }
.journey-step .circle {
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--cream-50);
  border: 1.5px solid var(--cream-300);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest-800);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}
.journey-step:hover .circle { background: var(--forest-800); color: var(--white); border-color: var(--forest-800); transform: translateY(-4px); }
.journey-step .idx {
  position: absolute; top: -6px; right: 26%;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-500); color: var(--white);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.journey-step h4 { font-family: var(--font-display); font-size: 16.5px; color: var(--forest-900); margin-bottom: 8px; }
.journey-step p { font-size: 13px; color: var(--ink-500); line-height: 1.55; }

/* ==========================================================================
   Quality / capabilities
   ========================================================================== */
.quality { padding: 110px 0; background: var(--cream-50); }
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.quality-card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color 0.3s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.quality-card:hover { border-color: var(--forest-600); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quality-card .ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--forest-50); color: var(--forest-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.quality-card h4 { font-family: var(--font-display); font-size: 16.5px; color: var(--forest-900); margin-bottom: 8px; }
.quality-card p { font-size: 13.5px; color: var(--ink-500); line-height: 1.6; }

/* ==========================================================================
   Partner / why us
   ========================================================================== */
.partner {
  padding: 110px 0;
  background: var(--forest-900);
  color: var(--white);
}
.partner .eyebrow { color: var(--gold-300); }
.partner .eyebrow::before { background: var(--gold-300); }
.partner .section-title { color: var(--white); }
.partner .section-sub { color: rgba(255,255,255,0.68); }

.partner-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 20px;
}
.partner-col h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-300);
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.partner-list { display: grid; gap: 20px; }
.partner-list li { display: flex; gap: 14px; align-items: flex-start; }
.partner-list .ico {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.partner-list strong { display: block; font-size: 15px; margin-bottom: 3px; }
.partner-list span { font-size: 13.5px; color: rgba(255,255,255,0.62); line-height: 1.55; }

/* ==========================================================================
   Certifications
   ========================================================================== */
.certs { padding: 90px 0; background: var(--cream-100); }
.certs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.cert-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--cream-300);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest-900);
  box-shadow: var(--shadow-sm);
}
.cert-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--forest-600); }
.certs-note { margin-top: 24px; font-size: 13.5px; color: var(--ink-500); }
.certs-note strong { color: var(--gold-700); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  padding: 120px 0;
  background: var(--forest-800);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(207,123,23,0.18), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(207,123,23,0.14), transparent 45%);
}
.contact-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.contact .eyebrow { color: var(--gold-300); justify-content: center; }
.contact .eyebrow::before { background: var(--gold-300); }
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 48px);
  margin-top: 18px;
  line-height: 1.15;
}
.contact-sub { margin-top: 20px; font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.contact-cta { margin-top: 40px; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.contact-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.contact-card .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(207,123,23,0.18); color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.contact-card h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.contact-card a, .contact-card p { font-size: 14.5px; color: var(--white); line-height: 1.6; word-break: break-word; }
.contact-card a:hover { color: var(--gold-300); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--forest-900); color: rgba(255,255,255,0.6); padding: 56px 0 28px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.footer-brand img { height: 38px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; max-width: 320px; line-height: 1.7; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 { color: var(--white); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; font-size: 13.8px; margin-bottom: 12px; color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--gold-300); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background 0.3s ease;
}
.footer-social a:hover { background: var(--gold-600); }

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 600;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform 0.3s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0; }
}

.back-top {
  position: fixed;
  bottom: 28px; right: 100px;
  z-index: 599;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--cream-300);
  color: var(--forest-800);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ==========================================================================
   Product Modal
   ========================================================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 25, 15, 0.6);
  backdrop-filter: blur(6px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }

.modal {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  max-width: 960px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.98);
  transition: transform 0.45s var(--ease);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 20px; right: 20px; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, background 0.3s ease;
}
.modal-close:hover { background: var(--white); transform: rotate(90deg); }

.modal-media { position: relative; aspect-ratio: 16/7; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,46,25,0.05) 40%, rgba(10,30,18,0.75) 100%);
}
.modal-media-caption {
  position: absolute; left: 34px; bottom: 22px; z-index: 2; color: var(--white);
}
.modal-media-caption .product-cat { color: var(--gold-300); }
.modal-media-caption h2 { font-family: var(--font-display); font-size: 30px; margin-top: 6px; }
.modal-media-caption .product-origin { color: rgba(255,255,255,0.75); }

.modal-body { padding: 34px 40px 42px; }
.modal-desc { font-size: 15.5px; color: var(--ink-700); line-height: 1.8; }
.modal-fact {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-100);
  color: var(--gold-800);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
}

.modal-cols {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.modal-col h5 {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 14px; font-weight: 700;
}
.modal-col ul { display: grid; gap: 10px; }
.modal-col li {
  font-size: 13.8px; color: var(--ink-700);
  display: flex; gap: 8px; align-items: flex-start; line-height: 1.5;
}
.modal-col li svg { flex-shrink: 0; margin-top: 3px; color: var(--forest-600); }

.spec-table {
  margin-top: 32px;
  background: var(--cream-200);
  border-radius: var(--radius-md);
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.spec-cell { padding: 16px 14px; }
.spec-cell h6 { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-700); margin-bottom: 6px; }
.spec-cell p { font-size: 13px; color: var(--forest-900); font-weight: 600; line-height: 1.4; }

.variant-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.variant-card { background: var(--white); border: 1px solid var(--cream-300); border-radius: var(--radius-md); padding: 22px; }
.variant-card h4 { font-family: var(--font-display); color: var(--forest-900); font-size: 17px; margin-bottom: 8px; }
.variant-card p { font-size: 13.5px; color: var(--ink-500); line-height: 1.6; }
.variant-card .tag {
  display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 700;
  color: var(--forest-700); background: var(--forest-50); padding: 5px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

.group-block { margin-top: 28px; padding-top: 26px; border-top: 1px dashed var(--cream-300); }
.group-block:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.group-block h4 { font-family: var(--font-display); font-size: 19px; color: var(--forest-900); margin-bottom: 4px; }
.group-block .group-origin { font-size: 12.5px; color: var(--gold-600); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.group-block p.desc { font-size: 14px; color: var(--ink-700); line-height: 1.7; }

.modal-enquire { margin-top: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: var(--forest-50); padding: 22px 26px; border-radius: var(--radius-md); }
.modal-enquire p { font-size: 14px; color: var(--forest-900); font-weight: 600; }

body.modal-open { overflow: hidden; }

/* ==========================================================================
   Products listing page
   ========================================================================== */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 70px;
  background: var(--forest-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; top: -30%; right: -10%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(207,123,23,0.16) 0%, rgba(207,123,23,0) 70%);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--gold-300); }
.page-hero .eyebrow::before { background: var(--gold-300); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  margin-top: 16px;
  max-width: 760px;
  line-height: 1.15;
}
.page-hero p.lead {
  margin-top: 20px;
  max-width: 640px;
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb span.sep { opacity: 0.5; }
.breadcrumb span.current { color: var(--gold-300); }

.listing-section { padding: 80px 0 110px; background: var(--cream-50); }

/* ==========================================================================
   Product detail page
   ========================================================================== */
.product-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-900);
}
.product-hero-bg { position: absolute; inset: 0; }
.product-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.product-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,26,15,0.55) 0%, rgba(8,26,15,0.25) 35%, rgba(6,20,12,0.88) 100%);
}
.product-hero-content {
  position: relative; z-index: 2;
  padding: calc(var(--header-h) + 40px) 0 44px;
  color: var(--white);
  width: 100%;
}
.product-hero-content .breadcrumb { margin-bottom: 22px; }
.product-hero-content .product-cat { color: var(--gold-300); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.product-hero-badges { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}
.hero-pill.gold { background: rgba(207,123,23,0.22); border-color: rgba(207,123,23,0.5); color: var(--gold-300); }

.product-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.08;
  margin-top: 16px;
  max-width: 820px;
}
.product-hero-tagline {
  margin-top: 16px;
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  line-height: 1.7;
}
.product-hero-meta { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.product-hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.product-hero-meta span.label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.product-hero-meta span.val { font-family: var(--font-display); font-size: 18px; color: var(--white); }

.product-body-section { padding: 90px 0; }
.product-body-section.alt { background: var(--forest-50); }
.product-body-section .container { max-width: 1080px; }

.two-col-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; }

.prose p { font-size: 16px; line-height: 1.85; color: var(--ink-700); margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--gold-500);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--forest-900);
  line-height: 1.6;
}

.side-card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.side-card + .side-card { margin-top: 20px; }
.side-card h5 { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; margin-bottom: 16px; }
.side-card dl { display: grid; gap: 12px; }
.side-card dl > div { display: flex; justify-content: space-between; gap: 14px; font-size: 13.8px; border-bottom: 1px dashed var(--cream-200); padding-bottom: 10px; }
.side-card dl > div:last-child { border-bottom: none; padding-bottom: 0; }
.side-card dl dt { color: var(--ink-500); }
.side-card dl dd { margin: 0; color: var(--forest-900); font-weight: 600; text-align: right; }

.gi-callout {
  background: linear-gradient(135deg, var(--forest-800), var(--forest-900));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.gi-callout .ico { width: 44px; height: 44px; border-radius: 50%; background: rgba(207,123,23,0.22); color: var(--gold-300); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gi-callout h4 { font-family: var(--font-display); font-size: 17px; margin-bottom: 8px; }
.gi-callout p { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.65; margin: 0; }
.gi-callout .gi-facts { display: flex; gap: 18px; margin-top: 12px; flex-wrap: wrap; }
.gi-callout .gi-facts div { font-size: 12px; color: rgba(255,255,255,0.55); }
.gi-callout .gi-facts strong { display: block; color: var(--gold-300); font-family: var(--font-display); font-size: 15px; }

.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 14px; display: block;
}
h3.block-title { font-family: var(--font-display); font-size: 26px; color: var(--forest-900); margin-bottom: 26px; }

.forms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.form-detail-card { background: var(--white); border: 1px solid var(--cream-200); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.form-detail-card .fdc-head { padding: 20px 24px; background: var(--forest-50); display: flex; justify-content: space-between; align-items: center; }
.form-detail-card .fdc-head h4 { font-family: var(--font-display); font-size: 18px; color: var(--forest-900); }
.form-detail-card .fdc-head span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold-600); }
.form-detail-card dl { padding: 20px 24px; display: grid; gap: 11px; }
.form-detail-card dl > div { display: flex; justify-content: space-between; gap: 12px; font-size: 13.3px; }
.form-detail-card dl dt { color: var(--ink-500); flex-shrink: 0; }
.form-detail-card dl dd { margin: 0; color: var(--forest-900); font-weight: 600; text-align: right; }
.form-detail-card p.fdc-note { padding: 0 24px 20px; font-size: 13.3px; color: var(--ink-500); line-height: 1.6; }

.data-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.data-table th, .data-table td { padding: 13px 20px; text-align: left; font-size: 13.8px; border-bottom: 1px solid var(--cream-200); }
.data-table thead th { background: var(--forest-800); color: var(--white); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:nth-child(even) { background: var(--cream-50); }
.data-table td.val { font-weight: 700; color: var(--forest-900); text-align: right; }
.table-scroll { overflow-x: auto; border-radius: var(--radius-md); }
.table-caption { font-size: 12.5px; color: var(--ink-500); margin-top: 10px; font-style: italic; }

.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: var(--forest-50); color: var(--forest-700); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 100px; border: 1px solid var(--forest-100); }

.two-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.check-list { display: grid; gap: 13px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-700); line-height: 1.6; }
.check-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--forest-600); }

.disclaimer-box {
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  font-size: 12.8px;
  color: var(--ink-500);
  line-height: 1.75;
}
.disclaimer-box strong { color: var(--ink-700); }

.page-cta-banner {
  margin-top: 0;
  background: var(--forest-800);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--white);
}
.page-cta-banner h4 { font-family: var(--font-display); font-size: 22px; margin-bottom: 6px; }
.page-cta-banner p { font-size: 14px; color: rgba(255,255,255,0.7); }

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-height: 840px) {
  .scroll-cue { display: none; }
}

@media (max-width: 1080px) {
  .about-grid, .origin-grid, .partner-columns { grid-template-columns: 1fr; }
  .about-visual { max-width: 480px; }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-track { grid-template-columns: repeat(3, 1fr); row-gap: 44px; }
  .journey-track::before { display: none; }
  .modal-cols { grid-template-columns: 1fr; gap: 20px; }
  .spec-table { grid-template-columns: repeat(3, 1fr); }
  .variant-grid { grid-template-columns: 1fr; }

  .two-col-layout { grid-template-columns: 1fr; gap: 36px; }
  .forms-grid { grid-template-columns: 1fr; }
  .two-list-grid { grid-template-columns: 1fr; gap: 36px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .product-hero-meta { row-gap: 20px; }
}

@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .main-nav, .header-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .region-grid, .quality-grid, .product-grid, .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .journey-track { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 40px; }
  .modal-body { padding: 26px 22px 30px; }
  .modal-media-caption { left: 20px; bottom: 16px; }
  .spec-table { grid-template-columns: repeat(2, 1fr); }
  .back-top { right: 24px; bottom: 100px; }
  .wa-float { width: 56px; height: 56px; bottom: 24px; right: 24px; }
  section, .about, .origin-section, .regions, .products, .journey, .quality, .partner, .certs, .contact { padding-top: 76px; padding-bottom: 76px; }

  .page-hero { padding-top: calc(var(--header-h) + 30px); padding-bottom: 50px; }
  .product-hero-content { padding-top: calc(var(--header-h) + 20px); }
  .product-hero-meta { gap: 18px; }
  .product-body-section { padding: 60px 0; }
  .related-grid { grid-template-columns: 1fr; }
  .data-table th, .data-table td { padding: 11px 14px; font-size: 13px; }
  .page-cta-banner { padding: 30px 26px; text-align: center; justify-content: center; }
  .page-cta-banner > div { width: 100%; }
  .gi-callout { flex-direction: column; }
  .breadcrumb { font-size: 12px; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--forest-900);
  z-index: 800;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav .btn { margin-top: 30px; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
