/* ============================================================
   PICKLLUM — Complete Stylesheet v5
   Hero: #0f0f0f dark · Label+Headline: #ffc400 gold
   Heritage: #5c2210 brownish-red
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Gold */
  --gold:          #ffc400;
  --gold-deep:     #e6b000;
  --gold-dark:     #b58900;
  --gold-pale:     #fff0a0;
  --gold-tint:     rgba(255,196,0,0.12);
  --gold-tint-md:  rgba(255,196,0,0.22);
  --gold-tint-lg:  rgba(255,196,0,0.40);

  /* Turmeric = gold alias (used in HTML) */
  --turmeric:      #ffc400;
  --turmeric-dark: #e6a800;

  /* Ink (dark text on gold surfaces) */
  --ink:           #1a0d00;
  --ink-mid:       rgba(26,13,0,0.65);
  --ink-soft:      rgba(26,13,0,0.42);
  --ink-ghost:     rgba(26,13,0,0.18);

  /* Cream */
  --cream:         #fff7e6;
  --cream-dark:    #f5edd8;
  --cream-mid:     rgba(255,247,230,0.65);
  --cream-soft:    rgba(255,247,230,0.35);
  --cream-ghost:   rgba(255,247,230,0.08);

  /* Earthy */
  --brown:         #6b3e26;
  --brown-light:   #8b5a3a;
  --brown-dark:    #3d1f0e;
  --green:         #355e3b;
  --green-light:   #4a8050;
  --green-dark:    #1e3821;

  /* Neutrals — NOTE: --black is very dark, NOT #111 */
  --black:         #0f0f0f;
  --black-soft:    #1a1a1a;
  --white:         #ffffff;

  /* Surfaces */
  --surface-dark:  #111111;
  --surface-card:  rgba(255,247,230,0.04);
  --border-dark:   rgba(255,196,0,0.15);
  --border-warm:   rgba(107,62,38,0.14);

  /* Shadows */
  --shadow-warm:   0 20px 60px rgba(107,62,38,0.18);
  --shadow-gold:   0 8px 32px rgba(255,196,0,0.35);
  --shadow-ink:    0 8px 32px rgba(26,13,0,0.22);
  --shadow-glow:   0 0 48px rgba(255,196,0,0.18);

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-h:         80px;
  --max-w:         1440px;
  --gutter:        clamp(1.5rem, 5vw, 5rem);
  --radius:        4px;

  /* Easing */
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
}
.body-lg { font-size: 1.05rem; line-height: 1.75; }
.body-md { font-size: 0.95rem; line-height: 1.7; }
.label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Utility */
.text-gold   { color: var(--gold); }
.text-cream  { color: var(--cream); }
.text-ink    { color: var(--ink); }
.bg-black    { background: var(--black); }
.bg-cream    { background: var(--cream); }
.bg-gold     { background: var(--gold); }

/* ============================================================
   ANIMATION
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up:nth-child(1) { transition-delay: 0.00s; }
.fade-in-up:nth-child(2) { transition-delay: 0.08s; }
.fade-in-up:nth-child(3) { transition-delay: 0.16s; }
.fade-in-up:nth-child(4) { transition-delay: 0.24s; }
.fade-in-up:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   LAYOUT
   ============================================================ */
.section { padding: clamp(5rem, 10vw, 10rem) 0; }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-deep);
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease-smooth);
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-primary:hover::before { transform: translateX(0); }

