/* ============================================================
   SHREERAMEXIM — DESIGN SYSTEM
   Golden Harvest Premium | 21st.dev Inspired
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --gold:          #C9A84C;
  --gold-light:    #F0D080;
  --gold-dark:     #9A7830;
  --gold-glow:     rgba(201,168,76,0.35);
  --deep-green:    #0D2818;
  --forest:        #1A3A2A;
  --forest-mid:    #22482F;
  --earth:         #8B5E3C;
  --cream:         #FAF6EE;
  --cream-dark:    #F0EAD8;
  --white:         #FFFFFF;
  --glass:         rgba(255,255,255,0.055);
  --glass-mid:     rgba(255,255,255,0.09);
  --glass-border:  rgba(201,168,76,0.22);
  --glass-hover:   rgba(201,168,76,0.12);
  --text-dark:     #1C1C1C;
  --text-mid:      #3D3D3D;
  --text-muted-dark: #6B6B6B;
  --text-light:    #F5F0E8;
  --text-muted:    rgba(245,240,232,0.62);
  --shadow-gold:   0 8px 40px rgba(201,168,76,0.25);
  --shadow-card:   0 4px 32px rgba(0,0,0,0.35);
  --shadow-hover:  0 16px 60px rgba(0,0,0,0.5);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     36px;
  --nav-h:         76px;
  --transition:    cubic-bezier(0.16,1,0.3,1);
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── Utility ── */
.container { width: 90%; max-width: 1240px; margin: 0 auto; }
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dark-section { background: var(--deep-green); }
.forest-section { background: var(--forest); }
.cream-section { background: var(--cream); }

/* ============================================================
   PAGE LOADER & CURTAINS
   ============================================================ */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #041009;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
  overflow: hidden;
}
#loader-curtain {
  position: fixed; inset: 0; z-index: 9998;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(100%);
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
  pointer-events: none;
}
body.loader-loaded #page-loader {
  transform: translateY(-100%);
}
body.loader-loaded #loader-curtain {
  transform: translateY(-100%);
  transition-delay: 0.08s;
}

/* Background Aurora for Loader */
.loader-bg-aurora {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(13,40,24,0.8), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(201,168,76,0.06), transparent 70%);
  z-index: 1;
}
.loader-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  z-index: 2;
  opacity: 0.7;
}
.loader-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.5s var(--transition);
}
body.loader-loaded .loader-content {
  opacity: 0;
}
.loader-logo-ring {
  width: 96px; height: 96px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.loader-logo-ring::before {
  content: ''; position: absolute; inset: 0;
  border: 2px solid rgba(201,168,76,0.08);
  border-radius: 50%;
}
.loader-logo-ring::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold-light);
  border-radius: 50%;
  animation: loaderSpin 1.2s cubic-bezier(0.5, 0.1, 0.5, 0.9) infinite;
}
@keyframes loaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.loader-logo-initial {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 0 20px var(--gold-glow);
  animation: loaderScale 2s ease-in-out infinite;
}
@keyframes loaderScale {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}
.loader-logo-text {
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 700;
  color: var(--white);
  margin-top: 14px; margin-bottom: 4px;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--white) 30%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.loader-sub {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 34px;
}
.loader-progress-wrap {
  width: 160px; height: 2px;
  background: rgba(201,168,76,0.12);
  border-radius: 2px; overflow: hidden;
  position: relative; margin-bottom: 12px;
}
.loader-progress-fill {
  position: absolute; top: 0; left: 0;
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transition: width 0.05s linear;
}
.loader-counter {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  color: rgba(245,240,232,0.65);
  letter-spacing: 0.05em;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--transition), backdrop-filter 0.4s, box-shadow 0.4s;
}
#navbar.scrolled,
body.inner-page #navbar {
  background: rgba(13,40,24,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15), 0 8px 40px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%;
  transition: padding 0.4s var(--transition);
}
#navbar.scrolled .nav-inner {
  padding: 12px 5%;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1.15;
  padding: 2px 0;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}
