/* ══════════════════════════════════════════════════════════════════════
   MOMO MONK — core stylesheet: tokens, typography, chrome, components
   ══════════════════════════════════════════════════════════════════════ */

/* ------------------------------------------------------------ fonts --- */
@font-face { font-family: Poppins; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/poppins-latin-400-normal.woff2) format('woff2'); }
@font-face { font-family: Poppins; font-style: normal; font-weight: 500; font-display: swap;
  src: url(../fonts/poppins-latin-500-normal.woff2) format('woff2'); }
@font-face { font-family: Poppins; font-style: normal; font-weight: 600; font-display: swap;
  src: url(../fonts/poppins-latin-600-normal.woff2) format('woff2'); }
@font-face { font-family: Poppins; font-style: normal; font-weight: 700; font-display: swap;
  src: url(../fonts/poppins-latin-700-normal.woff2) format('woff2'); }
@font-face { font-family: Poppins; font-style: normal; font-weight: 800; font-display: swap;
  src: url(../fonts/poppins-latin-800-normal.woff2) format('woff2'); }
@font-face { font-family: Poppins; font-style: normal; font-weight: 900; font-display: swap;
  src: url(../fonts/poppins-latin-900-normal.woff2) format('woff2'); }

@font-face { font-family: Inter; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/inter-latin-400-normal.woff2) format('woff2'); }
@font-face { font-family: Inter; font-style: normal; font-weight: 500; font-display: swap;
  src: url(../fonts/inter-latin-500-normal.woff2) format('woff2'); }
@font-face { font-family: Inter; font-style: normal; font-weight: 600; font-display: swap;
  src: url(../fonts/inter-latin-600-normal.woff2) format('woff2'); }
@font-face { font-family: Inter; font-style: normal; font-weight: 700; font-display: swap;
  src: url(../fonts/inter-latin-700-normal.woff2) format('woff2'); }

/* Malayalam — downloaded only when Malayalam glyphs are actually rendered. */
@font-face { font-family: Manjari; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/manjari-malayalam-400-normal.woff2) format('woff2');
  unicode-range: U+0D00-0D7F, U+200C-200D, U+25CC; }
@font-face { font-family: Manjari; font-style: normal; font-weight: 700; font-display: swap;
  src: url(../fonts/manjari-malayalam-700-normal.woff2) format('woff2');
  unicode-range: U+0D00-0D7F, U+200C-200D, U+25CC; }

/* ----------------------------------------------------------- tokens --- */
:root {
  --ink:        #100E0C;
  --ink-2:      #17130F;
  --ink-3:      #221C16;
  --ink-4:      #2E251D;
  --cream:      #FFF6E8;
  --cream-2:    #F5E7D2;
  --cream-3:    #E9D6B8;
  --saffron:    #FFAE1A;
  --saffron-d:  #F08A00;
  --chili:      #E63925;
  --chili-l:    #FF5A40;
  --leaf:       #17B978;
  --leaf-d:     #0B8F58;
  --neon:       #FF2E93;
  --muted:      rgba(255, 246, 232, .62);
  --muted-2:    rgba(255, 246, 232, .40);
  --line:       rgba(255, 246, 232, .12);
  --line-2:     rgba(255, 246, 232, .07);

  --bg:         var(--ink);
  --fg:         var(--cream);

  --r-s: 10px;
  --r-m: 18px;
  --r-l: 28px;
  --r-xl: 40px;

  --pad: clamp(20px, 5vw, 72px);
  --wrap: 1320px;
  --sec: clamp(72px, 11vw, 160px);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, .05, .36, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);

  --shadow: 0 30px 80px -30px rgba(0, 0, 0, .75);
  --shadow-l: 0 50px 120px -40px rgba(0, 0, 0, .85);
  --glow-saffron: 0 0 60px -10px rgba(255, 174, 26, .55);
  --glow-chili: 0 0 60px -10px rgba(230, 57, 37, .55);

  --nav-h: 78px;
}