.btn-primary.dark {
  background: var(--black);
  color: var(--cream);
}
.btn-primary.dark::before { background: var(--brown); }
.btn-primary.dark:hover { box-shadow: var(--shadow-ink); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0;
  background: none;
  border: none;
  color: var(--cream-mid);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: gap 0.3s ease, color 0.3s ease;
}
.btn-ghost:hover { gap: 1.2rem; color: var(--gold); }
.btn-arrow { display: inline-block; transition: transform 0.3s ease; }
.btn-ghost:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   IMAGE PLACEHOLDERS (dev)
   ============================================================ */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
}
.img-placeholder-icon { font-size: 2rem; opacity: 0.35; }
.img-placeholder-text {
  font-size: 0.63rem; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.35;
  text-align: center; padding: 0 1rem; line-height: 1.5;
}
.img-placeholder-file {
  font-size: 0.54rem; opacity: 0.22;
  font-family: 'Courier New', monospace; margin-top: 0.2rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.45s ease, box-shadow 0.45s ease;
}
.nav.scrolled {
  background: rgba(15,15,15,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,196,0,0.12);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex; flex-direction: column;
  gap: 0.1rem; text-decoration: none;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 500;
  letter-spacing: 0.08em; line-height: 1;
  color: var(--gold);
  transition: color 0.35s ease;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.54rem; letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-soft);
  transition: color 0.35s ease;
}
.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-mid);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 500 !important;
  letter-spacing: 0.09em !important;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-deep) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold) !important;
  color: var(--ink) !important;
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: background 0.3s, transform 0.3s;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,10,0.98);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-smooth);
}
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav-overlay a {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--cream-soft); transition: color 0.3s;
}
.mobile-nav-overlay a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 2rem; right: var(--gutter);
  font-size: 2rem; color: var(--cream-soft);
  background: none; border: none; cursor: pointer;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { margin-bottom: 5rem; }
.section-header.centered { text-align: center; }
.section-label { color: var(--brown); margin-bottom: 1rem; }
.section-headline { color: var(--black); }
.section-desc {
  color: rgba(15,15,15,0.52);
  max-width: 560px; margin-top: 1.5rem;
}
.section-header.centered .section-desc { margin: 1.5rem auto 0; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,247,230,0.4);
  margin-bottom: 2rem;
}
.breadcrumb a { color: rgba(255,247,230,0.4); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--gold); }

/* Page hero (inner pages) */
.page-hero {
  background: var(--surface-dark);
  padding: calc(var(--nav-h) + 5rem) var(--gutter) 5rem;
  max-width: 100%;
}
.page-hero .page-label { color: var(--gold); margin-bottom: 1.5rem; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--cream); margin-bottom: 1.5rem;
}
.page-desc {
  font-size: 1.05rem; color: var(--cream-mid);
  max-width: 560px; line-height: 1.8;
}

/* ============================================================
   HERO — dark background, gold label + headline
   ============================================================ */
.hero {
  min-height: 100vh;
  background: #0f0f0f;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 70% 55%, rgba(107,62,26,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 40% 55% at 15% 85%, rgba(53,94,59,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 50% 0%,  rgba(255,196,0,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grain {
  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.035'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none; mix-blend-mode: multiply;
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: calc(var(--nav-h) + 4rem) var(--gutter) 8rem;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
}

/* "Born in North East India" — #ffc400 gold */
.hero-label {
  color: #ffc400;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  letter-spacing: 0.26em;
}
.hero-label::before {
  content: ''; display: block; width: 40px; height: 1px;
  background: #ffc400; flex-shrink: 0;
}

/* "Pickles crafted with soul" — #ffc400 gold */
.hero-headline {
  color: #ffc400;
  margin-bottom: 2rem;
}
/* "soul" accent — cream italic for contrast within gold */
.hero-headline .accent {
  color: #fff7e6;
  font-style: italic;
}

.hero-desc {
  color: rgba(255,247,230,0.65);
  max-width: 480px; margin-bottom: 3rem; line-height: 1.82;
}
.hero-actions {
  display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center;
}

