/* ============================================================
   BIDAN EXPORT, Futuristic Premium Design System
   Typography: Montserrat  |  Brand Palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* --- CSS Variables (Brand Tokens) --- */
:root {
  /* Brand Palette */
  --forest-green: #1C4F33;
  --mid-green: #2E6B47;
  --deep-green: #0D1F15;
  --warm-gold: #A8874A;
  --warm-parchment: #E8DEC8;
  --white: #FFFFFF;
  --paper-white: #F4F7F5;
  --pale-green: #E6EFE8;
  --sage: #9DB8A3;
  --charcoal: #2C2C2A;
  --grey-green: #617A68;

  /* Futuristic accents */
  --glow-green: rgba(46, 107, 71, 0.35);
  --glow-gold: rgba(168, 135, 74, 0.25);
  --glass-bg: rgba(28, 79, 51, 0.04);
  --glass-border: rgba(28, 79, 51, 0.08);

  /* Typography, Montserrat */
  --font-heading: 'Montserrat', -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', -apple-system, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding-y: 130px;
  --container-width: 1200px;
  --container-px: 48px;

  /* Transitions */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out-quart);
  --transition-base: 0.4s var(--ease-out-quart);
  --transition-smooth: 0.6s var(--ease-out-expo);
  --transition-slow: 0.9s var(--ease-out-expo);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--charcoal);
  background-color: var(--paper-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

ul {
  list-style: none;
}

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


/* ============================================================
   TYPOGRAPHY, Montserrat
   ============================================================ */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest-green);
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
  font-weight: 400;
}

/* Eyebrow label */
.section-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-left: 36px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--warm-gold);
}

/* On light sections, label line inherits gold */
.who-we-are .section-label,
.supply-chain .section-label,
.certifications .section-label,
.markets .section-label {
  color: var(--warm-gold);
}

.caption {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--grey-green);
}


/* ============================================================
   BUTTONS, Futuristic
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Sweep effect */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-smooth);
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Primary */
.btn-primary {
  background-color: var(--forest-green);
  color: var(--white);
  border-color: var(--forest-green);
}

.btn-primary::before {
  background-color: var(--mid-green);
}

.btn-primary:hover {
  border-color: var(--mid-green);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--glow-green);
}

/* Secondary */
.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-secondary::before {
  background-color: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

/* CTA on dark */
.btn-cta {
  background-color: var(--forest-green);
  color: var(--white);
  border-color: var(--forest-green);
}

.btn-cta::before {
  background-color: var(--mid-green);
}

.btn-cta:hover {
  border-color: var(--mid-green);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--glow-green);
}

/* Outline dark */
.btn-outline-dark {
  background-color: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-outline-dark::before {
  background-color: var(--forest-green);
}

.btn-outline-dark:hover {
  color: var(--white);
  border-color: var(--forest-green);
  transform: translateY(-3px);
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-out-expo),
    transform 1s var(--ease-out-expo);
  will-change: opacity, transform;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-left"] {
  transform: translateX(-60px);
}

[data-animate="fade-left"].is-visible {
  transform: translateX(0);
}

[data-animate="fade-right"] {
  transform: translateX(60px);
}

[data-animate="fade-right"].is-visible {
  transform: translateX(0);
}

[data-animate="fade-up-scale"] {
  transform: translateY(50px) scale(0.95);
}

[data-animate="fade-up-scale"].is-visible {
  transform: translateY(0) scale(1);
}

[data-animate="zoom-in"] {
  transform: scale(0.9);
  opacity: 0;
}

[data-animate="zoom-in"].is-visible {
  transform: scale(1);
  opacity: 1;
}

/* Stagger delays */
[data-animate-delay="1"] {
  transition-delay: 0.1s;
}

[data-animate-delay="2"] {
  transition-delay: 0.2s;
}

[data-animate-delay="3"] {
  transition-delay: 0.3s;
}

[data-animate-delay="4"] {
  transition-delay: 0.4s;
}

[data-animate-delay="5"] {
  transition-delay: 0.5s;
}


/* ============================================================
   NAVIGATION, Glassmorphic
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color var(--transition-smooth),
    box-shadow var(--transition-smooth),
    backdrop-filter var(--transition-smooth);
}

.site-header.scrolled {
  background-color: rgba(13, 31, 21, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(157, 184, 163, 0.1),
    0 8px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: height var(--transition-base);
}

.site-header.scrolled .nav-container {
  height: 64px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  height: 54px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: height var(--transition-base), filter var(--transition-base);
}

/* .site-header .nav-logo img {
  filter: brightness(0) invert(1);
} */

.site-header.scrolled .nav-logo img {
  height: 38px;
  filter: brightness(0) invert(1);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.8px;
  position: relative;
  padding: 6px 0;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--warm-gold), var(--sage));
  transition: width var(--transition-base);
  border-radius: 2px;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 20px;
}

