/* ================================================================
   Sainath Dosa — Frontend styles
   Theme: warm dark "midnight tawa" + saffron/butter gradients
   ================================================================ */
:root {
  --bg: #12080a;
  --bg2: #1d0f10;
  --card: #241315;
  --card2: #2c181a;
  --line: rgba(255, 180, 100, .14);
  --cream: #fff3e2;
  --muted: #c9a892;
  --saffron: #ff9933;
  --amber: #ffb84d;
  --hot: #ff5722;
  --leaf: #4caf50;
  --grad: linear-gradient(120deg, #ff9933, #ff5722 55%, #e91e63);
  --grad-soft: linear-gradient(120deg, rgba(255,153,51,.16), rgba(255,87,34,.10));
  --radius: 18px;
  --shadow: 0 18px 50px -18px rgba(0,0,0,.65);
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92%); margin: 0 auto; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; border: 0; cursor: pointer;
  transition: transform .25s, box-shadow .25s, filter .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); filter: brightness(1.08); }
.btn-hot { background: var(--grad); color: #fff; box-shadow: 0 12px 30px -10px rgba(255,87,34,.55); }
.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--saffron); color: var(--amber); }
.btn-wa { background: #1faa53; color: #fff; box-shadow: 0 12px 30px -12px rgba(31,170,83,.6); }

/* ---------- Announcement marquee ---------- */
.announce { background: var(--grad); color: #fff; font-weight: 600; font-size: .85rem; overflow: hidden; white-space: nowrap; }
.announce-track { display: inline-flex; gap: 4rem; padding: .45rem 0; animation: marquee 22s linear infinite; }
.announce-track span { padding-left: 4rem; }
@keyframes marquee { to { transform: translateX(-33.33%); } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18, 8, 10, .78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 10px 40px -15px rgba(0,0,0,.8); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: .65rem 0; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { border-radius: 12px; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text b { font-family: var(--font-head); font-size: 1.15rem; letter-spacing: .3px; }
.brand-text small { color: var(--muted); font-size: .68rem; letter-spacing: .5px; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; font-weight: 500; font-size: .95rem; }
.nav-links a:not(.btn) { position: relative; padding: .3rem 0; color: var(--muted); transition: color .25s; }
.nav-links a:not(.btn):hover, .nav-links a.on { color: var(--cream); }
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad); border-radius: 2px; transition: width .3s;
}
.nav-links a:not(.btn):hover::after, .nav-links a.on::after { width: 100%; }
.nav-order { padding: .55rem 1.2rem; font-size: .85rem; }
.burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 26px; height: 2.5px; background: var(--cream); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 860px); display: flex; align-items: center; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% 15%, rgba(255,153,51,.16), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(233,30,99,.12), transparent 60%),
    var(--bg);
}
.hero-glow {
  position: absolute; width: 60vmin; height: 60vmin; border-radius: 50%;
  background: conic-gradient(from 0deg, #ff9933, #ff5722, #e91e63, #ff9933);
  filter: blur(90px) opacity(.22);
  right: -12vmin; top: -12vmin;
  animation: spin 24s linear infinite;
}
@keyframes spin { to { transform: rotate(1turn); } }
.hero-inner { position: relative; z-index: 2; width: min(1180px, 92%); margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; padding: 4rem 0; }
.slide { display: none; }
.slide.live { display: block; animation: slideIn .7s cubic-bezier(.2,.9,.3,1); }
@keyframes slideIn { from { opacity: 0; transform: translateY(26px); } }
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--grad-soft); border: 1px solid var(--line);
  color: var(--amber); font-weight: 600; font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: .45rem 1.1rem; border-radius: 999px; margin-bottom: 1.3rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 900;
  background: linear-gradient(120deg, #fff3e2 30%, #ffb84d 70%, #ff7043);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 1.2rem;
}
.hero p { color: var(--muted); font-size: 1.12rem; max-width: 34rem; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-art { position: relative; display: grid; place-items: center; }
.dosa-stage { position: relative; display: grid; place-items: center; width: min(440px, 80vw); aspect-ratio: 1; }
.dosa-disc {
  width: min(360px, 68vw); aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ffe4b3, #f9b45c 38%, #d98936 68%, #a95f1e 92%);
  box-shadow: inset 0 -22px 60px rgba(120,60,10,.6), inset 0 12px 30px rgba(255,235,200,.35), 0 40px 90px -28px rgba(255,140,50,.45);
  position: relative; animation: floaty 6s ease-in-out infinite; z-index: 2;
}
.dosa-disc::before {
  content: ''; position: absolute; inset: -3%;
  border-radius: 50%; z-index: -1;
  background: conic-gradient(from 0deg, #ff9933, #ffcf6b, #ff5722, #ff9933);
  filter: blur(14px) opacity(.55); animation: spin 12s linear infinite;
}
.dosa-disc::after {
  content: ''; position: absolute; inset: 12%;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 45% 40%, transparent 0 13px, rgba(140,75,20,.18) 13px 15px);
}
/* orbiting food emoji */
.orbit { position: absolute; inset: 0; animation: spin 26s linear infinite; z-index: 3; }
.orbit.rev { animation-direction: reverse; animation-duration: 34s; }
.orbit span {
  position: absolute; top: 50%; left: 50%; font-size: 2rem;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.5));
  display: inline-grid; place-items: center;
  width: 58px; height: 58px; margin: -29px; border-radius: 50%;
  background: rgba(36,19,21,.75); border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