/* Hero visual */
.hero-visual { position: relative; height: 580px; }
.hero-img-wrap {
  position: absolute; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-ink);
}
.hero-img-main {
  width: 380px; height: 480px; top: 0; right: 0;
  background: linear-gradient(140deg, #6b3e26 0%, #3a1f0e 100%);
}
.hero-img-accent {
  width: 220px; height: 280px; bottom: 0; left: 20px;
  background: linear-gradient(140deg, #355e3b 0%, #1a2e1c 100%);
  border: 2px solid rgba(255,196,0,0.5);
}
.hero-img-main img, .hero-img-accent img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-badge {
  position: absolute; top: 2rem; left: -1rem;
  background: var(--ink); color: var(--gold);
  padding: 0.75rem 1.2rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.63rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: var(--shadow-ink); z-index: 10;
}
.hero-stat-strip {
  position: absolute; bottom: -3rem; left: 0; right: 0;
  display: flex; gap: 2px;
}
.hero-stat {
  flex: 1;
  background: rgba(255,247,230,0.05);
  border: 1px solid rgba(255,247,230,0.10);
  backdrop-filter: blur(12px);
  padding: 1.2rem 1.5rem; border-radius: var(--radius); text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 1.8rem;
  color: #ffc400; line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.58rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,247,230,0.45); margin-top: 0.3rem;
}
.hero-scroll-hint {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  color: rgba(255,247,230,0.45); font-size: 0.58rem;
  letter-spacing: 0.22em; text-transform: uppercase; z-index: 3;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,247,230,0.4));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.75); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--ink); padding: 0.9rem 0; overflow: hidden;
}
.ticker-inner {
  display: flex; white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 1.5rem;
  padding: 0 3rem; font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); flex-shrink: 0;
}
.ticker-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-dark); flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HERITAGE — brownish-red #5c2210
   ============================================================ */
