/* ============================================================
   NUTRICH — Premium Frozen Food Landing Page
   Design tokens grounded in the real packaging system:
   char/ember base + red/orange/gold product coding + brass props
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Clash Display';
  src: url('https://fonts.cdnfonts.com/css/clash-display') format('woff2');
}

:root{
  /* --- Core palette (from real pack + prop photography) --- */
  --char: #150F0B;          /* tandoor-dark background */
  --char-soft: #1F1712;
  --char-line: rgba(251,242,228,0.10);
  --cream: #FBF2E4;         /* packaging paper cream */
  --cream-dim: #F2E6D3;
  --ink: #241A12;           /* body text on cream */
  --ink-soft: #5B4C3E;

  --ember: #E7532B;         /* sausage line — primary CTA orange */
  --ember-dim: #C4431F;
  --kebab: #C8241F;         /* seekh kebab line — red */
  --gold: #F0A400;          /* nugget line — gold */
  --brass: #B4915F;         /* metallic prop accent */

  --sausage: #E7532B;
  --kebab-c: #C8241F;
  --nugget: #F0A400;

  /* --- Type --- */
  --font-display: 'Clash Display', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1360px;
  --edge: clamp(20px, 5vw, 72px);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: auto; }
body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,video{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
h1,h2,h3,h4,p{ margin:0; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 var(--edge); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection{ background: var(--ember); color: var(--cream); }

/* ============ Typography scale ============ */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:'';
  width:22px; height:1px;
  background: currentColor;
  opacity:.6;
}

.h-display{
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.h-xl{ font-size: clamp(3rem, 8vw, 7.5rem); }
.h-lg{ font-size: clamp(2.4rem, 5.2vw, 4.6rem); }
.h-md{ font-size: clamp(1.8rem, 3.4vw, 2.8rem); }

.body-lg{ font-size: clamp(1.05rem, 1.6vw, 1.35rem); line-height:1.55; }

/* ============ Buttons ============ */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 18px 34px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  overflow:hidden;
  isolation:isolate;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease;
}
.btn-primary{
  background: var(--ember);
  color: var(--cream);
  box-shadow: 0 10px 30px -8px rgba(231,83,43,0.55);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 16px 40px -8px rgba(231,83,43,0.65); }
.btn-ghost{
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(251,242,228,0.35);
}
.btn-ghost:hover{ background: rgba(251,242,228,0.08); border-color: rgba(251,242,228,0.6); }
.btn-dark{
  background: var(--char);
  color: var(--cream);
}
.btn-dark:hover{ transform: translateY(-3px); }
.btn .btn-arrow{ transition: transform .4s cubic-bezier(.16,1,.3,1); }
.btn:hover .btn-arrow{ transform: translate(4px,-4px); }

/* Magnetic wrapper target */
.magnetic{ display:inline-block; }

/* ============ Badges (nutrition-panel inspired) ============ */
.badge{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  border: 1px solid currentColor;
}
.badge-dot{ width:6px; height:6px; border-radius:50%; background:currentColor; }

/* ============ Sunburst signature motif ============ */
.sunburst{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
}
.sunburst svg{ width:100%; height:100%; }
.sunburst-spin{ animation: spin-slow 90s linear infinite; transform-origin: center; }
@keyframes spin-slow{ to{ transform: rotate(360deg); } }

/* ============ Scroll progress ============ */
.scroll-progress{
  position: fixed;
  top:0; left:0;
  height: 3px;
  width: 100%;
  background: transparent;
  z-index: 999;
}
.scroll-progress-bar{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--kebab), var(--ember), var(--gold));
}

/* ============ Cursor glow ============ */
.cursor-glow{
  position: fixed;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231,83,43,0.14), transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%,-50%);
  left: -500px; top: -500px;
  transition: left .25s ease-out, top .25s ease-out, opacity .3s ease;
  opacity: 0;
}
@media (hover:hover){ .cursor-glow.active{ opacity:1; } }

