/* ═══════════════════════════════════════════════════════════════
   VABOWL — Rediseño 2026
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --red:        #C8102E;
  --red-dark:   #8B0D1F;
  --red-glow:   rgba(200,16,46,.25);
  --black:      #060606;
  --gray-900:   #111111;
  --gray-800:   #1C1C1C;
  --gray-700:   #2A2A2A;
  --gray-500:   #555555;
  --gray-300:   #999999;
  --cream:      #FFF5E6;
  --cream-dim:  #F0E6D3;
  --gold:       #D4A853;
  --gold-light: #E8C878;
  --white:      #FFFFFF;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --ease-out:   cubic-bezier(.16,1,.3,1);
  --ease-back:  cubic-bezier(.34,1.56,.64,1);

  --nav-h:      72px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ── BOTONES ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-xl);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .2s var(--ease-back), box-shadow .2s, background .2s, opacity .2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 30px var(--red-glow);
}
.btn--red:hover { background: #e0122f; box-shadow: 0 12px 40px var(--red-glow); }
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,245,230,.3);
}
.btn--outline:hover { border-color: var(--cream); background: rgba(255,245,230,.05); }
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover { background: var(--gold-light); }
.btn--sm { padding: .55rem 1.4rem; font-size: .8rem; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.section { padding: clamp(4rem, 8vw, 8rem) 0; }

/* ── SECTION TITLE PATTERN ───────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}
.section-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: .95;
  color: var(--cream);
  margin-bottom: .75rem;
}
.section-title em { font-style: normal; color: var(--red); }
.section-title .gold { color: var(--gold); }
.section-sub {
  font-size: .95rem;
  color: rgba(255,245,230,.6);
  line-height: 1.75;
  max-width: 560px;
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s, box-shadow .35s;
}
.navbar.scrolled {
  background: rgba(6,6,6,.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-link {
  font-size: .83rem;
  font-weight: 600;
  color: rgba(255,245,230,.65);
  letter-spacing: .04em;
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform .25s var(--ease-out);
  transform-origin: left;
}
.nav-link:hover, .nav-link.active { color: var(--cream); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── LUNCH BAR ───────────────────────────────────────────────── */
.lunch-bar {
  background: var(--red);
  padding: .7rem 0;
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: var(--nav-h);
  position: relative;
  z-index: 10;
}
.lunch-bar strong { font-size: 1rem; }
.lunch-bar .sep { margin: 0 .85rem; opacity: .55; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 3rem clamp(1.25rem, 5vw, 4rem);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(200,16,46,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,168,83,.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Chinese deco text */
.hero-deco {
  position: absolute;
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  color: rgba(200,16,46,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  top: 50%; left: -2%;
  transform: translateY(-50%);
}

.hero-left {
  position: relative; z-index: 2;
  max-width: 900px;
  width: 100%;
}
.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line { width: 2.5rem; height: 2px; background: var(--red); border-radius: 1px; }
.hero-eyebrow-text {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: .88;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.hero-title .red  { color: var(--red); }
.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,245,230,.6);
  max-width: 560px;
  line-height: 1.8;
  margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 3rem; justify-content: center; }

.hero-stats { display: flex; gap: 2.5rem; justify-content: center; }
.hero-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; line-height: 1;
  color: var(--cream);
}
.hero-stat-val.red { color: var(--red); }
.hero-stat-lbl {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-300); margin-top: .25rem;
}

/* bento */
.hero-right {
  padding: 2rem clamp(1rem, 3vw, 2.5rem) 2rem 0;
  position: relative; z-index: 2;
}
.hero-bento {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .75rem;
  height: clamp(380px, 60vh, 580px);
}
.bento-card {
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative; cursor: pointer;
}
.bento-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  transition: opacity .3s;
}
.bento-card:hover::after { opacity: .7; }
.bento-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease-out);
}
.bento-card:hover img { transform: scale(1.08); }
.bento-card--tall { grid-row: span 2; }
.bento-label {
  position: absolute; bottom: .85rem; left: .85rem; z-index: 2;
  font-size: .7rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--cream);
  background: rgba(0,0,0,.5); backdrop-filter: blur(8px);
  padding: .28rem .7rem; border-radius: 99px;
  border: 1px solid rgba(255,245,230,.15);
}

