/* ============================================================
   BIG BRO BURGER — Brand stylesheet
   Colors:  ink #111111 · red #E73F3A · cream #F4EFE6 · paper #FBF8F2
   Type:    Anton (display) · Manrope (body)
   ============================================================ */

:root {
  --ink: #252222;          /* warm charcoal (brand) */
  --ink-soft: #322d2c;
  --red: #e63e39;          /* coral red (brand) */
  --red-dark: #c5302c;
  --sand: #eebe7e;         /* signature tan (brand) */
  --sand-soft: #f3cd97;
  --cream: #f5e7cc;        /* light sand page background */
  --paper: #fcf4e6;        /* warm card surface */
  --white: #ffffff;
  --muted: #8a7a63;        /* warm brown for secondary text */

  --max: 1320px;
  --gutter: clamp(20px, 5vw, 80px);
  --radius: 22px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; overflow-x: clip; overscroll-behavior-x: none; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: clip;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
}

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: var(--red); color: var(--white); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; line-height: 0.92; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--red);
  display: inline-block;
}

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--bg);
  color: var(--fg);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  padding: 0.95em 1.6em;
  border-radius: 100px;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  will-change: transform;
}
.btn svg { transition: transform 0.4s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:hover svg { transform: translateX(4px); }
.btn--red { --bg: var(--red); --fg: #fff; }
.btn--red:hover { --bg: var(--red-dark); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border: 2px solid var(--ink);
}
.btn--ghost:hover { --bg: var(--ink); --fg: var(--cream); }
.btn--lg { font-size: 0.95rem; padding: 1.15em 2em; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #000;
  display: grid; place-items: center;
  transform: translateY(0);
}
.preloader.done {
  transform: translateY(-100%);
  transition: transform 0.85s var(--ease);
}
.preloader__inner { text-align: center; overflow: hidden; }
.preloader__logo { width: clamp(160px, 30vw, 280px); }
.preloader__bar {
  margin: 22px auto 0; height: 3px; width: 180px; max-width: 60vw;
  background: rgba(255,255,255,0.16); border-radius: 4px; overflow: hidden;
}
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--red); }
.preloader__count {
  margin-top: 14px; font-family: var(--font-display); color: #fff;
  font-size: 0.9rem; letter-spacing: 0.3em; opacity: 0.7;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(244, 239, 230, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 12px; padding-bottom: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.nav.hide { transform: translateY(-110%); }
.nav__logo img { height: 46px; transition: height 0.4s var(--ease); }
.nav.scrolled .nav__logo img { height: 40px; }
/* hero is dark -> use light logo until scrolled */
.nav__logo .logo-light { display: block; }
.nav__logo .logo-dark { display: none; }
.nav.scrolled .nav__logo .logo-light { display: none; }
.nav.scrolled .nav__logo .logo-dark { display: block; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.82rem; color: #fff; position: relative; padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav.scrolled .nav__links a { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); transition: width 0.35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 30px; }
.nav__burger span { height: 2.5px; background: #fff; border-radius: 3px; transition: 0.3s var(--ease); }
.nav.scrolled .nav__burger span { background: var(--ink); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 8px; transform: translateY(-100%); transition: transform 0.6s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display); color: #fff; font-size: 2.6rem; text-transform: uppercase;
  line-height: 1.1; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .btn { margin-top: 22px; }

/* ============================================================
   HERO — scroll-expand circle
   ============================================================ */
.hero { position: relative; height: 250vh; background: var(--ink); }
.hero__stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: grid; place-items: center; background: var(--ink);
}

/* diagonal repeating type behind the circle */
.hero__bgtext {
  position: absolute; inset: -14% -16%; z-index: 1; pointer-events: none;
  display: flex; flex-direction: column; justify-content: center; gap: 0.04em;
  transform: rotate(-9deg); will-change: opacity, transform;
}
.hero__row {
  white-space: nowrap; font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(3rem, 9vw, 8.5rem); line-height: 1.05; will-change: transform;
}
.hero__row--solid { color: var(--sand); }
.hero__row--outline { color: transparent; -webkit-text-stroke: 1.6px rgba(244,231,204,0.65); }
.hero__row span { display: inline-block; padding-right: 0.3em; }
/* continuous diagonal carousel (auto-moving rows) */
@keyframes heroMarqueeL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes heroMarqueeR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.hero__row[data-row="1"] { animation: heroMarqueeL 38s linear infinite; }
.hero__row[data-row="-1"] { animation: heroMarqueeR 32s linear infinite; }
.hero__row:nth-child(3) { animation-duration: 44s; }
.hero__row:nth-child(5) { animation-duration: 50s; }
@media (prefers-reduced-motion: reduce) { .hero__row { animation: none !important; } }

/* expanding media */
.hero__media {
  position: relative; z-index: 2; width: min(64vw, 72vh); height: min(64vw, 72vh);
  border-radius: 50%; overflow: hidden; will-change: width, height, border-radius;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero__scrim {
  position: absolute; inset: 0; opacity: 0; will-change: opacity;
  background: linear-gradient(to bottom, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.12) 42%, rgba(8,8,8,0.18) 100%);
}
.hero__content {
  position: absolute; z-index: 3; inset: 0; opacity: 0; will-change: opacity;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: clamp(92px, 13vh, 150px) var(--gutter) 0;
}
.hero__title { color: var(--cream); font-size: clamp(3rem, 11vw, 10rem); letter-spacing: -0.01em; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span { display: block; will-change: transform; }
.hero__title .accent { color: var(--red); }
.hero__sub { margin-top: 18px; max-width: 540px; color: rgba(255,255,255,0.85); font-size: clamp(1rem, 1.4vw, 1.18rem); font-weight: 500; }
.hero__cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; z-index: 4; transform: translateX(-50%);
  color: var(--cream); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.74rem; font-weight: 800; display: flex; flex-direction: column; align-items: center; gap: 9px;
  text-align: center; will-change: opacity; pointer-events: none; text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.hero__scroll .dot {
  width: 22px; height: 36px; border: 2px solid rgba(244,231,204,0.6); border-radius: 20px; position: relative;
}
.hero__scroll .dot::after {
  content:""; position:absolute; left:50%; top:7px; width:4px; height:4px; border-radius:50%;
  background: var(--cream); transform: translateX(-50%); animation: scrolldot 1.6s var(--ease) infinite;
}
.hero__scroll-txt { white-space: nowrap; }
.hero__scroll-chev { color: var(--sand); animation: heroChev 1.5s ease-in-out infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0;transform:translate(-50%,14px)} }
@keyframes heroChev { 0%,100%{ transform: translateY(0); opacity:.55; } 50%{ transform: translateY(5px); opacity:1; } }

/* expanded / no-JS fallback state */
.hero.is-expanded .hero__media { width: 100vw; height: 100vh; border-radius: 0; }
.hero.is-expanded .hero__scrim, .hero.is-expanded .hero__content { opacity: 1; }
.hero.is-expanded .hero__bgtext { opacity: 0; }

/* Hero ESTÁTICO: "Burgers Premium" como sección limpia (sin animación de círculo) */
.hero--static { height: auto; min-height: 100vh; min-height: 100svh; }
.hero--static .hero__stage { position: relative; top: auto; height: auto; min-height: 100vh; min-height: 100svh; }
.hero--static .hero__media { box-shadow: none; }
.hero--static .hero__scrim { opacity: 1; }
.hero--static .hero__content { opacity: 1; }


/* ============================================================
   INTRO MÓVIL: video 1 -> congela en último frame -> Burgers Premium
   (solo móvil; reemplaza al 360 y al hero estático en pantallas chicas)
   ============================================================ */
.mintro { display: none; }
.mintro__frame, .mintro__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center;
}
.mintro__frame { z-index: 1; }
.mintro__video { z-index: 2; transition: opacity 0.4s linear; }
.mintro.is-done .mintro__video { opacity: 0; }
.mintro__scrim {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0; transition: opacity 0.7s var(--ease);
  background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 30%, rgba(0,0,0,0) 52%);
}
.mintro.is-done .mintro__scrim { opacity: 1; }
.mintro__content {
  position: absolute; inset: 0; z-index: 4; display: flex; flex-direction: column; justify-content: flex-start;
  padding: calc(64px + env(safe-area-inset-top)) var(--gutter) calc(22px + env(safe-area-inset-bottom));
  opacity: 0; transform: translateY(14px); pointer-events: none;
}
.mintro.is-done .mintro__content {
  opacity: 1; transform: none; pointer-events: auto;
  transition: opacity 0.85s 0.15s var(--ease), transform 0.85s 0.15s var(--ease);
}
@media (max-width: 760px) {
  .mintro { display: block; position: relative; min-height: 100vh; min-height: 100svh; background: #000; overflow: hidden; isolation: isolate; }
}

/* ============================================================
   BURGER 360 SHOWCASE (video alfa + texto detrás, estilo Goiko)
   ============================================================ */
.spin { position: relative; min-height: 100vh; background: #000; display: grid; place-items: center; overflow: hidden; isolation: isolate; }
.spin__tracks {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  display: flex; flex-direction: column; justify-content: center; gap: 0.06em;
}
.spin__row {
  white-space: nowrap; font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(3.4rem, 9.5vw, 9.5rem); line-height: 1.02; will-change: transform;
}
.spin__row--solid { color: var(--red); }
.spin__row--outline { color: transparent; -webkit-text-stroke: 1.8px rgba(230,62,57,0.7); }
.spin__row span { display: inline-block; }
.spin__row[data-row="1"] { animation: heroMarqueeL 42s linear infinite; }
.spin__row[data-row="-1"] { animation: heroMarqueeR 36s linear infinite; }
.spin__row:nth-child(2) { animation-duration: 50s; }
.spin__row:nth-child(4) { animation-duration: 46s; }
/* viñeta oscura detrás de la hamburguesa: el texto queda alrededor y tapa cualquier hueco */
.spin__glow {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(58% 50% at 50% 53%, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0) 70%);
}
.spin__video {
  position: relative; z-index: 3; height: min(88vh, 760px); width: auto; max-width: 94vw;
  object-fit: contain;
}
.spin__cta {
  position: absolute; left: 50%; bottom: calc(36px + env(safe-area-inset-bottom)); transform: translateX(-50%);
  z-index: 4; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; width: max-content; max-width: 92vw;
}
@media (prefers-reduced-motion: reduce) { .spin__row { animation: none !important; } }

/* ===== Reel final (video 1 en bucle, sin texto) ===== */
.reel { background: #000; display: grid; place-items: center; overflow: hidden; }
.reel__video { display: block; width: auto; height: min(92vh, 920px); max-width: 100%; object-fit: contain; }
@media (max-width: 760px) { .reel__video { width: 100%; height: auto; max-height: 94vh; } }
@media (max-width: 760px) {
  .spin { min-height: 88vh; }
  .spin__row { font-size: clamp(2.6rem, 15vw, 5rem); }
  .spin__video { height: min(64vh, 540px); max-width: 96vw; }
  .spin__glow { background: radial-gradient(66% 46% at 50% 54%, rgba(17,15,15,0.96) 0%, rgba(17,15,15,0.9) 32%, rgba(17,15,15,0.5) 52%, rgba(17,15,15,0) 72%); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--red); color: var(--cream); overflow: hidden;
  padding: 18px 0; white-space: nowrap; position: relative;
}
.marquee--ink { background: var(--ink); color: var(--cream); }
.marquee--sand { background: var(--sand); color: var(--ink); }
.marquee--sand .marquee__track span::after { color: rgba(37,34,34,0.4); }
.marquee__track { display: inline-flex; gap: 0; will-change: transform; }
.marquee__track span {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem); padding: 0 28px; display: inline-flex; align-items: center; gap: 28px;
}
.marquee__track span::after {
  content: "★"; color: rgba(255,255,255,0.55); font-size: 0.7em;
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { position: relative; }
.section { padding: clamp(70px, 11vw, 150px) 0; }
.section__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section__title {
  font-size: clamp(2.4rem, 7vw, 6rem); margin-top: 16px; color: var(--ink);
}
.section__title .accent { color: var(--red); }
.section__lead { margin-top: 18px; font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 620px; }

/* reveal helpers */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-line { overflow: hidden; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper); }
.about__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center;
}
.about__copy p { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-soft); margin-top: 18px; }
.about__stats { display: flex; gap: 36px; margin-top: 40px; flex-wrap: wrap; }
.about__stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--red); line-height: 1; }
.about__stat .lbl { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 700; color: var(--muted); margin-top: 6px; }