.nav-logo-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links {
  display: flex; align-items: center; gap: 38px;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-light);
  position: relative; padding-bottom: 4px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.35s var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--deep-green) !important;
  font-weight: 700; font-size: 13px;
  padding: 10px 22px; border-radius: 50px;
  transition: transform 0.25s var(--transition), box-shadow 0.25s;
  white-space: nowrap;
}
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,168,76,0.4); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--gold-light);
  transition: transform 0.35s var(--transition), opacity 0.25s, width 0.3s;
}
.nav-hamburger span:nth-child(2) { width: 70%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu — hidden on desktop, slides in on mobile */
.nav-mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(13,40,24,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border);
  padding: 28px 5% 40px;
  transform: translateY(-110%);
  transition: transform 0.45s var(--transition);
  z-index: 999;
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a {
  display: block; padding: 14px 0;
  font-size: 18px; font-weight: 500;
  color: var(--text-light);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: color 0.25s, padding-left 0.25s;
}
.nav-mobile a:hover { color: var(--gold-light); padding-left: 8px; }
.nav-mobile .nav-cta {
  display: inline-flex; margin-top: 24px;
  font-size: 15px; padding: 13px 28px;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/hero-bg.png');
  background-size: cover; background-position: center;
  transform: scale(1.1);
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,40,24,0.92) 0%,
    rgba(13,40,24,0.75) 40%,
    rgba(13,40,24,0.55) 70%,
    rgba(13,40,24,0.82) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.045;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 180px;
  pointer-events: none;
}
.hero-spotlight {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 65% 55% at 50% 45%, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 90%; max-width: 1240px; margin: 0 auto;
  padding-top: var(--nav-h);
}
.hero-overline {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 26px;
}
.hero-overline::before {
  content: ''; display: block;
  width: 32px; height: 1.5px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 800; line-height: 1.06;
  color: var(--text-light);
  max-width: 820px;
  margin-bottom: 28px;
}
.hero-title .line-gold {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}
@keyframes gradientShift {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 400; line-height: 1.75;
  color: var(--text-muted);
  max-width: 540px; margin-bottom: 46px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--deep-green);
  font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  padding: 16px 34px; border-radius: 50px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201,168,76,0.45); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text-light);
  font-weight: 600; font-size: 14px;
  padding: 15px 30px; border-radius: 50px;
  border: 1.5px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}
.btn-secondary svg { width: 16px; height: 16px; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.hero-scroll-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
}
.hero-scroll-line {
  width: 1.5px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--forest);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  overflow: hidden; padding: 18px 0;
}
.trust-bar-track {
  display: flex; gap: 60px; align-items: center;
  animation: marqueeLTR 22s linear infinite;
  width: max-content;
}
.trust-bar-track:hover { animation-play-state: paused; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(201,168,76,0.75);
  white-space: nowrap;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
@keyframes marqueeLTR {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.left { text-align: left; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700; line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.section-title.light { color: var(--text-light); }
.section-desc {
  font-size: 17px; line-height: 1.75;
  color: var(--text-muted-dark); max-width: 560px;
  margin: 0 auto;
}
.section-desc.light { color: var(--text-muted); }
.section-desc.left { margin: 0; }
.section-divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px; margin: 20px auto 0;
}
.section-divider.left { margin: 20px 0 0; }

/* ============================================================
   PRODUCT TEASER CARDS (Home)
   ============================================================ */
.products-teaser { padding: 100px 0; background: var(--cream); }
.products-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.product-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  min-height: 480px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.5s var(--transition), box-shadow 0.5s;
  box-shadow: var(--shadow-card);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.7s var(--transition);
}
.product-card:hover .product-card-img { transform: scale(1.06); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,40,24,0.94) 0%, rgba(13,40,24,0.4) 55%, transparent 100%);
}
.product-card-glow {
  position: absolute; inset: 0;
  border: 1.5px solid transparent;
  border-radius: var(--radius-lg);
  background: linear-gradient(var(--deep-green), var(--deep-green)) padding-box,
              linear-gradient(135deg, var(--gold), transparent 60%, var(--gold)) border-box;
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card:hover .product-card-glow { opacity: 1; }
.product-card-content {
  position: relative; z-index: 2;
  padding: 40px;
}
.product-card-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; display: block;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  color: var(--text-light); margin-bottom: 12px; line-height: 1.2;
}
.product-card-desc {
  font-size: 15px; line-height: 1.7;
  color: var(--text-muted); margin-bottom: 26px; max-width: 340px;
}
.product-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--gold-light); letter-spacing: 0.05em;
  transition: gap 0.3s var(--transition);
}
.product-card:hover .product-card-link { gap: 14px; }
.product-card-link svg { width: 18px; height: 18px; }