/* ------------------------------------------------------------- base --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: clamp(15px, .55vw + 13.6px, 17px);
  line-height: 1.65;
  font-feature-settings: 'kern', 'liga';
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-synthesis-weight: none;
}

body.is-locked { overflow: hidden; }

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button, input, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
address { font-style: normal; }
canvas { display: block; }

::selection { background: var(--saffron); color: var(--ink); }

/* Film grain over the whole page */
body::after {
  content: '';
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 9998;
  opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  animation: grain 6s steps(6) infinite;
  will-change: transform;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -4%); }
  60% { transform: translate(-3%, -3%); }
  80% { transform: translate(4%, 2%); }
}

.skip {
  position: fixed; top: -100px; left: 20px; z-index: 10000;
  background: var(--saffron); color: var(--ink); padding: 12px 20px; border-radius: 99px;
  font-weight: 700; transition: top .3s var(--ease);
}
.skip:focus { top: 20px; }

:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; border-radius: 4px; }

/* ------------------------------------------------------- typography --- */
h1, h2, h3, h4, .disp {
  font-family: Poppins, system-ui, sans-serif;
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.h2 { font-size: clamp(2rem, 5.2vw, 4rem); }
.h2 em { font-style: normal; color: var(--saffron); }

.lede {
  font-size: clamp(1rem, .7vw + .84rem, 1.22rem);
  line-height: 1.62;
  color: var(--muted);
  max-width: 60ch;
  margin-top: 18px;
}
.lede--wide { max-width: 72ch; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: Poppins, sans-serif; font-weight: 700;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 20px;
}
.kicker i {
  width: 30px; height: 2px; background: currentColor; border-radius: 2px;
  transform-origin: left; animation: kickerGrow 1.4s var(--ease) infinite alternate;
}
@keyframes kickerGrow { from { transform: scaleX(.35); } to { transform: scaleX(1); } }

.accent { color: var(--saffron); }

.grad-text {
  background: linear-gradient(100deg, var(--saffron) 0%, var(--chili-l) 45%, var(--neon) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Section shell -------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
section, .sect { position: relative; }
.fit { padding-block: var(--sec); }

.shead { position: relative; z-index: 2; max-width: 780px; }
.shead--split { max-width: 660px; }
.shead .h2 + .lede { margin-top: 20px; }

/* --------------------------------------------------------- buttons --- */
.btn {
  --bg: transparent; --fg: var(--cream);
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 99px;
  font-family: Poppins, sans-serif; font-weight: 700; font-size: .92rem;
  letter-spacing: -.01em; white-space: nowrap;
  background: var(--bg); color: var(--fg);
  border: 1.5px solid var(--line);
  overflow: hidden; isolation: isolate;
  transition: transform .5s var(--ease), border-color .4s, color .4s, background .4s, box-shadow .4s;
  will-change: transform;
}
.btn .ico { width: 18px; height: 18px; flex: none; transition: transform .5s var(--ease); }
.btn:hover { transform: translateY(-3px); border-color: rgba(255, 174, 26, .5); }
.btn:hover .ico { transform: translate(3px, -3px); }
.btn:active { transform: translateY(-1px) scale(.985); }

.btn--solid {
  background: var(--saffron); color: #1A1207; border-color: transparent;
  box-shadow: var(--glow-saffron);
}
.btn--solid:hover { background: #FFC24A; box-shadow: 0 0 80px -8px rgba(255, 174, 26, .8); }

.btn--ghost { backdrop-filter: blur(8px); background: rgba(255, 246, 232, .04); }
.btn--ghost:hover { background: rgba(255, 246, 232, .09); }

.btn--sm { padding: 11px 18px; font-size: .82rem; }
.btn--xl { padding: 19px 34px; font-size: 1.02rem; }

.btn--pulse { box-shadow: 0 0 0 0 rgba(255, 174, 26, .55); animation: pulse 2.6s var(--ease-io) infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 174, 26, .5), var(--glow-saffron); }
  70%  { box-shadow: 0 0 0 18px rgba(255, 174, 26, 0), var(--glow-saffron); }
  100% { box-shadow: 0 0 0 0 rgba(255, 174, 26, 0), var(--glow-saffron); }
}
.btn__pulse { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; z-index: -1; }

.btn--order { padding: 12px 20px; font-size: .86rem; border-color: rgba(255, 174, 26, .35); }

/* -------------------------------------------------------- nav bar ---- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 1001;
  background: transparent; pointer-events: none;
}
.progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--saffron), var(--chili-l), var(--neon));
  box-shadow: 0 0 12px rgba(255, 174, 26, .8);
  transform-origin: left;
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: transform .55s var(--ease), background .45s, border-color .45s, box-shadow .45s;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--wrap); margin-inline: auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; gap: 22px;
  height: var(--nav-h);
  transition: height .45s var(--ease);
}
.nav.is-stuck {
  background: rgba(16, 14, 12, .72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-2);
}
.nav.is-stuck .nav__inner { height: 66px; }
.nav.is-hidden { transform: translateY(-102%); }

/* Brand lock-up -------------------------------------------------------- */
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand__mark {
  display: grid; place-items: center; width: 46px; height: 46px; flex: none;
  border-radius: 14px;
  background: radial-gradient(120% 120% at 30% 20%, rgba(255, 174, 26, .28), rgba(255, 174, 26, 0));
  transition: transform .6s var(--ease), filter .6s;
}
.brand__mark img { width: 40px; height: 40px; object-fit: contain; }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.08); filter: drop-shadow(0 0 14px rgba(255, 174, 26, .55)); }
.nav.is-stuck .brand__mark { width: 40px; height: 40px; }
.nav.is-stuck .brand__mark img { width: 34px; height: 34px; }

