/* ============================================================
   PICKLLUM — Premium Brand Design System
   North East India's Artisanal Pickle Brand
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Brand Colors */
  --pickle-yellow:   #FFC400;
  --chili-red:       #B31217;
  --organic-green:   #355E3B;
  --spice-brown:     #6B3E26;
  --matte-cream:     #FFF7E6;
  --deep-black:      #0D0B08;
  --warm-white:      #FEFCF8;
  --gold-accent:     #D4A017;
  --charcoal:        #1A1A1A;
  --mid-grey:        #6B6B6B;
  --light-border:    rgba(107,62,38,0.15);

  /* Typography */
  --font-display:    'Cormorant Garamond', Georgia, serif;
  --font-heading:    'Playfair Display', Georgia, serif;
  --font-body:       'Outfit', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.64, 0, 0.78, 0);
  --t-fast:   0.2s;
  --t-med:    0.4s;
  --t-slow:   0.8s;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(13,11,8,0.08);
  --shadow-md: 0 8px 32px rgba(13,11,8,0.12);
  --shadow-lg: 0 24px 64px rgba(13,11,8,0.18);
  --shadow-glow-yellow: 0 0 40px rgba(255,196,0,0.25);
  --shadow-glow-red:    0 0 40px rgba(179,18,23,0.2);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--matte-cream); }
::-webkit-scrollbar-thumb { background: var(--chili-red); border-radius: 2px; }

/* ─── SELECTION ──────────────────────────────────────────────── */
::selection {
  background: var(--pickle-yellow);
  color: var(--deep-black);
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--t-med) var(--ease-out);
}

.nav.scrolled {
  background: rgba(254,252,248,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-border);
  padding: 0.9rem 2rem;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-black);
  letter-spacing: 0.08em;
}

.nav-logo-main span { color: var(--chili-red); }

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--organic-green);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color var(--t-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--chili-red);
  transition: width var(--t-med) var(--ease-out);
}

.nav-links a:hover { color: var(--chili-red); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--chili-red);
  color: var(--warm-white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  letter-spacing: 0.1em;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast) !important;
}

.nav-cta:hover {
  background: var(--spice-brown) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(179,18,23,0.3);
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--t-med);
}

/* ─── HERO SECTION ───────────────────────────────────────────── */
/* ─── HERO: PRIMARY BRAND YELLOW BACKGROUND ──────────────────
   Design spec: Deep Pickle Yellow #FFC400 dominates the hero.
   Food psychology: Yellow triggers appetite, warmth, energy.
   Chili red accents reinforce spice and urgency.
──────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* ═══ BRAND RULE: HERO MUST BE DEEP PICKLE YELLOW #FFC400 ═══ */
  background-color: #FFC400 !important;
  background-image: linear-gradient(
    135deg,
    #FFC400 0%,
    #FFD54F 35%,
    #FFC400 60%,
    #FFB300 100%
  ) !important;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Accent overlays ON TOP of yellow base — chili red right, spice warmth left */
  background:
    radial-gradient(ellipse 50% 65% at 90% 50%, rgba(179,18,23,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 5%  85%, rgba(107,62,38,0.15) 0%, transparent 45%);
  pointer-events: none;
}

.hero-grain {
  display: none; /* Disabled on yellow bg — was causing darkening */
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text { color: var(--deep-black); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13,11,8,0.08);
  border: 1px solid rgba(13,11,8,0.18);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.8s var(--ease-out) both;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--chili-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-badge span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--chili-red);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.9s var(--ease-out) 0.1s both;
}

.hero-title .line-accent {
  color: var(--deep-black);
  font-style: italic;
}

.hero-title .line-red { color: var(--chili-red); }

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(13,11,8,0.65);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 1s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 1s var(--ease-out) 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--chili-red);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 2px;
  transition: all var(--t-med) var(--ease-out);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--spice-brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-red);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--deep-black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 2px;
  border: 2px solid rgba(13,11,8,0.3);
  transition: all var(--t-med) var(--ease-out);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--chili-red);
  color: var(--chili-red);
  background: rgba(179,18,23,0.05);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(13,11,8,0.15);
  animation: fadeSlideUp 1s var(--ease-out) 0.4s both;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--chili-red);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(13,11,8,0.5);
  margin-top: 0.3rem;
}

.hero-visual {
  position: relative;
  animation: fadeSlideUp 1.1s var(--ease-out) 0.2s both;
}

.hero-jar-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-jar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin-slow linear infinite;
}

.hero-jar-ring-1 {
  width: 380px; height: 380px;
  border-color: rgba(13,11,8,0.1);
  animation-duration: 30s;
}