/* ============ Nav ============ */
.nav{
  position: fixed;
  top: 18px; left:50%;
  transform: translateX(-50%);
  width: min(92%, 1180px);
  z-index: 100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 12px 12px 26px;
  border-radius: 100px;
  background: rgba(21,15,11,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(251,242,228,0.12);
  transition: background .4s ease, box-shadow .4s ease;
}
.nav.scrolled{
  background: rgba(21,15,11,0.85);
  box-shadow: 0 12px 40px -18px rgba(0,0,0,0.6);
}
.nav-logo{
  font-family: var(--font-display);
  font-weight:700;
  font-size: 21px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.nav-links{
  display:flex;
  align-items:center;
  gap: 34px;
}
.nav-links a{
  color: rgba(251,242,228,0.75);
  font-size: 14px;
  font-weight:500;
  position:relative;
  transition: color .3s ease;
}
.nav-links a::after{
  content:'';
  position:absolute; left:0; bottom:-5px;
  width:0; height:1px;
  background: var(--ember);
  transition: width .35s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover{ color: var(--cream); }
.nav-links a:hover::after{ width:100%; }
.nav-cta{
  padding: 12px 24px;
  font-size: 13.5px;
}
.nav-burger{ display:none; }

@media (max-width: 860px){
  .nav-links{ display:none; }
  .nav-burger{ display:flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  min-height: 100svh;
  background: radial-gradient(120% 90% at 50% -10%, #2A1D14 0%, var(--char) 55%, #0D0906 100%);
  display:flex;
  align-items:center;
  overflow: hidden;
  padding-top: 100px;
}
.hero-particles{
  position:absolute; inset:0;
  pointer-events:none;
}
.hero-particles span{
  position:absolute;
  border-radius:50%;
  background: radial-gradient(circle, rgba(240,164,0,0.9), rgba(231,83,43,0.1));
  filter: blur(1px);
  opacity: .55;
}
.hero-glow{
  position:absolute;
  width: 900px; height:900px;
  left:50%; top:38%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(231,83,43,0.30), transparent 65%);
  filter: blur(10px);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items:center;
  width:100%;
}
.hero-copy{ color: var(--cream); }
.hero-copy .eyebrow{ color: var(--gold); margin-bottom: 26px; }
.hero-title{ color: var(--cream); }
.hero-title .line{ display:block; overflow:hidden; }
.hero-title .line span{ display:inline-block; will-change: transform; }
.hero-sub{
  margin-top: 26px;
  max-width: 480px;
  color: rgba(251,242,228,0.72);
}
.hero-actions{
  margin-top: 42px;
  display:flex;
  align-items:center;
  gap: 22px;
  flex-wrap:wrap;
}
.hero-scroll-cue{
  position:absolute;
  bottom: 38px; left: var(--edge);
  display:flex; align-items:center; gap:12px;
  color: rgba(251,242,228,0.55);
  font-family: var(--font-mono);
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  z-index:2;
}
.scroll-line{
  width:1px; height:40px;
  background: linear-gradient(to bottom, rgba(251,242,228,.8), transparent);
  position:relative;
  overflow:hidden;
}
.scroll-line::after{
  content:'';
  position:absolute; top:-40px; left:0;
  width:100%; height:40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue{ to{ top:40px; } }

.hero-product{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.hero-product-float{
  position:relative;
  width: min(100%, 420px);
}
.hero-product-inner{
  animation: float-y 5s ease-in-out infinite, product-fade-in 1s ease-out 0.3s both;
}
.hero-product-inner img{
  width:100%;
  filter: drop-shadow(0 50px 60px rgba(0,0,0,0.55));
}
@keyframes product-fade-in{
  from{ opacity:0; }
  to{ opacity:1; }
}
@keyframes float-y{
  0%,100%{ transform: translateY(0) rotate(-1.2deg); }
  50%{ transform: translateY(-22px) rotate(1.2deg); }
}
.hero-sunburst-ring{
  position:absolute;
  inset: -18%;
  z-index:0;
}

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.section{ position:relative; padding: 130px 0; }
.section-dark{ background: var(--char); color: var(--cream); }
.section-cream{ background: var(--cream); color: var(--ink); }
.section-head{
  max-width: 720px;
  margin-bottom: 70px;
}
.section-dark .eyebrow{ color: var(--gold); }
.section-cream .eyebrow{ color: var(--kebab); }
.section-head .h-lg{ margin-top: 18px; }
.section-dark .h-lg{ color: var(--cream); }
.section-cream .h-lg{ color: var(--ink); }
.section-head p{ margin-top: 20px; color: var(--ink-soft); }
.section-dark .section-head p{ color: rgba(251,242,228,0.68); }

/* ============================================================
   FEATURED PRODUCT TRANSITION
   ============================================================ */
.feature-transition{
  position: relative;
  height: 100vh;
  background: var(--char);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.feature-transition-img{
  position:relative;
  width: min(60vw, 620px);
}
.feature-transition-img img{
  width:100%;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.6));
}
.feature-transition-tag{
  position:absolute;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight:700;
  z-index:3;
}
.ft-line1{ top: 8%; left: 8%; font-size: clamp(2rem,6vw,4rem); }
.ft-line2{ bottom: 10%; right: 8%; font-size: clamp(2rem,6vw,4rem); text-align:right; }

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.showcase-block{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:center;
  padding: 90px 0;
  border-top: 1px solid rgba(36,26,18,0.1);
}
.showcase-block:first-child{ border-top:none; padding-top:0; }
.showcase-block.reverse .showcase-media{ order:2; }
.showcase-block.reverse .showcase-copy{ order:1; }

.showcase-media{
  position:relative;
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 560px;
}
.showcase-media .media-main{
  grid-row: 1 / 3;
  border-radius: 28px;
  overflow:hidden;
  position:relative;
}
.showcase-media .media-sm{
  border-radius: 22px;
  overflow:hidden;
  position:relative;
}
.showcase-media img{
  width:100%; height:100%; object-fit:cover;
  transition: transform 1.1s cubic-bezier(.16,1,.3,1);
}
.showcase-media a:hover img{ transform: scale(1.06); }
.showcase-media .media-glow{
  position:absolute; inset:-30px;
  z-index:-1;
  border-radius:50%;
  filter: blur(60px);
  opacity:.35;
}

.showcase-copy .eyebrow{ margin-bottom:18px; }
.showcase-copy .h-md{ margin-top:6px; color: var(--ink); }
.showcase-copy .desc{ margin-top:18px; color: var(--ink-soft); max-width: 460px; }
.showcase-stats{
  display:flex;
  gap: 28px;
  margin-top: 30px;
  flex-wrap:wrap;
}
.stat{
  font-family: var(--font-mono);
}
.stat-num{ font-size: 1.8rem; font-weight:700; line-height:1; }
.stat-label{ font-size: 11px; text-transform:uppercase; letter-spacing:.06em; color: var(--ink-soft); margin-top:6px; }
.showcase-badges{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top: 28px;
}
.showcase-copy .btn{ margin-top: 34px; }

/* ============================================================
   MASONRY GALLERY
   ============================================================ */
.masonry{
  columns: 4 220px;
  column-gap: 18px;
}
.masonry-item{
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 20px;
  overflow:hidden;
  position:relative;
  cursor: zoom-in;
  display:block;
}
.masonry-item img{ width:100%; display:block; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.masonry-item::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(21,15,11,0.75) 100%);
  opacity:0;
  transition: opacity .4s ease;
}
.masonry-view{
  position:absolute; left:18px; bottom:18px;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  display:flex; align-items:center; gap:8px;
  opacity:0; transform: translateY(10px);
  transition: all .4s ease;
  z-index:2;
}
.masonry-item:hover img{ transform: scale(1.08); }
.masonry-item:hover::after{ opacity:1; }
.masonry-item:hover .masonry-view{ opacity:1; transform:translateY(0); }

.lightbox{
  position: fixed; inset:0;
  background: rgba(10,7,5,0.94);
  z-index: 500;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none;
  transition: opacity .4s ease;
}
.lightbox.active{ opacity:1; pointer-events:all; }
.lightbox img{
  max-width: 86vw; max-height: 86vh;
  border-radius: 16px;
  transform: scale(0.92);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.lightbox.active img{ transform: scale(1); }
.lightbox-close{
  position:absolute; top: 30px; right: 30px;
  width:48px; height:48px;
  border-radius:50%;
  border: 1px solid rgba(251,242,228,0.3);
  color: var(--cream);
  display:flex; align-items:center; justify-content:center;
  font-size: 20px;
  transition: background .3s ease, transform .3s ease;
}
.lightbox-close:hover{ background: rgba(251,242,228,0.1); transform: rotate(90deg); }

/* ============================================================
   WHY NUTRICH
   ============================================================ */
.why-grid{
  display:grid;
  grid-template-columns: repeat(5,1fr);
  gap: 18px;
}
.why-card{
  background: var(--char-soft);
  border: 1px solid rgba(251,242,228,0.08);
  border-radius: 24px;
  padding: 34px 24px;
  color: var(--cream);
  position:relative;
  overflow:hidden;
  transition: transform .5s cubic-bezier(.16,1,.3,1), border-color .4s ease;
}
.why-card:hover{ transform: translateY(-8px); border-color: rgba(251,242,228,0.25); }
.why-icon{
  width:52px; height:52px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 22px;
  background: rgba(251,242,228,0.06);
}
.why-icon svg{ width:26px; height:26px; }
.why-card h3{ font-family: var(--font-display); font-size: 1.15rem; font-weight:600; }
.why-card p{ margin-top:10px; font-size: 13.5px; color: rgba(251,242,228,0.6); line-height:1.5; }
.why-card .why-num{
  position:absolute; top:20px; right:24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(251,242,228,0.3);
}

/* ============================================================
   FILMSTRIP (horizontal scroll)
   ============================================================ */
.filmstrip-section{
  overflow:hidden;
  background: var(--cream);
}
.filmstrip-pin{
  height: 100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.filmstrip-track{
  display:flex;
  gap: 24px;
  will-change: transform;
  padding-left: var(--edge);
}
.filmstrip-item{
  flex: 0 0 auto;
  width: 340px;
  height: 460px;
  border-radius: 26px;
  overflow:hidden;
  position:relative;
}
.filmstrip-item img{ width:100%; height:100%; object-fit:cover; }
.filmstrip-item .fs-tag{
  position:absolute; left:18px; bottom:18px;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing: .08em;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(21,15,11,0.5);
  backdrop-filter: blur(8px);
}
.filmstrip-head{
  padding: 0 var(--edge) 60px;
}

/* ============================================================
   SOCIAL WALL
   ============================================================ */
.social-marquee-wrap{
  position:absolute; inset:0;
  display:flex; align-items:center;
  opacity: 0.06;
  pointer-events:none;
  overflow:hidden;
  white-space:nowrap;
}
.social-marquee{
  display:flex;
  gap: 60px;
  animation: marquee 34s linear infinite;
}
.social-marquee span{
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 700;
  color: var(--cream);
  white-space:nowrap;
}
@keyframes marquee{ to{ transform: translateX(-50%); } }

.social-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.social-card{
  border-radius: 22px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
  aspect-ratio: 4/5;
}
.social-card:nth-child(even){ transform: translateY(28px); }
.social-card:hover{ transform: rotate(-2deg) scale(1.03); }
.social-card:nth-child(even):hover{ transform: translateY(28px) rotate(2deg) scale(1.03); }
.social-card img{ width:100%; height:100%; object-fit:cover; }

/* ============================================================
   REELS
   ============================================================ */
.reels-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.reel-phone{
  position:relative;
  border-radius: 42px;
  padding: 14px;
  background: linear-gradient(160deg, #2A1F17, #0F0B08);
  border: 1px solid rgba(251,242,228,0.12);
  box-shadow: 0 40px 70px -30px rgba(0,0,0,0.6);
  opacity:0;
  transform: translateY(60px);
}
.reel-screen{
  position:relative;
  border-radius: 30px;
  overflow:hidden;
  aspect-ratio: 9/16;
  background:#000;
}
.reel-screen video{ width:100%; height:100%; object-fit:cover; }
.reel-notch{
  position:absolute; top:14px; left:50%; transform:translateX(-50%);
  width:70px; height:18px;
  background:#0F0B08;
  border-radius:100px;
  z-index:3;
}
.reel-play{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  z-index:2;
  background: rgba(0,0,0,0.15);
  opacity:1;
  transition: opacity .4s ease;
}
.reel-play.hidden{ opacity:0; pointer-events:none; }
.reel-play svg{
  width:60px; height:60px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.5));
}
.reel-caption{
  text-align:center; margin-top: 20px;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  opacity:.6;
}

/* ============================================================
   PROCESS (horizontal timeline)
   ============================================================ */
.process-track{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position:relative;
}
.process-track::before{
  content:'';
  position:absolute;
  top: 34px; left: 6%; right: 6%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(36,26,18,.25) 0 10px, transparent 10px 20px);
}
.process-step{
  position:relative;
  opacity:0;
  transform: translateY(40px);
}
.process-index{
  width: 68px; height:68px;
  border-radius:50%;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-mono);
  font-weight:700;
  font-size: 15px;
  position:relative;
  z-index:1;
  margin-bottom: 26px;
}
.process-step:nth-child(1) .process-index{ border-color: var(--kebab); color:var(--kebab); }
.process-step:nth-child(2) .process-index{ border-color: var(--ember); color:var(--ember); }
.process-step:nth-child(3) .process-index{ border-color: var(--gold); color:var(--gold); }
.process-step:nth-child(4) .process-index{ border-color: var(--ink); color:var(--ink); }
.process-step h3{ font-family: var(--font-display); font-size: 1.35rem; font-weight:600; }
.process-step p{ margin-top:10px; color: var(--ink-soft); font-size: 14.5px; max-width: 260px; }

/* ============================================================
   BRAND STORY
   ============================================================ */
.story{
  position:relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  background: var(--char);
  overflow:hidden;
}
.story-bg{
  position:absolute; inset:0;
  z-index:0;
}
.story-bg img{
  width:100%; height:100%; object-fit:cover;
  opacity: 0.34;
  transform: scale(1.15);
}
.story-bg::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(21,15,11,0.5), var(--char) 85%);
}
.story-content{
  position:relative; z-index:1;
  max-width: 760px;
  color: var(--cream);
}
.story-quote{
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.28;
}
.story-quote em{ font-style:normal; color: var(--gold); }
.story-meta{
  margin-top: 40px;
  display:flex;
  gap: 50px;
  flex-wrap:wrap;
}
.story-counter{ font-family: var(--font-mono); }
.story-counter .num{ font-size: 2.4rem; font-weight:700; }
.story-counter .lbl{ font-size:11.5px; text-transform:uppercase; letter-spacing:.08em; color: rgba(251,242,228,.55); margin-top:6px; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section{
  position:relative;
  background: linear-gradient(160deg, #2A1D14, var(--char) 60%);
  text-align:center;
  padding: 160px 0;
  overflow:hidden;
}
.cta-section .h-xl{ color: var(--cream); }
.cta-section .body-lg{ color: rgba(251,242,228,0.68); max-width: 560px; margin: 26px auto 0; }
.cta-actions{ margin-top: 48px; display:flex; justify-content:center; gap:20px; flex-wrap:wrap; }
.cta-glow{
  position:absolute; left:50%; top:50%;
  width: 700px; height:700px;
  transform:translate(-50%,-50%);
  background: radial-gradient(circle, rgba(231,83,43,0.28), transparent 70%);
  filter: blur(20px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  background: #0F0A07;
  color: var(--cream);
  padding: 90px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(251,242,228,0.1);
}
.footer-brand .nav-logo{ font-size:26px; }
.footer-brand p{
  margin-top:18px;
  color: rgba(251,242,228,0.55);
  font-size: 14px;
  max-width: 280px;
  line-height:1.6;
}
.footer-col h4{
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform:uppercase;
  letter-spacing:.1em;
  color: rgba(251,242,228,0.45);
  margin-bottom: 20px;
}
.footer-col ul li{ margin-bottom: 13px; }
.footer-col a{
  color: rgba(251,242,228,0.75);
  font-size: 14.5px;
  transition: color .3s ease, padding-left .3s ease;
}
.footer-col a:hover{ color: var(--gold); padding-left:4px; }
.footer-newsletter form{
  display:flex;
  border-bottom: 1px solid rgba(251,242,228,0.3);
  padding-bottom: 12px;
  margin-top: 6px;
}
.footer-newsletter input{
  background:transparent;
  border:none;
  color: var(--cream);
  font-size: 14px;
  flex:1;
  outline:none;
}
.footer-newsletter input::placeholder{ color: rgba(251,242,228,0.4); }
.footer-newsletter button{ color: var(--gold); font-size: 13px; font-weight:600; }
.footer-bottom{
  padding-top: 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap: 14px;
  font-size: 12.5px;
  color: rgba(251,242,228,0.4);
}
.footer-bottom .fssai{ font-family: var(--font-mono); }

/* ============================================================
   REVEAL UTILITIES (targeted by GSAP)
   ============================================================ */
.reveal{ opacity:0; transform: translateY(50px); }
.reveal-scale{ opacity:0; transform: scale(0.92); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px){
  .why-grid{ grid-template-columns: repeat(3,1fr); }
  .why-card:nth-child(4), .why-card:nth-child(5){ grid-column: span 1; }
  .social-grid{ grid-template-columns: repeat(3,1fr); }
  .reels-grid{ grid-template-columns: repeat(3,1fr); gap:20px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px){
  .hero-grid{ grid-template-columns:1fr; text-align:center; }
  .hero-copy{ order:2; }
  .hero-product{ order:1; margin-bottom: 20px; }
  .hero-actions{ justify-content:center; }
  .hero-sub{ margin-inline:auto; }
  .showcase-block, .showcase-block.reverse{ grid-template-columns:1fr; }
  .showcase-block.reverse .showcase-media{ order:1; }
  .showcase-block.reverse .showcase-copy{ order:2; }
  .showcase-media{ height: 420px; }
  .why-grid{ grid-template-columns: repeat(2,1fr); }
  .process-track{ grid-template-columns: 1fr 1fr; row-gap: 50px; }
  .process-track::before{ display:none; }
  .social-grid{ grid-template-columns: repeat(2,1fr); }
  .reels-grid{ grid-template-columns: 1fr; max-width: 340px; margin:0 auto; }
  .footer-grid{ grid-template-columns: 1fr; gap: 40px; }
  .masonry{ columns: 2 160px; }
}

@media (max-width: 520px){
  .section{ padding: 90px 0; }
  .why-grid{ grid-template-columns: 1fr 1fr; }
  .story-meta{ gap:30px; }
}