.heritage {
  background: #5c2210;
  color: var(--cream);
  overflow: hidden;
}
.heritage-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8rem; align-items: center;
}
.heritage-visual { position: relative; }
.heritage-content {
  display: flex; flex-direction: column; justify-content: center;
}
.heritage-img-stack { position: relative; height: 600px; }
.heritage-img-1 {
  width: 320px; height: 420px;
  background: linear-gradient(160deg, #2a1208 0%, #0d0604 100%);
  border-radius: var(--radius); position: absolute; top: 0; left: 0;
  overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.heritage-img-2 {
  width: 260px; height: 320px;
  background: linear-gradient(160deg, #1a3a1c 0%, #0a1a0b 100%);
  border-radius: var(--radius); position: absolute; bottom: 20px; right: 0;
  overflow: hidden;
  border: 2px solid rgba(255,196,0,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.heritage-quote {
  position: absolute; bottom: 60px; left: 50%;
  transform: translateX(-20%);
  background: rgba(0,0,0,0.50);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,196,0,0.30);
  padding: 1.5rem 2rem; border-radius: var(--radius);
  max-width: 268px; z-index: 10;
}
.heritage-quote-text {
  font-family: var(--font-display); font-size: 1rem;
  font-style: italic; color: var(--cream); line-height: 1.55;
}
.heritage-quote-attr {
  margin-top: 0.75rem; font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
}
.heritage-label { color: var(--gold); margin-bottom: 1.5rem; }
.heritage-headline { color: var(--cream); margin-bottom: 2rem; }
.heritage-desc {
  color: rgba(255,247,230,0.72);
  max-width: 480px; margin-bottom: 3rem; line-height: 1.82;
}
.heritage-features { display: flex; flex-direction: column; gap: 1.5rem; }
.heritage-feature {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,247,230,0.14);
  border-radius: var(--radius);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.heritage-feature:hover {
  background: rgba(0,0,0,0.36);
  border-color: rgba(255,196,0,0.35);
  transform: translateX(6px);
}
.heritage-feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,196,0,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.heritage-feature-title {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--cream); margin-bottom: 0.3rem;
}
.heritage-feature-desc {
  font-size: 0.84rem; color: rgba(255,247,230,0.60); line-height: 1.65;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section { background: var(--cream); position: relative; }
.products-section::before {
  content: 'PICKLLUM';
  position: absolute; top: 2rem; right: -2rem;
  font-family: var(--font-display); font-size: 15vw;
  font-weight: 300; color: rgba(107,62,38,0.045);
  letter-spacing: 0.1em; pointer-events: none;
  white-space: nowrap; user-select: none;
}
.products-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.product-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; background: var(--black-soft);
  cursor: pointer; transition: transform 0.4s var(--ease-smooth);
}
.product-card:hover { transform: translateY(-6px); }
.product-card-img {
  width: 100%; aspect-ratio: 3/4; overflow: hidden; position: relative;
}
.product-card.product-mango { grid-row: 1 / 3; }
.product-card.product-mango .product-card-img { aspect-ratio: auto; height: 100%; }
.product-img-bg {
  width: 100%; height: 100%; min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.product-mango  .product-img-bg { background: linear-gradient(160deg, #7a4e12, #3d2509); }
.product-bamboo .product-img-bg { background: linear-gradient(160deg, #2d5a1a, #0f2209); }
.product-chilli .product-img-bg { background: linear-gradient(160deg, #7a1212, #2d0505); }
.product-lemon  .product-img-bg { background: linear-gradient(160deg, #6b6b12, #2d2d05); }
.product-mixed  .product-img-bg { background: linear-gradient(160deg, #4a2d0e, #1a0f07); }
.product-emoji { filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5)); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,5,0,0.85) 0%, transparent 55%);
  z-index: 1;
}
.product-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem; z-index: 2;
}
.product-tag {
  display: inline-block;
  background: var(--gold-tint);
  color: var(--gold);
  border: 1px solid var(--gold-tint-md);
  padding: 0.25rem 0.75rem; border-radius: 2px;
  font-size: 0.58rem; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.product-card-name {
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--cream); margin-bottom: 0.5rem; line-height: 1.2;
}
.product-card-desc {
  font-size: 0.8rem; color: var(--cream-mid);
  line-height: 1.65; margin-bottom: 1rem;
}
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--cream);
}
.product-price-sub { font-size: 0.75rem; color: var(--cream-soft); }
.product-add-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  border: none; font-size: 1.2rem; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.25s var(--ease-spring);
}
.product-add-btn:hover {
  background: var(--gold-pale); transform: scale(1.12);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background: var(--green); position: relative; overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.process-header {
  text-align: center; margin-bottom: 5rem; position: relative; z-index: 1;
}
.process-steps {
  display: flex; gap: 0; position: relative; z-index: 1;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-tint-md), transparent);
}
.process-step {
  flex: 1; text-align: center; padding: 0 1.5rem;
  position: relative;
}
.process-step-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--cream-ghost); border: 1px solid var(--gold-tint-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1.5rem; position: relative;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
}
.process-step-icon::after {
  content: attr(data-step);
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-body); font-size: 0.62rem;
  font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.process-step:hover .process-step-icon {
  background: var(--gold-tint); border-color: var(--gold-tint-md);
  transform: translateY(-4px);
}
.process-step-title {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--cream); margin-bottom: 0.75rem;
}
.process-step-desc {
  font-size: 0.82rem; color: rgba(255,247,230,0.55); line-height: 1.7;
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section { background: var(--cream); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: start;
}
.story-sticky { position: sticky; top: calc(var(--nav-h) + 3rem); }
.story-label { color: var(--brown); margin-bottom: 1.5rem; }
.story-headline { margin-bottom: 2rem; }
.story-intro {
  font-size: 1rem; color: rgba(15,15,15,0.6);
  line-height: 1.9; margin-bottom: 3rem;
}
.story-cta {}
.story-chapters { display: flex; flex-direction: column; gap: 0; }
.story-chapter {
  padding: 2.5rem 0 2.5rem 2rem; border-left: 1px solid var(--border-warm);
  position: relative;
  transition: background 0.4s ease;
}
.story-chapter::before {
  content: '';
  position: absolute; left: -1px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--brown));
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s var(--ease-smooth);
}
.story-chapter:hover::before { transform: scaleY(1); }
.story-chapter:hover { background: rgba(107,62,38,0.04); }
.story-chapter-num {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.story-chapter-title {
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--black); margin-bottom: 1rem;
}
.story-chapter-text {
  font-size: 0.88rem; color: rgba(15,15,15,0.58); line-height: 1.82;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section { background: var(--surface-dark); }
.trust-header { text-align: center; margin-bottom: 4rem; }
.trust-badges {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 1.5rem;
  margin-bottom: 5rem;
}
.trust-badge {
  padding: 2rem 1.5rem; text-align: center;
  background: var(--surface-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.trust-badge:hover {
  background: var(--gold-tint); border-color: var(--gold-tint-md);
  transform: translateY(-4px);
}
.trust-badge.featured { border-color: var(--gold-tint-md); }
.trust-badge-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.trust-badge-title {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--cream); margin-bottom: 0.5rem;
}
.trust-badge-desc { font-size: 0.78rem; color: var(--cream-soft); line-height: 1.6; }
.fssai-block {
  display: grid; grid-template-columns: 280px 1fr; gap: 4rem;
  align-items: center; padding: 3rem;
  background: var(--surface-card); border: 1px solid var(--border-dark);
  border-radius: var(--radius);
}
.fssai-cert {
  height: 200px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg,#2a1a0a,#0f0a05);
}
.fssai-info h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--cream); margin-bottom: 1rem;
}
.fssai-info p { font-size: 0.9rem; color: var(--cream-mid); line-height: 1.8; }
.fssai-num {
  display: inline-block; margin-top: 1rem;
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--gold); background: var(--gold-tint);
  padding: 0.4rem 0.8rem; border-radius: 2px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--cream-dark); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.testimonial-card {
  padding: 2.5rem; background: var(--white);
  border-radius: var(--radius);
  border-top: 2px solid transparent;
  box-shadow: 0 4px 24px rgba(107,62,38,0.06);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1.25rem; }
.testimonial-text {
  font-family: var(--font-display); font-size: 1rem;
  font-style: italic; color: rgba(15,15,15,0.7);
  line-height: 1.7; margin-bottom: 2rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-tint); color: var(--gold);
  font-family: var(--font-display); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-tint-md); flex-shrink: 0;
}
.testimonial-name { font-weight: 500; font-size: 0.9rem; }
.testimonial-loc { font-size: 0.75rem; color: rgba(15,15,15,0.4); margin-top: 0.15rem; }

