/* ============================================================
   KoMaama - Korean + Japanese, Brigade Road, Bengaluru
   Design language: bright Seoul street-pop / K-editorial.
   Deliberate inverse of Ninan's dark steakhouse.
   Palette: warm-paper base, Korean vermilion, perilla green,
   near-black ink, gochujang deep-red. (No beige-craft palette.)
   Type: Bricolage Grotesque (display) + Inter (body) + Noto Sans KR.
   House rule: no decorative leading-dash hairline before eyebrows.
   ============================================================ */

:root {
  --paper:        #FCFAF6;   /* clean warm white, not cream */
  --paper-tint:   #F5EFE4;   /* subtle warm panel */
  --ink:          #181410;   /* near-black, faintly warm */
  --ink-2:        #4A433B;   /* muted body ink */
  --ink-3:        #6E655B;   /* captions / meta */

  --red:          #E5342A;   /* Korean vermilion - primary */
  --red-deep:     #9E1B14;   /* gochujang - depth / hover */
  --green:        #1F9D57;   /* scallion / perilla - secondary */
  --green-deep:   #14693B;

  --line:         #E7DFD2;   /* hairlines on paper */
  --line-ink:     rgba(255,255,255,.16);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --t-mega:   clamp(54px, 12vw, 168px);
  --t-h1:     clamp(38px, 7vw, 92px);
  --t-h2:     clamp(30px, 4.4vw, 60px);
  --t-h3:     clamp(21px, 2.2vw, 30px);
  --t-body:   clamp(16px, 1.15vw, 18px);
  --t-small:  14px;

  --r:   16px;     /* card radius - one scale, soft */
  --r-lg: 26px;
  --pill: 999px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: .42s;

  font-synthesis: none;
  -webkit-text-size-adjust: 100%;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: var(--t-body);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv05";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.kr { font-family: 'Noto Sans KR', 'Inter', sans-serif; font-weight: 700; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 132px); position: relative; }

/* ---- Eyebrow / kicker (NO leading dash hairline) ---- */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
}
.eyebrow.green { color: var(--green-deep); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 2px; background: currentColor; }

.lede { font-size: clamp(18px, 1.7vw, 23px); color: var(--ink-2); line-height: 1.5; max-width: 60ch; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  border-radius: var(--pill);
  font-weight: 700; font-size: 15px;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.985); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* ---- Focus-visible ---- */