/* counter-rotate the emoji so they stay upright */
.orbit span { animation: spin 26s linear infinite reverse; }
.orbit.rev span { animation-duration: 34s; animation-direction: normal; }
.o1 { transform: rotate(0deg) translateX(min(210px, 40vw)); }
.o2 { transform: rotate(120deg) translateX(min(210px, 40vw)); }
.o3 { transform: rotate(240deg) translateX(min(210px, 40vw)); }
.r1 { transform: rotate(60deg) translateX(min(168px, 32vw)); }
.r2 { transform: rotate(200deg) translateX(min(168px, 32vw)); }
/* steam */
.steam { position: absolute; top: -6%; left: 50%; transform: translateX(-50%); display: flex; gap: 22px; z-index: 4; pointer-events: none; }
.steam i { display: block; width: 10px; height: 60px; border-radius: 50%; background: linear-gradient(to top, rgba(255,240,220,.5), transparent); filter: blur(4px); animation: steam 3.4s ease-in-out infinite; }
.steam i:nth-child(2) { animation-delay: .8s; height: 74px; }
.steam i:nth-child(3) { animation-delay: 1.6s; }
@keyframes steam { 0% { opacity: 0; transform: translateY(10px) scaleX(1); } 30% { opacity: .8; } 100% { opacity: 0; transform: translateY(-40px) scaleX(1.6); } }
/* trust row under hero copy */
.trust { display: flex; align-items: center; gap: 1.4rem; margin-top: 1.8rem; flex-wrap: wrap; }
.trust .t-stars { color: var(--amber); font-size: 1.05rem; letter-spacing: 1px; }
.trust b { color: var(--cream); }
.trust .t-sep { width: 1px; height: 26px; background: var(--line); }
.trust small { color: var(--muted); font-size: .82rem; }
@keyframes floaty { 50% { transform: translateY(-16px) rotate(2deg); } }
.hero-chip {
  position: absolute; background: rgba(36,19,21,.9); border: 1px solid var(--line);
  border-radius: 14px; padding: .6rem 1rem; font-size: .85rem; font-weight: 600;
  backdrop-filter: blur(8px); box-shadow: var(--shadow);
  animation: floaty 7s ease-in-out infinite;
}
.hero-chip b { color: var(--amber); }
.chip-1 { top: 6%; left: 0; animation-delay: -1.5s; }
.chip-2 { bottom: 14%; right: 0; animation-delay: -3s; }
.chip-3 { bottom: -2%; left: 12%; animation-delay: -4.5s; }
.dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 3; }
.dots button { width: 10px; height: 10px; border-radius: 999px; border: 0; background: rgba(255,243,226,.25); cursor: pointer; transition: .3s; }
.dots button.on { width: 28px; background: var(--grad); }