/* ============================================================
   REGIONAL SECTION
   ============================================================ */
.regional-section {
  background: var(--brown); position: relative; overflow: hidden;
}
.regional-map-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 50%, rgba(107,62,38,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.regional-desc {
  color: rgba(255,247,230,0.65); max-width: 600px;
  line-height: 1.9; margin: 1.5rem 0 3rem;
}
.regional-states {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 4rem;
}
.regional-state {
  padding: 0.4rem 1rem; border: 1px solid rgba(255,247,230,0.2);
  border-radius: 2px; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cream-mid);
  transition: border-color 0.3s, color 0.3s;
}
.regional-state:hover { border-color: var(--gold); color: var(--gold); }
.regional-stats {
  display: flex; gap: 4rem; flex-wrap: wrap;
}
.regional-stat-num {
  font-family: var(--font-display); font-size: 3rem;
  color: var(--gold); line-height: 1;
}
.regional-stat-lbl {
  font-size: 0.65rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,247,230,0.5); margin-top: 0.4rem;
}

/* ============================================================
   RECIPES SECTION
   ============================================================ */
.recipes-section { background: var(--cream); }
.recipes-scroll {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}
.recipe-card {
  background: var(--black-soft); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.35s var(--ease-smooth);
}
.recipe-card:hover { transform: translateY(-6px); }
.recipe-img { height: 200px; position: relative; overflow: hidden; }
.recipe-body { padding: 1.5rem; }
.recipe-tag {
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.recipe-title {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--cream); margin-bottom: 0.75rem;
}
.recipe-desc { font-size: 0.82rem; color: var(--cream-mid); line-height: 1.65; }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { background: var(--surface-dark); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(3, 180px); gap: 4px;
}
.gallery-item {
  position: relative; overflow: hidden;
  background: var(--black-soft); cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: 1/2; grid-row: 1/3; }