/* ── VAPOR / SMOKE ───────────────────────────────────────────── */
.steam-wrap { display: flex; gap: 5px; margin-bottom: .6rem; }
.steam {
  width: 3px; border-radius: 2px;
  background: linear-gradient(to top, var(--red), transparent);
  animation: steam 2.2s ease-in-out infinite;
}
.steam:nth-child(1) { height: 16px; animation-delay: 0s; }
.steam:nth-child(2) { height: 22px; animation-delay: .35s; }
.steam:nth-child(3) { height: 14px; animation-delay: .7s; }
@keyframes steam {
  0%,100% { opacity: .9; transform: translateY(0) scaleY(1); }
  50%      { opacity: .25; transform: translateY(-7px) scaleY(.7); }
}

/* ── SMOKE EFFECT ──────────────────────────────────────────────── */
.smoke-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  /* calor en la base */
  background: radial-gradient(ellipse 70% 25% at 50% 105%, rgba(200,16,46,.12) 0%, transparent 70%);
}
.smoke-puff {
  position: absolute;
  bottom: -120px;
  opacity: 0;
  will-change: transform, opacity;
}

/* Columnas: forma orgánica, color, blur y timing únicos */
.smoke-puff:nth-child(1)  { width:110px;height:150px; left:4%;  border-radius:62% 38% 55% 45%/50% 62% 38% 50%; background:rgba(255,255,255,.10); filter:blur(20px); animation:smoke-l  8s ease-in-out  0.0s infinite; }
.smoke-puff:nth-child(2)  { width:170px;height:220px; left:10%; border-radius:45% 55% 40% 60%/60% 44% 56% 40%; background:rgba(255,255,255,.06); filter:blur(34px); animation:smoke-r 11s ease-in-out  1.5s infinite; }
.smoke-puff:nth-child(3)  { width: 90px;height:130px; left:19%; border-radius:55% 45% 62% 38%/44% 56% 44% 56%; background:rgba(200,16,46,.13);   filter:blur(16px); animation:smoke-l  7s ease-in-out  3.0s infinite; }
.smoke-puff:nth-child(4)  { width:200px;height:255px; left:27%; border-radius:40% 60% 44% 56%/56% 40% 60% 44%; background:rgba(255,255,255,.05); filter:blur(42px); animation:smoke-r 12s ease-in-out  0.6s infinite; }
.smoke-puff:nth-child(5)  { width:125px;height:165px; left:37%; border-radius:50% 50% 60% 40%/40% 60% 50% 50%; background:rgba(212,168,83,.08);  filter:blur(24px); animation:smoke-l  9s ease-in-out  4.5s infinite; }
.smoke-puff:nth-child(6)  { width:155px;height:195px; left:45%; border-radius:62% 38% 50% 50%/50% 50% 38% 62%; background:rgba(255,255,255,.08); filter:blur(30px); animation:smoke-r 10s ease-in-out  2.0s infinite; }
.smoke-puff:nth-child(7)  { width: 95px;height:135px; left:54%; border-radius:44% 56% 56% 44%/62% 44% 56% 38%; background:rgba(200,16,46,.09);   filter:blur(18px); animation:smoke-l  7s ease-in-out  5.5s infinite; }
.smoke-puff:nth-child(8)  { width:185px;height:235px; left:62%; border-radius:56% 44% 44% 56%/44% 56% 44% 56%; background:rgba(255,255,255,.05); filter:blur(38px); animation:smoke-r 12s ease-in-out  0.3s infinite; }
.smoke-puff:nth-child(9)  { width:130px;height:170px; left:72%; border-radius:38% 62% 62% 38%/50% 50% 62% 38%; background:rgba(255,255,255,.07); filter:blur(26px); animation:smoke-l  9s ease-in-out  3.5s infinite; }
.smoke-puff:nth-child(10) { width:160px;height:205px; left:81%; border-radius:56% 44% 38% 62%/38% 62% 56% 44%; background:rgba(200,16,46,.07);   filter:blur(32px); animation:smoke-r  8s ease-in-out  2.4s infinite; }
.smoke-puff:nth-child(11) { width:115px;height:150px; left:89%; border-radius:50% 50% 56% 44%/56% 44% 50% 50%; background:rgba(255,255,255,.06); filter:blur(22px); animation:smoke-l  6s ease-in-out  6.5s infinite; }
.smoke-puff:nth-child(12) { width:145px;height:185px; left:22%; border-radius:44% 56% 50% 50%/44% 56% 44% 56%; background:rgba(212,168,83,.05);  filter:blur(28px); animation:smoke-r 10s ease-in-out  2.8s infinite; }
.smoke-puff:nth-child(13) { width:100px;height:140px; left:48%; border-radius:62% 38% 44% 56%/56% 44% 62% 38%; background:rgba(255,255,255,.07); filter:blur(18px); animation:smoke-l  7s ease-in-out  7.0s infinite; }
.smoke-puff:nth-child(14) { width:210px;height:260px; left:58%; border-radius:38% 62% 56% 44%/62% 38% 44% 56%; background:rgba(255,255,255,.04); filter:blur(44px); animation:smoke-r 13s ease-in-out  1.2s infinite; }
.smoke-puff:nth-child(15) { width:135px;height:175px; left:33%; border-radius:56% 44% 38% 62%/44% 56% 62% 38%; background:rgba(200,16,46,.08);   filter:blur(25px); animation:smoke-l  8s ease-in-out  5.0s infinite; }
.smoke-puff:nth-child(16) { width:160px;height:200px; left:93%; border-radius:44% 56% 62% 38%/50% 50% 44% 56%; background:rgba(255,255,255,.06); filter:blur(30px); animation:smoke-r  9s ease-in-out  3.3s infinite; }
.smoke-puff:nth-child(17) { width:105px;height:145px; left:14%; border-radius:60% 40% 50% 50%/50% 60% 40% 50%; background:rgba(255,255,255,.08); filter:blur(20px); animation:smoke-l  6s ease-in-out  6.8s infinite; }
.smoke-puff:nth-child(18) { width:175px;height:220px; left:70%; border-radius:40% 60% 55% 45%/55% 40% 60% 45%; background:rgba(255,255,255,.05); filter:blur(36px); animation:smoke-r 11s ease-in-out  4.2s infinite; }