/* ---------- Sections ---------- */
section { padding: 5.5rem 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 3.2rem; }
.sec-head .kicker { color: var(--saffron); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: .78rem; }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 900; margin: .5rem 0 .8rem; }
.sec-head p { color: var(--muted); }

/* reveal on scroll */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.9,.3,1); }
.rv.in { opacity: 1; transform: none; }

/* ---------- Feature cards ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.feat {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; transition: transform .3s, border-color .3s, background .3s;
}
.feat:hover { transform: translateY(-8px); border-color: rgba(255,153,51,.4); background: var(--card2); }
.feat .ico { font-size: 2rem; display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 16px; background: var(--grad-soft); border: 1px solid var(--line); margin-bottom: 1rem; }
.feat h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.feat p { color: var(--muted); font-size: .92rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-art { position: relative; }
.about-frame {
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line); aspect-ratio: 4/4.4; object-fit: cover; width: 100%;
  background: var(--grad-soft);
}
.about-stamp {
  position: absolute; right: -14px; bottom: -14px;
  background: var(--grad); color: #fff; border-radius: 18px; padding: 1rem 1.3rem;
  text-align: center; box-shadow: var(--shadow);
}
.about-stamp b { display: block; font-size: 1.7rem; font-family: var(--font-head); }
.about-copy .kicker { color: var(--saffron); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: .78rem; }
.about-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 900; margin: .5rem 0 1rem; }
.about-copy p { color: var(--muted); margin-bottom: 1.4rem; }
.points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.2rem; margin-bottom: 1.8rem; }
.points li { display: flex; gap: .55rem; align-items: center; font-weight: 500; font-size: .95rem; }
.points li::before { content: '✔'; color: var(--leaf); font-weight: 900; }

/* ---------- Menu ---------- */
.tabs { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.tab {
  padding: .6rem 1.3rem; border-radius: 999px; border: 1.5px solid var(--line);
  background: transparent; color: var(--muted); font-weight: 600; font-size: .9rem;
  cursor: pointer; transition: .25s; font-family: var(--font-body);
}
.tab:hover { color: var(--cream); border-color: var(--saffron); }
.tab.on { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 10px 25px -10px rgba(255,87,34,.5); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.1rem; }
.dish {
  display: flex; gap: 1rem; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.2rem; transition: transform .3s, border-color .3s;
}
.dish:hover { transform: translateY(-5px); border-color: rgba(255,153,51,.45); }
.dish-img {
  width: 74px; height: 74px; border-radius: 14px; flex: none; object-fit: cover;
  background: var(--grad-soft); display: grid; place-items: center; font-size: 1.9rem;
  border: 1px solid var(--line);
}
.dish-info { flex: 1; min-width: 0; }
.dish-info h3 { font-size: 1.02rem; font-family: var(--font-body); font-weight: 600; display: flex; align-items: center; gap: .45rem; }
.dish-info .gu { color: var(--muted); font-size: .82rem; }
.dish-info .desc { color: var(--muted); font-size: .82rem; margin-top: .15rem; }
.dish-price { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--amber); white-space: nowrap; }
.veg-dot { width: 14px; height: 14px; flex: none; border: 1.5px solid var(--leaf); border-radius: 3px; display: inline-grid; place-items: center; }
.veg-dot::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); }
.star-badge { background: var(--grad); color: #fff; font-size: .62rem; font-weight: 700; letter-spacing: .5px; padding: .15rem .5rem; border-radius: 999px; text-transform: uppercase; }

/* specials carousel */
.spec-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.3rem; }
.spec {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: 22px;
  padding: 2rem 1.6rem 1.6rem; transition: transform .35s, border-color .35s;
}
.spec::before { content: ''; position: absolute; inset: 0 0 auto; height: 4px; background: var(--grad); }
.spec:hover { transform: translateY(-9px) scale(1.01); border-color: rgba(255,153,51,.5); }
.spec .dish-img { width: 92px; height: 92px; font-size: 2.6rem; border-radius: 20px; margin-bottom: 1.1rem; }
.spec img.dish-img { padding: 0; }
.spec h3 { font-size: 1.25rem; margin-bottom: .2rem; }
.spec .gu { color: var(--muted); font-size: .85rem; }
.spec .spec-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 1.1rem; }
.spec .dish-price { font-size: 1.45rem; }