.gallery-item:nth-child(5) { grid-column: 2/3; grid-row: 2/4; }
.gallery-item:nth-child(9) { grid-column: 3/4; grid-row: 1/3; }
.gallery-placeholder {
  width: 100%; height: 100%; min-height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; opacity: 0.4;
}
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(255,196,0,0.85);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--gold); padding: clamp(5rem,10vw,8rem) var(--gutter);
  text-align: center;
}
.newsletter-section .section-headline { color: var(--ink); }
.newsletter-desc {
  color: var(--ink-mid); max-width: 480px; margin: 1rem auto 2.5rem;
  line-height: 1.8; font-size: 0.95rem;
}
.newsletter-form {
  display: flex; gap: 0; max-width: 480px; margin: 0 auto;
  border: 1px solid rgba(26,13,0,0.2); border-radius: var(--radius);
  overflow: hidden; background: rgba(255,255,255,0.9);
}
.newsletter-input {
  flex: 1; padding: 1rem 1.5rem;
  background: transparent; border: none; outline: none;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--ink);
}
.newsletter-input::placeholder { color: var(--ink-soft); }
.newsletter-btn {
  padding: 1rem 2rem; background: var(--ink); color: var(--gold);
  border: none; font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
}
.newsletter-btn:hover { background: var(--brown-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080808; padding: 5rem var(--gutter) 0;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,247,230,0.06);
}
.footer-brand {}
.footer-brand-name {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--gold); margin-bottom: 0.25rem;
}
.footer-brand-tagline {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,247,230,0.3); margin-bottom: 1.5rem;
}
.footer-brand-desc {
  font-size: 0.85rem; color: rgba(255,247,230,0.35);
  line-height: 1.9; max-width: 300px;
}
.footer-col-title {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.85rem; color: rgba(255,247,230,0.35);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }
.footer-contact p {
  font-size: 0.85rem; color: rgba(255,247,230,0.35);
  margin-bottom: 0.75rem; line-height: 1.6;
}
.footer-contact a { color: rgba(255,247,230,0.35); transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,247,230,0.3); transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 2rem 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy {
  font-size: 0.75rem; color: rgba(255,247,230,0.2); letter-spacing: 0.05em;
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
  font-size: 0.72rem; letter-spacing: 0.08em;
  color: rgba(255,247,230,0.2); transition: color 0.3s;
}
.footer-legal a:hover { color: var(--cream); }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.filter-bar {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 4rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(107,62,38,0.12);
}
.filter-btn {
  padding: 0.5rem 1.25rem; background: transparent;
  border: 1px solid rgba(107,62,38,0.2); border-radius: 40px;
  font-family: var(--font-body); font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(17,17,17,0.5); cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--turmeric); border-color: var(--turmeric); color: var(--black);
}
.products-full-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.product-full-card {
  background: var(--white); border: 1px solid rgba(107,62,38,0.08);
  border-radius: var(--radius); overflow: hidden; transition: all 0.3s ease;
}
.product-full-card:hover { box-shadow: var(--shadow-warm); transform: translateY(-4px); }
.product-full-img {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #4a2d0e, #1a0f07);
}
.product-full-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.product-full-body { padding: 1.75rem; }
.product-full-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.product-full-tag {
  padding: 0.25rem 0.6rem; border-radius: 2px;
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.tag-hot { background: rgba(122,18,18,0.08); color: #7a1212; }
.tag-veg { background: rgba(53,94,59,0.08); color: var(--green); }
.tag-new { background: rgba(255,196,0,0.12); color: var(--turmeric-dark); }
.product-full-name { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.5rem; color: #111; }
.product-full-desc { font-size: 0.85rem; color: rgba(17,17,17,0.55); line-height: 1.65; margin-bottom: 1.5rem; }
.product-full-footer { display: flex; align-items: center; justify-content: space-between; }
.product-full-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--turmeric); }
.product-full-price sub { font-size: 0.75rem; color: rgba(17,17,17,0.4); }
.btn-buy {
  background: var(--black); color: var(--cream);
  padding: 0.7rem 1.4rem; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.3s;
}
.btn-buy:hover { background: var(--brown); }
.shipping-bar {
  background: var(--green); text-align: center; padding: 0.75rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,247,230,0.9);
}