.brand__type { display: grid; line-height: .82; font-family: Poppins, sans-serif; }
.brand__type b { font-weight: 900; font-size: 1.06rem; letter-spacing: -.04em; }
.brand__type b:last-of-type { color: var(--saffron); }
.brand__type em {
  font-style: normal; font-size: .5rem; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase; color: var(--muted-2); margin-top: 5px;
}

/* Nav links ------------------------------------------------------------ */
.nav__nav { margin-left: auto; }
.nav__list { display: flex; gap: 4px; }
.nav__link {
  position: relative; display: block; padding: 10px 15px; border-radius: 99px;
  font-size: .88rem; font-weight: 500; color: var(--muted);
  transition: color .35s, background .35s;
}
.nav__link::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 5px; height: 1.5px;
  background: var(--saffron); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav__link:hover { color: var(--cream); background: rgba(255, 246, 232, .05); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--cream); }

.nav__right { display: flex; align-items: center; gap: 12px; flex: none; }

.lang {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 99px; border: 1px solid var(--line);
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  transition: border-color .35s, background .35s;
}
.lang:hover { border-color: rgba(255, 174, 26, .5); background: rgba(255, 246, 232, .05); }
.lang__opt { color: var(--muted-2); transition: color .3s; }
.lang__opt.is-on { color: var(--saffron); }
.lang__sep { color: var(--muted-2); opacity: .5; }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); }
.burger i {
  display: block; width: 18px; height: 1.8px; margin: 3.5px auto; border-radius: 2px;
  background: var(--cream); transition: transform .45s var(--ease), opacity .3s;
}
.burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(5.3px) rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] i:nth-child(3) { transform: translateY(-5.3px) rotate(-45deg); }

