/* =========================================================
   AAGANTUK — Thakali & Restro
   Design tokens: char-black base, ember orange + chili red
   accents, cream white. Poppins for display, Montserran for body.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800;900&family=Montserrat:wght@400;500;600;700&display=swap');

:root{
  --black:        #150e0b;
  --black-soft:   #1f1613;
  --black-card:   #241a16;
  --white:        #fff9f2;
  --white-dim:    #d9cfc4;
  --orange:       #ff7a1a;
  --orange-deep:  #d9480f;
  --gold:         #ffb347;
  --red:          #c81d25;
  --red-deep:     #7a0d12;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --container: 1200px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--black);
  color:var(--white);
  font-family:var(--font-body);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
input,textarea,select{ font-family:inherit; }

::selection{ background:var(--orange); color:var(--black); }

::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:var(--black); }
::-webkit-scrollbar-thumb{ background:linear-gradient(var(--orange),var(--red)); border-radius:10px; }

:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

.container{ max-width:var(--container); margin:0 auto; padding:0 32px; }

@media(max-width:768px){ .container{ padding:0 20px; } }
@media(max-width:480px){ .container{ padding:0 16px; } }

h1,h2,h3,h4{ font-family:var(--font-display); line-height:1.05; letter-spacing:-0.01em; }
.eyebrow{
  font-family:var(--font-body);
  font-size:0.72rem;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--orange);
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:26px; height:2px;
  background:linear-gradient(90deg,var(--red),var(--orange));
  display:inline-block;
}

.grain{
  position:fixed; inset:0; pointer-events:none; z-index:9999;
  opacity:0.045; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------------- NAV ---------------- */
.site-nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:20px 0;
  transition:background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.site-nav.scrolled{
  background:rgba(21,14,11,0.92);
  -webkit-backdrop-filter: blur(10px); /* Safari 9+ */
  backdrop-filter: blur(10px);
  padding:12px 0;
  box-shadow:0 10px 30px rgba(0,0,0,0.35);
  border-bottom:1px solid rgba(255,122,26,0.15);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; }
.brand{ display:flex; align-items:center; gap:12px; font-family:var(--font-display); font-weight:800; font-size:1.25rem; letter-spacing:0.01em; }
.brand-mark{
  width:auto; height:42px; border-radius:0;
  background:none; display:flex; place-items:unset;
  box-shadow:none; overflow:visible;
}
.brand-logo{ height:100%; width:auto; object-fit:contain; }