.about__media { position: relative; }
.about__media .m-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.about__media .m-main img { width: 100%; height: 100%; object-fit: cover; }
.about__media .m-float {
  position: absolute; bottom: -28px; left: -28px; width: 46%; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,0.22); border: 5px solid var(--paper);
}
.about__media .m-float img { aspect-ratio: 1; width: 100%; object-fit: cover; }
@keyframes spinslow { to { transform: rotate(360deg); } }
/* High-quality seal */
.about__seal {
  position: absolute; top: -32px; right: -24px; z-index: 4;
  width: clamp(112px, 13vw, 156px); height: clamp(112px, 13vw, 156px);
  display: grid; place-items: center; filter: drop-shadow(0 14px 28px rgba(0,0,0,0.32));
}
.about__seal__disc { position: absolute; inset: 0; border-radius: 50%; background: var(--red); }
.about__seal::before {
  content: ""; position: absolute; inset: 9px; border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 50%; z-index: 1; pointer-events: none;
}
.about__seal__ring { position: absolute; inset: 0; z-index: 1; animation: spinslow 16s linear infinite; }
.about__seal__ring svg { width: 100%; height: 100%; }
.about__seal__ring text {
  fill: #fff; font-family: var(--font-body); font-weight: 800;
  font-size: 9px; letter-spacing: 1.7px; text-transform: uppercase;
}
.about__seal__center { position: relative; z-index: 2; text-align: center; color: #fff; line-height: 0.95; }
.about__seal__center .star { font-size: 0.95rem; display: block; }
.about__seal__center .big { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.4rem, 2.4vw, 1.9rem); display: block; }
.about__seal__center .small { font-size: 0.5rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-top: 2px; }

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--cream); }
.menu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden; position: relative;
  display: flex; flex-direction: column; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  will-change: transform;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.14); }