/* ============================================================
   BENTO GRID — WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 100px 0;
  background: var(--deep-green);
  position: relative;
  overflow: hidden;
}
.bento-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.015) 1.5px, transparent 1.5px),
                    linear-gradient(90deg, rgba(201,168,76,0.015) 1.5px, transparent 1.5px);
  background-size: 60px 60px;
  background-position: center top;
  pointer-events: none;
  z-index: 1;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.bento-card {
  position: relative;
  background: rgba(13, 40, 24, 0.45);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.4s var(--transition), border-color 0.3s;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.bento-card.col-span-2 {
  grid-column: span 2;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.4);
}
.bento-inner {
  position: relative;
  z-index: 3;
  padding: 38px;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Border Beam Laser */
.border-beam {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(var(--deep-green), var(--deep-green)) padding-box,
              conic-gradient(from var(--angle, 0deg), transparent 60%, var(--gold-light), var(--gold), transparent 90%) border-box;
  animation: borderBeamRotate 6s linear infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.bento-card:hover .border-beam {
  opacity: 1;
}
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes borderBeamRotate {
  0% { --angle: 0deg; }
  100% { --angle: 360deg; }
}

/* Card Glow Overlay */
.bento-bg-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle 300px at var(--mx, 50%) var(--my, 50%), rgba(201, 168, 76, 0.08) 0%, transparent 80%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.bento-card:hover .bento-bg-glow {
  opacity: 1;
}

/* Bento Card Details */
.bento-icon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  width: 100%;
}
.bento-icon {
  width: 52px; height: 52px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 22px;
}
.bento-icon-header .bento-icon {
  margin-bottom: 0;
}
.bento-icon svg { width: 24px; height: 24px; }
.bento-tag {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.15);
  padding: 6px 14px; border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.bento-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--text-light); margin-bottom: 12px;
}
.bento-text {
  font-size: 14.5px; line-height: 1.7;
  color: var(--text-muted); margin-bottom: 24px;
}

/* Bento Visual Elements */
.bento-visual-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto;
}
.v-badge {
  font-size: 11px; font-weight: 600;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 8px 16px; border-radius: var(--radius-sm);
}

/* Timeline Graphic */
.bento-timeline-graphic {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; background: rgba(0,0,0,0.18);
  padding: 14px 20px; border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 168, 76, 0.08);
}
.timeline-step {
  display: flex; flex-direction: column; align-items: center;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: rgba(245,240,232,0.4);
}
.timeline-step.active {
  color: var(--gold-light);
}
.timeline-step::before {
  content: ''; display: block; width: 8px; height: 8px;
  border-radius: 50%; background: rgba(245,240,232,0.2);
  margin-bottom: 6px;
}
.timeline-step.active::before {
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold);
}
.timeline-arrow {
  flex-grow: 1; height: 1px;
  background: rgba(245,240,232,0.1);
  margin: -12px 10px 0;
}
.timeline-step.active + .timeline-arrow {
  background: var(--gold);
}