/* Humo que deriva a la izquierda con trayectoria en S */
@keyframes smoke-l {
  0%   { transform: translateY(0)      translateX(0)    scale(1);   opacity: 0;   }
  7%   {                                                             opacity: 0.9; }
  25%  { transform: translateY(-22vh)  translateX(-18px) scale(1.5); opacity: 0.75;}
  50%  { transform: translateY(-50vh)  translateX( 8px)  scale(2.4); opacity: 0.45;}
  75%  { transform: translateY(-78vh)  translateX(-30px) scale(3.6); opacity: 0.18;}
  100% { transform: translateY(-115vh) translateX(-12px) scale(5.2); opacity: 0;   }
}
/* Humo que deriva a la derecha con trayectoria en S */
@keyframes smoke-r {
  0%   { transform: translateY(0)      translateX(0)    scale(1);   opacity: 0;   }
  7%   {                                                             opacity: 0.9; }
  25%  { transform: translateY(-22vh)  translateX( 18px) scale(1.5); opacity: 0.75;}
  50%  { transform: translateY(-50vh)  translateX(-10px) scale(2.4); opacity: 0.45;}
  75%  { transform: translateY(-78vh)  translateX( 32px) scale(3.6); opacity: 0.18;}
  100% { transform: translateY(-115vh) translateX( 15px) scale(5.2); opacity: 0;   }
}

/* ── HERO TICKER ─────────────────────────────────────────────── */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  z-index: 3;
}
.hero-ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  animation: ticker 30s linear infinite;
  padding: .75rem 0;
}
.hero-ticker-track span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,245,230,.55);
}
.hero-ticker-track .ticker-dot {
  font-family: 'Noto Serif SC', serif;
  color: var(--red);
  font-size: 1rem;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CATS BAR ────────────────────────────────────────────────── */
.cats-bar {
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow-x: auto; scrollbar-width: none;
}
.cats-bar::-webkit-scrollbar { display: none; }
.cats-inner {
  display: flex;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  max-width: 1280px; margin: 0 auto;
}
.cat-btn {
  display: flex; align-items: center; gap: .45rem;
  padding: 1.1rem 1.35rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--gray-300);
  border-bottom: 2.5px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap; flex-shrink: 0;
  cursor: pointer; background: none; border-top: none;
  border-left: none; border-right: none; font-family: inherit;
}
.cat-btn:hover { color: var(--cream); }
.cat-btn.active { color: var(--cream); border-bottom-color: var(--red); }