.card__img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #ddd; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card__img img { transform: scale(1.07); }
.card__tag {
  position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.66rem;
  padding: 6px 12px; border-radius: 100px;
}
.card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.card__name { font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--ink); }
.card__desc { color: var(--muted); font-size: 0.95rem; margin-top: 8px; flex: 1; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.card__price { font-family: var(--font-display); font-size: 1.5rem; color: var(--red); }
.card__price small { font-size: 0.8rem; color: var(--muted); font-family: var(--font-body); font-weight: 700; }
.card__order {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.78rem;
  color: var(--red); transition: color 0.3s var(--ease);
}
.card__order svg { transition: transform 0.35s var(--ease); }
.card:hover .card__order { color: var(--red-dark); }
.card:hover .card__order svg { transform: translateX(4px); }
.menu__foot { text-align: center; margin-top: clamp(36px, 5vw, 56px); }

/* ============================================================
   FIT BRO (ensaladas — estilo diner, stickers)
   ============================================================ */
.fit { position: relative; background: #1f7d43; overflow: hidden; } /* verde healthy */
.fit > .container { position: relative; z-index: 1; max-width: none; padding-inline: clamp(24px, 3.5vw, 70px); }
.fit__bg { position: absolute; inset: -12% -12%; z-index: 0; display: flex; flex-direction: column; justify-content: center; gap: 0.06em; transform: rotate(-10deg); pointer-events: none; }
.fit__bg span { white-space: nowrap; font-family: var(--font-display); text-transform: uppercase; font-size: clamp(3rem, 8vw, 7rem); line-height: 1.06; color: rgba(255,255,255,0.07); }
.fit__leaf { position: absolute; z-index: 0; color: rgba(255,255,255,0.10); pointer-events: none; }
.fit__head { text-align: center; max-width: 760px; margin: 0 auto clamp(66px, 7vw, 104px); }
.fit__head .eyebrow { justify-content: center; color: #d8f3dd; }
.fit__head .eyebrow::before { background: #d8f3dd; }
.fit .section__title { color: var(--cream); }
.fit .section__title .accent { color: #ffd75e; }
.fit .section__lead { color: rgba(255,255,255,0.85); }
.fit__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.2vw, 44px); max-width: 1700px; margin-inline: auto; align-items: end; }
.fitcard {
  background: var(--cream); border: 2.5px solid var(--ink); border-radius: 24px;
  padding: 0 24px 26px; text-align: center; position: relative;
  box-shadow: 9px 9px 0 rgba(37,34,34,0.13); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.fitcard:nth-child(1) { transform: rotate(-1.6deg); }
.fitcard:nth-child(2) { transform: rotate(1deg); }
.fitcard:nth-child(3) { transform: rotate(-1deg); }
.fitcard:hover { transform: rotate(0) translateY(-6px); box-shadow: 12px 12px 0 rgba(231,62,57,0.18); }
.fitcard__sticker {
  width: 128%; margin: -86px -14% 14px; display: block; max-width: none;
  filter: drop-shadow(0 26px 32px rgba(0,0,0,0.45)); transition: transform 0.5s var(--ease);
}
/* Burger Salad (1) y Tropical Salad (3) un poco más abajo; Tex Mex (2) queda igual */
.fitcard:nth-child(1) .fitcard__sticker,
.fitcard:nth-child(3) .fitcard__sticker { margin-top: -64px; }
@media (min-width: 861px) and (max-width: 1100px) { .fitcard__sticker { width: 130%; margin: -72px -13% 12px; } }
.fitcard:hover .fitcard__sticker { transform: scale(1.07) rotate(-3deg); }
.fitcard__badge {
  position: absolute; top: 14px; right: 14px; background: #2f9e4f; color: #fff;
  font-weight: 800; text-transform: uppercase; font-size: 0.58rem; letter-spacing: 0.1em;
  padding: 5px 11px; border-radius: 100px; z-index: 2;
}
.fitcard__name { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 0.95; color: var(--ink); }
.fitcard__desc { color: var(--muted); font-size: 0.9rem; margin-top: 9px; }
.fitcard__foot { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 18px; }
.fitcard__price { font-family: var(--font-display); color: var(--red); font-size: 1.5rem; }
@media (max-width: 860px) {
  .fit__grid { grid-template-columns: 1fr; gap: clamp(54px, 12vw, 70px); max-width: 420px; margin-inline: auto; }
  .fitcard:nth-child(n) { transform: none; }
}

/* ============================================================
   FEATURE (split: big shot + bold copy)
   ============================================================ */
.feature { background: var(--ink); color: var(--cream); overflow: hidden; }
.feature__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 88vh; }
.feature__media { position: relative; overflow: hidden; }
.feature__media img { position: absolute; inset: 0; width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.feature__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 7vw, 110px); }
.feature__body .eyebrow { color: var(--sand); }
.feature__body .eyebrow::before { background: var(--sand); }
.feature__title { font-size: clamp(2.6rem, 6vw, 5.2rem); color: var(--cream); margin-top: 16px; }
.feature__title .accent { color: var(--red); }
.feature__title .sand { color: var(--sand); }
.feature__body p { color: rgba(245,231,204,0.72); margin-top: 20px; font-size: clamp(1.02rem,1.3vw,1.18rem); max-width: 460px; }
.feature__body .btn { margin-top: 32px; align-self: flex-start; }

/* ============================================================
   NOVEDADES (destacado de productos nuevos)
   ============================================================ */
.noved { background: var(--ink); color: var(--cream); padding-bottom: 0; }
.noved .section__title { color: var(--cream); }

/* Kevin Bro — destacado (hamburguesa completa + texto al lado, no encima) */
.kevin {
  display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: stretch;
  background: var(--ink); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); overflow: hidden; margin-bottom: clamp(20px, 3vw, 36px); text-decoration: none;
}
.kevin__media { background: #0b0909; display: flex; align-items: center; justify-content: center; padding: clamp(14px,2vw,28px); min-height: 560px; overflow: hidden; }
.kevin__media img { max-width: 100%; max-height: 540px; width: auto; height: auto; object-fit: contain; transition: transform 0.7s var(--ease); }
.kevin:hover .kevin__media img { transform: scale(1.04); }
.kevin__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 4.5vw, 72px); }
.kevin__tag { display: inline-block; align-self: flex-start; background: var(--red); color: #fff; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; padding: 8px 16px; border-radius: 100px; margin-bottom: 16px; }
.kevin__name { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.8rem, 6vw, 5rem); line-height: 0.9; color: var(--cream); }
.kevin__name .accent { color: var(--red); }
.kevin__desc { color: rgba(255,255,255,0.82); margin-top: 16px; font-size: clamp(1rem, 1.4vw, 1.2rem); max-width: 520px; }
.kevin__foot { display: flex; align-items: center; gap: 20px; margin-top: 26px; flex-wrap: wrap; }
.kevin__price { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--sand); }