/* Stats Highlight */
.bento-count-highlight {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800;
  color: var(--gold-light); margin-top: auto;
  display: flex; align-items: baseline; gap: 8px;
}
.bento-count-highlight span {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Spec list */
.bento-spec-list {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: auto; background: rgba(0,0,0,0.18);
  padding: 14px 20px; border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 168, 76, 0.08);
}
.spec-item {
  font-size: 12px; color: var(--text-muted);
}
.spec-item strong { color: var(--gold-light); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { padding: 90px 0; background: var(--forest); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
}
.stat-item {
  padding: 48px 32px; text-align: center;
  border-right: 1px solid rgba(201,168,76,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px); font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 12px; display: block;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px); font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

/* Retro Testimonials Carousel */
.retro-carousel-container {
  width: 100%;
  margin-top: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
}
.retro-carousel-container::-webkit-scrollbar {
  display: none;
}
.retro-carousel-track {
  display: flex;
  gap: 24px;
  padding: 10px 12px 20px;
  width: max-content;
}

.retro-card {
  flex: 0 0 320px;
  width: 320px;
  height: 500px;
  border-radius: 24px;
  background: linear-gradient(to bottom, #f2f0eb, #fff9eb);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05), 0 2px 6px rgba(0,0,0,0.03);
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
  outline: none;
  cursor: pointer;
  border: 1px solid rgba(75, 63, 51, 0.08);
  transform-style: preserve-3d;
  perspective: 1000px;
  text-align: center;
}
@media (min-width: 768px) {
  .retro-card {
    flex: 0 0 384px;
    width: 384px;
    height: 550px;
  }
}

.retro-card:hover {
  transform: translateY(-8px) scale(1.02) rotate(1.5deg);
  box-shadow: 0 20px 50px rgba(75, 63, 51, 0.12);
}

.retro-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  position: relative;
  z-index: 10;
}

.retro-card-bg {
  position: absolute;
  inset: -1px 0 0;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

.retro-profile-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(59, 59, 59, 0.5);
  overflow: hidden;
  filter: saturate(0.2) sepia(0.46);
  opacity: 0.8;
  flex-shrink: 0;
  transition: transform 0.4s var(--transition), filter 0.4s, border-color 0.4s;
  z-index: 2;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .retro-profile-wrap {
    width: 150px;
    height: 150px;
  }
}
.retro-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.retro-card:hover .retro-profile-wrap {
  transform: scale(1.06);
  filter: saturate(0.5) sepia(0.2);
  border-color: var(--gold);
}

.retro-card-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: rgba(31, 27, 29, 0.72);
  line-height: 1.55;
  margin-bottom: 24px;
  text-transform: lowercase;
  padding: 0 10px;
  z-index: 2;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .retro-card-text {
    font-size: 22px;
  }
}

.retro-card-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: rgba(31, 27, 29, 0.7);
  margin-bottom: 6px;
  text-transform: lowercase;
  z-index: 2;
}
@media (min-width: 768px) {
  .retro-card-name {
    font-size: 24px;
  }
}

.retro-card-role {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  color: rgba(31, 27, 29, 0.6);
  text-transform: lowercase;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
  z-index: 2;
}