.nav-cta .btn {
  padding: 10px 28px;
  font-size: 0.7rem;
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 100px;
}

.nav-cta .btn:hover {
  background-color: var(--white);
  color: var(--forest-green);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.hamburger span {
  width: 26px;
  height: 1.5px;
  background-color: var(--white);
  transition: all var(--transition-base);
  display: block;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5.5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5.5px);
}


/* ============================================================
   HERO SECTION, Cinematic
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--deep-green);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 20s linear;
  filter: saturate(0.85);
}

.hero.loaded .hero-bg img {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(160deg,
      rgba(13, 31, 21, 0.95) 0%,
      rgba(28, 79, 51, 0.75) 40%,
      rgba(13, 31, 21, 0.6) 100%);
}

/* Subtle animated grain texture */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Gold accent line */
.hero-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
  z-index: 4;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 200px var(--container-px) 160px;
  color: var(--white);
}

.hero-content .section-label {
  color: var(--warm-gold);
  font-size: 0.6875rem;
  letter-spacing: 5px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out-expo) 0.3s forwards;
}

.hero-content .section-label::before {
  background: var(--warm-gold);
}

.hero h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.5s forwards;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(157, 184, 163, 0.85);
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.9s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating orb decoration */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 8%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 135, 74, 0.08) 0%, transparent 70%);
  z-index: 2;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-20px, -30px);
  }
}


/* ============================================================
   STAT BAR, Glassmorphic
   ============================================================ */
.stat-bar {
  background-color: var(--deep-green);
  padding: 72px 0;
  position: relative;
}

.stat-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168, 135, 74, 0.3), transparent);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 28px 20px;
  position: relative;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(168, 135, 74, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-number::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--warm-gold), transparent);
  margin: 0 auto 14px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.stat-sublabel {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--warm-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}


/* ============================================================
   WHO WE ARE / OUR FOUNDATION
   ============================================================ */
.who-we-are {
  padding: var(--section-padding-y) 0;
  background-color: var(--white);
  position: relative;
}

/* Decorative geometric accent */
.who-we-are::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 60px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(28, 79, 51, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.who-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.who-content h2 {
  margin-bottom: 32px;
}

.who-text-block {
  margin-top: 0;
}

.who-text-block p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 20px;
  font-weight: 400;
}

.who-text-block p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   THE PRODUCT / OUR FRUIT
   ============================================================ */
.the-product {
  padding: var(--section-padding-y) 0;
  background-color: var(--forest-green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Decorative orbs */
.the-product::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 135, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.the-product::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(157, 184, 163, 0.06);
  pointer-events: none;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.product-text .section-label {
  color: var(--warm-gold);
}

.product-text .section-label::before {
  background: var(--warm-gold);
}

.product-text h2 {
  color: var(--white);
  margin-bottom: 28px;
}

.product-text p {
  color: rgba(157, 184, 163, 0.85);
  margin-bottom: 16px;
  font-weight: 400;
}

.product-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  position: relative;
}

.product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2;
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.product-image:hover img {
  transform: scale(1.04);
}


/* ============================================================
   HOW WE WORK
   ============================================================ */
.supply-chain {
  padding: var(--section-padding-y) 0;
  background-color: var(--white);
  position: relative;
}

.supply-chain .section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 72px;
}

.supply-chain .section-header h2 {
  margin-bottom: 16px;
}

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

.supply-card {
  padding: 48px 36px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
  position: relative;
  background: var(--glass-bg);
  overflow: hidden;
}

/* Top gradient line on hover */
.supply-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--forest-green), var(--warm-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.supply-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(28, 79, 51, 0.08);
  border-color: rgba(28, 79, 51, 0.12);
  background: var(--white);
}

.supply-card:hover::before {
  transform: scaleX(1);
}

.supply-card h3 {
  margin-bottom: 16px;
  color: var(--forest-green);
}

.supply-card p {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.8;
  font-weight: 400;
}


/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certifications {
  padding: var(--section-padding-y) 0;
  background-color: var(--paper-white);
  position: relative;
}

.cert-header {
  text-align: center;
  margin-bottom: 64px;
}

.cert-header .section-label::before {
  background: var(--warm-gold);
}

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

.cert-card {
  text-align: center;
  padding: 48px 32px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(28, 79, 51, 0.08);
  border-color: rgba(168, 135, 74, 0.2);
}

.cert-logo-container {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.cert-logo {
  max-width: 100%;
  height: auto;
}

.cert-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--forest-green);
}

.cert-card p {
  font-size: 0.88rem;
  color: var(--grey-green);
  line-height: 1.75;
  margin-bottom: auto;
  font-weight: 400;
}

.cert-footer-note {
  text-align: center;
  margin-top: 56px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
}