/* Pot + spices blend for brand mark */
.brand-mark{ width:64px; height:64px; display:inline-block; position:relative; }
.pot-wrap{ width:64px; height:64px; position:relative; }
.pot-wrap .brand-logo{ position:relative; width:100%; height:100%; display:block; object-fit:cover; border-radius:50%; opacity:0.95; mix-blend-mode:multiply; }
.pot{ position:absolute; left:50%; bottom:6px; transform:translateX(-50%); width:56%; height:36%; background:linear-gradient(180deg,#4b2d1b 0%, #2b160c 100%); border-radius:50% 50% 40% 40%; box-shadow:0 3px 6px rgba(0,0,0,0.35); z-index:2; pointer-events:none; }
.pot::before{ content:""; position:absolute; left:50%; top:-24px; transform:translateX(-50%); width:70%; height:36px; background:linear-gradient(180deg,#6b3b1f,#3e1f10); border-radius:50%; z-index:3; }
.spices{ position:absolute; left:50%; bottom:44%; width:0; height:0; pointer-events:none; z-index:4; }
.spice{ position:absolute; width:8px; height:8px; border-radius:50%; background:#f4b400; opacity:0; transform:translate(-50%,0) scale(0.8); }
.spice.s1{ left:32%; bottom:0; background:#f6a800; transition: transform 700ms cubic-bezier(.2,.9,.2,1), opacity 500ms; }
.spice.s2{ left:50%; bottom:0; background:#f08b00; transition: transform 850ms cubic-bezier(.2,.9,.2,1), opacity 550ms; }
.spice.s3{ left:68%; bottom:0; background:#ffcf66; transition: transform 950ms cubic-bezier(.2,.9,.2,1), opacity 600ms; }
.brand-mark:hover .spice{ opacity:1; }
.brand-mark:hover .spice.s1{ transform:translate(-50%,-46px) scale(1); }
.brand-mark:hover .spice.s2{ transform:translate(-50%,-58px) scale(1.1); }
.brand-mark:hover .spice.s3{ transform:translate(-50%,-40px) scale(0.95); }

/* Ensure the pot itself doesn't move on hover */
.brand-mark .pot{ transition:none; }

/* HERO pot: static, no movement */
#layer-pot .pot-wrap{ position:relative; width:320px; max-width:80vw; height:340px; margin:0 auto; }
#layer-pot .pot-wrap svg,
#layer-pot .pot-wrap .pot-image{ width:100%; height:auto; display:block; position:relative; z-index:8; pointer-events:auto; transition:transform 0.4s ease, filter 0.4s ease; }
#layer-pot .pot-wrap .pot-image{ max-width:100%; object-fit:contain; filter:drop-shadow(0 8px 24px rgba(255,122,26,0.25)); }
#layer-pot .pot-wrap:hover .pot-image{ transform:scale(1.05); filter:drop-shadow(0 12px 36px rgba(255,122,26,0.45)); }

/* Fire glow under pot */
.pot-wrap::before{
  content:"";
  position:absolute;
  bottom:-10px; left:50%; transform:translateX(-50%);
  width:70%; height:30px;
  background:radial-gradient(ellipse,rgba(255,122,26,0.5) 0%,rgba(255,80,0,0.3) 40%,transparent 70%);
  border-radius:50%;
  filter:blur(12px);
  animation:fire-pulse 2s ease-in-out infinite alternate;
  z-index:1;
}
.pot-wrap::after{
  content:"";
  position:absolute;
  bottom:0; left:50%; transform:translateX(-50%);
  width:50%; height:18px;
  background:radial-gradient(ellipse,rgba(255,180,50,0.6) 0%,rgba(255,100,0,0.3) 50%,transparent 80%);
  border-radius:50%;
  filter:blur(8px);
  animation:fire-pulse 1.5s ease-in-out infinite alternate-reverse;
  z-index:2;
}
@keyframes fire-pulse{
  0%{ opacity:0.7; transform:translateX(-50%) scaleX(1); }
  100%{ opacity:1; transform:translateX(-50%) scaleX(1.15); }
}

.steam{
  position:absolute; bottom:88%; border-radius:50%;
  background:radial-gradient(circle,rgba(255,249,242,0.5),transparent 70%);
  filter:blur(10px);
  animation:steam-rise 4.5s ease-in infinite;
}
@keyframes steam-rise{
  0%{ opacity:0.6; transform:translateY(0) scaleX(1); }
  50%{ opacity:0.3; transform:translateY(-30px) scaleX(1.3); }
  100%{ opacity:0; transform:translateY(-60px) scaleX(0.8); }
}

#layer-pot .spices{ position:absolute; left:50%; bottom:56%; transform:translateX(-50%); width:120px; height:80px; z-index:4; pointer-events:none; }
#layer-pot .spice{ position:absolute; width:12px; height:12px; border-radius:50%; background:#f4b400; opacity:0; transform:translate(-50%,0) scale(0.8); }
#layer-pot .spice.s1{ left:28%; bottom:6px; background:#f6a800; transition: transform 700ms cubic-bezier(.2,.9,.2,1), opacity 500ms; }
#layer-pot .spice.s2{ left:50%; bottom:6px; background:#f08b00; transition: transform 850ms cubic-bezier(.2,.9,.2,1), opacity 550ms; }
#layer-pot .spice.s3{ left:72%; bottom:6px; background:#ffcf66; transition: transform 950ms cubic-bezier(.2,.9,.2,1), opacity 600ms; }
#layer-pot .pot-wrap:hover .spice, #layer-pot:hover .spice, .hero:hover #layer-pot .spice{ opacity:1; }
#layer-pot .pot-wrap:hover .spice.s1{ transform:translate(-50%,-58px) scale(1); }
#layer-pot .pot-wrap:hover .spice.s2{ transform:translate(-50%,-74px) scale(1.1); }
#layer-pot .pot-wrap:hover .spice.s3{ transform:translate(-50%,-50px) scale(0.95); }
#layer-pot svg{ transition:none; }

/* Ensure pot container doesn't shift on hover */
#layer-pot .pot-wrap{ transition:none; transform:none; }

/* Prevent spices from affecting layout */
#layer-pot .spice{ will-change:auto; }
.pot-wrap, #layer-pot .pot-wrap{ -webkit-backface-visibility:hidden; backface-visibility:hidden; }

/* Pot layer — static, no movement */
#layer-pot .pot-wrap{ pointer-events:auto; position:relative; z-index:3; transition:none !important; }
#layer-pot svg, #layer-pot .steam{ transition:none !important; }
.brand small{ display:block; font-family:var(--font-body); font-weight:600; font-size:0.58rem; letter-spacing:0.24em; color:var(--white-dim); text-transform:uppercase; margin-top:2px; }

.nav-links{ display:flex; gap:2px; align-items:center; }
.nav-links a{
  position:relative;
  padding:10px 18px;
  font-size:0.86rem; font-weight:600;
  color:var(--white-dim);
  transition:color .25s ease;
}
.nav-links a::after{
  content:""; position:absolute; left:18px; right:18px; bottom:6px; height:2px;
  background:linear-gradient(90deg,var(--orange),var(--red));
  transform:scaleX(0); transform-origin:left; transition:transform .3s ease;
}
.nav-links a:hover, .nav-links a.active{ color:var(--white); }
.nav-links a:hover::after, .nav-links a.active::after{ transform:scaleX(1); }

.nav-cta{
  padding:11px 24px !important;
  background:linear-gradient(120deg,var(--orange),var(--red));
  border-radius:100px;
  color:var(--white) !important;
  font-weight:700 !important;
  box-shadow:0 8px 20px rgba(200,29,37,0.35);
}
.nav-cta::after{ display:none; }
.nav-cta:hover{ filter:brightness(1.08); }

.nav-toggle{ display:none; flex-direction:column; gap:5px; padding:8px; z-index:1001; }
.nav-toggle span{ width:24px; height:2px; background:var(--white); transition:.3s; }

/* ---------------- BUTTONS ---------------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 30px; border-radius:100px;
  font-weight:700; font-size:0.92rem;
  transition:transform .3s ease, box-shadow .3s ease, filter .3s ease;
}
.btn-primary{
  background:linear-gradient(120deg,var(--orange),var(--red));
  color:var(--white);
  box-shadow:0 10px 26px rgba(200,29,37,0.4);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 34px rgba(200,29,37,0.5); }
.btn-ghost{
  border:1.5px solid rgba(255,249,242,0.35);
  color:var(--white);
}
.btn-ghost:hover{ border-color:var(--orange); background:rgba(255,122,26,0.08); transform:translateY(-3px); }
.btn-sm{ padding:11px 22px; font-size:0.82rem; }

/* ---------------- HERO / PARALLAX ---------------- */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; align-items:center;
  overflow:hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% 120%, rgba(200,29,37,0.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% -10%, rgba(255,122,26,0.25), transparent 60%),
    linear-gradient(180deg,#150e0b 0%, #1a1210 60%, #150e0b 100%);
}
.parallax-layer{ position:absolute; inset:0; will-change:transform; }
#layer-smoke{ z-index:1; }
#layer-particles{ z-index:2; }
#layer-pot{ z-index:6; display:flex; justify-content:center; align-items:center; pointer-events:none; position:relative; }
#layer-glow{ z-index:0; }

.smoke-blob{
  position:absolute; border-radius:50%;
  filter:blur(60px);
  opacity:0.5;
  animation:drift 18s ease-in-out infinite;
}
.smoke-blob.b1{ width:420px; height:420px; background:radial-gradient(circle,var(--orange-deep),transparent 70%); top:8%; left:6%; animation-duration:22s; }
.smoke-blob.b2{ width:520px; height:520px; background:radial-gradient(circle,var(--red-deep),transparent 70%); bottom:-10%; right:4%; animation-duration:26s; animation-delay:-4s; }
.smoke-blob.b3{ width:300px; height:300px; background:radial-gradient(circle,var(--gold),transparent 70%); top:40%; right:22%; opacity:0.18; animation-duration:19s; animation-delay:-9s; }

@keyframes drift{
  0%,100%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(30px,-40px) scale(1.12); }
}

.spice-particle{ position:absolute; opacity:0.85; animation:float-p linear infinite; }
@keyframes float-p{
  0%{ transform:translateY(0) rotate(0deg); }
  100%{ transform:translateY(-140px) rotate(360deg); }
}

.hero-visual{ position:relative; display:flex; justify-content:center; align-items:center; min-height:360px; overflow:visible; margin-top:-60px; }
.pot-wrap{ position:relative; width:min(42vw,380px); max-width:380px; margin:0 auto; transition:transform 0.4s ease; }
.pot-wrap:hover{ transform:scale(1.03); }
.steam.s1{ left:28%; width:60px; height:120px; }
.steam.s2{ left:48%; width:80px; height:160px; }
.steam.s3{ left:64%; width:50px; height:100px; }

.hero-content{ position:relative; z-index:5; width:100%; padding-top:90px; }
.hero-content .container{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:40px; align-items:center; }
.hero-title{
  font-size:clamp(2.8rem,5.6vw,4.6rem);
  font-weight:800;
  margin:18px 0 22px;
}
.hero-title .accent{
  background:linear-gradient(120deg,var(--gold),var(--orange),var(--red));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{ font-size:1.08rem; color:var(--white-dim); max-width:480px; margin-bottom:34px; line-height:1.7; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:36px; margin-top:52px; }
.hero-stats div{
  background:rgba(255,122,26,0.08);
  border:1px solid rgba(255,122,26,0.2);
  border-radius:12px;
  padding:16px 24px;
  text-align:center;
  transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor:default;
}
.hero-stats div:hover{
  transform:translateY(-4px) scale(1.02);
  box-shadow:0 8px 24px rgba(255,122,26,0.25);
  border-color:rgba(255,122,26,0.6);
}
.hero-stats div:active{
  transform:translateY(-2px) scale(0.98);
}
.hero-stats div strong{ display:block; font-family:var(--font-display); font-size:2rem; color:var(--orange); font-weight:800; transition:color 0.3s ease; }
.hero-stats div:hover strong{ color:var(--gold); }
.hero-stats div span{ font-size:0.82rem; color:var(--white-dim); letter-spacing:0.04em; display:block; margin-top:4px; }

@media (min-width:1200px){
  .hero{ padding-bottom:100px; }
  .ticker-strip{ margin:-10px 0 0; }
  .hero-stats{ gap:44px; margin-top:56px; }
  .hero-stats div{ padding:20px 32px; border-radius:16px; }
  .hero-stats div strong{ font-size:2.4rem; }
  .hero-stats div span{ font-size:0.9rem; letter-spacing:0.06em; }
  .about-grid{ grid-template-columns:200px 1fr; gap:40px; align-items:center; }
  .about-visual{ margin:0; flex-shrink:0; }
}

.scroll-cue{
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size:0.68rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--white-dim);
  z-index:5;
}
.scroll-cue .line{ width:1px; height:36px; background:linear-gradient(var(--orange),transparent); animation:cue 1.8s ease-in-out infinite; }
@keyframes cue{ 0%,100%{ transform:scaleY(1); opacity:.6;} 50%{ transform:scaleY(0.5); opacity:1; } }

/* ---------------- TICKER ---------------- */
.ticker-strip{
  position:relative; z-index:6;
  background:linear-gradient(100deg,var(--red-deep),var(--orange-deep));
  transform:rotate(-1.4deg) scale(1.03);
  padding:16px 0;
  box-shadow:0 20px 40px rgba(0,0,0,0.35);
  margin:-16px 0 0;
}
.ticker-track{ display:flex; width:max-content; animation:ticker 32s linear infinite; }
.ticker-track span{
  font-family:var(--font-display); font-weight:700; font-size:1.05rem;
  letter-spacing:0.03em; color:var(--white);
  padding:0 22px; display:flex; align-items:center; gap:22px;
  white-space:nowrap;
}
.ticker-track span::after{ content:"◆"; font-size:0.6rem; color:var(--gold); opacity:0.8; }
@keyframes ticker{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ---------------- SECTION SHELL ---------------- */
section{ position:relative; padding:120px 0; }
.site-section--alt{ background:var(--black-soft); }
.section-head{ max-width:640px; margin-bottom:64px; }
.section-head h2{ font-size:clamp(2rem,3.6vw,2.9rem); margin-top:14px; font-weight:800; }
.section-head p{ color:var(--white-dim); margin-top:16px; font-size:1.02rem; line-height:1.7; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.reveal{ opacity:0; transform:translateY(36px); transition:opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-scale{ opacity:0; transform:scale(0.92); transition:opacity .7s ease, transform .7s ease; }
.reveal-scale.in{ opacity:1; transform:scale(1); }

/* ---------------- DISH CARDS ---------------- */
.dish-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.dish-card{
  position:relative;
  background:linear-gradient(160deg,var(--black-card),var(--black-soft));
  border:1px solid rgba(255,122,26,0.12);
  border-radius:var(--radius-lg);
  padding:30px;
  overflow:hidden;
  transition:transform .5s cubic-bezier(.2,.8,.2,1), border-color .4s ease, box-shadow .4s ease;
  transform-style:preserve-3d;
}
.dish-card::before{
  content:""; position:absolute; top:-40%; right:-30%; width:220px; height:220px; border-radius:50%;
  background:radial-gradient(circle,rgba(255,122,26,0.28),transparent 70%);
  transition:opacity .4s ease;
}
.dish-card:hover{
  border-color:rgba(255,122,26,0.45);
  box-shadow:0 30px 60px rgba(0,0,0,0.45);
}
.dish-plate{
  width:100%; aspect-ratio:1.4/1; border-radius:var(--radius-md);
  margin-bottom:22px; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.dish-img{
  width:100%; height:100%; object-fit:cover; border-radius:var(--radius-md);
  position:absolute; inset:0;
}
.dish-badge{
  position:absolute; top:14px; left:14px;
  background:rgba(21,14,11,0.7); -webkit-backdrop-filter: blur(6px); backdrop-filter:blur(6px);
  padding:6px 14px; border-radius:100px; font-size:0.68rem; font-weight:700;
  letter-spacing:0.08em; text-transform:uppercase; color:var(--gold);
  border:1px solid rgba(255,179,71,0.3);
}
.dish-card h3{ font-size:1.3rem; margin-bottom:8px; }
.dish-card .desc{ color:var(--white-dim); font-size:0.9rem; line-height:1.6; margin-bottom:18px; min-height:60px; }
.dish-foot{ display:flex; align-items:center; justify-content:space-between; }
.price{ font-family:var(--font-display); font-weight:800; font-size:1.3rem; color:var(--orange); }
.spice-level{ display:flex; gap:4px; }
.spice-level span{ width:7px; height:7px; border-radius:50%; background:rgba(255,249,242,0.15); }
.spice-level span.on{ background:var(--red); }

@media(max-width:768px){
  .dish-grid{ grid-template-columns:1fr 1fr; gap:20px; }
  .dish-card{ padding:24px; }
  .dish-plate{ aspect-ratio:1.3/1; margin-bottom:18px; }
}

@media(max-width:640px){
  .dish-grid{ grid-template-columns:1fr; gap:18px; }
  .dish-card{ padding:20px; }
  .dish-plate{ aspect-ratio:4/3; margin-bottom:16px; }
  .dish-card h3{ font-size:1.15rem; }
  .dish-card .desc{ font-size:0.85rem; min-height:50px; }
}

@media(max-width:480px){
  .dish-grid{ gap:14px; }
  .dish-card{ padding:16px; }
  .dish-plate{ aspect-ratio:4/3; margin-bottom:14px; }
  .dish-card h3{ font-size:1rem; margin-bottom:6px; }
  .dish-card .desc{ font-size:0.8rem; margin-bottom:14px; }
  .price{ font-size:1.1rem; }
}

/* ---------------- PROCESS TIMELINE ---------------- */
.process{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.process::before{
  content:""; position:absolute; top:34px; left:6%; right:6%; height:2px;
  background:linear-gradient(90deg,var(--orange),var(--red),var(--orange));
  opacity:0.35;
}
.process-step{ text-align:center; padding:0 18px; position:relative; }
.process-num{
  width:68px; height:68px; margin:0 auto 22px; border-radius:50%;
  display:grid; place-items:center; position:relative; z-index:2;
  background:var(--black); border:2px solid var(--orange);
  font-family:var(--font-display); font-weight:800; font-size:1.15rem; color:var(--orange);
  box-shadow:0 0 0 8px var(--black);
}
.process-step h4{ font-size:1.08rem; margin-bottom:10px; }
.process-step p{ color:var(--white-dim); font-size:0.87rem; line-height:1.6; }

/* ---------------- TESTIMONIALS ---------------- */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.testi-card{
  background:var(--black-card); border-radius:var(--radius-md);
  padding:28px; border:1px solid rgba(255,249,242,0.06);
}
.testi-stars{ color:var(--gold); letter-spacing:3px; margin-bottom:14px; font-size:0.9rem; }
.testi-card p{ color:var(--white-dim); font-size:0.93rem; line-height:1.7; margin-bottom:20px; }
.testi-who{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg,var(--orange),var(--red));
  display:grid; place-items:center; font-weight:700; font-family:var(--font-display);
}
.testi-who strong{ display:block; font-size:0.88rem; }
.testi-who span{ font-size:0.74rem; color:var(--white-dim); }

/* ---------------- CTA BANNER ---------------- */
.cta-banner{
  border-radius:var(--radius-lg);
  background:linear-gradient(115deg,var(--red-deep),var(--red) 40%,var(--orange-deep) 100%);
  padding:70px 60px;
  display:flex; align-items:center; justify-content:space-between; gap:40px;
  position:relative; overflow:hidden;
}
.cta-banner::before{
  content:""; position:absolute; inset:0;
  background-image:radial-gradient(circle,rgba(255,249,242,0.14) 1.5px,transparent 1.5px);
  background-size:22px 22px;
  opacity:0.5;
}
.cta-banner h2{ font-size:clamp(1.7rem,3vw,2.4rem); position:relative; z-index:2; max-width:520px; }
.cta-banner .btn-primary{ background:var(--black); position:relative; z-index:2; box-shadow:0 10px 26px rgba(0,0,0,0.4); }

/* ---------------- FOOTER ---------------- */
.site-footer{ background:#100b09; padding:80px 0 30px; border-top:1px solid rgba(255,122,26,0.12); }
.footer-grid{ display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:40px; margin-bottom:60px; max-width:1200px; margin-left:auto; margin-right:auto; }
.footer-grid h5{ font-family:var(--font-display); font-size:0.85rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--orange); margin-bottom:20px; }
.footer-grid li{ margin-bottom:12px; }
.footer-grid a{ color:var(--white-dim); font-size:0.88rem; transition:color .25s; }
.footer-grid a:hover{ color:var(--white); }
.footer-about .brand-logo{ height:50px; width:auto; object-fit:contain; filter:brightness(1.3); }
.footer-about p{ color:var(--white-dim); font-size:0.9rem; line-height:1.7; margin:16px 0 20px; max-width:320px; }
.footer-social{ display:flex; gap:12px; align-items:center; }
.footer-social a{
  width:40px; height:40px; border-radius:50%; border:1px solid rgba(255,249,242,0.18);
  display:grid; place-items:center; transition:.3s;
}
.footer-social a:hover{ background:var(--orange); border-color:var(--orange); }
.pixel-link{ background:rgba(255,249,242,0.06) !important; }
.pixel-link:hover{ background:rgba(255,122,26,0.2) !important; border-color:var(--orange) !important; }
.pixel-logo{ height:22px; width:auto; opacity:0.8; transition:opacity .3s; }
.footer-partner{ text-align:center; padding:16px 0 0; margin-bottom:0; border-top:1px solid rgba(255,249,242,0.08); }
.footer-partner a{ display:inline-flex; align-items:center; gap:8px; padding:8px 20px; border-radius:100px; border:1px solid rgba(255,249,242,0.12); background:rgba(255,249,242,0.04); transition:.3s; }
.footer-partner a:hover{ border-color:var(--orange); background:rgba(255,122,26,0.1); }
.footer-partner a span{ font-size:0.78rem; color:var(--white-dim); }
.footer-review{ margin-top:18px; }
.review-link{ display:flex; align-items:center; gap:12px; color:var(--white-dim); font-size:0.85rem; font-weight:600; transition:color .25s; text-decoration:none; }
.review-link:hover{ color:var(--white); }
.qr-code{ width:80px; height:80px; border-radius:10px; border:2px solid rgba(255,122,26,0.3); flex-shrink:0; background:#fff; padding:6px; box-shadow:0 2px 12px rgba(255,122,26,0.15); transition:transform .25s, box-shadow .25s; image-rendering:pixelated; }
.review-link:hover .qr-code{ transform:scale(1.08); box-shadow:0 4px 20px rgba(255,122,26,0.3); }
.footer-partner{
  margin-bottom:28px;
  padding-top:8px;
}
.footer-partner-card{
  display:inline-flex; align-items:center; gap:12px;
  padding:14px 18px; border:1px solid rgba(255,122,26,0.28);
  border-radius:999px; background:linear-gradient(135deg,rgba(255,122,26,0.14),rgba(255,249,242,0.06));
  box-shadow:0 8px 24px rgba(0,0,0,0.22);
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease;
}
.footer-partner-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 28px rgba(0,0,0,0.28);
}
.footer-partner-logo-img{
  width:54px; height:auto; object-fit:contain; flex-shrink:0;
  display:block;
  border-radius:8px;
  background:#fff;
  padding:4px;
}
.footer-partner-card h6{
  margin:0 0 2px; font-size:0.95rem; color:var(--white);
}
.footer-partner-card p{
  margin:0; font-size:0.8rem; color:var(--white);
}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:26px; border-top:1px solid rgba(255,249,242,0.08);
  font-size:0.8rem; color:var(--white-dim); flex-wrap:wrap; gap:12px;
  max-width:1200px; margin:0 auto;
}
.footer-madeby{ display:inline-flex; align-items:center; gap:6px; color:var(--white-dim); text-decoration:none; transition:color .3s; font-family:var(--font-display); font-weight:800; font-size:0.85rem; letter-spacing:0.02em; }
.footer-madeby:hover{ color:var(--orange); }
.footer-madeby .pixel-logo{ height:18px; width:auto; vertical-align:middle; }
.footer-credit{ display:inline-flex; align-items:center; gap:6px; }

/* ---------------- PAGE HEADER (sub-pages) ---------------- */
.page-header{
  position:relative; padding:180px 0 90px; overflow:hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(255,122,26,0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(200,29,37,0.25), transparent 60%),
    linear-gradient(180deg,#150e0b,#1a1210);
}
.page-header .eyebrow{ margin-bottom:16px; }
.page-header h1{ font-size:clamp(2.4rem,5vw,3.6rem); font-weight:800; max-width:760px; }
.page-header p{ color:var(--white-dim); max-width:560px; margin-top:18px; font-size:1.05rem; line-height:1.7; }
.crumb{ display:flex; gap:8px; font-size:0.8rem; color:var(--white-dim); margin-top:26px; }
.crumb span{ color:var(--orange); }

/* ---------------- ABOUT PAGE ---------------- */
.about-grid{ display:grid; grid-template-columns:1fr; gap:24px; align-items:center; max-width:900px; margin:0 auto; }
.about-visual{
  position:relative; width:200px; height:200px; border-radius:50%;
  background:linear-gradient(160deg,var(--black-card),var(--black-soft));
  border:2px solid rgba(255,122,26,0.25);
  display:grid; place-items:center; overflow:hidden;
  margin:0 auto;
}
.founder-frame{ width:100%; height:100%; }
.about-copy{
  background:linear-gradient(145deg, rgba(36,26,22,0.96), rgba(31,22,19,0.9));
  border:1px solid rgba(255,122,26,0.16);
  border-radius:var(--radius-lg);
  padding:36px 40px;
  box-shadow:0 20px 50px rgba(0,0,0,0.22);
}
.about-copy p{ color:var(--white-dim); line-height:1.85; margin-bottom:18px; font-size:1.02rem; }
.about-copy p strong{ color:var(--white); }

.timeline{ position:relative; padding-left:36px; }
.timeline::before{ content:""; position:absolute; left:6px; top:6px; bottom:6px; width:2px; background:linear-gradient(var(--orange),var(--red)); }
.timeline-item{ position:relative; padding-bottom:44px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:-36px; top:2px; width:14px; height:14px; border-radius:50%;
  background:var(--black); border:3px solid var(--orange);
}
.timeline-item .yr{ font-family:var(--font-display); font-weight:800; color:var(--orange); font-size:0.95rem; }
.timeline-item h4{ margin:6px 0 8px; font-size:1.15rem; }
.timeline-item p{ color:var(--white-dim); font-size:0.92rem; line-height:1.65; max-width:460px; }

.values-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.value-card{
  padding:32px 26px; border-radius:var(--radius-md);
  background:var(--black-card); border:1px solid rgba(255,249,242,0.06);
  transition:.35s;
}
.value-card:hover{ border-color:rgba(255,122,26,0.4); transform:translateY(-6px); }
.value-icon{ width:52px; height:52px; border-radius:14px; margin-bottom:20px; display:grid; place-items:center; background:linear-gradient(135deg,var(--orange),var(--red)); }
.value-card h4{ font-size:1.05rem; margin-bottom:10px; }
.value-card p{ color:var(--white-dim); font-size:0.87rem; line-height:1.6; }

.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.team-card{ text-align:center; }
.team-photo{
  aspect-ratio:1/1.1; border-radius:var(--radius-md); margin-bottom:18px;
  background:linear-gradient(150deg,var(--black-card),var(--black-soft));
  border:1px solid rgba(255,122,26,0.14);
  display:grid; place-items:center; position:relative; overflow:hidden;
}
.team-initials{ font-family:var(--font-display); font-weight:800; font-size:2.4rem; color:var(--orange); opacity:0.85; }
.team-card h4{ font-size:1rem; margin-bottom:4px; }
.team-card span{ font-size:0.78rem; color:var(--orange); }

/* ---- Team Showcase (About Page) ---- */
.team-showcase{ display:grid; grid-template-columns:1fr 1fr; gap:32px; margin-top:40px; }
.team-card-lg{
  background:var(--black-card); border:1px solid rgba(255,249,242,0.06);
  border-radius:var(--radius-lg); overflow:hidden; transition:.35s;
}
.team-card-lg:hover{ border-color:rgba(255,122,26,0.3); transform:translateY(-6px); box-shadow:0 18px 50px rgba(255,122,26,0.1); }
.team-card-lg-img{
  width:100%; height:280px; position:relative; overflow:hidden;
  background:linear-gradient(135deg,var(--black-soft) 0%,#1a1210 100%);
}
.team-card-lg-img img{
  width:100%; height:100%; object-fit:cover; object-position:center 20%;
}
.team-card-lg-placeholder{
  width:100%; height:100%; display:grid; place-items:center;
  font-family:var(--font-display); font-weight:800; font-size:5rem; color:var(--orange); opacity:0.3;
}
.team-card-lg-overlay{
  position:absolute; inset:0;
  background:linear-gradient(to top, var(--black-card) 0%, transparent 70%);
}
.team-card-lg-body{ padding:28px 28px 32px; }
.team-card-lg-role{
  display:inline-block; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:1.5px;
  color:var(--orange); background:rgba(255,122,26,0.12); padding:4px 14px; border-radius:100px; margin-bottom:12px;
}
.team-card-lg-body h3{ font-size:1.5rem; font-weight:800; margin-bottom:12px; }
.team-card-lg-body p{ color:var(--white-dim); font-size:0.92rem; line-height:1.7; margin-bottom:18px; }
.team-card-lg-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.team-card-lg-tags span{
  font-size:0.74rem; font-weight:600; padding:5px 14px; border-radius:100px;
  background:rgba(255,249,242,0.05); color:var(--white-dim); border:1px solid rgba(255,249,242,0.08);
}
@media(max-width:768px){ .team-showcase{ grid-template-columns:1fr; } }

/* ---------------- ABOUT PAGE: STATS ---------------- */
.about-stats-section{ padding:60px 0; background:linear-gradient(135deg,rgba(255,122,26,0.08),rgba(122,13,18,0.08)); border-top:1px solid rgba(255,122,26,0.1); border-bottom:1px solid rgba(255,122,26,0.1); }
.about-stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.about-stat{ padding:28px 16px; }
.about-stat-icon{ font-size:2rem; margin-bottom:12px; }
.about-stat-num{ font-family:var(--font-display); font-size:2.8rem; font-weight:800; color:var(--orange); line-height:1; margin-bottom:8px; }
.about-stat-label{ font-size:0.85rem; color:var(--white-dim); font-weight:500; }
@media(max-width:768px){ .about-stats-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .about-stats-grid{ grid-template-columns:repeat(2,1fr); gap:12px; } .about-stat-num{ font-size:2rem; } }

/* ---------------- ABOUT PAGE: PHOTO FRAME ---------------- */
.about-photo-frame{ position:relative; width:280px; height:280px; margin:0 auto; border-radius:50%; overflow:visible; transition:transform 0.5s cubic-bezier(0.23,1,0.32,1); }
.about-photo-frame::before{ content:''; position:absolute; inset:-6px; border-radius:50%; background:conic-gradient(from 0deg,#e67e22,#f39c12,#e74c3c,#e67e22); animation:borderSpin 3s linear infinite; z-index:-1; opacity:0.6; transition:opacity 0.4s ease; }
.about-photo-frame:hover::before{ opacity:1; }
.about-photo-frame::after{ content:''; position:absolute; inset:-6px; border-radius:50%; background:conic-gradient(from 180deg,#e67e22,#f39c12,#e74c3c,#e67e22); animation:borderSpin 3s linear infinite reverse; z-index:-1; opacity:0; filter:blur(12px); transition:opacity 0.4s ease; }
.about-photo-frame:hover::after{ opacity:0.6; }
.about-photo-frame:hover{ transform:scale(1.08); }
.about-photo-frame .founder-photo{ transition:transform 0.5s cubic-bezier(0.23,1,0.32,1), filter 0.4s ease; }
.about-photo-frame:hover .founder-photo{ transform:scale(1.1); filter:brightness(1.08); }
.about-photo-frame .ring-pulse{ position:absolute; inset:-6px; border-radius:50%; border:2px solid rgba(230,126,34,0.5); animation:ringPulse 2s ease-out infinite; pointer-events:none; }
.about-photo-frame .ring-pulse:nth-child(2){ animation-delay:0.6s; }
.about-photo-frame .ring-pulse:nth-child(3){ animation-delay:1.2s; }
@keyframes borderSpin{ 100%{ transform:rotate(360deg); } }
@keyframes ringPulse{ 0%{ transform:scale(1); opacity:0.8; } 100%{ transform:scale(1.4); opacity:0; } }
.about-photo-frame .light-sweep{ position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.25),transparent); transform:skewX(-20deg); z-index:3; pointer-events:none; transition:none; }
.about-photo-frame:hover .light-sweep{ animation:sweepLight 0.8s ease forwards; }
@keyframes sweepLight{ 0%{ left:-100%; } 100%{ left:150%; } }
.about-photo-placeholder{
  width:100%; height:100%; border-radius:50%; display:grid; place-items:center;
  background:linear-gradient(135deg,var(--black-card),var(--black-soft));
  border:3px solid rgba(255,122,26,0.3);
  font-family:var(--font-display); font-weight:800; font-size:5rem; color:var(--orange); opacity:0.7;
}
.about-photo-ring{
  position:absolute; inset:-12px; border-radius:50%;
  border:2px dashed rgba(255,122,26,0.25);
  animation:spinSlow 20s linear infinite;
}
@keyframes spinSlow{ to{ transform:rotate(360deg); } }

/* ---------------- ABOUT PAGE: QUOTE ---------------- */
.about-quote-section{ position:relative; padding:80px 0; overflow:hidden; }
.about-quote-bg{
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,122,26,0.12),rgba(122,13,18,0.12));
}
.about-quote-content{ position:relative; text-align:center; max-width:700px; margin:0 auto; }
.about-quote-mark{ font-family:var(--font-display); font-size:6rem; line-height:1; color:var(--orange); opacity:0.3; margin-bottom:-30px; }
.about-quote-section blockquote{ font-size:1.3rem; font-style:italic; line-height:1.8; color:var(--white); font-weight:400; margin:0 0 24px; }
.about-quote-author{ display:flex; flex-direction:column; gap:4px; }
.about-quote-name{ font-weight:700; color:var(--orange); font-size:1rem; }
.about-quote-role{ font-size:0.82rem; color:var(--white-dim); }
@media(max-width:768px){ .about-quote-section blockquote{ font-size:1.1rem; } }

/* ---------------- ABOUT PAGE: FARM TO TABLE ---------------- */
.farm-to-table{ display:flex; align-items:flex-start; gap:0; margin-top:40px; }
.ftt-step{ flex:1; text-align:center; padding:20px 16px; position:relative; }
.ftt-num{ font-family:var(--font-display); font-size:3rem; font-weight:800; color:var(--orange); opacity:0.15; line-height:1; margin-bottom:8px; }
.ftt-icon{ font-size:2.4rem; margin-bottom:14px; }
.ftt-step h4{ font-size:1rem; margin-bottom:8px; color:var(--white); }
.ftt-step p{ font-size:0.85rem; color:var(--white-dim); line-height:1.6; }
.ftt-connector{ width:60px; min-width:60px; height:2px; background:linear-gradient(90deg,var(--orange),var(--red)); margin-top:52px; border-radius:2px; }
@media(max-width:768px){
  .farm-to-table{ flex-direction:column; gap:0; }
  .ftt-step{ display:flex; gap:16px; text-align:left; padding:16px 0; }
  .ftt-num{ font-size:2rem; min-width:50px; }
  .ftt-icon{ font-size:2rem; min-width:40px; margin-bottom:0; }
  .ftt-connector{ width:2px; min-width:2px; height:30px; margin:0 auto; background:linear-gradient(180deg,var(--orange),var(--red)); }
}

/* ---------------- ABOUT PAGE: GALLERY ---------------- */
.about-gallery{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:40px; }
.about-gallery-item{
  position:relative; border-radius:var(--radius-md); overflow:hidden; aspect-ratio:4/3;
  border:1px solid rgba(255,249,242,0.06);
}
.about-gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.about-gallery-item:hover img{ transform:scale(1.08); }
.about-gallery-item span{
  position:absolute; bottom:0; left:0; right:0; padding:12px 14px;
  background:linear-gradient(to top,rgba(0,0,0,0.8),transparent);
  font-size:0.82rem; font-weight:600; color:var(--white);
}
@media(max-width:768px){ .about-gallery{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .about-gallery{ grid-template-columns:1fr 1fr; gap:10px; } }

/* ---------------- MENU PAGE ---------------- */
.menu-tabs{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:50px; }
.menu-tab{
  padding:12px 24px; border-radius:100px; font-size:0.86rem; font-weight:700;
  border:1.5px solid rgba(255,249,242,0.16); color:var(--white-dim);
  transition:all .3s ease; cursor:pointer; position:relative; overflow:hidden;
  opacity:0; transform:translateY(15px);
}
.menu-tabs.animated .menu-tab:nth-child(1){ animation:tabFadeIn .4s ease .05s forwards; }
.menu-tabs.animated .menu-tab:nth-child(2){ animation:tabFadeIn .4s ease .1s forwards; }
.menu-tabs.animated .menu-tab:nth-child(3){ animation:tabFadeIn .4s ease .15s forwards; }
.menu-tabs.animated .menu-tab:nth-child(4){ animation:tabFadeIn .4s ease .2s forwards; }
.menu-tabs.animated .menu-tab:nth-child(5){ animation:tabFadeIn .4s ease .25s forwards; }
.menu-tabs.animated .menu-tab:nth-child(6){ animation:tabFadeIn .4s ease .3s forwards; }
.menu-tabs.animated .menu-tab:nth-child(7){ animation:tabFadeIn .4s ease .35s forwards; }
.menu-tabs.animated .menu-tab:nth-child(8){ animation:tabFadeIn .4s ease .4s forwards; }
.menu-tabs.animated .menu-tab:nth-child(9){ animation:tabFadeIn .4s ease .45s forwards; }
.menu-tabs.animated .menu-tab:nth-child(10){ animation:tabFadeIn .4s ease .5s forwards; }
.menu-tabs.animated .menu-tab:nth-child(11){ animation:tabFadeIn .4s ease .55s forwards; }
@keyframes tabFadeIn{ to{ opacity:1; transform:translateY(0); } }
.menu-tab::before{
  content:''; position:absolute; top:50%; left:50%; width:0; height:0;
  background:rgba(255,255,255,0.08); border-radius:50%;
  transform:translate(-50%,-50%); transition:width .4s ease, height .4s ease;
}
.menu-tab:hover::before{ width:200%; height:200%; }
.menu-tab:hover{
  border-color:var(--orange); color:var(--white);
  box-shadow:0 0 18px rgba(255,122,26,0.3); transform:translateY(-2px);
}
.menu-tab.active{
  border-color:transparent;
  background:linear-gradient(120deg,var(--orange),var(--red));
  color:var(--white);
  box-shadow:0 4px 24px rgba(255,122,26,0.45); transform:translateY(-2px);
  animation:tabPop .3s ease;
}
@keyframes tabPop{ 0%{ transform:translateY(0) scale(1); } 50%{ transform:translateY(-3px) scale(1.05); } 100%{ transform:translateY(-2px) scale(1); } }
.menu-section-title{ display:flex; justify-content:center; align-items:center; gap:16px; margin:56px 0 28px; padding:0 8px; }
.menu-section-title::before{ content:""; flex:1; height:1px; background:linear-gradient(90deg,transparent,rgba(255,122,26,0.5)); }
.menu-section-title h3{ font-size:1.5rem; white-space:nowrap; text-align:center; margin:0; }
.menu-section-title .rule{ flex:1; height:1px; background:linear-gradient(90deg,rgba(255,122,26,0.5),transparent); }
[data-menu-group]{ padding:0 8px; }
.menu-list{ display:grid; grid-template-columns:1fr 1fr; gap:22px 40px; }
.menu-sub-title{ padding:8px 18px; margin-top:8px; }
.menu-sub-title span{ font-size:0.78rem; font-weight:700; text-transform:uppercase; letter-spacing:0.12em; color:var(--orange); }
.menu-item{ display:flex; gap:18px; padding:16px 18px; border-radius:10px; border-bottom:1px dashed rgba(255,249,242,0.12); transition:background .2s; }
.menu-item:hover{ background:rgba(255,249,242,0.04); }
.menu-thumb{
  width:64px; height:64px; border-radius:14px; flex-shrink:0;
  background:linear-gradient(150deg,var(--orange-deep),var(--red-deep));
  display:grid; place-items:center; font-size:1.5rem; overflow:hidden;
}
.menu-thumb img{ width:100%; height:100%; object-fit:cover; border-radius:14px; }
.menu-item-body{ flex:1; }
.menu-item-top{ display:flex; justify-content:space-between; gap:12px; margin-bottom:6px; }
.menu-item-top h4{ font-size:1.02rem; }
.menu-item-top .price{ font-size:1.05rem; }
.menu-item-body p{ color:var(--white-dim); font-size:0.85rem; line-height:1.55; }
.tag-row{ display:flex; gap:6px; margin-top:8px; }
.tag{ font-size:0.62rem; letter-spacing:0.06em; text-transform:uppercase; padding:4px 9px; border-radius:100px; font-weight:700; }
.tag.sag{ background:rgba(120,200,80,0.15); color:#8fd66a; }
.tag.masu{ background:rgba(200,29,37,0.18); color:#ff8a8a; }
.tag.chef{ background:rgba(255,179,71,0.16); color:var(--gold); }
.hidden{ display:none !important; }

/* ---------------- CONTACT PAGE ---------------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:50px; }
.contact-info-card{
  background:var(--black-card); border-radius:var(--radius-lg); padding:40px;
  border:1px solid rgba(255,122,26,0.14); margin-bottom:24px;
}
.contact-info-card h4{ font-size:1.1rem; margin-bottom:6px; }
.contact-info-card p, .contact-info-card a{ color:var(--white-dim); font-size:0.92rem; line-height:1.7; }
.contact-icon-row{ display:flex; gap:16px; align-items:flex-start; margin-bottom:24px; }
.contact-icon-row:last-child{ margin-bottom:0; }
.contact-icon{
  width:46px; height:46px; border-radius:12px; flex-shrink:0;
  background:linear-gradient(135deg,var(--orange),var(--red)); display:grid; place-items:center;
}
.map-frame{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid rgba(255,122,26,0.14); filter:grayscale(0.4) contrast(1.1); }
.map-frame iframe{ width:100%; height:280px; border:0; display:block; }

.form-card{
  background:var(--black-card); border-radius:var(--radius-lg); padding:44px;
  border:1px solid rgba(255,122,26,0.14);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:0.8rem; font-weight:600; margin-bottom:8px; color:var(--white-dim); }
.field input, .field textarea, .field select{
  width:100%; padding:14px 16px; border-radius:12px;
  background:rgba(255,249,242,0.05); border:1.5px solid rgba(255,249,242,0.12);
  color:var(--white); font-size:0.92rem; transition:border-color .25s, background .25s;
  -webkit-appearance:none; appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ff7a1a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 16px center;
}
.field select option{
  background:#1a1210; color:var(--white); padding:12px 16px; font-size:0.92rem;
}
.field input:focus, .field textarea:focus, .field select:focus{
  border-color:var(--orange); background:rgba(255,249,242,0.08); outline:none;
}
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:0.78rem; color:var(--white-dim); margin-top:14px; }
.form-success{
  display:none; align-items:center; gap:14px; padding:18px 20px; border-radius:14px;
  background:rgba(120,200,80,0.12); border:1px solid rgba(120,200,80,0.35); margin-top:20px;
  font-size:0.88rem; color:#a6e08a;
}
.form-success.show{ display:flex; }

.pax-grid, .time-grid{ display:flex; flex-wrap:wrap; gap:8px; }
.pax-box, .time-box{
  position:relative; cursor:pointer;
}
.pax-box input, .time-box input{ position:absolute; opacity:0; pointer-events:none; }
.pax-box span, .time-box span{
  display:flex; align-items:center; justify-content:center;
  min-width:52px; padding:12px 16px; border-radius:12px;
  background:rgba(255,249,242,0.05); border:1.5px solid rgba(255,249,242,0.12);
  color:var(--white-dim); font-size:0.9rem; font-weight:600;
  transition:border-color .25s, background .25s, color .25s, transform .2s;
}
.pax-box span{ min-width:52px; }
.time-box span{ min-width:68px; }
.pax-box:hover span, .time-box:hover span{
  border-color:rgba(255,122,26,0.5); background:rgba(255,122,26,0.08); color:var(--white);
}
.pax-box input:checked + span, .time-box input:checked + span{
  border-color:var(--orange); background:linear-gradient(120deg,var(--orange),var(--red));
  color:var(--white); transform:scale(1.05);
  box-shadow:0 4px 16px rgba(255,122,26,0.3);
}

.faq-item{ border-bottom:1px solid rgba(255,249,242,0.1); padding:22px 0; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-weight:700; font-size:1rem; }
.faq-q .plus{ font-size:1.3rem; color:var(--orange); transition:transform .3s; }
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-a p{ color:var(--white-dim); font-size:0.9rem; line-height:1.7; padding-top:14px; max-width:640px; }

/* ---------------- DELIVERY PAGE ---------------- */
.app-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.app-card{
  background:var(--black-card); border-radius:var(--radius-lg); padding:34px;
  border:1px solid rgba(255,249,242,0.08); text-align:center;
  transition:.35s;
}
.app-card:hover{ transform:translateY(-8px); border-color:rgba(255,122,26,0.4); }
.app-logo{ width:64px; height:64px; border-radius:18px; margin:0 auto 20px; display:grid; place-items:center; font-weight:800; font-family:var(--font-display); font-size:1.3rem; }
.app-card h4{ font-size:1.1rem; margin-bottom:8px; }
.app-card p{ color:var(--white-dim); font-size:0.85rem; margin-bottom:20px; }

.zone-map{
  position:relative; border-radius:var(--radius-lg); overflow:hidden;
  background:linear-gradient(160deg,var(--black-card),var(--black-soft));
  border:1px solid rgba(255,122,26,0.14); padding:50px; min-height:380px;
  display:flex; align-items:center; justify-content:center;
}
.radar-ring{
  position:absolute; border:1px solid rgba(255,122,26,0.25); border-radius:50%;
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.radar-ring.r1{ width:120px; height:120px; }
.radar-ring.r2{ width:220px; height:220px; }
.radar-ring.r3{ width:320px; height:320px; animation:pulse-ring 3s ease-out infinite; }
@keyframes pulse-ring{ 0%{ opacity:0.6; } 100%{ opacity:0; transform:translate(-50%,-50%) scale(1.15); } }
.radar-pin{
  position:absolute; width:14px; height:14px; border-radius:50%; background:var(--orange);
  box-shadow:0 0 0 6px rgba(255,122,26,0.2);
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.zone-label{ position:absolute; font-size:0.72rem; font-weight:700; color:var(--white-dim); letter-spacing:0.05em; }

.track-widget{
  background:var(--black-card); border:1px solid rgba(255,122,26,0.14); border-radius:var(--radius-lg);
  padding:36px;
}
.track-steps{ display:flex; justify-content:space-between; margin-top:36px; position:relative; }
.track-steps::before{ content:""; position:absolute; top:15px; left:5%; right:5%; height:3px; background:rgba(255,249,242,0.1); border-radius:3px; z-index:0; }
.track-progress{ position:absolute; top:15px; left:5%; height:3px; width:55%; background:linear-gradient(90deg,var(--orange),var(--red)); border-radius:3px; z-index:1; }
.track-step{ position:relative; z-index:2; text-align:center; flex:1; }
.track-dot{ width:32px; height:32px; border-radius:50%; margin:0 auto 12px; display:grid; place-items:center; background:var(--black); border:2px solid var(--orange); font-size:0.9rem; }
.track-step.pending .track-dot{ border-color:rgba(255,249,242,0.2); opacity:0.5; }
.track-step span{ font-size:0.76rem; color:var(--white-dim); font-weight:600; }

.delivery-steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.dstep{ padding:34px; border-radius:var(--radius-md); background:var(--black-card); border:1px solid rgba(255,249,242,0.06); position:relative; }
.dstep .num{ position:absolute; top:24px; right:28px; font-family:var(--font-display); font-weight:800; font-size:2.4rem; color:rgba(255,122,26,0.15); }
.dstep h4{ font-size:1.1rem; margin-bottom:10px; }
.dstep p{ color:var(--white-dim); font-size:0.88rem; line-height:1.65; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width:980px){
  .hero-content .container{ grid-template-columns:1fr; }
  .hero-stats{ flex-wrap:wrap; gap:16px; justify-content:center; }
  .hero-stats div{ flex:1; min-width:120px; }
  .pot-wrap{ width:min(50vw,300px); }
  .hero{ padding-bottom:60px; }
  .dish-grid{ grid-template-columns:1fr 1fr; }
  .process{ grid-template-columns:1fr 1fr; row-gap:44px; }
  .process::before{ display:none; }
  .testi-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .about-grid{ grid-template-columns:1fr; }
  .values-grid{ grid-template-columns:1fr 1fr; }
  .team-grid{ grid-template-columns:1fr 1fr; }
  .menu-list{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .app-grid{ grid-template-columns:1fr; }
  .delivery-steps{ grid-template-columns:1fr; }
  .cta-banner{ flex-direction:column; text-align:center; padding:50px 30px; }
}
@media (max-width:720px){
  .nav-links{
    position:fixed; inset:0 0 0 30%; top:0; height:100svh;
    background:rgba(21,14,11,0.98); -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
    flex-direction:column; justify-content:center; align-items:flex-start; gap:6px;
    padding:40px; transform:translateX(100%); transition:transform .4s ease;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{
    font-size:1.2rem; padding:14px 0;
    opacity:0; transform:translateX(30px);
    transition:opacity .4s ease, transform .4s ease;
  }
  .nav-links.open a:nth-child(1){ transition-delay:.1s; opacity:1; transform:translateX(0); }
  .nav-links.open a:nth-child(2){ transition-delay:.18s; opacity:1; transform:translateX(0); }
  .nav-links.open a:nth-child(3){ transition-delay:.26s; opacity:1; transform:translateX(0); }
  .nav-links.open a:nth-child(4){ transition-delay:.34s; opacity:1; transform:translateX(0); }
  .nav-links.open a:nth-child(5){ transition-delay:.42s; opacity:1; transform:translateX(0); }
  .nav-links.open .nav-cta{ transition-delay:.5s; opacity:1; transform:translateX(0); }
  .nav-toggle{ display:flex; }
  .nav-cta{ margin-top:20px; }
  .dish-grid{ grid-template-columns:1fr; }
  .process{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .values-grid{ grid-template-columns:1fr; }
  .team-grid{ grid-template-columns:1fr; }
  section{ padding:80px 0; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .hero-stats{ flex-direction:column; gap:12px; }
  .hero-stats div{ min-width:auto; width:100%; }
  .hero-stats div strong{ font-size:1.8rem; }
  .hero-stats div span{ font-size:0.78rem; }
  .pot-wrap{ width:min(65vw,220px); margin-top:10px; }
  .hero-visual{ min-height:240px; margin-top:-30px; }
  .hero{ padding-bottom:80px; }
  .ticker-strip{ margin:-20px 0 0; }
}
@media (prefers-reduced-motion:reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* ---------------- ACCORDION MENU ---------------- */
.menu-accordion{
  background:linear-gradient(145deg,rgba(36,26,22,0.96),rgba(31,22,19,0.9));
  border:1px solid rgba(255,122,26,0.14);
  border-radius:14px;
  margin-bottom:10px;
  overflow:hidden;
}
.acc-header{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 22px; cursor:pointer;
  transition:background 0.25s;
  -webkit-user-select:none;
  user-select:none;
}
.acc-header:hover{ background:rgba(255,122,26,0.06); }
.acc-header h3{
  font-size:1.05rem; font-weight:700; color:var(--white);
  margin:0; letter-spacing:0.02em;
}
.acc-icon{
  width:22px; height:22px; position:relative; flex-shrink:0;
  transition:transform 0.3s ease;
}
.acc-icon::before,.acc-icon::after{
  content:""; position:absolute; background:var(--orange);
  border-radius:2px; transition:transform 0.3s ease;
}
.acc-icon::before{ width:18px; height:2px; top:10px; left:2px; }
.acc-icon::after{ width:2px; height:18px; top:2px; left:10px; }
.menu-accordion.open .acc-icon{ transform:rotate(45deg); }
.acc-body{
  max-height:0; overflow:hidden;
  transition:max-height 0.35s ease, padding 0.35s ease;
  padding:0 22px;
}
.menu-accordion.open .acc-body{
  max-height:2000px; padding:0 22px 18px;
}
.menu-list.compact{ display:flex; flex-direction:column; gap:0; }
.menu-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; border-bottom:1px solid rgba(255,249,242,0.06);
  font-size:0.92rem; color:var(--white-dim);
}
.menu-row:last-child{ border-bottom:none; }
.menu-row span:first-child{ flex:1; padding-right:16px; }
.menu-row .price{
  font-weight:700; color:var(--orange); white-space:nowrap;
  font-size:0.88rem;
}
@media (max-width:480px){
  .menu-row{ font-size:0.85rem; }
  .menu-row .price{ font-size:0.82rem; }
  .acc-header{ padding:14px 16px; }
  .acc-header h3{ font-size:0.95rem; }
}

/* ---------------- MENU CATEGORY DIVIDERS ---------------- */
.menu-cat-divider{
  display:flex; align-items:center; gap:16px;
  margin:40px 0 24px; padding:0;
}
.menu-cat-divider::before,.menu-cat-divider::after{
  content:""; flex:1; height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,122,26,0.3),transparent);
}
.menu-cat-divider span{
  font-size:0.7rem; font-weight:700; text-transform:uppercase;
  letter-spacing:0.2em; color:var(--orange); white-space:nowrap;
  opacity:0.8;
}

/* ---------------- MOMO GRID ---------------- */
.momo-hero{
  display:flex; align-items:center; gap:24px;
  background:linear-gradient(145deg,rgba(36,26,22,0.96),rgba(31,22,19,0.9));
  border:1px solid rgba(255,122,26,0.14);
  border-radius:14px;
  padding:20px 24px;
  margin-bottom:20px;
}
.momo-hero-img{
  width:100px; height:100px; border-radius:12px; overflow:hidden; flex-shrink:0;
  border:2px solid rgba(255,122,26,0.3);
}
.momo-hero-img img{ width:100%; height:100%; object-fit:cover; }
.momo-hero-text{ flex:1; }
.momo-hero-text h4{ margin:6px 0 4px; font-size:1.1rem; color:var(--white); }
.momo-hero-text p{ margin:0; font-size:0.88rem; color:var(--white-dim); line-height:1.5; }
.momo-hero-text .price{ font-size:1.05rem; font-weight:700; color:var(--orange); margin-top:6px; display:inline-block; }

.momo-grid{
  background:linear-gradient(145deg,rgba(36,26,22,0.96),rgba(31,22,19,0.9));
  border:1px solid rgba(255,122,26,0.14);
  border-radius:14px;
  overflow:hidden;
  margin-bottom:16px;
}
.momo-grid-head{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr;
  padding:14px 20px;
  background:rgba(255,122,26,0.1);
  border-bottom:1px solid rgba(255,122,26,0.15);
  font-size:0.8rem; font-weight:700; text-transform:uppercase;
  letter-spacing:0.08em; color:var(--orange);
}
.momo-grid-row{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr;
  padding:14px 20px;
  border-bottom:1px solid rgba(255,249,242,0.05);
  transition:background 0.2s;
  align-items:center;
}
.momo-grid-row:last-child{ border-bottom:none; }
.momo-grid-row:hover{ background:rgba(255,122,26,0.04); }
.momo-style{
  font-weight:600; color:var(--white); font-size:0.92rem;
}
.momo-style small{ color:var(--white-dim); font-weight:400; font-size:0.78rem; }
.momo-price{
  font-weight:700; color:var(--orange); font-size:0.92rem;
  text-align:center;
}
.momo-price small.tag-inline{
  display:inline-block; margin-left:4px;
  font-size:0.6rem; font-weight:600; text-transform:uppercase;
  background:rgba(255,122,26,0.15); color:var(--orange);
  padding:2px 6px; border-radius:4px; vertical-align:middle;
  letter-spacing:0.04em;
}
.momo-note{
  font-size:0.82rem; color:var(--white-dim);
  text-align:center; font-style:italic;
  margin-top:4px; margin-bottom:0;
}
@media (max-width:600px){
  [data-menu-group]{ padding:0 4px; }
  .momo-hero{ flex-direction:column; text-align:center; gap:14px; padding:18px; }
  .momo-hero-img{ width:80px; height:80px; }
  .momo-grid-head,
  .momo-grid-row{ grid-template-columns:1.2fr 1fr 1fr 1fr; padding:12px 14px; font-size:0.82rem; }
  .momo-price small.tag-inline{ display:none; }
}
@media (max-width:420px){
  .momo-grid-head,
  .momo-grid-row{ grid-template-columns:1fr 1fr 1fr 1fr; padding:10px 10px; font-size:0.75rem; }
  .momo-style{ font-size:0.78rem; }
  .momo-price{ font-size:0.78rem; }
}

/* ---------------- CHOWMINE GRID (6-col override) ---------------- */
.chowmine-grid .momo-grid-head,
.chowmine-grid .momo-grid-row{ grid-template-columns:1.2fr 1fr 1fr 1fr 1fr 1fr; }
@media (max-width:600px){
  .chowmine-grid .momo-grid-head,
  .chowmine-grid .momo-grid-row{ grid-template-columns:1.1fr 1fr 1fr 1fr 1fr 1fr; padding:10px 12px; font-size:0.72rem; }
}
@media (max-width:420px){
  .chowmine-grid .momo-grid-head,
  .chowmine-grid .momo-grid-row{ grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr; padding:8px 8px; font-size:0.65rem; }
}

/* ---------------- GENERIC GRID VARIANTS ---------------- */
.grid-2col .momo-grid-head,
.grid-2col .momo-grid-row{ grid-template-columns:1.4fr 1fr; }
.grid-5col .momo-grid-head,
.grid-5col .momo-grid-row{ grid-template-columns:1.2fr 1fr 1fr 1fr 1fr; }
@media (max-width:600px){
  .grid-2col .momo-grid-head,
  .grid-2col .momo-grid-row{ grid-template-columns:1.3fr 1fr; padding:12px 14px; font-size:0.82rem; }
  .grid-5col .momo-grid-head,
  .grid-5col .momo-grid-row{ grid-template-columns:1.1fr 1fr 1fr 1fr 1fr; padding:10px 12px; font-size:0.72rem; }
}
@media (max-width:420px){
  .grid-2col .momo-grid-head,
  .grid-2col .momo-grid-row{ grid-template-columns:1.2fr 1fr; padding:10px 10px; font-size:0.75rem; }
  .grid-5col .momo-grid-head,
  .grid-5col .momo-grid-row{ grid-template-columns:1fr 1fr 1fr 1fr 1fr; padding:8px 8px; font-size:0.65rem; }
}

/* ---------------- MENU OVERHAUL: FOOD GRID (items with descriptions) ---------------- */
.food-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
  margin-bottom:16px;
}
.food-item{
  background:linear-gradient(145deg,rgba(36,26,22,0.96),rgba(31,22,19,0.9));
  border:1px solid rgba(255,249,242,0.06);
  border-radius:12px;
  padding:16px 20px;
  transition:border-color .3s, box-shadow .3s;
  align-self:start;
}
.food-item:hover{
  border-color:rgba(255,122,26,0.2);
  box-shadow:0 4px 16px rgba(255,122,26,0.06);
}
.food-item-top{ display:flex; justify-content:space-between; align-items:baseline; gap:10px; margin-bottom:4px; }
.food-item-top h4{ font-size:0.92rem; color:var(--white); margin:0; font-weight:600; }
.food-item-top .price{ font-size:0.92rem; font-weight:700; color:var(--orange); white-space:nowrap; }
.food-item p{ font-size:0.78rem; color:var(--white-dim); margin:0; line-height:1.5; }
.food-item .tag-inline{ font-size:0.58rem; font-weight:600; text-transform:uppercase; background:rgba(255,122,26,0.15); color:var(--orange); padding:2px 6px; border-radius:4px; vertical-align:middle; margin-left:4px; }
.food-item-image .food-item-image-wrapper{ width:100%; height:180px; border-radius:10px; overflow:hidden; margin-bottom:12px; }
.food-item-image .food-item-image-wrapper img{ width:100%; height:100%; object-fit:cover; }
@media (max-width:700px){ .food-grid{ grid-template-columns:1fr; } }

/* ---------------- MENU OVERHAUL: SECTION COLORS ---------------- */
[data-menu-group="thakali"] .menu-section-title::before,
[data-menu-group="thakali"] .menu-section-title .rule,
[data-menu-group="momo"] .menu-section-title::before,
[data-menu-group="momo"] .menu-section-title .rule,
[data-menu-group="biryani"] .menu-section-title::before,
[data-menu-group="biryani"] .menu-section-title .rule{
  background:linear-gradient(90deg,rgba(255,122,26,0.5),transparent);
}
[data-menu-group="noodles"] .menu-section-title::before,
[data-menu-group="noodles"] .menu-section-title .rule{
  background:linear-gradient(90deg,rgba(255,200,60,0.4),transparent);
}
[data-menu-group="snacks"] .menu-section-title::before,
[data-menu-group="snacks"] .menu-section-title .rule{
  background:linear-gradient(90deg,rgba(120,200,80,0.4),transparent);
}
[data-menu-group="main"] .menu-section-title::before,
[data-menu-group="main"] .menu-section-title .rule{
  background:linear-gradient(90deg,rgba(200,29,37,0.4),transparent);
}
[data-menu-group="drinks"] .menu-section-title::before,
[data-menu-group="drinks"] .menu-section-title .rule{
  background:linear-gradient(90deg,rgba(80,160,255,0.4),transparent);
}
[data-menu-group="soup"] .menu-section-title::before,
[data-menu-group="soup"] .menu-section-title .rule{
  background:linear-gradient(90deg,rgba(255,180,100,0.4),transparent);
}
[data-menu-group="salad"] .menu-section-title::before,
[data-menu-group="salad"] .menu-section-title .rule{
  background:linear-gradient(90deg,rgba(100,200,120,0.4),transparent);
}

/* ---------------- MENU CARD UNIFICATION ---------------- */
.menu-banner,
.momo-hero,
.momo-grid{
  background:rgba(255,249,242,0.03);
  border:1px solid rgba(255,122,26,0.15);
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.16);
}
.momo-hero{
  display:flex; align-items:center; gap:24px;
  padding:20px 24px;
  margin-bottom:20px;
  position:relative; overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.momo-hero::before{
  content:""; position:absolute; inset:0; border-radius:16px;
  background:radial-gradient(ellipse at top left,rgba(255,122,26,0.08),transparent 62%);
  pointer-events:none;
}
.momo-hero:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 34px rgba(255,122,26,0.12);
  border-color:rgba(255,122,26,0.3);
}
.momo-grid{
  overflow:hidden; margin-bottom:16px;
}
.food-grid{ gap:16px; }
.food-item{
  background:rgba(255,249,242,0.03);
  border:1px solid rgba(255,122,26,0.15);
  border-radius:14px;
  box-shadow:0 10px 24px rgba(0,0,0,0.14);
}
.food-item:hover{
  border-color:rgba(255,122,26,0.2);
  box-shadow:0 12px 28px rgba(255,122,26,0.12);
}

/* ---------------- MENU OVERHAUL: GRID ROW HOVER ---------------- */
.momo-grid-row{
  transition:background .2s, transform .15s;
}
.momo-grid-row:hover{
  background:rgba(255,122,26,0.04);
  transform:translateX(3px);
}

/* ---------------- MENU OVERHAUL: ANIMATIONS ---------------- */
@keyframes fadeSlideUp{
  from{ opacity:0; transform:translateY(20px); }
  to{ opacity:1; transform:translateY(0); }
}
.menu-section-title{ animation:fadeSlideUp .5s ease both; }
.momo-hero{ animation:fadeSlideUp .5s ease both; animation-delay:.1s; }
.momo-grid{ animation:fadeSlideUp .5s ease both; animation-delay:.2s; }

/* ---------------- MENU OVERHAUL: SCROLLBAR ---------------- */
::-webkit-scrollbar{ width:8px; }
::-webkit-scrollbar-track{ background:var(--black); }
::-webkit-scrollbar-thumb{ background:rgba(255,122,26,0.3); border-radius:4px; }
::-webkit-scrollbar-thumb:hover{ background:rgba(255,122,26,0.5); }
.customize-banner{
  display:flex; align-items:center; gap:16px;
  background:linear-gradient(135deg,rgba(255,122,26,0.1),rgba(255,122,26,0.04));
  border:1px solid rgba(255,122,26,0.2);
  border-radius:12px;
  padding:16px 22px;
  margin-bottom:28px;
}
.customize-banner .icon{
  font-size:1.8rem;
  flex-shrink:0;
  width:50px; height:50px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,122,26,0.12);
  border-radius:10px;
}
.customize-banner .text h4{
  margin:0 0 3px;
  font-size:0.95rem;
  color:var(--white);
  font-weight:700;
}
.customize-banner .text p{
  margin:0;
  font-size:0.82rem;
  color:var(--white-dim);
  line-height:1.5;
}
@media (max-width:600px){
  .customize-banner{ flex-direction:column; text-align:center; padding:18px 16px; gap:10px; }
  .customize-banner .icon{ width:auto; height:auto; font-size:1.5rem; }
}

/* ---------------- RESPONSIVE: MENU FOOD GRID ---------------- */
@media (max-width:700px){
  .food-grid{ grid-template-columns:1fr; gap:12px; }
  .food-item{ padding:16px 18px; }
  .food-item-top h4{ font-size:0.88rem; }
  .food-item p{ font-size:0.76rem; }
}
@media (max-width:480px){
  .food-grid{ gap:10px; }
  .food-item{ padding:14px 14px; }
}

/* ---------------- RESPONSIVE: MOMO GRID (stacked on phone) ---------------- */
@media (max-width:640px){
  .momo-grid{ overflow:hidden; }
  .momo-grid-head{ display:none; }
  .momo-grid-row{
    display:flex; flex-direction:column; gap:6px;
    padding:14px 16px; border-radius:8px; margin-bottom:8px;
    background:rgba(255,249,242,0.03); border:1px solid rgba(255,249,242,0.06);
  }
  .momo-style{ font-size:0.95rem; margin-bottom:4px; }
  .momo-price{ text-align:left; font-size:0.88rem; display:flex; justify-content:space-between; width:100%; }
  .momo-price::before{ color:var(--white-dim); font-weight:400; }
  .momo-hero{ flex-direction:column; text-align:center; gap:12px; padding:16px; }
  .momo-hero-img{ width:80px; height:80px; }
  .momo-hero-text p{ font-size:0.82rem; }
}
/* Label columns on phone */
@media (max-width:640px){
  .momo-grid-row .momo-price:nth-child(2)::before{ content:'Veg: '; }
  .momo-grid-row .momo-price:nth-child(3)::before{ content:'Chicken: '; }
  .momo-grid-row .momo-price:nth-child(4)::before{ content:'Buff: '; }
}

/* ---------------- RESPONSIVE: CHOWMINE GRID ---------------- */
@media (max-width:640px){
  .chowmine-grid .momo-grid-head{ display:none; }
  .chowmine-grid .momo-grid-row{ min-width:auto; }
  .chowmine-grid .momo-grid-row .momo-price:nth-child(2)::before{ content:'Veg: '; }
  .chowmine-grid .momo-grid-row .momo-price:nth-child(3)::before{ content:'Egg: '; }
  .chowmine-grid .momo-grid-row .momo-price:nth-child(4)::before{ content:'Chicken: '; }
  .chowmine-grid .momo-grid-row .momo-price:nth-child(5)::before{ content:'Buff: '; }
  .chowmine-grid .momo-grid-row .momo-price:nth-child(6)::before{ content:'Mix: '; }
}

/* ---------------- RESPONSIVE: MENU TABS ---------------- */
@media (max-width:720px){
  .menu-tabs{ flex-wrap:nowrap; overflow-x:auto; padding-bottom:8px; gap:6px; }
  .menu-tab{ white-space:nowrap; font-size:0.78rem; padding:8px 14px; flex-shrink:0; }
}

/* ---------------- RESPONSIVE: MENU SECTIONS ---------------- */
@media (max-width:600px){
  .menu-section-title h3{ font-size:1.1rem; }
  .menu-cat-divider span{ font-size:0.72rem; }
  .menu-list{ gap:10px; grid-template-columns:1fr; }
  .menu-item{ padding:14px 16px; border-radius:8px; }
  .menu-item-body{ gap:8px; }
  .menu-item-top{ flex-direction:column; gap:4px; }
  .menu-item-top h4{ font-size:0.88rem; }
  .menu-item-top .price{ font-size:0.88rem; }
  .menu-item p{ font-size:0.76rem; }
  .menu-sub-title{ padding:0 4px; }
}

/* ---------------- RESPONSIVE: PAGE HEADER ---------------- */
@media (max-width:600px){
  .page-header{ padding:100px 0 40px; }
  .page-header h1{ font-size:1.6rem; }
  .page-header p{ font-size:0.88rem; }
}

/* ---------------- RESPONSIVE: FORM CARD ---------------- */
@media (max-width:600px){
  .form-card{ padding:24px 18px; }
  .pax-grid{ grid-template-columns:repeat(5,1fr); gap:6px; }
  .time-grid{ grid-template-columns:repeat(3,1fr); gap:6px; }
  .pax-box span, .time-box span{ font-size:0.78rem; padding:10px 6px; }
}

/* ---------------- RESPONSIVE: FOOTER ---------------- */
@media (max-width:600px){
  .footer-grid{ gap:28px; }
  .footer-about p{ font-size:0.82rem; }
  .footer-grid h5{ font-size:0.85rem; }
  .footer-grid ul li a{ font-size:0.82rem; }
}

/* ---------------- RESPONSIVE: CONTACT INFO CARDS ---------------- */
@media (max-width:600px){
  .contact-info-card{ padding:18px 16px; }
  .contact-icon-row{ gap:12px; }
  .contact-icon-row h4{ font-size:0.9rem; }
  .contact-icon-row p{ font-size:0.82rem; }
}

/* ---------------- RESPONSIVE: FAQ LIST ---------------- */
@media (max-width:600px){
  .faq-q span:first-child{ font-size:0.88rem; }
  .faq-a p{ font-size:0.82rem; }
}

/* ---------------- RESPONSIVE: CTA BANNER ---------------- */
@media (max-width:600px){
  .cta-banner{ padding:36px 20px; }
  .cta-banner h2{ font-size:1.3rem; }
  .cta-banner p{ font-size:0.88rem; }
}

/* ---------------- DATE INPUT (dark theme) ---------------- */
input[type="date"]{
  color:var(--white);
  background:rgba(255,249,242,0.05);
  border:1px solid rgba(255,249,242,0.12);
  border-radius:8px;
  padding:10px 14px;
  font-size:0.92rem;
  font-family:inherit;
  width:100%;
  outline:none;
  transition:border-color 0.2s;
}
input[type="date"]:focus{ border-color:var(--orange); }
input[type="date"]::-webkit-calendar-picker-indicator{ filter:invert(0.7) sepia(0.3) hue-rotate(340deg); cursor:pointer; }

/* ---------------- TEXTAREA (dark theme) ---------------- */
textarea{
  color:var(--white);
  background:rgba(255,249,242,0.05);
  border:1px solid rgba(255,249,242,0.12);
  border-radius:8px;
  padding:10px 14px;
  font-size:0.92rem;
  font-family:inherit;
  width:100%;
  outline:none;
  transition:border-color 0.2s;
}
textarea:focus{ border-color:var(--orange); }
textarea::placeholder{ color:var(--white-dim); opacity:0.5; }

/* ---------------- BIRYANI HERO SECTION ---------------- */
.biryani-hero{
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;
  background:rgba(255,249,242,0.03); border-radius:20px; overflow:hidden;
  border:1px solid rgba(255,122,26,0.15);
}
.biryani-hero-img{
  position:relative; height:100%; min-height:380px; overflow:hidden;
}
.biryani-hero-img img{
  width:100%; height:100%; object-fit:cover;
  transition:transform 6s ease;
}
.biryani-hero:hover .biryani-hero-img img{ transform:scale(1.06); }
.biryani-hero-badge{
  position:absolute; top:16px; left:16px;
  background:linear-gradient(135deg,var(--orange),var(--red));
  color:var(--white); font-weight:800; font-size:0.82rem;
  padding:8px 18px; border-radius:100px;
  box-shadow:0 4px 20px rgba(255,122,26,0.5);
  animation:glow-pulse 2s ease-in-out infinite;
}
@keyframes glow-pulse{
  0%,100%{ box-shadow:0 4px 20px rgba(255,122,26,0.5); }
  50%{ box-shadow:0 4px 30px rgba(255,122,26,0.8); }
}
.biryani-hero-text{ padding:40px 44px; }
.biryani-hero-text .eyebrow{ margin-bottom:12px; }
.biryani-hero-text h2{ font-size:1.8rem; margin-bottom:16px; }
.biryani-hero-text p{ color:var(--white-dim); font-size:0.95rem; line-height:1.7; margin-bottom:12px; }
.biryani-hero-price{ display:flex; align-items:center; gap:16px; margin:24px 0; }
.biryani-hero-price .price{ font-size:1.6rem; font-weight:800; }
.biryani-hero-note{ color:var(--white-dim); font-size:0.85rem; }
@media(max-width:768px){
  .biryani-hero{ grid-template-columns:1fr; }
  .biryani-hero-img{ min-height:320px; }
  .biryani-hero-text{ padding:32px 28px; justify-content:flex-start; }
}
@media(max-width:600px){
  .biryani-hero-img{ min-height:280px; }
  .biryani-hero-text{ padding:24px 20px; }
  .biryani-hero-text h2{ font-size:1.4rem; margin-bottom:12px; }
  .biryani-hero-text p{ font-size:0.9rem; margin-bottom:10px; }
  .biryani-hero-text .eyebrow{ font-size:0.68rem; margin-bottom:10px; }
  .biryani-hero-price{ gap:12px; margin:18px 0; flex-wrap:wrap; }
  .biryani-hero-price .price{ font-size:1.35rem; }
  .biryani-hero-note{ font-size:0.8rem; flex-basis:100%; }
}
@media(max-width:480px){
  .biryani-hero-img{ min-height:240px; }
  .biryani-hero-text{ padding:20px 16px; }
  .biryani-hero-text h2{ font-size:1.2rem; }
  .biryani-hero-text p{ font-size:0.85rem; }
  .biryani-hero-price .price{ font-size:1.2rem; }
}

/* ---------------- GLOBAL MOBILE EDGE PADDING FIX ---------------- */
@media(max-width:600px){
  section{ padding:80px 0; }
  .menu-section-title{ gap:12px; padding:0 4px; }
  .menu-section-title h3{ font-size:1.05rem; }
  .momo-grid{ margin:0 4px; }
  .momo-grid-head, .momo-grid-row{ padding:10px 16px; }
  .customize-banner{ margin:0 4px; padding:18px 16px; }
  .cta-banner{ margin:0 4px; padding:32px 16px; }
  .testi-card{ padding:18px 16px; }
  .process-step{ padding:18px 16px; }
  .dish-card{ padding:14px; }
  .biryani-hero{ margin:0 4px; }
  .biryani-hero-text{ padding:24px 16px; }
  .menu-banner{ margin:0 4px; }
  .momo-hero{ margin:0 4px 20px; }
  .food-item{ margin:0 4px; }
}

/* ---------------- MENU FULL-WIDTH BANNERS ---------------- */
.menu-banner{
  display:grid; grid-template-columns:1fr 1.1fr; gap:0;
  border-radius:16px; overflow:hidden; margin-bottom:32px;
  border:1px solid rgba(255,122,26,0.15);
  background:rgba(255,249,242,0.03);
  transition:transform .3s ease, box-shadow .3s ease;
}
.menu-banner:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 32px rgba(255,122,26,0.15);
}
.menu-banner-img{
  position:relative; min-height:280px; overflow:hidden;
}
.menu-banner-img img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition:transform 5s ease; opacity:1 !important;
}
.menu-banner:hover .menu-banner-img img{ transform:scale(1.05); }
.menu-banner-badge{
  position:absolute; top:14px; left:14px;
  background:linear-gradient(135deg,var(--orange),var(--red));
  color:var(--white); font-weight:800; font-size:0.78rem;
  padding:7px 16px; border-radius:100px;
  box-shadow:0 4px 16px rgba(255,122,26,0.5);
}
.menu-banner-text{ padding:32px 36px; display:flex; flex-direction:column; justify-content:center; }
.menu-banner-text .eyebrow{ margin-bottom:8px; }
.menu-banner-text h3{ font-size:1.4rem; margin-bottom:10px; line-height:1.2; }
.menu-banner-text p{ color:var(--white-dim); font-size:0.88rem; line-height:1.65; margin-bottom:8px; }
.menu-banner-text .price{ font-size:1.3rem; font-weight:800; color:var(--orange); margin-top:8px; }
.menu-banner-text .menu-banner-sub{ color:var(--white-dim); font-size:0.82rem; margin-top:4px; }

@media(max-width:768px){
  .menu-banner{ grid-template-columns:1fr; margin-bottom:28px; }
  .menu-banner-img{ min-height:320px; }
  .menu-banner-text{ padding:28px 24px; }
}

@media(max-width:640px){
  .menu-banner-img{ min-height:280px; }
  .menu-banner-text{ padding:24px 20px; }
  .menu-banner-text h3{ font-size:1.2rem; margin-bottom:8px; }
  .menu-banner-text p{ font-size:0.85rem; margin-bottom:6px; }
  .menu-banner-text .eyebrow{ font-size:0.68rem; margin-bottom:8px; }
  .menu-banner-text .price{ font-size:1.2rem; margin-top:6px; }
}

@media(max-width:480px){
  .menu-banner-img{ min-height:240px; }
  .menu-banner-text{ padding:20px 16px; }
  .menu-banner-text h3{ font-size:1.05rem; }
  .menu-banner-text p{ font-size:0.8rem; }
  .menu-banner-text .price{ font-size:1.05rem; }
  .menu-banner-text .menu-banner-sub{ font-size:0.75rem; }
}

/* ---------------- LAZY LOAD FADE IN ---------------- */
img[loading="lazy"]{
  opacity:0; transition:opacity 0.5s ease;
}
img[loading="lazy"].loaded{ opacity:1; }
.menu-banner-img img{ opacity:1 !important; }
.about-gallery-item img{ opacity:1 !important; }