/* ============================================================
   PRODUCT SINGLE PAGE
   ============================================================ */
.product-single-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.product-gallery {}
.product-gallery-main {
  aspect-ratio: 1; background: linear-gradient(135deg, #4a2d0e, #1a0f07);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem;
}
.product-gallery-thumbs { display: flex; gap: 0.75rem; }
.product-thumb {
  width: 72px; height: 72px; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.25s;
}
.product-thumb.active { border-color: var(--turmeric); }
.product-info-name {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1; margin-bottom: 0.5rem; color: #111;
}
.product-info-rating { display: flex; align-items: center; gap: 0.75rem; color: var(--turmeric); margin-bottom: 1rem; }
.product-info-price { font-family: var(--font-display); font-size: 2.2rem; color: #111; margin-bottom: 1.5rem; }
.product-info-desc { font-size: 0.95rem; color: rgba(17,17,17,0.6); line-height: 1.85; margin-bottom: 2rem; }
.product-options { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.product-option {
  padding: 0.6rem 1.2rem; border: 1px solid rgba(107,62,38,0.25);
  border-radius: var(--radius); font-size: 0.82rem; cursor: pointer;
  transition: all 0.25s; color: rgba(17,17,17,0.65);
}
.product-option:hover, .product-option.selected {
  background: var(--turmeric); border-color: var(--turmeric);
  color: var(--black); font-weight: 500;
}
.product-attributes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 2rem 0;
}
.product-attr { padding: 0.85rem 1rem; background: rgba(107,62,38,0.04); border-radius: var(--radius); }
.product-attr-label { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(17,17,17,0.38); margin-bottom: 0.3rem; }
.product-attr-value { font-family: var(--font-display); font-size: 1rem; color: #111; }
.product-add-to-cart {
  display: block; width: 100%; padding: 1.1rem 2rem;
  background: var(--black); color: var(--cream); border: none;
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; cursor: pointer; transition: background 0.3s; text-align: center;
}
.product-add-to-cart:hover { background: var(--brown); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-values {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.value-card {
  padding: 2rem; background: var(--white);
  border: 1px solid rgba(107,62,38,0.10);
  border-radius: var(--radius); transition: box-shadow 0.3s, transform 0.3s;
}
.value-card:hover { box-shadow: var(--shadow-warm); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.75rem; color: #111; }
.value-text { font-size: 0.88rem; color: rgba(17,17,17,0.58); line-height: 1.72; }

/* ============================================================
   TEAM GRID (about page)
   ============================================================ */
.team-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; margin-top: 4rem;
}
.team-card { display: flex; flex-direction: column; gap: 1rem; }
.team-photo {
  height: 320px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #3d1f0e, #1a0d06);
}
.team-name { font-family: var(--font-display); font-size: 1.4rem; }
.team-role {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--turmeric); margin-top: -0.5rem;
}
.team-bio { font-size: 0.88rem; line-height: 1.72; }

/* ============================================================
   OUR STORY PAGE
   ============================================================ */
.pull-quote {
  background: var(--black); color: var(--cream);
  padding: 8rem var(--gutter); text-align: center;
}
.pull-quote q {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.5rem, 4vw, 3.5rem); line-height: 1.3;
  max-width: 800px; display: block; margin: 0 auto; quotes: none; color: var(--cream);
}
.pull-quote-attr { margin-top: 2.5rem; color: var(--turmeric); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; }
.timeline { position: relative; padding: 4rem 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,196,0,0.3), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  gap: 2rem; align-items: center; margin-bottom: 5rem;
}
.timeline-center { text-align: center; }
.timeline-dot {
  width: 48px; height: 48px; background: var(--turmeric); border-radius: 50%;
  margin: 0 auto; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 0 0 8px rgba(255,196,0,0.10);
}
.timeline-year { text-align: center; font-family: var(--font-display); font-size: 0.9rem; color: var(--turmeric); margin-top: 0.5rem; }
.timeline-content { padding: 2rem; }
.timeline-content h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 1rem; color: #111; }
.timeline-content p { color: rgba(17,17,17,0.6); line-height: 1.8; }
.timeline-img { height: 280px; border-radius: var(--radius); overflow: hidden; margin-top: 1.5rem; }

/* ============================================================
   CERTIFICATIONS PAGE
   ============================================================ */
.cert-full-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 4rem;
}
.cert-card {
  padding: 3rem 2rem; text-align: center;
  border: 1px solid rgba(255,196,0,0.15); border-radius: var(--radius);
  background: rgba(255,247,230,0.02); transition: all 0.3s;
}
.cert-card:hover { border-color: var(--turmeric); background: rgba(255,196,0,0.04); transform: translateY(-4px); }
.cert-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.cert-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); margin-bottom: 0.75rem; }
.cert-desc { font-size: 0.85rem; color: rgba(255,247,230,0.5); line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start;
}
.contact-info-item { margin-bottom: 2rem; }
.contact-info-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(17,17,17,0.4); margin-bottom: 0.4rem; }
.contact-info-value { font-family: var(--font-display); font-size: 1.3rem; color: #111; }
.contact-info-value a { color: var(--brown); text-decoration: none; }
.contact-info-value a:hover { color: var(--turmeric); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(17,17,17,0.5); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--white); border: 1px solid rgba(107,62,38,0.18);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 0.9rem; color: #111; outline: none;
  transition: border-color 0.3s; box-sizing: border-box;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--turmeric); }