/* 3 novelty cards (hamburguesa completa sobre negro, texto abajo) */
.noved__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.ncard { background: #0e0c0c; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.ncard:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(0,0,0,0.5); }
.ncard__img { position: relative; aspect-ratio: 4 / 4.5; overflow: hidden; background: #0b0909; display: flex; align-items: center; justify-content: center; }
.ncard__img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: transform 0.7s var(--ease); }
.ncard:hover .ncard__img img { transform: scale(1.05); }
.ncard__tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--red); color: #fff; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.62rem; padding: 6px 12px; border-radius: 100px; }
.ncard__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.ncard__name { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 0.95; color: var(--cream); }
.ncard__desc { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-top: 8px; flex: 1; }
.ncard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; gap: 12px; }
.ncard__price { font-family: var(--font-display); font-size: 1.45rem; color: var(--sand); }
@media (max-width: 860px) {
  .kevin { grid-template-columns: 1fr; }
  .kevin__media { min-height: 0; padding: 16px; }
  .kevin__media img { max-height: 56vh; }
  .noved__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}

/* Novedades — 3 fotos full-bleed, texto abajo (sin precio) */
.noved3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.np { position: relative; display: block; text-decoration: none; background: #0b0909; }
.np + .np { border-left: 1px solid rgba(255,255,255,0.06); }
.np__img { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #0b0909; }
/* título de Novedades sobre la primera imagen (Kevin) */
.np__head { position: absolute; top: 0; left: 0; right: 0; z-index: 3; padding: clamp(22px,2.4vw,40px) clamp(18px,2vw,32px) 0; pointer-events: none; }
.np__head .eyebrow { color: var(--sand); }
.np__head .eyebrow::before { background: var(--sand); }
.np__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.6rem, 2.1vw, 2.6rem); line-height: 0.92; color: var(--cream); margin-top: 10px; }
.np__title .accent { color: var(--red); }
.np__title small { display: block; font-family: var(--font-body); font-weight: 600; text-transform: none; font-size: 0.8rem; color: rgba(255,255,255,0.78); margin-top: 10px; max-width: 26ch; }
.np--lead .np__img::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.15) 48%, rgba(8,8,8,0) 65%); pointer-events: none; }
.np__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.np:hover .np__img img { transform: scale(1.05); }
.np__cap { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px clamp(16px, 2vw, 30px) 26px; }
.np__name { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.5rem, 2.2vw, 2.2rem); line-height: 0.95; color: var(--cream); }
.np__order { display: inline-flex; align-items: center; gap: 0.4em; flex: none; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; color: #fff; background: var(--red); padding: 10px 18px; border-radius: 100px; transition: background 0.3s var(--ease); }
.np:hover .np__order { background: var(--red-dark); }
@media (max-width: 760px) { .noved3 { grid-template-columns: 1fr; } .np + .np { border-left: 0; border-top: 1px solid rgba(255,255,255,0.06); } .np__img { aspect-ratio: 4 / 4.2; } }

/* Ver carta completa — banda CTA */
.vercarta { position: relative; text-align: center; padding: clamp(80px, 12vw, 150px) 0; overflow: hidden; background: var(--ink); }
.vercarta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.38; }
.vercarta__overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(17,15,15,0.45), rgba(17,15,15,0.88)); }
.vercarta__inner { position: relative; z-index: 2; max-width: 700px; }
.vercarta__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 0.95; color: var(--cream); margin-top: 14px; }
.vercarta__title .accent { color: var(--red); }
.vercarta p { color: rgba(255,255,255,0.82); margin: 16px auto 30px; max-width: 480px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--ink); }
.gallery .section__title, .gallery .section__lead { color: var(--cream); }
.gallery .section__lead { color: rgba(255,255,255,0.6); }
.gallery__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: 14px; aspect-ratio: 1;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery__item:hover img { transform: scale(1.1); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0; background: rgba(231,63,58,0); transition: background 0.4s var(--ease);
}
.gallery__item:hover::after { background: rgba(231,63,58,0.35); }
.gallery__item .ig {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2;
  opacity: 0; transform: scale(0.6); transition: 0.4s var(--ease); color: #fff;
}
.gallery__item:hover .ig { opacity: 1; transform: scale(1); }
.gallery__item.tall { grid-row: span 2; aspect-ratio: auto; }