/* Drawer --------------------------------------------------------------- */
.drawer { position: fixed; inset: 0; z-index: 1200; }
.drawer[hidden] { display: none; }
.drawer__bg { position: absolute; inset: 0; background: rgba(8, 7, 6, .6); backdrop-filter: blur(6px); opacity: 0; transition: opacity .4s; }
.drawer.is-open .drawer__bg { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 88vw);
  background: var(--ink-2); border-left: 1px solid var(--line);
  padding: calc(var(--nav-h) + 24px) 30px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateX(100%); transition: transform .6s var(--ease);
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__list li { border-bottom: 1px solid var(--line-2); }
.drawer__list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; font-family: Poppins, sans-serif; font-weight: 700;
  font-size: 1.5rem; letter-spacing: -.03em;
  opacity: 0; transform: translateY(20px);
  transition: color .3s;
}
.drawer.is-open .drawer__list a { animation: drawerIn .6s var(--ease) forwards; }
.drawer__list li:nth-child(1) a { animation-delay: .10s; }
.drawer__list li:nth-child(2) a { animation-delay: .16s; }
.drawer__list li:nth-child(3) a { animation-delay: .22s; }
.drawer__list li:nth-child(4) a { animation-delay: .28s; }
.drawer__list li:nth-child(5) a { animation-delay: .34s; }
.drawer__list li:nth-child(6) a { animation-delay: .40s; }
.drawer__list li:nth-child(7) a { animation-delay: .46s; }
@keyframes drawerIn { to { opacity: 1; transform: none; } }
.drawer__list a:hover { color: var(--saffron); }
.drawer__foot { color: var(--muted); font-size: .88rem; }
.drawer__foot .btn { margin-bottom: 18px; }
.drawer__tel a { color: var(--saffron); font-weight: 600; }

/* --------------------------------------------------------- cursor ---- */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; mix-blend-mode: normal; }
.cursor:not(.is-on) { display: none; }
.cursor__dot, .cursor__ring, .cursor__chili, .cursor__momo, .cursor__sticks, .cursor__label {
  position: absolute; top: 0; left: 0; transform: translate(-50%, -50%);
}
.cursor__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--saffron);
  box-shadow: 0 0 12px rgba(255, 174, 26, .9);
}
.cursor__ring { width: 40px; height: 40px; transition: width .45s var(--ease), height .45s var(--ease), opacity .3s; opacity: .55; }
.cursor__ring svg { width: 100%; height: 100%; }
.cursor__ring circle { fill: none; stroke: var(--cream); stroke-width: 1.2; opacity: .5; }
.cursor__chili, .cursor__momo, .cursor__sticks {
  opacity: 0; transform: translate(-50%, -50%) scale(.4) rotate(-20deg);
  transition: opacity .35s var(--ease), transform .55s var(--ease);
  color: var(--chili-l); filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .6));
}
.cursor__chili .ico { width: 34px; height: 34px; }
.cursor__momo .ico { width: 42px; height: 42px; color: var(--cream-2); }
.cursor__sticks .ico { width: 40px; height: 40px; color: var(--cream-2); }
.cursor__label {
  padding: 8px 14px; border-radius: 99px; background: var(--saffron); color: #1A1207;
  font-family: Poppins, sans-serif; font-weight: 800; font-size: .66rem;
  letter-spacing: .16em; text-transform: uppercase; white-space: nowrap;
  opacity: 0; transform: translate(-50%, -50%) scale(.5);
  transition: opacity .3s var(--ease), transform .5s var(--spring);
}
.cursor[data-state="chili"] .cursor__chili,
.cursor[data-state="momo"] .cursor__momo,
.cursor[data-state="stick"] .cursor__sticks { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0); }
.cursor[data-state="dot"] .cursor__ring { width: 62px; height: 62px; opacity: .9; }
.cursor[data-state="dot"] .cursor__dot { opacity: 0; }
.cursor[data-state="label"] .cursor__label { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.cursor[data-state="label"] .cursor__ring { width: 84px; height: 84px; opacity: .25; }
.cursor.is-down .cursor__ring { width: 26px; height: 26px; }
@media (hover: hover) and (pointer: fine) {
  .cursor.is-on ~ * { cursor: none !important; }
  body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor input { cursor: none; }
}

/* -------------------------------------------------------- preloader --- */
.preloader {
  position: fixed; inset: 0; z-index: 1500; background: var(--ink);
  display: grid; place-items: center; gap: 0;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: grid; justify-items: center; gap: 14px; }
.preloader__mark { width: 92px; height: 92px; animation: floatY 2.4s var(--ease-io) infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(-6px); } 50% { transform: translateY(6px); } }
.preloader__name {
  font-family: Poppins, sans-serif; font-weight: 900; font-size: .92rem;
  letter-spacing: .42em; text-transform: uppercase; color: var(--saffron);
}
.preloader__bar { width: 180px; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--saffron); transition: width .25s linear; }
.steam-loader { display: flex; gap: 7px; align-items: flex-end; height: 40px; }
.steam-loader i {
  display: block; width: 3px; height: 30px; border-radius: 3px;
  background: linear-gradient(to top, transparent, var(--saffron));
  filter: blur(1px); opacity: .8;
  animation: steamUp 1.6s var(--ease-io) infinite;
}
.steam-loader i:nth-child(2) { animation-delay: .25s; height: 38px; }
.steam-loader i:nth-child(3) { animation-delay: .5s; height: 26px; }
@keyframes steamUp {
  0% { transform: translateY(12px) scaleY(.4); opacity: 0; }
  40% { opacity: .9; }
  100% { transform: translateY(-16px) scaleY(1.3); opacity: 0; }
}