/* ── DISHES SECTION ──────────────────────────────────────────── */
.dishes-section { background: var(--black); }
.dishes-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 1rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.dish-card {
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.dish-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,16,46,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(200,16,46,.12);
}
.dish-card--star {
  border-color: rgba(212,168,83,.3);
  position: relative;
}
.dish-card--star:hover { border-color: rgba(212,168,83,.6); }
.dish-star-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .22rem .75rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  white-space: nowrap;
  z-index: 3;
}
.dish-card-img {
  position: relative; height: 200px;
  overflow: hidden; background: var(--gray-800);
}
.dish-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.dish-card:hover .dish-card-img img { transform: scale(1.08); }
.dish-card-num {
  position: absolute; top: .75rem; left: .75rem;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem;
  background: var(--red); color: var(--white);
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.dish-badges {
  position: absolute; top: .75rem; right: .75rem;
  display: flex; flex-wrap: wrap; gap: .3rem;
  z-index: 2; justify-content: flex-end;
}
.badge {
  font-size: .58rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: .2rem .5rem;
  border-radius: 99px;
}
.badge--vegan   { background: rgba(34,197,94,.18);  color: #4ade80; border: 1px solid rgba(74,222,128,.25); }
.badge--veggie  { background: rgba(132,204,22,.18); color: #a3e635; border: 1px solid rgba(163,230,53,.25); }
.badge--gluten  { background: rgba(251,191,36,.18); color: #fbbf24; border: 1px solid rgba(251,191,36,.25); }
.badge--spicy   { background: rgba(239,68,68,.18);  color: #f87171; border: 1px solid rgba(248,113,113,.25); }
.badge--lactose { background: rgba(147,197,253,.18);color: #93c5fd; border: 1px solid rgba(147,197,253,.25); }

.dish-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; flex: 1; gap: .4rem;
}
.dish-card-name { font-size: .9rem; font-weight: 700; color: var(--cream); line-height: 1.3; }
.dish-card-cn   { font-family: 'Noto Serif SC', serif; font-size: .7rem; color: var(--gray-300); }
.dish-card-desc { font-size: .77rem; color: var(--gray-300); line-height: 1.55; flex: 1; }
.dish-card-footer {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: auto;
  padding-top: .75rem; border-top: 1px solid rgba(255,255,255,.06);
}
.dish-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; color: var(--gold); letter-spacing: .04em;
}
.dish-icon-row { display: flex; gap: .35rem; align-items: center; font-size: .95rem; }
.dish-allergens { display: flex; gap: .3rem; align-items: center; flex-wrap: wrap; }
.allergy-icon { width: 26px; height: 26px; object-fit: contain; display: inline-block; flex-shrink: 0; }
.carta-legend .allergy-icon { width: 22px; height: 22px; }

/* ── MENÚ DEL DÍA SECTION ────────────────────────────────────── */
.lunch-section { background: var(--gray-900); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.lunch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.lunch-ticket {
  background: var(--cream);
  color: var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.ticket-top {
  background: var(--red); color: var(--white);
  text-align: center; padding: 1.5rem 2rem;
}
.ticket-top h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .1em; }
.ticket-top p  { font-size: .72rem; opacity: .85; margin-top: .2rem; letter-spacing: .05em; }
.ticket-body { padding: 1.75rem 2rem; }
.ticket-step { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.ticket-step:last-of-type { margin-bottom: 0; }
.ticket-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  background: var(--red); color: var(--white);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .1rem;
}
.ticket-step-title { font-size: .88rem; font-weight: 700; color: var(--black); margin-bottom: .2rem; }
.ticket-step-items { font-size: .76rem; color: #666; line-height: 1.55; }
.ticket-hr { border: none; border-top: 1.5px dashed #ccc; margin: 1.25rem 0; }
.ticket-bottom {
  display: flex; align-items: flex-end;
  justify-content: space-between; padding: 0 0 .25rem;
}
.ticket-bottom-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #888; }
.ticket-price-big { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: var(--red); line-height: 1; }
.ticket-includes { font-size: .7rem; color: #888; margin-top: .2rem; }

.lunch-info h2 { margin: .75rem 0 1.25rem; }
.lunch-info .section-sub { margin-bottom: 2rem; }
.hour-rows { display: flex; flex-direction: column; gap: .5rem; }
.hour-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem 1rem; background: var(--gray-800);
  border-radius: var(--radius-sm); font-size: .82rem;
}
.hour-day { color: var(--gray-300); font-weight: 500; }
.hour-time { color: var(--cream); font-weight: 700; }

/* ── NOSOTROS ────────────────────────────────────────────────── */
.about-section { background: var(--black); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .75rem; position: relative;
  min-height: 420px;
}
.about-img { border-radius: var(--radius-md); overflow: hidden; background: var(--gray-800); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img--main { grid-column: 1; grid-row: 1 / 3; }
.about-img--sm { }
.about-badge {
  position: absolute; bottom: -1.2rem; right: -1.2rem;
  background: var(--red); color: var(--white);
  border-radius: var(--radius-md); padding: 1.1rem 1.3rem;
  text-align: center; box-shadow: 0 10px 30px var(--red-glow);
}
.about-badge-val { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; line-height: 1; }
.about-badge-lbl { font-size: .65rem; font-weight: 600; letter-spacing: .08em; opacity: .85; }

.about-text h2 { margin: .75rem 0 1rem; }
.about-text .section-sub { margin-bottom: 2rem; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pillar { padding: 1.2rem; background: var(--gray-900); border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.06); }
.pillar-icon { font-size: 1.4rem; margin-bottom: .5rem; }
.pillar h4 { font-size: .82rem; font-weight: 700; color: var(--cream); margin-bottom: .25rem; }
.pillar p  { font-size: .73rem; color: var(--gray-300); line-height: 1.5; }

/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews-section { background: var(--gray-900); overflow: hidden; }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.rating-big { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: .75rem; }
.rating-num { font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem; line-height: 1; color: var(--cream); }
.rating-stars { display: flex; gap: .25rem; }
.star { font-size: 1.4rem; color: var(--gold); }
.rating-count { font-size: .8rem; color: var(--gray-300); }

.reviews-track-wrap { overflow: hidden; position: relative; }
.reviews-track-wrap::before,
.reviews-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.reviews-track-wrap::before { left:  0; background: linear-gradient(to right, var(--gray-900), transparent); }
.reviews-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--gray-900), transparent); }
.reviews-track {
  display: flex; gap: 1.25rem;
  animation: scroll-reviews 35s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes scroll-reviews {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  background: var(--gray-800); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg); padding: 1.5rem; width: 300px; flex-shrink: 0;
}
.review-top { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.review-name { font-size: .86rem; font-weight: 700; color: var(--cream); }
.review-date { font-size: .7rem; color: var(--gray-300); }
.review-stars { display: flex; gap: .15rem; margin-bottom: .6rem; }
.review-star { font-size: .88rem; color: var(--gold); }
.review-text { font-size: .8rem; color: rgba(255,245,230,.65); line-height: 1.65; }

/* ── DELIVERY ────────────────────────────────────────────────── */
.delivery-section { background: var(--black); }
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.delivery-card {
  border-radius: var(--radius-lg); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  border: 1px solid rgba(255,255,255,.07);
}
.delivery-card--glovo { background: linear-gradient(135deg, #FFA500, #FF7700); border-color: transparent; }
.delivery-card--reserva { background: var(--gray-900); }
.dc-icon { font-size: 2.5rem; }
.delivery-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: .05em; }
.delivery-card p  { font-size: .88rem; line-height: 1.65; flex: 1; }
.delivery-card--glovo h3,
.delivery-card--glovo p { color: var(--black); }
.delivery-card--reserva h3 { color: var(--cream); }
.delivery-card--reserva p  { color: rgba(255,245,230,.6); }

/* ── UBICACIÓN ───────────────────────────────────────────────── */
.location-section { background: var(--gray-900); }
.location-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3.5rem; align-items: start; }
.location-info h2 { margin-bottom: 2rem; }
.contact-row { display: flex; align-items: flex-start; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.contact-row:last-of-type { border-bottom: none; }
.contact-icon {
  width: 36px; height: 36px; background: rgba(200,16,46,.15);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0; color: var(--red);
}
.contact-label { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-300); margin-bottom: .2rem; }
.contact-value { font-size: .88rem; color: var(--cream); font-weight: 500; }
.contact-value a { color: inherit; transition: color .2s; }
.contact-value a:hover { color: var(--red); }
.location-map { border-radius: var(--radius-lg); overflow: hidden; height: 420px; border: 1px solid rgba(255,255,255,.07); }
.location-map iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--gray-900); border-top: 1px solid rgba(255,255,255,.06); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { margin-bottom: .75rem; }
.footer-logo-img { height: 52px; width: auto; display: block; }
.footer-tagline { font-size: .82rem; color: var(--gray-300); line-height: 1.65; max-width: 300px; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: .6rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--gray-700); display: flex; align-items: center;
  justify-content: center; color: var(--gray-300); font-size: .9rem;
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--red); color: var(--white); }

.footer-col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-300); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col li a { font-size: .82rem; color: rgba(255,245,230,.45); transition: color .2s; }
.footer-col li a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem; display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
}
.footer-copy  { font-size: .73rem; color: var(--gray-500); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .73rem; color: var(--gray-500); transition: color .2s; }
.footer-legal a:hover { color: var(--gray-300); }

/* ── CARTA PAGE ──────────────────────────────────────────────── */
.carta-hero {
  background: var(--gray-900);
  padding: 3.5rem 0 3rem;
  margin-top: var(--nav-h);
  text-align: center;
  position: relative; overflow: hidden;
}
.carta-hero-deco {
  position: absolute; font-family: 'Noto Serif SC', serif;
  font-size: 22rem; font-weight: 900;
  color: rgba(200,16,46,.04);
  top: -3rem; right: -1rem; line-height: 1;
  pointer-events: none; user-select: none;
}
.carta-legend {
  display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: center; margin-top: 2rem;
}
.legend-item {
  display: flex; align-items: center; gap: .45rem;
  font-size: .73rem; color: var(--gray-300);
  padding: .3rem .8rem; background: var(--gray-800); border-radius: 99px;
}

.cat-section { margin-bottom: 5rem; }
.cat-section:last-child { margin-bottom: 0; }
.cat-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cream); letter-spacing: .05em;
  display: flex; align-items: center; gap: 1.25rem; margin-bottom: .4rem;
}
.cat-section-title::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.07); }
.cat-section-cn { font-family: 'Noto Serif SC', serif; font-size: 1rem; color: var(--red); font-weight: 700; margin-bottom: 1.75rem; letter-spacing: .05em; }

/* ── ANIMACIONES ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }
.fade-up:nth-child(5) { transition-delay: .32s; }
.fade-up:nth-child(6) { transition-delay: .40s; }
.fade-up:nth-child(7) { transition-delay: .48s; }
.fade-up:nth-child(8) { transition-delay: .56s; }

/* ── MOBILE NAV ──────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(6,6,6,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .nav-cta { width: 100%; text-align: center; justify-content: center; }
  .nav-link { font-size: 1rem; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem clamp(1.25rem, 4vw, 3rem) 2rem; }
  .hero-right { padding: 0 clamp(1.25rem, 4vw, 3rem) 3rem; }
  .hero-bento { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; height: 260px; }
  .bento-card--tall { grid-row: span 1; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .lunch-grid { grid-template-columns: 1fr; gap: 3rem; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 300px; }
  .delivery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-bento { grid-template-columns: 1fr 1fr; height: 220px; }
  .about-pillars { grid-template-columns: 1fr; }
  .dishes-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .lunch-grid { gap: 2rem; }
}
@media (max-width: 400px) {
  .dishes-grid { grid-template-columns: 1fr; }
  .hero-bento { grid-template-columns: 1fr 1fr; }
}