.hero-jar-ring-2 {
  width: 480px; height: 480px;
  border-color: rgba(179,18,23,0.15);
  animation-duration: 45s;
  animation-direction: reverse;
}

.hero-jar-img {
  width: 320px;
  height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(179,18,23,0.25));
  position: relative;
  z-index: 2;
}

.hero-jar-placeholder {
  width: 300px;
  height: 360px;
  background: rgba(255,255,255,0.4);
  border: 2px dashed rgba(179,18,23,0.3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 2;
  position: relative;
}

.hero-jar-placeholder .placeholder-icon { font-size: 4rem; }
.hero-jar-placeholder p {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13,11,8,0.4);
}

.hero-floating-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-tag {
  position: absolute;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-black);
  white-space: nowrap;
}

.floating-tag-1 { top: 15%; left: -20%; animation: float 4s ease-in-out infinite; }
.floating-tag-2 { top: 45%; right: -15%; animation: float 5s ease-in-out 1s infinite; }
.floating-tag-3 { bottom: 20%; left: -10%; animation: float 4.5s ease-in-out 0.5s infinite; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeSlideUp 1s var(--ease-out) 1s both;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13,11,8,0.45);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(13,11,8,0.5), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ─── SECTION BASE ───────────────────────────────────────────── */
.section {
  padding: var(--space-xl) 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.section-label-line {
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--chili-red);
}

.section-label span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--chili-red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--deep-black);
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--chili-red);
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid-grey);
  line-height: 1.8;
  max-width: 540px;
}

/* ─── MARQUEE STRIP ──────────────────────────────────────────── */
.marquee-strip {
  background: var(--chili-red);
  padding: 0.8rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--matte-cream);
}

.marquee-dot {
  width: 4px; height: 4px;
  background: var(--pickle-yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── WHY PICKLLUM ───────────────────────────────────────────── */
.why-section { background: var(--matte-cream); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-card {
  background: var(--warm-white);
  border: 1px solid var(--light-border);
  border-radius: 4px;
  padding: 1.8rem;
  transition: all var(--t-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--pickle-yellow), var(--chili-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-out);
}

.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }

.why-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 0.5rem;
}

.why-card-desc {
  font-size: 0.85rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

.why-visual {
  position: relative;
}

.why-img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.why-img-frame img,
.why-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.why-img-placeholder {
  background: linear-gradient(135deg, var(--spice-brown), var(--chili-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.why-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(13,11,8,0.8), transparent);
  color: var(--warm-white);
}

.why-img-caption-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.why-img-caption-sub {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}

.why-accent-block {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--pickle-yellow);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-black);
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-glow-yellow);
}

/* ─── PRODUCTS SECTION ───────────────────────────────────────── */
.products-section { background: var(--warm-white); }

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
}

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

.product-card {
  background: var(--matte-cream);
  border: 1px solid var(--light-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--t-med) var(--ease-out);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-card-img img,
.product-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--matte-cream), rgba(255,196,0,0.1));
}

.product-card:hover .product-card-img img,
.product-card:hover .product-img-placeholder {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--chili-red);
  color: var(--warm-white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.product-card-body { padding: 1.5rem; }

.product-card-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--organic-green);
  margin-bottom: 0.4rem;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 0.5rem;
}

.product-card-desc {
  font-size: 0.82rem;
  color: var(--mid-grey);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--chili-red);
}

.product-price-sub {
  font-size: 0.7rem;
  color: var(--mid-grey);
  display: block;
}

.btn-add-cart {
  background: var(--chili-red);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.2rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
}

.btn-add-cart:hover {
  background: var(--chili-red);
  transform: translateY(-1px);
}

/* ─── STORY BANNER ───────────────────────────────────────────── */
.story-banner {
  background: linear-gradient(135deg, #B31217 0%, #8B0D11 50%, #6B3E26 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
}

.story-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(255,196,0,0.12), transparent),
    radial-gradient(ellipse 60% 60% at 100% 50%, rgba(255,196,0,0.08), transparent);
  pointer-events: none;
}

.story-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-banner-text { color: var(--warm-white); }

.story-banner-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  line-height: 1.25;
  margin: 1.5rem 0;
  color: var(--matte-cream);
}

.story-banner-quote em { color: var(--pickle-yellow); font-style: normal; }

.story-banner-body {
  font-size: 0.92rem;
  color: rgba(255,247,230,0.65);
  line-height: 1.85;
}