/* Instagram embed carousel */
.ig-carousel { position: relative; margin-top: clamp(28px, 4vw, 44px); }
.ig-track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px clamp(20px, 5vw, 80px) 20px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.ig-track::-webkit-scrollbar { display: none; }
.ig-slide { flex: 0 0 auto; width: min(86vw, 330px); scroll-snap-align: center; }
.ig-slide .instagram-media { min-width: 100% !important; width: 100% !important; margin: 0 !important; border-radius: 16px !important; }
.ig-nav {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 5;
  width: 50px; height: 50px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 22px rgba(0,0,0,0.3); transition: 0.3s var(--ease);
}
.ig-nav:hover { background: var(--red-dark); transform: translateY(-50%) scale(1.08); }
.ig-nav--prev { left: clamp(8px, 2vw, 30px); }
.ig-nav--next { right: clamp(8px, 2vw, 30px); }
@media (max-width: 700px) { .ig-nav { display: none; } }

/* ============================================================
   LOCATION
   ============================================================ */
.location { background: var(--paper); }
.location__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.location__map { border-radius: var(--radius); overflow: hidden; min-height: 380px; position: relative; }
.location__map iframe { width: 100%; height: 100%; border: 0; min-height: 380px; filter: grayscale(0.2) contrast(1.05); }
.location__card { display: flex; flex-direction: column; justify-content: center; }
.location__name { font-size: clamp(2rem, 4.4vw, 3.4rem); color: var(--ink); }
.loc-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.loc-row svg { flex: none; color: var(--red); margin-top: 2px; }
.loc-row .k { font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; color: var(--muted); }
.loc-row .v { font-size: 1.02rem; color: var(--ink); margin-top: 2px; }
.location__cta { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

/* ============================================================
   CTA STRIP / JOIN
   ============================================================ */
.cta {
  background: var(--red); color: #fff; text-align: center; padding: clamp(70px, 10vw, 130px) 0;
  position: relative; overflow: hidden;
}
.cta__title { font-size: clamp(2.6rem, 8vw, 7rem); color: #fff; }
.cta__title .stroke { color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.85); }
.cta p { margin: 18px auto 30px; max-width: 520px; font-size: 1.1rem; color: rgba(255,255,255,0.9); }
.cta .btn { background: var(--ink); color: var(--cream); }
.cta .btn:hover { background: #000; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding: clamp(60px, 8vw, 90px) 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; }
.footer__brand img { width: 200px; }
.footer__brand p { color: rgba(255,255,255,0.55); margin-top: 18px; max-width: 280px; font-size: 0.95rem; }
.footer__col h4 { font-family: var(--font-body); font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; color: var(--red); margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: rgba(255,255,255,0.7); padding: 6px 0; font-size: 0.95rem; transition: color 0.3s; }
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; gap: 12px; margin-top: 8px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center; transition: 0.35s var(--ease);
}
.footer__social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer__bottom {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: rgba(255,255,255,0.45); font-size: 0.82rem;
}
.footer__bottom a:hover { color: #fff; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 22px; bottom: calc(22px + env(safe-area-inset-bottom)); z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  transition: transform 0.35s var(--ease);
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); }