/* ---------- Gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.gal-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; border: 1px solid var(--line); background: var(--card); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.9,.3,1); }
.gal-item:hover img { transform: scale(1.08); }
.gal-item .cap {
  position: absolute; inset: auto 0 0; padding: 2.2rem 1rem .8rem; font-weight: 600; font-size: .9rem;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.2rem; }
.testi { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem; transition: transform .3s, border-color .3s; }
.testi:hover { transform: translateY(-6px); border-color: rgba(255,153,51,.4); }
.stars { color: var(--amber); letter-spacing: 2px; margin-bottom: .8rem; }
.testi p { color: var(--cream); font-size: .95rem; margin-bottom: 1.2rem; }
.testi .who { display: flex; align-items: center; gap: .8rem; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 700; color: #fff; flex: none; object-fit: cover; }
.who b { display: block; font-size: .95rem; }
.who small { color: var(--muted); }

/* ---------- Branches ---------- */
.branch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.branch { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem; }
.branch h3 { font-size: 1.15rem; margin-bottom: .6rem; color: var(--amber); }
.branch p { color: var(--muted); font-size: .92rem; margin-bottom: .3rem; }
.branch a.map-link { color: var(--saffron); font-weight: 600; font-size: .88rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 26px; background: var(--grad); padding: 3.5rem 2.5rem; text-align: center; color: #fff; }
.cta-band h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 900; margin-bottom: .6rem; }
.cta-band p { opacity: .92; margin-bottom: 1.8rem; }
.cta-band .btn { background: #12080a; color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 2rem; }
.form-card label { display: block; font-weight: 600; font-size: .88rem; margin: 1rem 0 .35rem; color: var(--muted); }
.form-card input, .form-card textarea {
  width: 100%; padding: .8rem 1rem; border-radius: 12px;
  background: var(--bg2); border: 1.5px solid var(--line); color: var(--cream);
  font-family: var(--font-body); font-size: .95rem; transition: border-color .25s;
}
.form-card input:focus, .form-card textarea:focus { outline: none; border-color: var(--saffron); }
.alert-ok { background: rgba(76,175,80,.15); border: 1px solid rgba(76,175,80,.4); color: #a5d6a7; border-radius: 12px; padding: .9rem 1.2rem; margin-bottom: 1rem; }
.alert-err { background: rgba(244,67,54,.12); border: 1px solid rgba(244,67,54,.4); color: #ef9a9a; border-radius: 12px; padding: .9rem 1.2rem; margin-bottom: 1rem; }
.map-embed { border-radius: 22px; overflow: hidden; border: 1px solid var(--line); min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.2) contrast(1.05); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 5rem 0 3.5rem; text-align: center; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(700px 300px at 50% -10%, rgba(255,153,51,.18), transparent 70%); }
.page-hero h1 { position: relative; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; }
.page-hero p { position: relative; color: var(--muted); margin-top: .6rem; }

/* ---------- Footer ---------- */
.footer { background: #0c0507; border-top: 1px solid var(--line); padding-top: 4rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.f-col h4 { font-size: 1rem; margin-bottom: 1rem; color: var(--amber); }
.f-col a, .f-col p { display: block; color: var(--muted); font-size: .92rem; margin-bottom: .5rem; transition: color .25s; }
.f-col a:hover { color: var(--cream); }
.f-note { margin-top: 1rem; }
.f-small { font-size: .82rem; }
.socials { display: flex; gap: .6rem; margin-top: .8rem; }
.socials a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--card); border: 1px solid var(--line); font-size: 1.1rem; transition: transform .25s, border-color .25s; }
.socials a:hover { transform: translateY(-4px); border-color: var(--saffron); }
.f-bottom { border-top: 1px solid var(--line); padding: 1.2rem 0; font-size: .84rem; color: var(--muted); }
.f-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.f-col .btn { display: inline-flex; margin-top: .5rem; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #1faa53;
  display: grid; place-items: center; box-shadow: 0 14px 35px -10px rgba(31,170,83,.7);
  animation: pulse 2.4s infinite; transition: transform .25s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse { 0%,100% { box-shadow: 0 14px 35px -10px rgba(31,170,83,.7), 0 0 0 0 rgba(31,170,83,.45); } 50% { box-shadow: 0 14px 35px -10px rgba(31,170,83,.7), 0 0 0 16px rgba(31,170,83,0); } }

/* ---------- Counter strip ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.stat { text-align: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1rem; }
.stat b { display: block; font-family: var(--font-head); font-size: 2.3rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: .88rem; font-weight: 500; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 3rem 0 5rem; }
  .hero p { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-art { order: -1; margin-top: 1rem; }
  .dosa-disc { width: min(280px, 62vw); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    background: rgba(18,8,10,.97); backdrop-filter: blur(16px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 2.5rem; gap: 1.6rem; font-size: 1.1rem;
    transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.9,.3,1);
    box-shadow: -30px 0 60px rgba(0,0,0,.5); z-index: 49;
  }
  .nav-links.open { transform: none; }
  section { padding: 3.5rem 0; }
  .points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .brand-text small { display: none; }
}
/* ---------- Scroll progress bar ---------- */
.scroll-prog { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100; background: var(--grad); box-shadow: 0 0 12px rgba(255,120,50,.7); transition: width .1s linear; }

/* ---------- Staggered reveal delays ---------- */
.rv[data-d="1"] { transition-delay: .08s; }
.rv[data-d="2"] { transition-delay: .16s; }
.rv[data-d="3"] { transition-delay: .24s; }
.rv[data-d="4"] { transition-delay: .32s; }
.rv[data-d="5"] { transition-delay: .40s; }

/* ---------- Popular dishes marquee ---------- */
.pop-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.pop-track { display: flex; gap: 1rem; width: max-content; animation: marquee2 38s linear infinite; }
.pop-marquee:hover .pop-track { animation-play-state: paused; }
@keyframes marquee2 { to { transform: translateX(-50%); } }
.pop-chip {
  display: inline-flex; align-items: center; gap: .7rem; white-space: nowrap;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: .6rem 1.3rem .6rem .7rem; font-weight: 600;
}
.pop-chip .e { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--grad-soft); font-size: 1.2rem; border: 1px solid var(--line); }
.pop-chip b { color: var(--amber); }

/* ---------- Glow border on cards ---------- */
.feat, .dish, .spec, .testi { position: relative; }
.feat::after, .dish::after, .spec::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad); opacity: 0; transition: opacity .35s;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.feat:hover::after, .dish:hover::after, .spec:hover::after { opacity: .9; }

/* ---------- Sticky menu tabs ---------- */
.tabs.sticky { position: sticky; top: 62px; z-index: 20; margin-bottom: 2.5rem; padding: .7rem; border-radius: 999px; background: rgba(29,15,16,.92); backdrop-filter: blur(12px); border: 1px solid var(--line); box-shadow: 0 14px 34px -20px rgba(0,0,0,.9); }
.tabs-scroll { display: flex; gap: .5rem; overflow-x: auto; padding: 0 .2rem; scrollbar-width: none; justify-content: flex-start; }
.tabs-scroll { justify-content: center; }
.tabs-scroll::-webkit-scrollbar { display: none; }
@media (max-width: 760px) { .tabs-scroll { justify-content: flex-start; } .tabs.sticky { border-radius: 18px; } }

/* ---------- Mobile sticky action bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 640px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
    background: rgba(12,5,7,.94); backdrop-filter: blur(14px); border-top: 1px solid var(--line);
  }
  .mobile-bar .btn { justify-content: center; padding: .8rem; }
  .wa-float { bottom: 5.2rem; }
  body { padding-bottom: 4.5rem; }
  .tabs.sticky { top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
