/* =========================================================
   NUTRICHULHA — "From our chulha, through Mumbai, to you."
   ========================================================= */

/* ---------- Design tokens ---------- */
:root{
  --green:        #008036;
  --green-600:     #00702f;
  --green-700:     #045a28;
  --green-800:     #073f1e;
  --green-deep:    #04220f;
  --pale-green:    #eaf5ec;
  --pale-green-2:  #dcefe0;
  --cream:         #fffaf0;
  --kraft:         #b98a54;
  --kraft-deep:    #8a6435;
  --white:         #ffffff;
  --ink:           #142118;
  --ink-soft:      #3c4a41;
  --line:          #e4e0d2;

  --font-display: 'Baloo 2', 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;

  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(7, 63, 30, 0.08);
  --shadow-md: 0 12px 32px rgba(7, 63, 30, 0.14);
  --shadow-lg: 0 24px 60px rgba(7, 63, 30, 0.18);

  --nav-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ 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; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; font-weight:700; line-height:1.08; letter-spacing: 0.2px; color: var(--green-deep); }
p{ margin:0; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section{ position: relative; }

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-body); font-weight: 800; font-size: 13px;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--green);
  margin-bottom: 14px;
}
.eyebrow::before{ content:""; width: 22px; height: 2px; background: var(--green); border-radius: 2px; }
.section-head{ max-width: 640px; margin-bottom: 44px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ margin-top: 14px; font-size: 17px; color: var(--ink-soft); line-height: 1.6; }
h2.h-lg{ font-size: clamp(30px, 4.2vw, 46px); }
.pad{ padding: 96px 0; }
@media (max-width: 720px){ .pad{ padding: 64px 0; } }
.bg-pale{ background: var(--pale-green); }
.bg-cream{ background: var(--cream); }
.bg-green{ background: linear-gradient(160deg, var(--green-700), var(--green-800)); color: var(--white); }
.bg-green h2, .bg-green h3, .bg-green .eyebrow{ color: var(--white); }
.bg-green .eyebrow::before{ background: #bfe6c9; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 28px; border-radius: 999px; font-weight: 800; font-size: 15px;
  border: 2px solid transparent; white-space:nowrap; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:active{ transform: scale(0.97); }
.btn-primary{ background: var(--green); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--green-600); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-ghost{ background: transparent; color: var(--green-deep); border-color: var(--green-deep); }
.btn-ghost:hover{ background: var(--green-deep); color:#fff; transform: translateY(-2px); }
.btn-white{ background: #fff; color: var(--green-800); }
.btn-white:hover{ background: var(--pale-green); transform: translateY(-2px); }
.btn-outline-white{ background: transparent; color:#fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover{ background: rgba(255,255,255,.14); }
.btn-wa{ background:#1EAA55; color:#fff; }
.btn-wa:hover{ background:#178c45; transform: translateY(-2px); }
.btn-sm{ padding: 10px 18px; font-size: 13px; }
.btn svg{ width:18px; height:18px; flex-shrink:0; }

/* ---------- Reveal (progressive enhancement) ---------- */
html.js .reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in{ opacity:1; transform:none; }
html.js .reveal-stagger > *{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal-stagger.in > *{ opacity:1; transform:none; }
html.js .reveal-stagger.in > *:nth-child(1){ transition-delay: .02s; }
html.js .reveal-stagger.in > *:nth-child(2){ transition-delay: .10s; }
html.js .reveal-stagger.in > *:nth-child(3){ transition-delay: .18s; }
html.js .reveal-stagger.in > *:nth-child(4){ transition-delay: .26s; }
html.js .reveal-stagger.in > *:nth-child(5){ transition-delay: .34s; }
html.js .reveal-stagger.in > *:nth-child(6){ transition-delay: .42s; }

/* =========================================================
   TOP BAR + NAV
   ========================================================= */
.topbar{
  background: var(--green-deep); color:#dff2e4; font-size: 13px; font-weight:600;
}
.topbar .container{ display:flex; align-items:center; justify-content:space-between; padding-top:7px; padding-bottom:7px; gap:12px; }
.topbar a{ color:#dff2e4; opacity:.92; }
.topbar a:hover{ opacity:1; text-decoration:underline; }
.topbar .tb-left{ display:flex; gap:18px; align-items:center; }
.topbar .tb-left span{ display:flex; align-items:center; gap:6px; }
.topbar svg{ width:14px; height:14px; }
@media (max-width: 680px){ .topbar .tb-hide{ display:none; } }

header.site-nav{
  position: sticky; top:0; z-index: 500; height: var(--nav-h);
  background: rgba(255,255,255,.88); backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow .25s ease, height .25s ease;
}
header.site-nav.scrolled{ box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.nav-inner{ height: 100%; display:flex; align-items:center; justify-content:space-between; gap: 20px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height: 46px; width:auto; }
.nav-links{ display:flex; align-items:center; gap: 30px; }
.nav-links a{ font-weight:700; font-size:14.5px; color: var(--green-deep); position:relative; padding: 6px 0; }
.nav-links a::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background: var(--green); transform: scaleX(0); transform-origin:right; transition: transform .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after{ transform: scaleX(1); transform-origin:left; }
.nav-links a.active{ color: var(--green); }
.nav-cta{ display:flex; align-items:center; gap:12px; }
.hamburger{ display:none; background:none; border:0; padding:8px; }
.hamburger span{ display:block; width:24px; height:2.4px; background: var(--green-deep); margin: 5px 0; border-radius:2px; transition: transform .25s ease, opacity .25s ease; }
.hamburger.open span:nth-child(1){ transform: translateY(7.4px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7.4px) rotate(-45deg); }

.mobile-drawer{
  position: fixed; inset: var(--nav-h) 0 0 0; background: #fff; z-index: 480;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.2,.7,.2,1);
  overflow-y:auto; padding: 20px 24px 100px;
}
.mobile-drawer.open{ transform: translateX(0); }
.mobile-drawer a{ display:block; font-family: var(--font-display); font-size: 24px; padding: 16px 4px; border-bottom: 1px solid var(--line); color: var(--green-deep); font-weight: 700;}
.mobile-drawer .btn{ margin-top: 22px; width:100%; }

@media (max-width: 980px){
  .nav-links, .nav-cta .btn-ghost{ display:none; }
  .hamburger{ display:block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative; padding-top: 56px; padding-bottom: 40px;
  background: linear-gradient(180deg, var(--pale-green) 0%, #fff 78%);
  overflow: hidden;
}
.hero-grid{ display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items:center; }
.hero-tag{
  display:inline-flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--pale-green-2);
  padding: 8px 16px 8px 8px; border-radius:999px; font-weight:800; font-size:13px; color: var(--green-800);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-tag .dot{ width:26px; height:26px; border-radius:50%; background:var(--green); display:flex; align-items:center; justify-content:center; }
.hero-tag .dot svg{ width:14px; height:14px; fill:#fff; }
.hero h1{ font-size: clamp(34px, 5vw, 58px); letter-spacing: 0.2px; }
.hero h1 .line{ display:block; overflow:hidden; }
.hero h1 .line span{ display:inline-block; }
.hero-sub{ margin-top: 22px; font-size: 18px; line-height:1.65; color: var(--ink-soft); max-width: 480px; }
.hero-ctas{ margin-top: 32px; display:flex; gap: 14px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats div b{ display:block; font-family: var(--font-display); font-size: 30px; color: var(--green-deep); }
.hero-stats div span{ font-size: 13px; color: var(--ink-soft); font-weight:600; }

.hero-visual{ position:relative; height: 560px; }
.hv-skyline{ position:absolute; left:-6%; right:-6%; bottom:0; z-index:1; opacity:.9; }
.hv-card-bag{
  position:absolute; right: 4%; top: 4%; width: 62%; max-width:340px; border-radius: var(--radius-lg);
  overflow:hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; z-index:5;
}
.hv-card-bag img{ display:block; width:100%; height:100%; object-fit:cover; aspect-ratio: 4/5; }
.hv-card-thali{
  position:absolute; left: 0; bottom: 14%; width: 56%; max-width: 300px; border-radius: var(--radius-lg);
  overflow:hidden; box-shadow: var(--shadow-lg); border:6px solid #fff; z-index:6;
}
.hv-card-thali img{ width:100%; aspect-ratio: 5/4; object-fit:cover; display:block; }
.hv-badge{
  position:absolute; z-index:7; background:#fff; border-radius: 16px; box-shadow: var(--shadow-md);
  padding: 12px 16px; display:flex; align-items:center; gap:10px; font-weight:800; font-size:13px; color: var(--green-800);
}
.hv-badge.b1{ left: 6%; top: 40%; }
.hv-badge.b2{ right: 8%; bottom: 6%; }
.hv-badge svg{ width:20px; height:20px; }
.hv-taxi{ position:absolute; width:120px; bottom: 8%; left: -20px; z-index:4; }
.hv-train{ position:absolute; width: 46%; bottom: 2%; right: -8%; z-index: 3; opacity:.95; }
.hv-birds{ position:absolute; top: 6%; left: 10%; width:90px; z-index:2; opacity:.55; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ height: 420px; margin-top: 10px; }
  .hero-stats{ gap:24px; }
}
@media (max-width: 480px){
  .hero-visual{ height: 360px; }
  .hv-card-bag{ width:58%; }
  .hv-card-thali{ width:52%; }
}

/* Promise strip */
.promise-strip{ background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.promise-grid{ display:grid; grid-template-columns: repeat(6,1fr); }
.promise-item{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px; padding: 26px 10px; border-left: 1px solid var(--line); }
.promise-item:first-child{ border-left:0; }
.promise-item svg{ width:30px; height:30px; color: var(--green); }
.promise-item span{ font-weight:800; font-size: 13px; color: var(--green-deep); line-height:1.3; }
@media (max-width: 900px){
  .promise-grid{ grid-template-columns: repeat(3,1fr); }
  .promise-item{ border-left:0; border-top:1px solid var(--line); }
  .promise-item:nth-child(3n+1){ border-left:0; }
}
@media (max-width: 480px){ .promise-grid{ grid-template-columns: repeat(2,1fr);} }

/* =========================================================
   WHY NUTRICHULHA
   ========================================================= */
.why-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items:center; }
.why-photo{ position:relative; }
.why-photo img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width:100%; object-fit:cover; aspect-ratio: 4/5; }
.why-photo .float-card{
  position:absolute; bottom: -26px; left: -26px; background:#fff; padding: 18px 20px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); display:flex; align-items:center; gap:12px; max-width:230px;
}
.why-photo .float-card .ic{ width:44px; height:44px; border-radius:50%; background:var(--pale-green); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.why-photo .float-card .ic svg{ width:22px; height:22px; color:var(--green); }
.why-photo .float-card b{ display:block; font-family: var(--font-display); font-size:18px; color: var(--green-deep); }
.why-photo .float-card span{ font-size:12.5px; color: var(--ink-soft); }

.pillars{ display:grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.pillar{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); padding: 22px; transition: transform .2s ease, box-shadow .2s ease; }
.pillar:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.pillar .ic{ width:42px; height:42px; border-radius:12px; background: var(--pale-green); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.pillar .ic svg{ width:22px; height:22px; color: var(--green); }
.pillar h4{ font-size:17px; margin-bottom:6px; }
.pillar p{ font-size: 14px; color: var(--ink-soft); line-height:1.55; }
@media (max-width: 900px){ .why-grid{ grid-template-columns: 1fr; } .why-photo{ max-width: 420px; margin: 0 auto 50px; } }
@media (max-width: 560px){ .pillars{ grid-template-columns: 1fr; } }

/* =========================================================
   PACKAGING SHOWCASE
   ========================================================= */
.pack-wrap{ display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:center; }
.pack-images{ position:relative; display:flex; justify-content:center; align-items:flex-end; gap: -10px; height: 480px; }
.pack-images img{ position:absolute; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); object-fit:contain; object-position:center; background:rgba(255,255,255,.06); }
.pack-img-1{ width: 52%; left: 2%; bottom:0; aspect-ratio: 3/4; z-index:2; }
.pack-img-2{ width: 46%; right: 0; top: 6%; aspect-ratio: 3/4; z-index:1; }
.pack-callouts{ display:flex; flex-direction:column; gap:16px; }
.callout{
  display:flex; align-items:center; gap:16px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.16);
  padding: 16px 20px; border-radius: var(--radius-md); backdrop-filter: blur(6px);
}
.callout .ic{ width:40px; height:40px; border-radius:50%; background: rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.callout .ic svg{ width:20px; height:20px; color:#fff; }
.callout b{ font-family: var(--font-display); font-size:16px; }
.callout span{ font-size:13px; opacity:.85; display:block; }
@media (max-width: 900px){ .pack-wrap{ grid-template-columns: 1fr; } .pack-images{ height:auto; min-height:0; margin-bottom: 24px; display:grid; grid-template-columns:1fr 1fr; gap:12px; align-items:start; } .pack-images img{position:static!important;width:100%!important;height:auto!important;aspect-ratio:auto!important;max-height:520px;} }
@media (max-width:520px){.pack-images{grid-template-columns:1fr}.pack-images img{max-height:none}.bg-green .section-head p{color:#f0fff5!important;opacity:1!important}.callout span{opacity:1;color:#effff4}}

/* =========================================================
   MEALS / THALIS
   ========================================================= */
.thali-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.thali-card{ background:#fff; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); border:1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; display:flex; flex-direction:column; }
.thali-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.thali-card.best .thali-photo::after{ content:"Best Seller"; position:absolute; top:14px; left:14px; background:var(--green); color:#fff; font-size:11px; font-weight:800; padding:6px 12px; border-radius:999px; letter-spacing:.5px; }
.thali-photo{ position:relative; aspect-ratio: 4/3; overflow:hidden; }
.thali-photo img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.thali-card:hover .thali-photo img{ transform: scale(1.06); }
.thali-body{ padding: 22px 24px 26px; display:flex; flex-direction:column; flex:1; }
.thali-body .row{ display:flex; align-items:baseline; justify-content:space-between; gap:10px; }
.thali-body h3{ font-size: 21px; }
.thali-price{ font-family: var(--font-display); font-size:20px; color: var(--green); white-space:nowrap; }
.thali-price small{ font-family: var(--font-body); font-size:12px; font-weight:700; color: var(--ink-soft); }
.thali-body p{ margin-top: 10px; font-size: 14px; color: var(--ink-soft); line-height:1.6; flex:1; }
.thali-body .btn{ margin-top:18px; width:100%; }
.meals-cta{ margin-top: 40px; display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
@media (max-width: 900px){ .thali-grid{ grid-template-columns: 1fr; } }

/* Gallery */
.gallery-masonry{
  columns: 4 220px; column-gap: 16px; margin-top: 10px;
}
.gallery-masonry figure{ margin:0 0 16px; break-inside: avoid; border-radius: var(--radius-md); overflow:hidden; position:relative; box-shadow: var(--shadow-sm); }
.gallery-masonry img{ width:100%; display:block; transition: transform .5s ease; }
.gallery-masonry figure:hover img{ transform: scale(1.07); }
.gallery-masonry figcaption{
  position:absolute; left:0; right:0; bottom:0; padding: 14px 16px 12px; font-size:12.5px; font-weight:700; color:#fff;
  background: linear-gradient(0deg, rgba(4,34,15,.82), rgba(4,34,15,0)); opacity:0; transition: opacity .3s ease;
}
.gallery-masonry figure:hover figcaption{ opacity:1; }
@media (max-width: 700px){
  .gallery-masonry{ columns: 2 150px; }
}

/* =========================================================
   30-DAY ROTATING MENU
   ========================================================= */
.menu-scroll{ display:flex; gap: 18px; overflow-x:auto; padding: 6px 6px 22px; scroll-snap-type: x proximity; margin: 0 -6px; }
.menu-scroll::-webkit-scrollbar{ height:8px; }
.menu-scroll::-webkit-scrollbar-thumb{ background: var(--pale-green-2); border-radius:8px; }
.day-card{
  scroll-snap-align:start; flex: 0 0 220px; background:#fff; border-radius: var(--radius-md); overflow:hidden;
  border:1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .2s ease;
}
.day-card:hover{ transform: translateY(-6px); }
.day-card .dphoto{ aspect-ratio: 4/3; overflow:hidden; }
.day-card .dphoto img{ width:100%; height:100%; object-fit:cover; }
.day-card .dbody{ padding: 16px 18px 20px; }
.day-card .dtag{ font-family: var(--font-display); font-size:13px; font-weight:700; color: var(--green); letter-spacing:1px; text-transform:uppercase; }
.day-card h4{ margin-top:6px; font-size:16px; line-height:1.3; }
.menu-note{ margin-top: 22px; font-size: 13.5px; color: var(--ink-soft); display:flex; gap:8px; align-items:flex-start; max-width:640px; }
.menu-note svg{ width:18px; height:18px; flex-shrink:0; margin-top:2px; color: var(--green); }

/* =========================================================
   DABBA JOURNEY (signature section)
   ========================================================= */
.journey-section{ background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-800) 100%); color:#fff; overflow:hidden; }
.journey-head{ text-align:center; max-width: 680px; margin: 0 auto 20px; }
.journey-head p{ color: rgba(255,255,255,.78); }
.journey-track-wrap{ position:relative; margin-top: 60px; }
.journey-line{ position:absolute; left:0; right:0; top: 54px; height: 4px; background: rgba(255,255,255,.16); border-radius:4px; z-index:1; }
.journey-progress{ position:absolute; left:0; top:54px; height:4px; width:0%; background: linear-gradient(90deg,#bfe6c9,#fff); border-radius:4px; z-index:2; transition: width .1s linear; }
.journey-track{ position:relative; z-index:3; display:grid; grid-auto-flow:column; grid-auto-columns: minmax(150px,1fr); gap: 6px; overflow-x:auto; padding-bottom: 20px; scroll-snap-type:x proximity; }
.jstep{ scroll-snap-align:start; display:flex; flex-direction:column; align-items:center; text-align:center; padding: 0 8px; }
.jstep .jdot{
  width: 56px; height:56px; border-radius:50%; background: rgba(255,255,255,.08); border:2px solid rgba(255,255,255,.35);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px; transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.jstep .jdot svg{ width:26px; height:26px; color:#fff; }
.jstep.active .jdot{ background:#fff; border-color:#fff; transform: scale(1.12); }
.jstep.active .jdot svg{ color: var(--green-800); }
.jstep b{ font-family: var(--font-display); font-size:14.5px; }
.jstep span{ font-size:12px; color: rgba(255,255,255,.65); margin-top:4px; display:block; max-width:150px; }
.jdabba{
  position:absolute; top: 30px; width: 54px; height:54px; z-index:4; left:0;
  transition: left .1s linear; filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}
@media (max-width: 720px){ .journey-line, .journey-progress{ top: 44px; } .jdabba{ top: 20px; width:44px; height:44px; } .jstep .jdot{ width:44px; height:44px; } }

/* Dabbawala story panel */
.dabbawala-panel{ margin-top: 90px; display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:center; }
.dw-copy p{ color: rgba(255,255,255,.82); line-height:1.7; margin-top:14px; }
.dw-illustration{ position:relative; }
.dw-illustration svg{ width:100%; height:auto; }
.dw-photo{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); border: 6px solid rgba(255,255,255,.14); }
.dw-photo img{ width:100%; aspect-ratio: 4/3; object-fit:cover; }
@media (max-width: 900px){ .dabbawala-panel{ grid-template-columns:1fr; } }

/* Mumbai local strip animation */
.rail-strip{ position:relative; height: 120px; margin-top: 70px; overflow:hidden; border-radius: var(--radius-md); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.rail-track{ position:absolute; left:0; right:0; bottom: 18px; height:3px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.5) 0 18px, transparent 18px 30px); }
.rail-train{ position:absolute; bottom: 16px; left: -30%; width: 30%; min-width:220px; animation: railmove 16s linear infinite; }
@media (prefers-reduced-motion: reduce){ .rail-train{ animation: none; left: 20%; } }
@keyframes railmove{ from{ left:-32%; } to{ left: 108%; } }
.rail-taxi{ position:absolute; bottom: 18px; width: 70px; animation: taximove 11s linear infinite; animation-delay: 2s; opacity:.9;}
@keyframes taximove{ from{ left:-10%;} to{ left:108%; } }
@media (prefers-reduced-motion: reduce){ .rail-taxi{ animation:none; left: 60%; } }

/* =========================================================
   MUMBAI MAP
   ========================================================= */
.map-wrap{ display:grid; grid-template-columns: 0.95fr 1.05fr; gap: 44px; align-items:center; }
.map-copy .areas{ display:flex; flex-wrap:wrap; gap:10px; margin: 20px 0 26px; }
.area-chip{ background:#fff; border:1px solid var(--line); padding: 8px 16px; border-radius:999px; font-weight:700; font-size:13.5px; color: var(--green-800); display:flex; align-items:center; gap:8px; }
.area-chip svg{ width:14px; height:14px; color: var(--green); }
.check-form{ display:flex; gap:10px; margin-top: 8px; flex-wrap:wrap; }
.check-form input{ flex:1; min-width:200px; padding: 15px 18px; border-radius: 999px; border: 2px solid var(--line); font-size:15px; font-family:inherit; }
.check-form input:focus{ outline:2px solid var(--green); border-color: var(--green); }
#deliveryResult{ margin-top:14px; font-size: 14px; font-weight:700; min-height: 20px; }
#deliveryResult.yes{ color: var(--green-700); }
#deliveryResult.no{ color: #a1442b; }
.map-frame{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
#mumbaiMap{ height: 460px; width:100%; background: var(--pale-green); }
.leaflet-popup-content b{ font-family: var(--font-display); color: var(--green-800); }
@media (max-width: 900px){ .map-wrap{ grid-template-columns:1fr; } #mumbaiMap{ height:340px; } }

/* =========================================================
   PLANS
   ========================================================= */
.plans-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
.plan-card{
  background:#fff; border: 2px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; cursor:pointer;
  transition: all .25s ease; position:relative; display:flex; flex-direction:column;
}
.plan-card:hover{ border-color: var(--pale-green-2); transform: translateY(-4px); }
.plan-card.selected{ border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-8px) scale(1.02); }
.plan-card .ptag{ position:absolute; top:-13px; left: 26px; background: var(--green); color:#fff; font-size:11.5px; font-weight:800; padding:5px 14px; border-radius:999px; }
.plan-card h3{ font-size:24px; margin-top:6px; }
.plan-card .pprice{ font-family: var(--font-display); font-size:15px; color: var(--ink-soft); margin-top:8px; }
.plan-card ul{ margin-top:18px; display:flex; flex-direction:column; gap:10px; flex:1; }
.plan-card li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; color: var(--ink-soft); }
.plan-card li svg{ width:17px; height:17px; color: var(--green); flex-shrink:0; margin-top:2px; }
.plan-card .btn{ margin-top:22px; width:100%; }
.plan-more{
  max-height:0; overflow:hidden; transition: max-height .35s ease, margin-top .35s ease;
}
.plan-card.selected .plan-more{ max-height:80px; margin-top:12px; }
.plan-more p{ font-size:13px; color: var(--green-700); font-weight:700; background: var(--pale-green); padding:10px 14px; border-radius:10px; }
@media (max-width: 900px){ .plans-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } }

/* =========================================================
   AUDIENCE (office / students / corporate)
   ========================================================= */
.aud-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.aud-card{ position:relative; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md); aspect-ratio: 3/4; }
.aud-card img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.aud-card:hover img{ transform: scale(1.08); }
.aud-card::after{ content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(4,34,15,.92) 0%, rgba(4,34,15,.35) 55%, rgba(4,34,15,0) 80%); }
.aud-content{ position:absolute; left:0; right:0; bottom:0; padding: 26px 24px; z-index:2; color:#fff; }
.aud-content .eyebrow{ color:#bfe6c9; }
.aud-content .eyebrow::before{ background:#bfe6c9; }
.aud-content h3{ color:#fff; font-size:22px; margin-bottom:8px; }
.aud-content p{ font-size:13.5px; color: rgba(255,255,255,.82); line-height:1.55; margin-bottom:16px; }
@media (max-width: 900px){ .aud-grid{ grid-template-columns:1fr; } .aud-card{ aspect-ratio: 16/10; } }

/* Team feed strip */
.team-strip{ margin-top: 60px; display:grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items:center; background:#fff; border-radius: var(--radius-lg); padding: 40px; border:1px solid var(--line); }
.team-copy p{ margin-top:14px; color: var(--ink-soft); line-height:1.7; }
.team-visual{ display:flex; align-items:flex-end; gap:10px; justify-content:center; }
.team-visual .dabba-ic{ width:44px; opacity:.5; transition: all .5s ease; }
.team-visual .dabba-ic.on{ opacity:1; transform: translateY(-6px); }
@media (max-width: 900px){ .team-strip{ grid-template-columns:1fr; padding:28px; } }

/* =========================================================
   CATERING
   ========================================================= */
.cater-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items:center; }
.cater-list{ display:flex; flex-direction:column; gap:16px; margin-top:24px; }
.cater-list li{ display:flex; gap:14px; align-items:flex-start; }
.cater-list .ic{ width:38px; height:38px; border-radius:10px; background: var(--pale-green); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cater-list .ic svg{ width:19px; height:19px; color: var(--green); }
.cater-list b{ font-family: var(--font-display); font-size:15.5px; display:block; }
.cater-list span{ font-size:13.5px; color: var(--ink-soft); }
.cater-photos{ position:relative; height: 460px; }
.cater-photos img{ position:absolute; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit:cover; }
.cp1{ width:70%; top:0; right:0; aspect-ratio: 4/3; }
.cp2{ width:55%; bottom:0; left:0; aspect-ratio: 4/3; border: 6px solid #fff; }
.jain-card{ margin-top: 46px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; display:grid; grid-template-columns: 130px 1fr; gap: 24px; align-items:center; }
.jain-card img{ width:130px; height:130px; object-fit:cover; border-radius: var(--radius-md); }
.jain-card h4{ font-size:19px; }
.jain-card p{ margin-top:8px; font-size:14px; color: var(--ink-soft); line-height:1.6; }
@media (max-width: 900px){ .cater-grid{ grid-template-columns:1fr; } .cater-photos{ height:340px; max-width:420px; margin:0 auto; } .jain-card{ grid-template-columns:1fr; text-align:center; } .jain-card img{ margin:0 auto; } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-scroll{ display:flex; gap:22px; overflow-x:auto; padding: 10px 6px 26px; scroll-snap-type:x proximity; }
.testi-card{ scroll-snap-align:start; flex:0 0 340px; background:#fff; border-radius: var(--radius-lg); padding:28px; border:1px solid var(--line); box-shadow: var(--shadow-sm); }
.testi-stars{ display:flex; gap:3px; margin-bottom:14px; }
.testi-stars svg{ width:16px; height:16px; color:#f5a623; }
.testi-card p{ font-size:15px; line-height:1.65; color: var(--ink); min-height: 130px; }
.testi-person{ display:flex; align-items:center; gap:12px; margin-top:20px; }
.testi-person img{ width:48px; height:48px; border-radius:50%; object-fit:cover; }
.testi-person b{ font-family: var(--font-display); font-size:14.5px; display:block; }
.testi-person span{ font-size:12.5px; color: var(--ink-soft); }

/* Instagram */
.insta-head{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; margin-bottom: 26px; }
.insta-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.insta-item{ position:relative; aspect-ratio:1; border-radius: var(--radius-sm); overflow:hidden; }
.insta-item img{ width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.insta-item:hover img{ transform: scale(1.1); }
.insta-item::after{ content:""; position:absolute; inset:0; background: rgba(4,34,15,0); transition: background .3s ease; }
.insta-item:hover::after{ background: rgba(4,34,15,.28); }
.insta-item svg{ position:absolute; inset:0; margin:auto; width:26px; height:26px; color:#fff; opacity:0; transition: opacity .3s ease; }
.insta-item:hover svg{ opacity:1; }
@media (max-width: 900px){ .insta-grid{ grid-template-columns: repeat(3,1fr); } .insta-item:nth-child(n+4){ display:none; } }
@media (min-width: 901px){ .insta-item:nth-child(n+6){ display:none; } }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta{ text-align:center; }
.final-cta h2{ font-size: clamp(28px,4vw,42px); }
.final-cta p{ margin: 16px auto 30px; max-width:560px; color: rgba(255,255,255,.82); font-size:16px; }
.final-cta .ctas{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
footer{ background: var(--green-deep); color: #cfe6d6; padding: 70px 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand img{ height: 50px; margin-bottom:16px; }
.footer-brand p{ font-size:14px; line-height:1.7; color: rgba(255,255,255,.68); max-width: 300px; }
.f-social{ display:flex; gap:10px; margin-top:20px; }
.f-social a{ width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition: background .2s ease, transform .2s ease; }
.f-social a:hover{ background: var(--green); transform: translateY(-3px); }
.f-social svg{ width:17px; height:17px; color:#fff; }
footer h5{ font-family: var(--font-display); color:#fff; font-size:15px; margin-bottom:18px; letter-spacing:.4px; }
.footer-grid ul{ display:flex; flex-direction:column; gap:12px; }
.footer-grid a{ font-size:14px; color: rgba(255,255,255,.72); transition: color .2s ease; }
.footer-grid a:hover{ color:#fff; }
.f-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; color: rgba(255,255,255,.72); }
.f-contact svg{ width:17px; height:17px; flex-shrink:0; margin-top:2px; color:#bfe6c9; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: 22px 0; font-size:12.5px; color: rgba(255,255,255,.55); flex-wrap:wrap; gap:10px; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }

/* =========================================================
   MOBILE STICKY BAR
   ========================================================= */
.mobile-bar{
  position: fixed; left:0; right:0; bottom:0; z-index: 460; display:none;
  background:#fff; border-top:1px solid var(--line); box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.mobile-bar .mb-row{ display:grid; grid-template-columns: 1fr 1fr 1fr; gap:8px; }
.mobile-bar a{ display:flex; flex-direction:column; align-items:center; gap:4px; font-size:11px; font-weight:800; color: var(--green-deep); padding:6px 0; border-radius:12px; }
.mobile-bar a svg{ width:20px; height:20px; }
.mobile-bar a.mb-order{ background: var(--green); color:#fff; }
.mobile-bar a.mb-wa{ background:#1EAA55; color:#fff; }
@media (max-width: 720px){ .mobile-bar{ display:block; } body{ padding-bottom: 78px; } }

/* Floating WhatsApp (desktop) */
.fab-wa{
  position: fixed; right: 26px; bottom: 26px; z-index: 450; width:60px; height:60px; border-radius:50%;
  background:#1EAA55; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-lg);
  transition: transform .2s ease;
}
.fab-wa:hover{ transform: scale(1.08); }
.fab-wa svg{ width:28px; height:28px; color:#fff; }
@media (max-width: 720px){ .fab-wa{ bottom: 94px; right:18px; width:52px; height:52px; } .fab-wa svg{ width:24px;height:24px; } }

/* Skip link */
.skip-link{ position:absolute; left:-999px; top:auto; background:#fff; color: var(--green-deep); padding:12px 18px; z-index:999; border-radius:0 0 10px 0; font-weight:800; }
.skip-link:focus{ left:0; top:0; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible{ outline: 3px solid var(--green); outline-offset:2px; }

/* V4 delivery directory + audio */
.delivery-note{margin:18px 0;padding:16px 18px;border-radius:16px;background:#f3fbf6;border:1px solid #cfe8d8;color:#163126;font-size:14px;line-height:1.55}.delivery-note a{font-weight:800;color:var(--green-700)}
.delivery-result-card{margin-top:14px;padding:16px 18px;border-radius:16px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm)}.delivery-result-card strong{display:block;font-size:18px;color:var(--green-700);margin-bottom:4px}.delivery-result-card .verify{color:#9a5a12}.delivery-result-card a{display:inline-block;margin-top:10px;margin-right:8px}
.area-directory{margin-top:22px}.area-directory summary{cursor:pointer;font-weight:800;color:var(--green-700);padding:12px 0}.area-directory-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:9px;max-height:390px;overflow:auto;padding:8px 4px 8px 0}.area-row{background:#fff;border:1px solid var(--line);border-radius:12px;padding:11px 12px}.area-row b{display:block;text-transform:capitalize;font-size:14px}.area-row small{color:var(--ink-soft);line-height:1.35;display:block;margin-top:3px}.status-dot{width:8px;height:8px;border-radius:50%;display:inline-block;margin-right:6px;background:var(--green)}.status-dot.verify{background:#d68a22}.status-dot.lunch{background:#4876c7}.status-dot.dinner{background:#8b5cb5}
.audio-fab{position:fixed;right:20px;bottom:92px;z-index:9998;background:#fff;border:1px solid #dbe9df;box-shadow:0 8px 28px rgba(0,0,0,.14);border-radius:999px;padding:9px 13px;display:flex;align-items:center;gap:8px;color:var(--green-700);font-weight:800}.audio-fab button{border:0;background:var(--green);color:#fff;width:34px;height:34px;border-radius:50%;cursor:pointer}.audio-fab .audio-label{font-size:12px}@media(max-width:720px){.audio-fab{bottom:92px;right:14px;padding:7px}.audio-fab .audio-label{display:none}}
.bg-green .section-head p{color:#e8f7ed;opacity:1}.bg-green .eyebrow{color:#bff0ce}.bg-green .h-lg{color:#fff}.callout b{color:#fff}.callout span{color:#e8f7ed;opacity:1}

/* V5 mobile polish: complete imagery, audio spacing and drawer safety */
.audio-fab{isolation:isolate}
.audio-fab.is-playing{border-color:#9fd7b1;box-shadow:0 8px 30px rgba(0,128,54,.22)}
@media(max-width:720px){
  /* Keep the music control clearly above the WhatsApp FAB and sticky action bar. */
  .audio-fab{bottom:164px;right:18px;width:48px;height:48px;padding:6px;justify-content:center}
  .audio-fab button{width:36px;height:36px;flex:0 0 36px}
  .fab-wa{bottom:94px;right:18px;width:52px;height:52px}
  body.menu-open .audio-fab, body.menu-open .fab-wa, body.menu-open .mobile-bar{display:none!important}

  /* Product/brand photographs must remain complete on small screens. */
  .pack-images img,.why-photo img,.hv-card-bag img,.dw-photo img{
    object-fit:contain!important;
    object-position:center!important;
    height:auto!important;
    max-height:none!important;
    background:#f7faf8;
  }
  .why-photo img,.hv-card-bag img,.dw-photo img{aspect-ratio:auto!important}
  .pack-images{overflow:visible!important}

  /* Food photos may fill their cards, but preserve their proportions and central subject. */
  .thali-photo img,.day-card .dphoto img,.aud-card img,.jain-card img,.insta-item img{
    object-position:center center!important;
  }
  .cater-photos img{object-fit:contain!important;object-position:center!important;background:#f7faf8}
}

/* V7 production enhancements */
.today-menu{margin:36px 0 42px;padding:30px;border:1px solid #dcebe1;border-radius:26px;background:linear-gradient(135deg,#f4fbf6,#fff);display:flex;align-items:center;justify-content:space-between;gap:28px}.today-copy{max-width:720px}.today-copy h3,.build-meal h3{font-family:var(--font-display);font-size:clamp(26px,3vw,40px);line-height:1.1;margin:5px 0 10px}.today-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}.today-badges{display:flex;flex-direction:column;gap:9px;min-width:180px}.today-badges span{background:#fff;border:1px solid #cfe6d7;border-radius:999px;padding:10px 14px;font-size:13px;font-weight:800;color:var(--green-700)}
.build-meal{margin:38px 0 10px;padding:28px 30px;background:var(--green);color:#fff;border-radius:26px;display:flex;align-items:center;justify-content:space-between;gap:30px}.build-meal .eyebrow{color:#bfe8cd}.build-meal p{max-width:760px;color:#e7f6ec}.build-meal .btn{background:#fff;color:var(--green);flex:0 0 auto}
.catering-form{margin-top:28px;padding:22px;background:#fff;border:1px solid #dce8df;border-radius:20px}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.catering-form label{display:flex;flex-direction:column;gap:7px;font-size:13px;font-weight:800;color:var(--green-800);margin-bottom:14px}.catering-form input,.catering-form select{width:100%;border:1px solid #cbded1;border-radius:12px;padding:12px 13px;background:#fff;font:inherit;color:#183b29}.catering-form .btn{border:0;cursor:pointer}
.faq-grid{max-width:900px;margin:35px auto 0;display:grid;gap:12px}.faq-grid details{border:1px solid #dce8df;border-radius:16px;padding:0 20px;background:#fff}.faq-grid summary{cursor:pointer;font-weight:800;padding:18px 0;color:var(--green-800)}.faq-grid p{padding:0 0 18px;margin:0;color:#52675b}
.audio-status{font-size:11px;color:#7b9184}.audio-fab.audio-error{border-color:#d6a5a5}.audio-fab.audio-error .audio-status{color:#9a3030}
/* Preserve full important brand photography */
.pack-photo img,.packaging-photo img,.brand-photo img{object-fit:contain!important;object-position:center!important;background:#f6faf7}
@media(max-width:720px){.today-menu,.build-meal{flex-direction:column;align-items:stretch;padding:22px}.today-badges{flex-direction:row;flex-wrap:wrap;min-width:0}.form-grid{grid-template-columns:1fr}.audio-fab{bottom:170px!important;right:16px!important}.fab-wa{bottom:94px!important}.audio-status{display:none}.pack-photo img,.packaging-photo img{height:auto!important;max-height:none!important}}

/* V8.2 accessibility and dark-section contrast audit */
.journey-section .journey-head .h-lg,
.journey-section .journey-head h2 {
  color: #ffffff !important;
  text-shadow: 0 1px 1px rgba(0,0,0,.08);
}
.journey-section .journey-head .eyebrow {
  color: #35d878 !important;
}
.journey-section .journey-head p {
  color: rgba(255,255,255,.90) !important;
}
.journey-section .jstep b {
  color: #ffffff !important;
}
.journey-section .jstep span {
  color: rgba(255,255,255,.80) !important;
}
.journey-track {
  padding-left: 24px;
  padding-right: 40px;
  scroll-padding-inline: 24px 40px;
  scrollbar-gutter: stable;
}
.journey-track .jstep:last-child { margin-right: 12px; }
.journey-line,
.journey-progress { left:24px; right:40px; }

/* Keep copy legible across all dark green feature sections */
.journey-section .dw-copy h2,
.journey-section .dw-copy h3,
.journey-section .dw-copy strong,
.packaging-section h2,
.packaging-section h3,
.packaging-section strong {
  color:#ffffff !important;
}
.journey-section .dw-copy p,
.packaging-section p {
  color:rgba(255,255,255,.86) !important;
}

@media (max-width:720px){
  .journey-track { padding-left:18px; padding-right:34px; scroll-padding-inline:18px 34px; }
  .journey-line,.journey-progress { left:18px; right:34px; }
  .journey-section .journey-head p { font-size:15px; line-height:1.6; }
}

/* =========================================================
   MOBILE HERO STABILITY FIX — 2026-08-07
   Keep the desktop composition intact while giving phones a
   deliberate single-column hero with complete, undistorted imagery.
   ========================================================= */
@media (max-width:720px){
  .hero{padding-top:30px;padding-bottom:34px;overflow:hidden}
  .hero-grid{display:flex;flex-direction:column;gap:24px;align-items:stretch}
  .hero-copy{width:100%;position:relative;z-index:10}

  /* Above-the-fold content must never remain hidden if IntersectionObserver
     fires late on mobile Safari. */
  .hero .reveal,
  .hero .reveal-stagger,
  .hero .reveal-stagger > *{opacity:1!important;transform:none!important}

  .hero-tag{margin-bottom:16px;font-size:12px;padding:7px 13px 7px 7px}
  .hero h1{font-size:clamp(38px,11vw,52px);line-height:.98;letter-spacing:-.8px}
  .hero-sub{font-size:16px;line-height:1.58;margin-top:18px;max-width:none}
  .hero-ctas{margin-top:22px;display:grid;grid-template-columns:1fr;gap:10px}
  .hero-ctas .btn{width:100%;justify-content:center;min-height:50px}

  .hero-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin-top:24px}
  .hero-stats div{background:rgba(255,255,255,.78);border:1px solid var(--line);border-radius:14px;padding:12px 9px;min-width:0}
  .hero-stats div b{font-size:21px;line-height:1.05;white-space:normal}
  .hero-stats div span{display:block;font-size:10.5px;line-height:1.35;margin-top:5px;overflow-wrap:anywhere}

  /* Replace the desktop absolute collage with a stable mobile composition. */
  .hero-visual{order:2;width:100%;height:auto!important;min-height:0!important;margin-top:0!important;display:grid;grid-template-columns:1fr 1fr;gap:10px;position:relative;padding:0 0 34px}
  .hv-card-bag,.hv-card-thali{position:relative!important;inset:auto!important;left:auto!important;right:auto!important;top:auto!important;bottom:auto!important;width:100%!important;max-width:none!important;height:auto!important;border:4px solid #fff;border-radius:22px;overflow:hidden;box-shadow:var(--shadow-md);z-index:5}
  .hv-card-bag{grid-column:1 / -1}
  .hv-card-thali{grid-column:1 / -1}
  .hv-card-bag img,.hv-card-thali img{display:block!important;width:100%!important;height:auto!important;max-height:none!important;aspect-ratio:auto!important;object-fit:contain!important;object-position:center!important;background:#fff}

  /* Decorative desktop layers make the phone hero crowded and can overlap CTAs. */
  .hero-visual .hv-skyline,.hero-visual .hv-birds,.hero-visual .hv-taxi,.hero-visual .hv-train,.hero-visual .hv-badge{display:none!important}

  /* Keep floating controls separated from the fixed mobile action bar. */
  .audio-fab{bottom:166px!important;right:18px!important}
  .fab-wa{bottom:96px!important;right:18px!important}
}

@media (max-width:390px){
  .hero-stats{grid-template-columns:1fr 1fr}
  .hero-stats div:last-child{grid-column:1 / -1}
}


/* V8.4 photo proportion fix — preserve the original aspect ratio in the editorial gallery. */
.gallery-masonry figure{
  background:#f7faf8;
  height:auto!important;
}
.gallery-masonry figure img{
  width:100%!important;
  height:auto!important;
  max-height:none!important;
  aspect-ratio:auto!important;
  object-fit:contain!important;
  object-position:center!important;
}
/* Do not enlarge gallery photographs on hover in a way that makes them appear cropped. */
.gallery-masonry figure:hover img{transform:scale(1.02)!important;}
@media(max-width:700px){
  .gallery-masonry{columns:2;column-gap:10px;}
  .gallery-masonry figure{margin-bottom:10px;border-radius:16px;}
  .gallery-masonry figure img{height:auto!important;min-height:0!important;}
}
@media(max-width:380px){
  .gallery-masonry{columns:1;}
}


/* Final image safety guard
   Keeps responsive photographs proportional and prevents accidental stretching.
   Section-specific V8.4 rules continue to control intentional cropping. */
img{
  max-width:100%;
}
.gallery-masonry img,
.pack-images img,
.why-photo img,
.hv-card-bag img,
.hv-card-thali img,
.dw-photo img{
  height:auto;
}