/* ===== Pop-up "última novedad" (estampilla / ticket) ===== */
.novelty {
  position: fixed; right: 26px; bottom: 96px; z-index: 905; width: 264px;
  opacity: 0; pointer-events: none; transform: translateY(46px) rotate(-4deg) scale(0.92);
  transition: opacity 0.55s var(--ease), transform 0.6s var(--ease);
}
/* el sello giratorio se esconde mientras el pop-up de novedad está abierto (evita choque) */
.spin-badge { transition: opacity 0.4s var(--ease); }
body.novelty-open .spin-badge { opacity: 0; pointer-events: none; }
.novelty.show { opacity: 1; pointer-events: auto; transform: translateY(0) rotate(-4deg) scale(1); }
.novelty__ticket {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px;
  background: var(--red); color: var(--cream); padding: 24px 26px; border-radius: 16px;
  border: 2px solid rgba(245,231,204,0.9); box-shadow: 0 20px 48px rgba(0,0,0,0.42);
  position: relative; overflow: hidden;
}
.novelty__ticket::before {
  content: ""; position: absolute; inset: 6px; border: 1.5px dashed rgba(245,231,204,0.5);
  border-radius: 10px; pointer-events: none;
}
.novelty__star { font-size: 0.72rem; letter-spacing: 0.45em; padding-left: 0.45em; opacity: 0.92; }
.novelty__eyebrow { font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.66rem; opacity: 0.95; }
.novelty__name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.85rem; line-height: 0.98; margin: 3px 0 6px; }
.novelty__cta { font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.74rem; background: var(--ink); color: var(--cream); padding: 8px 16px; border-radius: 100px; transition: transform 0.3s var(--ease); }
.novelty__ticket:hover .novelty__cta { transform: translateX(3px); }
.novelty__close {
  position: absolute; top: -9px; right: -9px; z-index: 3; width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: #fff; font-size: 1.15rem; line-height: 1; display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4); transition: transform 0.25s var(--ease);
}
.novelty__close:hover { transform: scale(1.12) rotate(90deg); }
@media (max-width: 560px) { .novelty { display: none; } }
@media (prefers-reduced-motion: reduce) { .novelty { transition: opacity 0.3s linear; transform: rotate(-4deg); } .novelty.show { transform: rotate(-4deg); } }

/* Rotating "pedido rápido" badge */
.spin-badge {
  position: fixed; right: 26px; bottom: 92px; z-index: 901;
  width: 112px; height: 112px; display: grid; place-items: center;
}
.spin-badge__ring { position: absolute; inset: 0; animation: spinslow 11s linear infinite; }
.spin-badge__ring svg { width: 100%; height: 100%; overflow: visible; }
.spin-badge__ring text { font-family: var(--font-body); font-weight: 800; font-size: 11.5px; letter-spacing: 2.5px; text-transform: uppercase; fill: var(--ink); }
.spin-badge__center {
  width: 58px; height: 58px; border-radius: 50%; background: var(--ink); z-index: 2;
  display: grid; place-items: center; box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.spin-badge__center img { width: 34px; }
@media (max-width: 560px) { .spin-badge { display: none; } }

/* Circle carousel (auto-moving) */
.circ-carousel { background: var(--paper); padding: clamp(36px,6vw,80px) 0; overflow: hidden; }
.circ-mask { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.circ-track { display: flex; gap: clamp(14px, 2vw, 28px); width: max-content; animation: circscroll 36s linear infinite; }
.circ-carousel:hover .circ-track { animation-play-state: paused; }
.circ {
  flex: 0 0 auto; width: clamp(132px, 16vw, 210px); height: clamp(132px, 16vw, 210px);
  border-radius: 50%; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.16); position: relative;
}
.circ img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes circscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .circ-track { animation: none; } }