.cert-footer-note a {
  color: var(--forest-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.cert-footer-note a:hover {
  color: var(--mid-green);
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: var(--section-padding-y) 0;
  background-color: var(--white);
}

.gallery-header {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 64px;
}

.gallery-header .section-label::before {
  background: var(--warm-gold);
}

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

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo),
    filter 0.5s var(--ease-out-expo);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.8);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 31, 21, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transform: translateY(10px);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}


/* ============================================================
   MARKETS
   ============================================================ */
.markets {
  padding: var(--section-padding-y) 0;
  background-color: var(--paper-white);
}

.markets-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.markets-header .section-label::before {
  background: var(--warm-gold);
}

.markets-header h2 {
  margin-bottom: 16px;
}

.markets-header p {
  color: var(--grey-green);
  font-weight: 400;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.market-tag {
  padding: 16px 32px;
  background-color: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: default;
}

.market-tag:hover {
  border-color: var(--forest-green);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(28, 79, 51, 0.06);
}

.market-tag.primary {
  background-color: var(--forest-green);
  color: var(--white);
  border-color: var(--forest-green);
}

.market-tag.primary:hover {
  background-color: var(--mid-green);
  box-shadow: 0 12px 30px var(--glow-green);
}

.market-tag .tag-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.15);
  padding: 3px 10px;
  border-radius: 100px;
}


/* ============================================================
   CONTACT SECTION, Direct Contact Only
   ============================================================ */
.contact-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--white);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(28, 79, 51, 0.1), transparent);
}

.contact-centered {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-centered h2 {
  margin-bottom: 16px;
}

.contact-centered>p {
  color: var(--grey-green);
  font-size: 1.05rem;
  margin-bottom: 48px;
  font-weight: 400;
}

.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 48px;
  border-radius: var(--radius-xl);
  text-align: left;
}

.contact-info-card h3 {
  color: var(--forest-green);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.contact-info-card>p {
  color: var(--grey-green);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
}

.info-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}

.info-link-item:hover {
  border-color: var(--forest-green);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(28, 79, 51, 0.06);
}

.info-link-item .icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pale-green);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.info-details {
  display: flex;
  flex-direction: column;
}

.info-details .label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--grey-green);
  letter-spacing: 1px;
}

.info-details .val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-green);
}


/* ============================================================
   FOOTER, Deep Green
   ============================================================ */
.site-footer {
  background-color: var(--deep-green);
  padding: 72px 0 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168, 135, 74, 0.2), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand .nav-logo img {
  /* filter: brightness(0) invert(1); */
  height: 36px;
}

.footer-brand p {
  color: rgba(157, 184, 163, 0.7);
  font-size: 0.875rem;
  max-width: 300px;
  font-weight: 400;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--warm-gold);
  margin-bottom: 24px;
}

.footer-address {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(157, 184, 163, 0.7);
  line-height: 1.7;
  font-style: normal;
  font-weight: 400;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-list a {
  color: rgba(157, 184, 163, 0.7);
  font-size: 0.82rem;
  font-weight: 400;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a,
.footer-contact span {
  display: block;
  color: rgba(157, 184, 163, 0.7);
  font-size: 0.82rem;
  font-weight: 400;
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 28px 0 36px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(157, 184, 163, 0.4);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 400;
}

.footer-bottom .footer-cert-status {
  color: rgba(157, 184, 163, 0.5);
}

.footer-bottom .footer-legal-links {
  margin-top: 12px;
  color: rgba(157, 184, 163, 0.5);
}

.footer-bottom .footer-legal-links a {
  color: rgba(157, 184, 163, 0.5);
  text-decoration: none;
  margin: 0 8px;
  transition: color var(--transition-fast);
}

.footer-bottom .footer-legal-links a:hover {
  color: var(--white);
}


/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background-color: rgba(13, 31, 21, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast), transform var(--transition-fast);
  transform: translateY(20px);
  opacity: 0;
  letter-spacing: -0.01em;
}

.mobile-nav.active a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav.active a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav.active a:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-nav.active a:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-nav.active a:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-nav.active a:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-nav.active a:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-nav a:hover {
  color: var(--warm-gold);
  transform: translateX(6px);
}


/* ============================================================
   RESPONSIVE, TABLET
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding-y: 100px;
    --container-px: 36px;
  }

  .who-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .supply-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-y: 80px;
    --container-px: 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    height: 60px;
    padding: 0 24px;
  }

  .site-header.scrolled .nav-container {
    height: 56px;
  }

  .hero-content {
    padding: 140px 24px 100px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero::after {
    display: none;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .supply-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-brand .nav-logo {
    justify-content: center;
  }

  .market-tags {
    justify-content: center;
  }

  .info-links {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 32px 24px;
  }
}

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

  .btn {
    padding: 14px 28px;
    font-size: 0.75rem;
    width: 100%;
    justify-content: center;
  }

  .market-tag {
    padding: 14px 20px;
    font-size: 0.82rem;
  }

  .contact-centered {
    text-align: left;
  }
}