/* ------------------------------------------------------- reveal fx --- */
[data-reveal] { opacity: 0; transform: translateY(38px); }
.no-motion [data-reveal], [data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity .9s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0ms);
}

.split-line { display: block; overflow: hidden; }
.split-word { display: inline-block; overflow: hidden; vertical-align: top; }
.split-word > span {
  display: inline-block; transform: translateY(105%) rotate(4deg); opacity: 0;
  transition: transform 1.05s var(--ease), opacity .8s var(--ease);
  transition-delay: calc(var(--wi, 0) * 45ms + var(--d, 0ms));
}
.no-motion .split-word > span, .is-in .split-word > span { transform: none; opacity: 1; }

/* ---------------------------------------------------------- marquee --- */
.marquee { display: flex; width: 100%; overflow: hidden; }
.marquee__track {
  display: flex; align-items: center; gap: 0; flex: none; min-width: 100%;
  animation: marquee 26s linear infinite;
}
.marquee--ticker { transform: rotate(-1.2deg); }
.marquee--huge .marquee__track { animation-duration: 40s; }
@keyframes marquee { to { transform: translateX(-100%); } }

.ticker {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 174, 26, .07), rgba(230, 57, 37, .07), rgba(255, 46, 147, .07));
  padding: 15px 0; overflow: hidden;
}
.marquee--ticker span {
  font-family: Poppins, sans-serif; font-weight: 800; font-size: clamp(1.1rem, 2.4vw, 1.9rem);
  letter-spacing: -.02em; text-transform: uppercase; padding-inline: 26px; white-space: nowrap;
}
.marquee--ticker i { color: var(--saffron); font-style: normal; font-size: 1.1rem; }

/* ------------------------------------------------------ float items --- */
.floaters { position: absolute; inset: 0; pointer-events: none; }
.float {
  position: absolute; left: var(--x); top: var(--y);
  will-change: transform;
  transition: transform .8s var(--ease);
}
.float i { display: block; }
.float--momo i { width: clamp(70px, 8vw, 130px); filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .6)); }
.float--momo svg { width: 100%; height: auto; }
.float--chili i { width: clamp(40px, 4vw, 68px); filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .55)); }
.float--chili svg { width: 100%; height: auto; }
.float .dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.dot--saffron { background: var(--saffron); box-shadow: 0 0 40px 10px rgba(255, 174, 26, .35); }
.dot--neon { background: var(--neon); box-shadow: 0 0 40px 10px rgba(255, 46, 147, .3); }
.dot--leaf { background: var(--leaf); box-shadow: 0 0 40px 10px rgba(23, 185, 120, .3); }
.float svg { transform: rotate(var(--r)); }
.float--momo, .float--chili { animation: bob 7s var(--ease-io) infinite; }
@keyframes bob { 0%, 100% { translate: 0 -8px; } 50% { translate: 0 8px; } }

/* ------------------------------------------------------------ grid --- */
.grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }

/* ------------------------------------------------------- dish card --- */
.dish {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 246, 232, .045), rgba(255, 246, 232, .015));
  border: 1px solid var(--line-2); border-radius: var(--r-l);
  overflow: hidden; isolation: isolate;
  transform-style: preserve-3d;
  transition: transform .7s var(--ease), border-color .5s, box-shadow .5s;
}
.dish::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(255, 174, 26, .18), transparent 62%);
  transition: opacity .6s;
}
.dish:hover { border-color: rgba(255, 174, 26, .34); box-shadow: var(--shadow); }
.dish:hover::before { opacity: 1; }

.dish__media { position: relative; aspect-ratio: 1 / .82; overflow: hidden; background: var(--ink-3); }
.dish__pic, .dish__art { position: absolute; inset: 0; }
.dish__pic img, .dish__art svg { width: 100%; height: 100%; object-fit: cover; }
.dish__art { display: grid; place-items: center; background: radial-gradient(80% 80% at 50% 30%, rgba(255, 174, 26, .1), transparent); }
.dish__art svg { width: 62%; height: 62%; object-fit: contain; }
.dish__pic img { transition: transform 1.1s var(--ease), filter .6s; }
.dish:hover .dish__pic img { transform: scale(1.09); }

.dish__flag { position: absolute; top: 14px; left: 14px; }
.flag {
  display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px;
  background: rgba(16, 14, 12, .72); backdrop-filter: blur(6px);
  border: 1px solid var(--line);
}
.flag .ico { width: 15px; height: 15px; stroke-width: 2.2; }
.flag--veg { color: var(--leaf); border-color: rgba(23, 185, 120, .45); }
.flag--nonveg { color: var(--chili-l); border-color: rgba(230, 57, 37, .45); }