/* Testimonials Navigation Controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  padding-right: 12px;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #4b3f33;
  color: #f2f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, opacity 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
  outline: none;
}
.testimonial-btn:hover:not(:disabled) {
  background: #655444;
  transform: scale(1.05);
}
.testimonial-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.testimonial-btn svg {
  width: 18px;
  height: 18px;
}

/* Retro Modal Lightbox */
.retro-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--transition);
}
.retro-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.retro-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 40, 24, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.retro-modal-container {
  width: 90%;
  max-width: 960px;
  height: auto;
  max-height: 85vh;
  border-radius: 32px;
  background: linear-gradient(to bottom, #f2f0eb, #fff9eb);
  position: relative;
  z-index: 10;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateY(30px);
  transition: transform 0.4s var(--transition);
}
.retro-modal.open .retro-modal-container {
  transform: translateY(0);
}
.retro-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4b3f33;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  z-index: 20;
  cursor: pointer;
  border: none;
}
.retro-modal-close:hover {
  background: #655444;
  transform: scale(1.08);
}
.retro-modal-close svg {
  width: 18px;
  height: 18px;
}
.retro-modal-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.retro-modal-role {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: rgba(31, 27, 29, 0.7);
  text-decoration: underline;
  text-underline-offset: 8px;
  margin-bottom: 20px;
  padding-left: 0;
}
@media (min-width: 768px) {
  .retro-modal-role {
    padding-left: 80px;
    font-size: 18px;
  }
}
.retro-modal-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: rgba(31, 27, 29, 0.8);
  text-transform: lowercase;
  margin-bottom: 24px;
  padding-left: 0;
}
@media (min-width: 768px) {
  .retro-modal-name {
    padding-left: 80px;
    font-size: 36px;
  }
}
.retro-modal-body {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(31, 27, 29, 0.85);
  text-transform: lowercase;
  position: relative;
  padding-left: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .retro-modal-body {
    padding-left: 80px;
    font-size: 28px;
  }
}
.retro-modal-quote {
  width: 24px;
  height: 24px;
  color: rgba(31, 27, 29, 0.5);
  margin-bottom: 16px;
  display: block;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 100px 0; background: var(--deep-green);
  position: relative; overflow: hidden; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px); font-weight: 800;
  color: var(--text-light); max-width: 700px; margin: 0 auto 22px;
  line-height: 1.15;
}
.cta-banner-desc {
  font-size: 17px; color: var(--text-muted);
  max-width: 480px; margin: 0 auto 42px; line-height: 1.7;
}
.cta-banner-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative; padding: 170px 0 100px;
  background: var(--deep-green); overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--page-hero-img);
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,40,24,0.6) 0%, rgba(13,40,24,0.95) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px); font-weight: 800;
  color: var(--text-light); margin-bottom: 18px; line-height: 1.1;
}
.page-hero-desc {
  font-size: 17px; color: var(--text-muted);
  max-width: 540px; margin: 0 auto; line-height: 1.75;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 20px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { color: rgba(201,168,76,0.4); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { padding: 100px 0; background: var(--cream); }
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-img-wrap img { width: 100%; height: 520px; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: rgba(13,40,24,0.92); backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); padding: 18px 24px;
}
.about-img-badge-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; line-height: 1;
}
.about-img-badge-text {
  font-size: 12px; font-weight: 600; color: var(--text-muted); margin-top: 4px;
}
.about-text-wrap .section-header { text-align: left; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.about-feature { display: flex; align-items: flex-start; gap: 16px; }
.about-feature-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.about-feature-icon svg { width: 20px; height: 20px; }
.about-feature h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.about-feature p { font-size: 14px; line-height: 1.6; color: var(--text-muted-dark); }

/* Timeline */
.timeline-section { padding: 80px 0; background: var(--forest); }
.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute;
  left: 50%; top: 0; bottom: 0; width: 1.5px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex; gap: 48px; align-items: flex-start; margin-bottom: 60px;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-side { flex: 1; }
.timeline-item:nth-child(odd) .timeline-side { text-align: right; }
.timeline-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--forest);
  outline: 1px solid var(--gold);
  flex-shrink: 0; margin-top: 6px;
  position: relative; z-index: 1;
}
.timeline-year {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  color: var(--gold); margin-bottom: 6px;
}
.timeline-h { font-size: 17px; font-weight: 600; color: var(--text-light); margin-bottom: 8px; }
.timeline-p { font-size: 14px; line-height: 1.7; color: var(--text-muted); }

/* Mission / Vision */
.mission-section { padding: 100px 0; background: var(--cream); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mission-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg); padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.4s var(--transition), box-shadow 0.4s;
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.mission-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--deep-green), var(--forest));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 24px;
}
.mission-icon svg { width: 26px; height: 26px; }
.mission-card h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 14px;
}
.mission-card p { font-size: 15.5px; line-height: 1.8; color: var(--text-mid); }