/* Entry WhatsApp modal */
.modal {
  position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; padding: 20px;
  background: rgba(20,18,18,0.62); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal__card {
  width: min(420px, 92vw); background: var(--paper); border-radius: var(--radius); overflow: hidden;
  position: relative; transform: translateY(22px) scale(0.97); transition: transform 0.5s var(--ease);
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
}
.modal.open .modal__card { transform: none; }
.modal__img { height: 190px; overflow: hidden; }
.modal__img img { width: 100%; height: 100%; object-fit: cover; }
.modal__body { padding: 26px 26px 28px; text-align: center; }
.modal__body h3 { font-size: clamp(1.7rem, 5vw, 2.3rem); color: var(--ink); line-height: 1; }
.modal__body h3 .accent { color: var(--red); }
.modal__body p { color: var(--muted); margin: 14px 0 20px; font-size: 0.96rem; }
.modal__wa { background: #25d366; color: #fff; width: 100%; justify-content: center; }
.modal__wa:hover { background: #1fb955; }
.modal__dismiss { display: block; margin: 14px auto 0; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; color: var(--muted); }
.modal__dismiss:hover { color: var(--ink); }
.modal__close {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.9); display: grid; place-items: center; z-index: 2; color: var(--ink);
}
.modal__close:hover { background: #fff; }

/* ============================================================
   CARTA (full menu page)
   ============================================================ */
.carta-hero { background: var(--sand); color: var(--ink); padding: calc(94px + 4vw) 0 clamp(28px,5vw,54px); text-align: center; }
.carta-hero .eyebrow { color: var(--red); justify-content: center; }
.carta-hero .eyebrow::before { background: var(--red); }
.carta-hero h1 { font-size: clamp(2.6rem, 9vw, 6rem); color: var(--ink); margin-top: 14px; }
.carta-hero h1 .accent { color: var(--red); }
.carta-hero p { color: rgba(37,34,34,0.66); margin-top: 14px; }
.catnav { position: sticky; top: 64px; z-index: 500; background: rgba(244,231,204,0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.08); }
.catnav__track { display: flex; gap: 10px; overflow-x: auto; padding: 12px var(--gutter); scrollbar-width: none; }
.catnav__track::-webkit-scrollbar { display: none; }
.catnav a { flex: 0 0 auto; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.74rem; padding: 8px 15px; border-radius: 100px; background: var(--paper); border: 1px solid rgba(0,0,0,0.1); color: var(--ink); white-space: nowrap; transition: 0.3s var(--ease); }
.catnav a:hover { background: var(--ink); color: var(--cream); }
.cat { padding: clamp(38px,6vw,72px) 0 0; }
.cat__title { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--ink); margin-bottom: 24px; }
.cat__title .accent { color: var(--red); }
.carta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 24px); }
.citem { display: flex; gap: 15px; background: var(--paper); border-radius: 18px; padding: 14px; align-items: center; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.citem:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,0.12); }
.citem__img { flex: 0 0 94px; width: 94px; height: 94px; border-radius: 12px; overflow: hidden; background: #e7ddc9; position: relative; }
.citem__img img { width: 100%; height: 100%; object-fit: cover; }
.citem__badge { position: absolute; top: 6px; left: 6px; background: var(--red); color: #fff; font-size: 0.54rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; padding: 3px 7px; border-radius: 100px; }
.citem__main { flex: 1; min-width: 0; }
.citem__name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.18rem; color: var(--ink); line-height: 1; }
.citem__desc { color: var(--muted); font-size: 0.83rem; margin-top: 5px; line-height: 1.35; }
.citem__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 9px; gap: 10px; }
.citem__price { font-family: var(--font-display); color: var(--red); font-size: 1.25rem; }
.citem__price small { font-family: var(--font-body); font-weight: 700; font-size: 0.7rem; color: var(--muted); }
.citem__order { font-weight: 800; text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.05em; color: #fff; background: var(--ink); padding: 7px 13px; border-radius: 100px; white-space: nowrap; transition: background 0.3s; }
.citem__order:hover { background: var(--red); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: var(--paper); border: 1px solid rgba(0,0,0,0.1); border-radius: 100px; padding: 9px 16px; font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.cat__note { color: var(--muted); font-size: 0.85rem; margin-top: 16px; font-style: italic; }
.carta-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 600; background: var(--ink); padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: space-between; gap: 14px; box-shadow: 0 -10px 30px rgba(0,0,0,0.18); }
.carta-bar p { color: var(--cream); font-weight: 700; font-size: 0.92rem; }
.carta-bar p span { color: var(--sand); }
body.has-bar { padding-bottom: 78px; }

/* Botón Agregar al carrito */
.citem__add { font-family: var(--font-body); font-weight: 800; text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.05em; color: #fff; background: var(--ink); padding: 8px 14px; border-radius: 100px; white-space: nowrap; transition: background 0.3s var(--ease); }
.citem__add:hover { background: var(--red); }
.citem__add.is-added { background: #2f9e4f; }

/* Carrito */
.cartwrap { position: fixed; left: 0; right: 0; bottom: 0; z-index: 600; }
.cart-panel { background: var(--paper); border-top: 2px solid var(--red); max-height: 46vh; overflow-y: auto; box-shadow: 0 -16px 36px rgba(0,0,0,0.22); }
.cart-panel[hidden] { display: none; }
.cart-panel__head { display: flex; align-items: center; justify-content: space-between; padding: 14px var(--gutter); border-bottom: 1px solid rgba(0,0,0,0.08); }
.cart-panel__head strong { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; color: var(--ink); }
#cartClear { font-weight: 800; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
#cartClear:hover { color: var(--red); }
.cart-panel__items { padding: 6px var(--gutter) 10px; }
.cart-panel__foot { display: flex; align-items: center; justify-content: space-between; padding: 12px var(--gutter) 14px; border-top: 2px solid rgba(0,0,0,0.1); }
.cart-panel__foot span { font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; color: var(--muted); }
.cart-panel__foot strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--red); }
.cartrow { display: flex; align-items: center; gap: 14px; padding: 11px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.cartrow:last-child { border-bottom: 0; }
.cartrow__name { flex: 1; font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.cartrow__price { color: var(--muted); font-weight: 600; font-size: 0.82rem; }
.qty { display: flex; align-items: center; gap: 10px; }
.qty button { width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: var(--cream); font-weight: 800; font-size: 1rem; line-height: 1; display: grid; place-items: center; transition: background 0.2s var(--ease); }
.qty button:hover { background: var(--red); }
.qty span { min-width: 16px; text-align: center; font-weight: 800; color: var(--ink); }
.cartrow__rm { color: var(--red); font-weight: 800; font-size: 0.9rem; padding: 4px 6px; }
.cart-toggle { display: flex; align-items: center; gap: 10px; color: var(--cream); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.82rem; }
.cart-toggle__count { background: var(--red); color: #fff; border-radius: 100px; min-width: 24px; height: 24px; display: grid; place-items: center; font-size: 0.78rem; padding: 0 7px; }
.cart-toggle__total { color: var(--sand); font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.02em; }
.cart-toggle__total:empty { display: none; }
.cart-toggle__chev { color: var(--sand); transition: transform 0.3s var(--ease); }
.cart-toggle[aria-expanded="true"] .cart-toggle__chev { transform: rotate(180deg); }
@media (max-width: 980px) { .carta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .carta-grid { grid-template-columns: 1fr; } .carta-bar { gap: 10px; } #cartLabel { display: none; } .carta-bar .btn { flex: 1; justify-content: center; padding-left: 14px; padding-right: 14px; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__right .btn-desktop { display: none; }
  .nav__burger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { margin-top: 40px; max-width: 460px; }
  .feature__grid { grid-template-columns: 1fr; min-height: 0; }
  .feature__media { min-height: 60vh; }
  .feature__media img { height: 100%; }
  .location__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: clamp(2.6rem, 9vw, 5.5rem); }
  .hero__media { width: min(84vw, 58vh); height: min(84vw, 58vh); }
}
/* Encuadre de la imagen vertical (solo cuando se usa la foto móvil, <=760px) */
@media (max-width: 760px) {
  .hero__media img { object-position: center 88%; }
}
@media (max-width: 560px) {
  .menu__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
  .about__stats { gap: 24px; }
  /* Carrusel de letras: llena toda la pantalla en móvil */
  .hero__row { font-size: clamp(4.4rem, 22vw, 9rem); }
  /* Degradado arriba para que el logo resalte sobre el carrusel grande */
  .hero__stage::before { content:""; position:absolute; top:0; left:0; right:0; height:140px; z-index:2; pointer-events:none; background: linear-gradient(to bottom, rgba(8,8,8,0.88), rgba(8,8,8,0)); }
  .hero__content { padding-bottom: 96px; }
  /* Pista "desliza" como botón negro con letras rojas, un poco más abajo */
  .hero__scroll { display: flex; flex-direction: row; align-items: center; gap: 9px; top: calc(94px + env(safe-area-inset-top)); bottom: auto; color: var(--red); background: rgba(8,8,8,0.82); padding: 10px 18px; border-radius: 100px; border: 1px solid rgba(230,62,57,0.55); box-shadow: 0 10px 26px rgba(0,0,0,0.45); font-size: 0.72rem; letter-spacing: 0.14em; }
  .hero__scroll .dot { display: none; }
  .hero__scroll-chev { color: var(--red); }
  .hero__title { font-size: clamp(2.2rem, 12vw, 3.4rem); }
  .carta-hero h1 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .cat__title, .section__title { word-break: break-word; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   FONDOS DE SECCIÓN EN NEGRO PURO (antes gris #252222 = se veía mal)
   ============================================================ */
.mobile-menu,
.hero, .hero__stage,
.feature,
.noved,
.vercarta,
.gallery,
.footer,
.carta-bar { background-color: #000; }

/* En móvil, el intro de video reemplaza al 360 */
@media (max-width: 760px) {
  .spin { display: none; }
}