.form-textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 760px; margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) var(--gutter) 6rem;
  color: rgba(17,17,17,0.75); line-height: 1.85;
}
.legal-content h2 { font-family: var(--font-display); font-size: 1.5rem; color: #111; margin: 2.5rem 0 0.75rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; }
.legal-content ul li { margin-bottom: 0.4rem; }
.legal-content a { color: var(--brown); }
.legal-content a:hover { color: var(--turmeric); }

/* ============================================================
   PAYMENT DOCS (dev only)
   ============================================================ */
.payment-docs {
  background: rgba(15,15,15,0.04); border: 1px solid rgba(107,62,38,0.1);
  border-radius: var(--radius); padding: 2rem; font-family: 'Courier New', monospace;
  font-size: 0.75rem; color: rgba(15,15,15,0.4);
}
.payment-docs-title { margin-bottom: 1rem; color: var(--brown); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .trust-badges { grid-template-columns: repeat(3,1fr); }
  .recipes-scroll { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card.product-mango { grid-row: auto; }
  .product-card.product-mango .product-card-img { aspect-ratio: 3/4; height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .heritage-grid { gap: 4rem; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .heritage-grid { grid-template-columns: 1fr; gap: 3rem; }
  .heritage-img-stack { height: 340px; }
  .heritage-img-1 { width: 260px; height: 340px; }
  .heritage-img-2 { width: 200px; height: 260px; }
  .story-grid { grid-template-columns: 1fr; gap: 4rem; }
  .story-sticky { position: static; }
  .products-full-grid { grid-template-columns: repeat(2,1fr); }
  .about-values { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-steps::before { display: none; }
  .fssai-block { grid-template-columns: 1fr; gap: 2rem; }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; gap: 1rem; }
  .timeline-center { grid-column: 1; }
  .timeline-content { grid-column: 2; padding: 0; }
  .cert-full-grid { grid-template-columns: 1fr 1fr; }
  .product-single-grid { grid-template-columns: 1fr; gap: 3rem; }
  .regional-stats { gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .trust-badges { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cert-full-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .products-grid { grid-template-columns: 1fr; }
  .products-full-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .recipes-scroll { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}