/* Certifications */
.cert-section { padding: 80px 0; background: var(--forest); }
.cert-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.cert-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 28px 32px; min-width: 140px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); text-align: center;
  transition: transform 0.3s var(--transition), background 0.3s;
}
.cert-badge:hover { transform: translateY(-3px); background: var(--glass-mid); }
.cert-badge svg { width: 32px; height: 32px; color: var(--gold); }
.cert-badge span { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--text-muted); }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-section { padding: 100px 0; }
.product-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 100px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 50px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.08);
  box-shadow: 0 10px 40px rgba(75, 63, 51, 0.03);
  transition: border-color 0.4s, transform 0.4s var(--transition);
}
.product-feature:hover {
  border-color: rgba(201, 168, 76, 0.22);
}
.product-feature .spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 0px) var(--my, 0px), rgba(201,168,76,0.05), transparent 80%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--transition);
  z-index: 1;
}
.product-feature:hover .spotlight {
  opacity: 1;
}
.product-feature:nth-child(even) { direction: rtl; }
.product-feature:nth-child(even) > * { direction: ltr; }

.product-feature-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); position: relative;
  transition: transform 0.5s var(--transition);
  z-index: 2;
}
.product-feature-img img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.6s var(--transition); }
.product-feature-img:hover {
  transform: scale(1.015);
}
.product-feature-img:hover img {
  transform: scale(1.04);
}
.product-feature-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,40,24,0.25) 0%, transparent 60%);
}

.product-varieties { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-top: 24px; }
.variety-chip {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 50px; padding: 10px 16px;
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.variety-chip:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.variety-chip::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  box-shadow: 0 0 6px var(--gold);
  animation: chipPulse 2.5s infinite ease-in-out;
}
@keyframes chipPulse {
  0% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 10px var(--gold); }
  100% { transform: scale(1); opacity: 0.75; }
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
@media (max-width: 576px) {
  .product-specs-grid {
    grid-template-columns: 1fr;
  }
}
.spec-grid-item {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.3s var(--transition), border-color 0.3s, box-shadow 0.3s;
}
.spec-grid-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 12px 24px rgba(75, 63, 51, 0.05);
}
.spec-grid-item .spec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.spec-grid-item .spec-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { padding: 100px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
  position: relative; background: var(--forest);
  transition: transform 0.4s var(--transition), box-shadow 0.4s;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--transition); }
.gallery-item:hover { transform: scale(1.01); box-shadow: var(--shadow-hover); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,40,24,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 38px; height: 38px; color: var(--gold); }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white); font-size: 22px; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.3s;
}
.lightbox-close:hover { background: var(--gold); color: var(--deep-green); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 100px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--white); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md); padding: 24px 26px;
  box-shadow: 0 3px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--transition), box-shadow 0.3s, border-color 0.3s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,0.1); border-color: var(--gold); }
.contact-card-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--deep-green), var(--forest));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.contact-card-icon svg { width: 21px; height: 21px; }
.contact-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.contact-card-val { font-size: 15.5px; font-weight: 500; color: var(--text-dark); }
.contact-card-sub { font-size: 13px; color: var(--text-muted-dark); margin-top: 2px; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white); border: 1px solid rgba(201,168,76,0.14);
  border-radius: var(--radius-lg); padding: 48px 44px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.08);
}
.form-title {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 6px;
}
.form-sub { font-size: 14.5px; color: var(--text-muted-dark); margin-bottom: 34px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--cream); border: 1.5px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14.5px;
  color: var(--text-dark); outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--deep-green); font-weight: 700; font-size: 15px;
  border-radius: 50px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,168,76,0.4); }
.form-success {
  display: none; text-align: center;
  padding: 32px; border-radius: var(--radius-md);
  background: rgba(26,58,42,0.08);
  border: 1px solid rgba(201,168,76,0.2);
}
.form-success.show { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--gold); margin: 0 auto 14px; }
.form-success h3 { font-family: var(--font-display); font-size: 22px; color: var(--deep-green); margin-bottom: 8px; }
.form-success p { font-size: 14.5px; color: var(--text-muted-dark); }