.story-banner-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.story-thumb {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.story-thumb img,
.story-thumb-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.story-thumb:nth-child(1) .story-thumb-placeholder { background: linear-gradient(135deg, #6B3E26, #B31217); }
.story-thumb:nth-child(2) .story-thumb-placeholder { background: linear-gradient(135deg, #355E3B, #6B3E26); margin-top: 2rem; }
.story-thumb:nth-child(3) .story-thumb-placeholder { background: linear-gradient(135deg, #FFC400, #B31217); }
.story-thumb:nth-child(4) .story-thumb-placeholder { background: linear-gradient(135deg, #1A1A1A, #355E3B); margin-top: -2rem; }

/* ─── PROCESS SECTION ────────────────────────────────────────── */
.process-section { background: var(--matte-cream); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--pickle-yellow), var(--chili-red), var(--organic-green));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 64px; height: 64px;
  background: var(--warm-white);
  border: 2px solid var(--light-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--chili-red);
  margin-bottom: 1.2rem;
  transition: all var(--t-med);
  position: relative;
}

.process-step:hover .process-step-num {
  background: var(--chili-red);
  color: var(--warm-white);
  border-color: var(--chili-red);
  box-shadow: var(--shadow-glow-red);
}

.process-step-icon {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.78rem;
  color: var(--mid-grey);
  line-height: 1.6;
}

/* ─── INGREDIENTS ────────────────────────────────────────────── */
.ingredients-section { background: linear-gradient(135deg, #B31217 0%, #8B0D11 60%, #6B3E26 100%); color: var(--warm-white); }

.ingredients-section .section-title { color: var(--warm-white); }
.ingredients-section .section-subtitle { color: rgba(255,247,230,0.75); }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.ingredient-card {
  background: rgba(255,247,230,0.04);
  border: 1px solid rgba(255,247,230,0.08);
  border-radius: 4px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--t-med) var(--ease-out);
}

.ingredient-card:hover {
  background: rgba(255,196,0,0.08);
  border-color: rgba(255,196,0,0.2);
  transform: translateY(-4px);
}

.ingredient-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }

.ingredient-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--matte-cream);
  margin-bottom: 0.3rem;
}

.ingredient-origin {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pickle-yellow);
  opacity: 0.7;
}

/* ─── CERTIFICATIONS ─────────────────────────────────────────── */
.certs-section { background: var(--warm-white); }

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

.cert-badge {
  background: var(--matte-cream);
  border: 1.5px solid var(--light-border);
  border-radius: 4px;
  padding: 2rem 1rem;
  text-align: center;
  transition: all var(--t-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.cert-badge::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pickle-yellow), var(--chili-red));
  transform: scaleX(0);
  transition: transform var(--t-med);
}

.cert-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pickle-yellow);
}

.cert-badge:hover::before { transform: scaleX(1); }

.cert-badge-icon { font-size: 2.8rem; margin-bottom: 1rem; }

.cert-badge-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 0.4rem;
}

.cert-badge-desc {
  font-size: 0.75rem;
  color: var(--mid-grey);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
  background: linear-gradient(135deg, var(--chili-red) 0%, var(--spice-brown) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,196,0,0.06);
  pointer-events: none;
}

.testimonials-section .section-label span { color: rgba(255,247,230,0.6); }
.testimonials-section .section-label-line { background: rgba(255,247,230,0.4); }
.testimonials-section .section-title { color: var(--warm-white); }

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

.testimonial-card {
  background: rgba(255,247,230,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,247,230,0.15);
  border-radius: 4px;
  padding: 2rem;
  transition: all var(--t-med);
}

.testimonial-card:hover {
  background: rgba(255,247,230,0.12);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--pickle-yellow);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--matte-cream);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--pickle-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-black);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--warm-white);
}

.testimonial-loc {
  font-size: 0.7rem;
  color: rgba(255,247,230,0.55);
  letter-spacing: 0.1em;
}

/* ─── REGIONAL PRIDE ─────────────────────────────────────────── */
.heritage-section {
  background: var(--matte-cream);
  position: relative;
  overflow: hidden;
}

.heritage-section::before {
  content: 'NORTH EAST';
  position: absolute;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 700;
  color: rgba(107,62,38,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.heritage-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.heritage-region-tag {
  background: var(--warm-white);
  border: 1px solid var(--light-border);
  border-radius: 2px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all var(--t-med);
}

.heritage-region-tag:hover {
  border-color: var(--organic-green);
  transform: translateX(4px);
}

.heritage-region-icon { font-size: 1.4rem; }

.heritage-region-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--deep-black);
}

.heritage-region-desc {
  font-size: 0.72rem;
  color: var(--mid-grey);
}

.heritage-visual-stack {
  position: relative;
  padding: 2rem;
}