.dish__sig {
  position: absolute; top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 99px;
  background: rgba(255, 174, 26, .92); color: #1A1207;
  font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.dish__sig .ico { width: 12px; height: 12px; }

.dish__body { padding: 22px 22px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.dish__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.dish__name { font-size: 1.12rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.15; }
.dish__price {
  font-family: Poppins, sans-serif; font-weight: 800; font-size: 1.06rem;
  color: var(--saffron); flex: none;
}
.dish__desc { font-size: .88rem; line-height: 1.6; color: var(--muted); flex: 1; }

.dish__foot { display: flex; align-items: center; gap: 10px; padding-top: 6px; border-top: 1px solid var(--line-2); margin-top: auto; }
.dish__pieces { font-size: .74rem; font-weight: 600; color: var(--muted-2); letter-spacing: .06em; text-transform: uppercase; }
.spice { display: inline-flex; gap: 3px; align-items: center; }
.spice i { width: 6px; height: 6px; border-radius: 50%; background: var(--line); }
.spice i.on { background: var(--chili-l); box-shadow: 0 0 8px rgba(255, 90, 64, .7); }
.badge {
  margin-left: auto; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); padding: 4px 9px; border: 1px solid var(--line); border-radius: 99px;
}
.dish__add {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 246, 232, .06); border: 1px solid var(--line);
  transition: background .35s, transform .5s var(--spring), color .35s;
}
.dish__add .ico { width: 15px; height: 15px; }
.dish__add:hover { background: var(--saffron); color: #1A1207; transform: scale(1.12) rotate(90deg); }
.dish__add.is-added { background: var(--leaf); color: #04120C; border-color: transparent; }

/* ----------------------------------------------------------- stars --- */
.stars { color: var(--saffron); letter-spacing: .1em; }
.stars .off { opacity: .22; }

/* ------------------------------------------------------------ foot --- */
.foot { position: relative; border-top: 1px solid var(--line); background: var(--ink-2); overflow: hidden; }
.foot__top { border-bottom: 1px solid var(--line); padding: 26px 0; }
.marquee--huge span {
  font-family: Poppins, sans-serif; font-weight: 900; font-size: clamp(2.4rem, 7vw, 6rem);
  letter-spacing: -.04em; white-space: nowrap; color: transparent;
  -webkit-text-stroke: 1px rgba(255, 246, 232, .16);
}
.foot__grid {
  max-width: var(--wrap); margin-inline: auto; padding: 70px var(--pad) 40px;
  display: grid; gap: 44px;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
}
.foot__lockup { display: inline-flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.foot__mark { flex: none; filter: drop-shadow(0 8px 20px rgba(255, 174, 26, .25)); }
.foot__word { display: grid; line-height: .84; font-family: Poppins, sans-serif; }
.foot__word b { font-weight: 900; font-size: 1.55rem; letter-spacing: -.045em; }
.foot__word b:last-of-type { color: var(--saffron); }
.foot__word em {
  font-style: normal; font-size: .52rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted-2); margin-top: 8px;
}
.foot__tag { font-family: Poppins, sans-serif; font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; margin-bottom: 10px; }
.foot__desc { color: var(--muted); font-size: .9rem; max-width: 34ch; }
.foot__social { display: flex; gap: 10px; margin-top: 22px; }
.foot__social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); transition: background .35s, color .35s, transform .5s var(--spring), border-color .35s;
}
.foot__social a .ico { width: 17px; height: 17px; }
.foot__social a:hover { background: var(--saffron); color: #1A1207; border-color: transparent; transform: translateY(-4px); }

.foot__col h3 {
  font-family: Poppins, sans-serif; font-size: .72rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase; color: var(--saffron); margin-bottom: 18px;
}
.foot__col ul { display: grid; gap: 10px; }
.foot__col a, .foot__col address { color: var(--muted); font-size: .9rem; transition: color .3s; }
.foot__col a:hover { color: var(--saffron); }
.foot__col address { display: grid; gap: 6px; line-height: 1.55; }
.foot__hours { margin-top: 16px; color: var(--muted); font-size: .88rem; }
.foot__hours b { color: var(--cream); }

.foot__apps { display: grid; gap: 9px; }
.app-btn {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding: 12px 16px; border-radius: 14px; border: 1px solid var(--line);
  transition: border-color .35s, background .35s, transform .4s var(--ease);
}
.app-btn:hover { border-color: rgba(255, 174, 26, .45); background: rgba(255, 246, 232, .04); transform: translateX(4px); }
.app-btn__n { font-family: Poppins, sans-serif; font-weight: 700; font-size: .92rem; }
.app-btn__s { font-size: .74rem; color: var(--muted-2); }
.app-btn--wa:hover { border-color: rgba(37, 211, 102, .5); }

.foot__bar {
  max-width: var(--wrap); margin-inline: auto; padding: 22px var(--pad) 34px;
  border-top: 1px solid var(--line-2);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  color: var(--muted-2); font-size: .78rem;
}
.foot__kw a { color: var(--muted-2); transition: color .3s; }
.foot__kw a:hover { color: var(--saffron); }

/* ------------------------------------------------------- floaters ---- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px 13px 16px; border-radius: 99px;
  background: #25D366; color: #06301A;
  font-family: Poppins, sans-serif; font-weight: 800; font-size: .88rem;
  box-shadow: 0 18px 40px -12px rgba(37, 211, 102, .6);
  transition: transform .5s var(--ease), box-shadow .4s;
}
.wa-float .ico { width: 21px; height: 21px; }
.wa-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 24px 50px -12px rgba(37, 211, 102, .8); }
.wa-float__t { display: none; }
@media (min-width: 560px) { .wa-float__t { display: inline; } }

.to-top {
  position: fixed; right: 20px; bottom: 84px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 246, 232, .07); border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  opacity: 0; transform: translateY(16px) scale(.85); pointer-events: none;
  transition: opacity .5s, transform .6s var(--ease), background .35s;
}
.to-top.is-on { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--saffron); color: #1A1207; }
.to-top .ico { width: 18px; height: 18px; transform: rotate(-90deg); }

/* ------------------------------------------------------- utilities --- */
.hidden-el { opacity: 0; transform: scale(.9); pointer-events: none; transition: opacity .5s, transform .7s var(--ease); }
.ico { width: 22px; height: 22px; flex: none; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

.spice-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .split-word > span { opacity: 1 !important; transform: none !important; }
}