/* Map */
.map-section { padding: 0 0 100px; background: var(--cream); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--deep-green);
  border-top: 1px solid rgba(201,168,76,0.14);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 56px; margin-bottom: 64px;
}
.footer-brand-logo {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 6px;
}
.footer-brand-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px;
}
.footer-brand-desc { font-size: 14px; line-height: 1.75; color: var(--text-muted); max-width: 260px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-social {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: background 0.3s, transform 0.3s var(--transition);
}
.footer-social:hover { background: rgba(201,168,76,0.2); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--text-muted);
  margin-bottom: 12px; transition: color 0.25s, padding-left 0.25s;
}
.footer-col a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(245,240,232,0.4); }
.footer-copy strong { color: rgba(201,168,76,0.7); }/* ============================================================
   HERO FLOATING GRAPHICS & BADGES
   ============================================================ */
.floating-wrap {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.floating-graphic {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

.rice-1-wrap {
  width: 62px; height: 62px;
  left: 14%; top: 22%;
}
.rice-1 {
  opacity: 0.16;
  animation: floatRice1 14s ease-in-out infinite;
}

.rice-2-wrap {
  width: 96px; height: 96px;
  right: 14%; bottom: 18%;
}
.rice-2 {
  opacity: 0.08;
  filter: blur(1.5px);
  animation: floatRice2 18s ease-in-out infinite;
}

.peanut-1-wrap {
  width: 78px; height: 78px;
  right: 18%; top: 15%;
}
.peanut-1 {
  opacity: 0.14;
  animation: floatPeanut1 16s ease-in-out infinite;
}

.peanut-2-wrap {
  width: 52px; height: 52px;
  left: 12%; bottom: 25%;
}
.peanut-2 {
  opacity: 0.11;
  filter: blur(0.5px);
  animation: floatPeanut2 12s ease-in-out infinite;
}

@keyframes floatRice1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(40deg); }
}
@keyframes floatRice2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-28px) rotate(-55deg); }
}
@keyframes floatPeanut1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(22px) rotate(30deg); }
}
@keyframes floatPeanut2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-35deg); }
}

/* Floating Luxury Badges */
.badge-wrap {
  position: absolute;
  z-index: 3;
  will-change: transform;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(13, 40, 24, 0.45);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 15px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  transition: border-color 0.3s, background 0.3s, opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}
.badge-rice-wrap {
  left: 6%;
  top: 52%;
}
.badge-peanut-wrap {
  right: 6%;
  top: 26%;
}
.badge-rice {
  animation: badgeFloat1 7.5s ease-in-out infinite;
  transform: translateX(-40px);
}
.badge-peanut {
  animation: badgeFloat2 8.5s ease-in-out infinite;
  transform: translateX(40px);
}
.hero-badge:hover {
  border-color: var(--gold-light);
  background: rgba(13, 40, 24, 0.6);
}

/* Entrance reveal on load */
body.loader-loaded .hero-badge {
  opacity: 1;
  transform: translateX(0);
}
body.loader-loaded .badge-rice {
  transition-delay: 0.65s;
}
body.loader-loaded .badge-peanut {
  transition-delay: 0.78s;
}

@keyframes badgeFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.2deg); }
}
@keyframes badgeFloat2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1.2deg); }
}

.badge-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.1);
}
.badge-icon svg {
  width: 20px; height: 20px;
}
.badge-info {
  display: flex;
  flex-direction: column;
}
.badge-tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.badge-title {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .badge-rice-wrap { left: 2%; top: 58%; }
  .badge-peanut-wrap { right: 2%; top: 22%; }
}
@media (max-width: 1024px) {
  .badge-wrap {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links, .nav-inner > .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(201,168,76,0.12); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-split { gap: 48px; }
  .product-feature { gap: 48px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(36px, 10vw, 54px); }
  .products-teaser-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 400px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.col-span-2 { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-track { flex-direction: column; }
  .testimonial-card { flex: 0 0 100%; }
  .about-split { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .product-feature { grid-template-columns: 1fr; gap: 36px; }
  .product-feature:nth-child(even) { direction: ltr; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; gap: 24px; }
  .timeline-side, .timeline-item:nth-child(odd) .timeline-side { text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .contact-form-wrap { padding: 30px 22px; }
  .mission-card { padding: 32px 26px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg { animation: none; }
  .trust-bar-track { animation: none; }
}