:where(a,button,[tabindex]):focus-visible{outline:3px solid var(--ink);outline-offset:2px;border-radius:4px}
.sig :where(a,button):focus-visible,.ef :where(a,button):focus-visible,.reserve :where(a,button):focus-visible,.marquee :where(a,button):focus-visible,.foot :where(a,button):focus-visible,.menucta :where(a,button):focus-visible{outline-color:#fff}

/* ============================ HEADER ============================ */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.head-row { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: baseline; gap: 9px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 24px; letter-spacing: -0.02em; }
.brand .ko { color: var(--red); }
.brand .maama { color: var(--ink); }
.brand .kr-mark { font-size: 15px; color: var(--ink-3); margin-left: 2px; align-self: center; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a.navlink { font-weight: 600; font-size: 15px; color: var(--ink-2); transition: color .18s; }
.nav a.navlink:hover { color: var(--red); }
.nav-cta { display: inline-flex; }
.burger { display: none; width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: 12px; background: transparent; align-items: center; justify-content: center; }
.burger span, .burger span::before, .burger span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .25s var(--ease), opacity .2s; }
.burger span::before { position: absolute; top: -6px; } .burger span::after { position: absolute; top: 6px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .burger span::after { transform: translateY(-6px) rotate(-45deg); }

/* ============================ HERO ============================ */
.hero { position: relative; padding-top: clamp(36px, 6vw, 76px); padding-bottom: clamp(40px, 6vw, 80px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; background: var(--green-deep); color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .04em; padding: 8px 15px; border-radius: var(--pill); margin-bottom: 22px; }
.hero h1 { font-size: var(--t-mega); }
.hero h1 .stroke { color: var(--red); }
.hero h1 .ink { color: var(--ink); }
.hero-sub { margin: 26px 0 32px; font-size: clamp(17px, 1.6vw, 21px); color: var(--ink-2); max-width: 46ch; line-height: 1.5; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 22px 34px; }
.hero-meta .m { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .m b { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 22px; }
.hero-meta .m span { font-size: 13px; color: var(--ink-3); font-weight: 600; }

.hero-art { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden; background: var(--paper-tint); box-shadow: 0 30px 70px -36px rgba(158,27,20,.5); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .badge { position: absolute; left: 16px; bottom: 16px; background: var(--ink); color: var(--paper); font-weight: 700; font-size: 13px; padding: 9px 14px; border-radius: var(--pill); }
.hero-art .blob { position: absolute; top: -34px; right: -34px; width: 150px; height: 150px; background: var(--red); border-radius: 50%; z-index: -1; }

/* ============================ MARQUEE ============================ */
.marquee { background: var(--ink); color: var(--paper); padding-block: 16px; overflow: hidden; border-block: 1px solid var(--ink); }
.marquee-track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marq 38s linear infinite; }
.marquee-track .it { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -.01em; padding: 0 26px; display: inline-flex; align-items: center; gap: 26px; }
.marquee-track .it::after { content: "●"; color: var(--red); font-size: 12px; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ============================ STORY ============================ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.story h2 { font-size: var(--t-h2); margin-bottom: 22px; }
.story h2 em { font-style: normal; color: var(--red); }
.story p + p { margin-top: 16px; }
.story-points { margin-top: 28px; display: grid; gap: 14px; }
.story-points li { list-style: none; display: flex; gap: 13px; align-items: flex-start; font-weight: 500; }
.story-points .tick { flex: none; width: 24px; height: 24px; border-radius: 7px; background: color-mix(in srgb, var(--green) 16%, var(--paper)); color: var(--green-deep); display: grid; place-items: center; font-weight: 800; font-size: 14px; }
.story-art { aspect-ratio: 1 / 1; border-radius: var(--r-lg); overflow: hidden; background: var(--paper-tint); position: relative; }
.story-art img { width: 100%; height: 100%; object-fit: cover; }
.story-art .tape { position: absolute; top: 18px; left: -8px; background: var(--red); color: #fff; font-weight: 800; font-size: 14px; padding: 7px 18px; transform: rotate(-3deg); font-family: 'Bricolage Grotesque', sans-serif; }

/* ============================ SIGNATURES ============================ */
.sig { background: var(--ink); color: var(--paper); }
.sig .eyebrow { color: #ff7a6e; }
.sig h2 { font-size: var(--t-h2); color: var(--paper); margin-bottom: 12px; }
.sig .lede { color: color-mix(in srgb, var(--paper) 76%, transparent); }
.sig-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sig-card { background: #211b16; border: 1px solid var(--line-ink); border-radius: var(--r); overflow: hidden; transition: transform var(--dur) var(--ease), border-color .2s; }
.sig-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--red) 60%, transparent); }
.sig-card .ph { aspect-ratio: 5 / 4; overflow: hidden; background: #2c2620; }
.sig-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.sig-card:hover .ph img { transform: scale(1.06); }
.sig-card .body { padding: 18px 18px 22px; }
.sig-card .body .top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.sig-card h3 { font-size: 20px; color: var(--paper); }
.sig-card .price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; color: #ff8a7e; white-space: nowrap; }
.sig-card .desc { margin-top: 7px; font-size: 14.5px; color: color-mix(in srgb, var(--paper) 64%, transparent); line-height: 1.45; }
.sig-card .tagrow { margin-top: 13px; display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-size: 11.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; padding: 5px 9px; border-radius: var(--pill); }
.chip.veg { background: color-mix(in srgb, var(--green) 22%, #211b16); color: #6fe39c; }
.chip.nonveg { background: color-mix(in srgb, var(--red) 24%, #211b16); color: #ff9c91; }
.chip.star { background: color-mix(in srgb, #f2b705 26%, #211b16); color: #ffd766; }

/* ============================ EXPERIENCE / FLOORS ============================ */
.floors h2 { font-size: var(--t-h2); margin-bottom: 14px; }
.floors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.floor { border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px 30px; background: var(--paper); transition: transform var(--dur) var(--ease), box-shadow var(--dur); position: relative; overflow: hidden; }
.floor:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -34px rgba(24,20,16,.45); }
.floor .lvl { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
.floor h3 { font-size: 26px; margin: 8px 0 12px; }
.floor p { color: var(--ink-2); font-size: 15.5px; }
.floor .tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.floor .t { font-size: 12.5px; font-weight: 600; color: var(--ink-2); border: 1px solid var(--line); padding: 5px 11px; border-radius: var(--pill); }
.floor.bbq { background: var(--red); color: #fff; border-color: var(--red); }
.floor.bbq .lvl { color: #ffd0cb; } .floor.bbq h3 { color: #fff; } .floor.bbq p { color: rgba(255,255,255,.86); }
.floor.bbq .t { color: #fff; border-color: rgba(255,255,255,.4); }

/* ============================ MENU PREVIEW ============================ */
.menucta { background: var(--green-deep); color: #fff; border-radius: var(--r-lg); padding: clamp(34px, 5vw, 64px); display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center; }
.menucta .eyebrow { color: #d6ffe6; }
.menucta h2 { font-size: var(--t-h2); color: #fff; }
.menucta p { color: rgba(255,255,255,.9); margin-top: 14px; max-width: 46ch; }
.menucta .stat { text-align: right; }
.menucta .stat b { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(64px, 9vw, 128px); line-height: .9; }
.menucta .stat span { font-weight: 600; opacity: .9; }
.menucta .actions { margin-top: 26px; display: flex; gap: 13px; flex-wrap: wrap; }
.menucta .btn-ghost { border-color: #fff; color: #fff; }
.menucta .btn-ghost:hover { background: #fff; color: var(--green-deep); }
.menucta .btn-paper { background: var(--paper); color: var(--ink); }
.menucta .btn-paper:hover { background: var(--ink); color: var(--paper); }

/* ============================ EDIBLE FACTOR BLOCK ============================ */
.ef { background: var(--ink); color: var(--paper); }
.ef-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.ef-mark { width: 56px; height: 56px; border-radius: 14px; overflow: hidden; margin-bottom: 22px; }
.ef-mark img { width: 100%; height: 100%; }
.ef-wordmark { font-family: 'Space Grotesk', 'Inter', sans-serif; font-weight: 600; color: #fff; }
.ef h2 { font-size: var(--t-h2); color: var(--paper); margin-bottom: 16px; }
.ef .lede { color: color-mix(in srgb, var(--paper) 74%, transparent); }
.ef-points { margin: 26px 0 30px; display: grid; gap: 14px; }
.ef-points li { list-style: none; display: flex; gap: 12px; align-items: flex-start; color: color-mix(in srgb, var(--paper) 84%, transparent); }
.ef-points .d { flex: none; width: 22px; height: 22px; border-radius: 6px; background: color-mix(in srgb, var(--green) 30%, transparent); color: #7fe6a8; display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.ef-note { margin-top: 18px; font-size: 13px; color: var(--ink-3); }
.ef-card { background: linear-gradient(150deg, #211b16, #16130f); border: 1px solid var(--line-ink); border-radius: var(--r-lg); padding: 28px; }
.ef-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line-ink); }
.ef-row:last-child { border-bottom: 0; }
.ef-row .nm { font-weight: 600; }
.ef-row .macros { display: flex; gap: 16px; font-size: 13px; color: var(--ink-3); }
.ef-row .macros b { color: var(--paper); font-family: 'Bricolage Grotesque', sans-serif; }
.ef-pending { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #ffd766; background: color-mix(in srgb, #f2b705 18%, transparent); padding: 3px 9px; border-radius: var(--pill); }

/* ============================ VISIT ============================ */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 56px); }
.visit h2 { font-size: var(--t-h2); margin-bottom: 22px; }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row:first-of-type { border-top: 1px solid var(--line); }
.info-row .ic { flex: none; width: 40px; height: 40px; border-radius: 11px; background: color-mix(in srgb, var(--red) 12%, var(--paper)); color: var(--red); display: grid; place-items: center; }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row .lab { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.info-row .val { font-weight: 600; margin-top: 2px; }
.info-row .val a:hover { color: var(--red); }
.info-row .sub { font-size: 13.5px; color: var(--ink-3); margin-top: 3px; }
.map-card { border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--line); min-height: 320px; background: var(--paper-tint); display: flex; flex-direction: column; }
.map-card .map-top { flex: 1; background:
  radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--green) 18%, transparent), transparent 60%),
  radial-gradient(circle at 70% 70%, color-mix(in srgb, var(--red) 16%, transparent), transparent 60%),
  var(--paper-tint);
  display: grid; place-items: center; text-align: center; padding: 30px; }
.map-card .pin { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 22px; }
.map-card .map-foot { padding: 16px 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 12px; }

/* ============================ RESERVE / CTA STRIP ============================ */
.reserve { background: var(--red-deep); color: #fff; }
.reserve-inner { text-align: center; max-width: 720px; margin-inline: auto; }
.reserve .eyebrow { color: #ffd0cb; justify-content: center; }
.reserve h2 { font-size: var(--t-h1); color: #fff; }
.reserve p { color: rgba(255,255,255,.9); margin: 18px auto 30px; max-width: 48ch; }
.reserve .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.reserve .btn-paper { background: var(--paper); color: var(--ink); }
.reserve .btn-paper:hover { background: var(--ink); color: #fff; }
.reserve .btn-line { border-color: #fff; color: #fff; }
.reserve .btn-line:hover { background: #fff; color: var(--red-deep); }

/* ============================ FOOTER ============================ */
.foot { background: var(--ink); color: color-mix(in srgb, var(--paper) 72%, transparent); padding-block: 56px 34px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.foot .brand { color: var(--paper); font-size: 30px; }
.foot p.fp { margin-top: 14px; max-width: 38ch; font-size: 14.5px; }
.foot h4 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.foot a.fl { display: block; padding: 8px 0; color: color-mix(in srgb, var(--paper) 78%, transparent); font-weight: 500; }
.foot a.fl:hover { color: var(--red); }
.foot-base { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-ink); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--ink-3); }
.foot-base .ef-credit { display: inline-flex; align-items: center; gap: 7px; }

.disclaimer { font-size: 12.5px; color: var(--ink-3); }

/* ============================ REVEAL ============================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .14s; } .reveal.d3 { transition-delay: .21s; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 940px) {
  .hero-grid, .story-grid, .ef-grid, .visit-grid { grid-template-columns: 1fr; }
  .hero-art { aspect-ratio: 16 / 11; order: -1; }
  .sig-grid { grid-template-columns: repeat(2, 1fr); }
  .floors-grid { grid-template-columns: 1fr; }
  .menucta { grid-template-columns: 1fr; }
  .menucta .stat { text-align: left; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 22px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .25s var(--ease), opacity .25s; }
  body.nav-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .nav a.navlink { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav-cta { margin-top: 14px; }
  .burger { display: inline-flex; }
  .sig-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 16px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .sig-card:hover, .floor:hover { transform: none; }
}

/* ============================ MENU PAGE ============================ */
.menu-hero { padding-block: clamp(40px, 6vw, 78px) clamp(20px, 3vw, 34px); }
.menu-hero h1 { font-size: var(--t-h1); }
.menu-hero h1 .stroke { color: var(--red); }
.menu-hero .lede { margin-top: 16px; }
.menu-controls { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 26px; }
.filters { display: inline-flex; gap: 8px; background: var(--paper-tint); padding: 5px; border-radius: var(--pill); }
.fpill { border: 0; background: transparent; padding: 9px 18px; border-radius: var(--pill); font-weight: 700; font-size: 14px; color: var(--ink-2); transition: background .18s var(--ease), color .18s; }
.fpill.on { background: var(--ink); color: var(--paper); }
.fpill[data-filter="veg"].on { background: var(--green); }
.fpill[data-filter="nonveg"].on { background: var(--red); }
.menu-note { font-size: 13px; color: var(--ink-3); }

.cat-bar { position: sticky; top: 72px; z-index: 50; background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(10px); border-block: 1px solid var(--line); }
.cat-tabs { display: flex; gap: 6px; overflow-x: auto; padding: 12px 0; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab { flex: none; border: 1.5px solid var(--line); background: var(--paper); padding: 9px 16px; border-radius: var(--pill); font-weight: 600; font-size: 14px; color: var(--ink-2); white-space: nowrap; transition: all .16s var(--ease); }
.cat-tab:hover { border-color: var(--ink-3); }
.cat-tab.on { background: var(--red); border-color: var(--red); color: #fff; }

.menu-body { padding-block: clamp(28px, 4vw, 48px) clamp(56px, 8vw, 96px); }
.mcat { margin-bottom: clamp(34px, 4vw, 54px); scroll-margin-top: 140px; }
.mcat[data-empty="true"] { display: none; }
.mcat[hidden] { display: none; }
.mcat-h { font-size: var(--t-h3); display: flex; align-items: baseline; gap: 12px; padding-bottom: 14px; border-bottom: 2px solid var(--ink); margin-bottom: 8px; }
.mcat-n { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px; color: var(--ink-3); }
.mlist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 4vw, 60px); }
.mi { display: flex; align-items: baseline; gap: 11px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.mi-dot { flex: none; width: 13px; height: 13px; border-radius: 3px; border: 1.5px solid; align-self: center; position: relative; }
.mi-dot.veg { border-color: var(--green); }
.mi-dot.veg::after, .mi-dot.nonveg::after, .mi-dot.uncertain::after { content: ""; position: absolute; inset: 2.5px; border-radius: 50%; }
.mi-dot.veg::after { background: var(--green); }
.mi-dot.nonveg { border-color: var(--red); }
.mi-dot.nonveg::after { background: var(--red); }
.mi-dot.uncertain { border-color: #c98a00; }
.mi-dot.uncertain::after { background: #e0a008; }
.mi-name { flex: 1; font-weight: 500; }
.mi-q { font-size: 11px; font-weight: 700; color: #8a5e00; background: color-mix(in srgb, #e0a008 18%, transparent); padding: 1px 6px; border-radius: var(--pill); margin-left: 4px; }
.mi-price { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; color: var(--ink); white-space: nowrap; }
.mi-price:empty::before { content: "-"; color: var(--ink-3); }

@media (max-width: 760px) {
  .mlist { grid-template-columns: 1fr; gap: 0; }
  .cat-bar { top: 72px; }
  .menu-controls { gap: 12px; }
}

/* ---- Studio credit ---- */
.gw-credit{display:flex;align-items:center;justify-content:center;gap:18px;flex-wrap:wrap;padding:20px 0 6px;}
.gw-credit__a{display:inline-flex;align-items:center;gap:9px;font-family:'Inter',sans-serif;font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:inherit;opacity:.62;transition:opacity .3s;text-decoration:none;}
.gw-credit__a:hover{opacity:1;}
.gw-credit__nb{display:block;border-radius:6px;}
.gw-credit__gw{display:block;}
.gw-credit__dot{width:3px;height:3px;border-radius:50%;background:currentColor;opacity:.35;}