.heritage-card-main {
  background: var(--organic-green);
  border-radius: 4px;
  padding: 2.5rem;
  color: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.heritage-card-main::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,196,0,0.15);
}

.heritage-card-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--pickle-yellow);
  line-height: 1;
}

.heritage-card-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.heritage-card-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* ─── INSTAGRAM GALLERY ──────────────────────────────────────── */
.gallery-section { background: var(--warm-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 3rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.gallery-item::after {
  content: '📸';
  position: absolute;
  inset: 0;
  background: rgba(179,18,23,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity var(--t-med);
}

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

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

/* ─── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter-section {
  background: var(--pickle-yellow);
  padding: 5rem 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--deep-black);
  line-height: 1.15;
}

.newsletter-subtitle {
  font-size: 0.92rem;
  color: rgba(13,11,8,0.65);
  line-height: 1.7;
  margin-top: 0.8rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  background: var(--warm-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 1rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: transparent;
  color: var(--charcoal);
}

.newsletter-input::placeholder { color: rgba(107,107,107,0.6); }

.newsletter-btn {
  background: var(--chili-red);
  color: var(--warm-white);
  border: none;
  padding: 1rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t-fast);
  white-space: nowrap;
}

.newsletter-btn:hover { background: var(--spice-brown); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #3D1C10 0%, #2A1208 100%);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.footer-brand-name span { color: var(--pickle-yellow); }

.footer-brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--organic-green);
  margin-bottom: 1.2rem;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,247,230,0.45);
  line-height: 1.8;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.footer-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,247,230,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,247,230,0.5);
  transition: all var(--t-fast);
  cursor: pointer;
}

.footer-social:hover {
  border-color: var(--pickle-yellow);
  color: var(--pickle-yellow);
  background: rgba(255,196,0,0.08);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,247,230,0.45);
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--pickle-yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,247,230,0.2);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,247,230,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,247,230,0.3);
  transition: color var(--t-fast);
}

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

.footer-fssai {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(53,94,59,0.2);
  border: 1px solid rgba(53,94,59,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,247,230,0.6);
  margin-top: 1.5rem;
}

/* ─── RECIPE SECTION ─────────────────────────────────────────── */
.recipes-section { background: var(--matte-cream); }

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

.recipe-card {
  background: var(--warm-white);
  border: 1px solid var(--light-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--t-med) var(--ease-out);
}

.recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.recipe-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.recipe-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform var(--t-slow);
}

.recipe-card:hover .recipe-img-placeholder { transform: scale(1.05); }

.recipe-card-body { padding: 1.5rem; }

.recipe-tag {
  display: inline-block;
  background: rgba(255,196,0,0.15);
  color: var(--spice-brown);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.7rem;
}

.recipe-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-black);
  margin-bottom: 0.4rem;
}

.recipe-desc {
  font-size: 0.82rem;
  color: var(--mid-grey);
  line-height: 1.65;
}

/* ─── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #FFC400 0%, #FFD54F 35%, #FFC400 60%, #FFB300 100%);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 88% 50%, rgba(179,18,23,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 4% 88%, rgba(107,62,38,0.12) 0%, transparent 45%);
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--chili-red);
  display: block;
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  color: var(--deep-black);
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-hero-title em {
  color: var(--chili-red);
  font-style: italic;
}

.page-hero-desc {
  font-size: 1rem;
  color: rgba(13,11,8,0.65);
  line-height: 1.8;
  max-width: 550px;
  margin-top: 1.5rem;
}

/* ─── UTILITY CLASSES ────────────────────────────────────────── */
.text-center { text-align: center; }
.text-red { color: var(--chili-red); }
.text-yellow { color: var(--pickle-yellow); }
.text-green { color: var(--organic-green); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chili-red);
  transition: gap var(--t-fast);
}
.btn-link:hover { gap: 0.8rem; }
.btn-link-arrow { font-size: 1rem; }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes scroll-line {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(0.6); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── MOBILE NAVIGATION ──────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #B31217 0%, #6B3E26 100%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform var(--t-med) var(--ease-out);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: 0.05em;
  transition: color var(--t-fast);
}

.mobile-menu a:hover { color: var(--pickle-yellow); }

.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  color: var(--warm-white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-banner-inner { grid-template-columns: 1fr; gap: 3rem; }
  .heritage-grid { grid-template-columns: 1fr; gap: 3rem; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding-top: 5rem; }
  .hero-title { font-size: clamp(2.8rem, 8vw, 4.5rem); }
  .hero-stats { gap: 1.5rem; }
  .why-cards { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .recipes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .heritage-regions { grid-template-columns: 1fr; }
  .story-banner-visual { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .process-steps { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
}
