/* ================================================================
   CAFETERÍA ENCANTO — style.css v15 — MOBILE FIX RELEASE
   Correcciones principales:
   • Menu tabs móvil: overflow-x scroll correcto, sin corrupción
   • Lightbox: imagen visible y funcional en móvil
   • Footer: layout limpio en todos los tamaños
   • Galería: mosaico corregido en móvil, imágenes clickeables
   • Secciones: padding y spacing óptimo en móvil
   • Hero card: visible y bien formateada en móvil
================================================================ */

:root {
    --ink:         #07060A;
    --ink-2:       #0C0B10;
    --ink-3:       #111018;
    --ink-card:    #0E0D13;
    --ink-hover:   #161420;
    --white:       #FFFFFF;
    --off-white:   #F4EEE6;
    --cream:       #E8DDD0;
    --warm-white:  #F9F5EE;
    --grey-1:      #C8C0B8;
    --grey-2:      #8A8278;
    --grey-3:      #4C4640;
    --grey-4:      #2C2820;
    --accent:      #C23E1A;
    --accent-2:    #D9582E;
    --accent-3:    #E8774A;
    --accent-dim:  #6B2010;
    --accent-glow: rgba(194,62,26,.2);
    --gold:        #C9A96E;
    --gold-2:      #DFC08A;
    --gold-dim:    rgba(201,169,110,.15);
    --gold-glow:   rgba(201,169,110,.12);
    --tix:         #9B5E3A;
    --tix-2:       #C07848;
    --tix-glow:    rgba(155,94,58,.18);
    --tix-dim:     rgba(155,94,58,.1);
    --open-color:  #3D8B3A;
    --open-light:  #5CB559;
    --open-bg:     rgba(61,139,58,.09);
    --open-border: rgba(61,139,58,.22);
    --closed-color:#C4421F;
    --closed-light:#E05A30;
    --closed-bg:   rgba(196,66,31,.09);
    --closed-border:rgba(196,66,31,.2);
    --border:      rgba(255,255,255,.05);
    --border-md:   rgba(255,255,255,.1);
    --border-lg:   rgba(255,255,255,.2);
    --hw-orange:   #E8651A;
    --hw-purple:   #7B3FA0;
    --hw-orange-dim: rgba(232,101,26,.15);
    --hw-purple-dim: rgba(123,63,160,.1);
    --serif:       'Playfair Display', Georgia, serif;
    --serif-dm:    'DM Serif Display', Georgia, serif;
    --sans:        'DM Sans', system-ui, sans-serif;
    --nav-h: 68px;
    --max-w: 1340px;
    --ease-out:    cubic-bezier(.16,1,.3,1);
    --ease-bounce: cubic-bezier(.34,1.56,.64,1);
    --ease-in-out: cubic-bezier(.65,0,.35,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--sans);
    font-weight: 300;
    background: var(--ink);
    color: var(--off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: none; font-family: var(--sans); border: none; background: none; }
address { font-style: normal; }

body::before {
    content: '';
    position: fixed; inset: 0; z-index: 9997; pointer-events: none;
    opacity: .028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--grey-4); border-radius: 2px; }

.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(1.2rem, 5vw, 3rem); }

/* ══════ CURSOR ══════ */
.cursor {
    position: fixed; z-index: 99999; pointer-events: none;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--accent-2);
    transform: translate(-50%, -50%);
    transition: width .2s var(--ease-out), height .2s var(--ease-out), background .2s;
    mix-blend-mode: exclusion;
}
.cursor-trail {
    position: fixed; z-index: 99998; pointer-events: none;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    transform: translate(-50%, -50%);
    transition: left .12s var(--ease-out), top .12s var(--ease-out), width .3s, height .3s, border-color .3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 18px; height: 18px; }
body:has(a:hover) .cursor-trail,
body:has(button:hover) .cursor-trail { width: 56px; height: 56px; border-color: rgba(255,255,255,.4); }
@media (hover: none) { .cursor, .cursor-trail { display: none; } }

/* ══════ LOADER ══════ */
.loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--ink);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .8s var(--ease-out), visibility .8s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { text-align: center; }
.loader__logo {
    font-family: var(--serif); font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700; color: var(--white); letter-spacing: -.03em;
    margin-bottom: 2rem; opacity: 0;
    animation: loaderFadeIn .6s var(--ease-out) .2s forwards;
}
.loader__logo em { font-style: italic; color: var(--accent-2); font-weight: 400; }
.loader__line {
    width: 280px; height: 1px; background: var(--grey-4);
    margin: 0 auto 1.5rem; overflow: hidden;
    opacity: 0; animation: loaderFadeIn .4s var(--ease-out) .5s forwards;
}
.loader__fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--gold)); transition: width .8s var(--ease-out); }
.loader__tag { font-size: .56rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; color: var(--grey-3); opacity: 0; animation: loaderFadeIn .4s var(--ease-out) .7s forwards; }
@keyframes loaderFadeIn { to { opacity: 1; } }

/* ══════ TIPOGRAFÍA ══════ */
.heading-display { font-family: var(--serif); font-size: clamp(2.6rem, 5.5vw, 5.2rem); font-weight: 700; line-height: .92; letter-spacing: -.03em; color: var(--white); }
.heading-display em { font-style: italic; color: var(--accent-2); font-weight: 400; }
.label { display: inline-flex; align-items: center; gap: .6rem; font-size: .55rem; font-weight: 500; letter-spacing: .32em; text-transform: uppercase; color: var(--grey-2); margin-bottom: .9rem; }
.label::before { content: ''; display: block; width: 18px; height: 1px; background: var(--accent-dim); flex-shrink: 0; }
.body-copy { font-size: .93rem; font-weight: 300; line-height: 1.95; color: rgba(244,238,230,.4); max-width: 500px; }

/* ══════ BOTONES ══════ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .95rem 2.2rem; font-family: var(--sans); font-size: .6rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; transition: all .3s var(--ease-out); position: relative; overflow: hidden; white-space: nowrap; -webkit-tap-highlight-color: transparent; }
.btn::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.06); transform: translateX(-101%); transition: transform .4s var(--ease-out); }
.btn:hover::before { transform: translateX(0); }
.btn:active { transform: scale(.96); }
.btn--full { width: 100%; justify-content: center; }
.btn--primary { background: var(--white); color: var(--ink); border: 1.5px solid var(--white); font-weight: 700; }
.btn--primary:hover { background: var(--off-white); box-shadow: 0 12px 40px rgba(255,255,255,.12); }
.btn--ghost { background: transparent; color: var(--grey-1); border: 1.5px solid var(--border-md); }
.btn--ghost:hover { border-color: rgba(255,255,255,.32); color: var(--white); }
.btn--hero-primary { background: var(--white); color: var(--ink); border: none; font-weight: 700; font-size: .62rem; padding: 1rem 2.4rem; letter-spacing: .2em; }
.btn--hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(255,255,255,.18); }
.btn--hero-primary .btn__arrow { transition: transform .3s var(--ease-out); }
.btn--hero-primary:hover .btn__arrow { transform: translateX(5px); }
.btn--hero-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.18); font-size: .62rem; padding: 1rem 2rem; backdrop-filter: blur(10px); }
.btn--hero-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); transform: translateY(-3px); }
.btn--cta-primary { background: var(--white); color: var(--ink); border: none; font-weight: 700; font-size: .62rem; padding: 1.1rem 2.5rem; }
.btn--cta-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(255,255,255,.15); }
.btn--cta-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); font-size: .62rem; padding: 1.1rem 2.2rem; }
.btn--cta-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); transform: translateY(-3px); }

/* ══════ REVEAL ══════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .32s; }
.reveal.in  { opacity: 1; transform: none; }

.sec__bg-num {
    position: absolute; right: -2rem; top: 50%;
    transform: translateY(-50%);
    font-family: var(--serif);
    font-size: clamp(10rem, 16vw, 18rem);
    font-weight: 900;
    color: rgba(255,255,255,.016);
    line-height: 1; pointer-events: none; user-select: none;
    z-index: 0; letter-spacing: -.06em;
}

.sec { padding: clamp(3rem, 7vw, 6rem) 0; position: relative; overflow: hidden; }
.sec--dark { background: var(--ink); }
.sec--mid  { background: var(--ink-2); }
.sec--menu { background: var(--ink-2); }

.badge { display: inline-flex; align-items: center; gap: .48rem; padding: .3rem .9rem; font-size: .53rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; border: 1px solid; }
.badge--open  { background: var(--open-bg); border-color: var(--open-border); color: var(--open-light); }
.badge--closed{ background: var(--closed-bg); border-color: var(--closed-border); color: var(--closed-light); }
.badge__dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.badge--open .badge__dot { background: var(--open-color); animation: pulse 2s ease-in-out infinite; }
.badge--closed .badge__dot { background: var(--closed-color); }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .2; transform: scale(.5); } }

/* ══════ NAV ══════ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; height: var(--nav-h); transition: background .4s var(--ease-out), border-color .4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(7,6,10,.97); border-bottom-color: var(--border); }
.nav__wrap { display: flex; align-items: center; height: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(1.2rem,5vw,3rem); gap: 2.5rem; }
.nav__logo { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--white); margin-right: auto; letter-spacing: -.02em; line-height: 1; }
.nav__logo em { font-style: italic; color: var(--accent-2); font-weight: 400; }
.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__link { font-size: .58rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--grey-2); transition: color .2s; position: relative; display: flex; align-items: center; overflow: hidden; padding: 4px 0; }
.nav__link span { display: block; transition: transform .3s var(--ease-out); }
.nav__link::after { content: attr(data-label); position: absolute; top: 100%; left: 0; font-size: .58rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--white); transition: transform .3s var(--ease-out); pointer-events: none; }
.nav__link:hover span { transform: translateY(-120%); }
.nav__link:hover { color: var(--white); }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__status-mini { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border: 1px solid var(--border); }
.nav__status-dot { width: 7px; height: 7px; border-radius: 50%; }
.nav__status-dot--open { background: var(--open-color); animation: pulse 2s ease-in-out infinite; }
.nav__status-dot--closed { background: var(--closed-color); }
.nav__cta { padding: .68rem 1.4rem; font-size: .58rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; border: 1px solid var(--border-md); min-width: 46px; min-height: 46px; align-items: center; justify-content: center; transition: border-color .2s; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all .32s var(--ease-out); transform-origin: center; }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }
.nav__progress { position: absolute; bottom: 0; left: 0; height: 1px; background: linear-gradient(90deg, var(--accent), var(--gold)); width: 0; transition: width .1s linear; }
.nav__overlay { position: fixed; inset: 0; z-index: 600; background: rgba(0,0,0,.93); opacity: 0; pointer-events: none; transition: opacity .4s; }
.nav__overlay.open { opacity: 1; pointer-events: all; }
.nav__drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 700; width: min(340px, 92vw); background: #1B1A22; border-left: 1px solid rgba(255,255,255,.1); transform: translateX(110%); transition: transform .45s var(--ease-out); display: flex; flex-direction: column; overflow-y: auto; box-shadow: -12px 0 60px rgba(0,0,0,.7); }
.nav__drawer.open { transform: translateX(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.07); min-height: 68px; }
.drawer__top .nav__logo { font-size: 1.65rem; margin-right: 0; }
.drawer__close { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; color: var(--grey-1); border: 1px solid rgba(255,255,255,.14); transition: all .2s; }
.drawer__close:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.drawer__links { flex: 1; padding: .5rem 0; }
.drawer__links a { display: flex; align-items: center; gap: 1.1rem; padding: 1rem 1.5rem; font-size: 1rem; font-weight: 300; color: #e8e2da; border-bottom: 1px solid rgba(255,255,255,.05); transition: all .2s; min-height: 52px; }
.drawer__links a:hover { color: var(--white); background: rgba(255,255,255,.04); padding-left: 1.8rem; }
.drawer__num { font-family: var(--serif); font-size: .72rem; font-style: italic; color: var(--accent-2); width: 22px; flex-shrink: 0; }
.drawer__footer { padding: 1.3rem 1.5rem; border-top: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; gap: .8rem; }
.drawer__social { display: flex; gap: .5rem; }
.drawer__social a { padding: .68rem 1.1rem; border: 1px solid rgba(255,255,255,.12); font-size: .57rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--grey-2); transition: all .2s; flex: 1; text-align: center; }
.drawer__social a:hover { border-color: rgba(255,255,255,.28); color: var(--white); }

/* ══════ HERO ══════ */
.hero { position: relative; min-height: 100svh; background: var(--ink); display: flex; flex-direction: column; overflow: hidden; isolation: isolate; z-index: 0; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img-wrap { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 65% 40%, rgba(194,62,26,.18) 0%, transparent 60%), radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,169,110,.08) 0%, transparent 55%), linear-gradient(135deg, #07060A 0%, #0f0d14 40%, #130e0a 70%, #07060A 100%); }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(.28) saturate(1.1); transform: scale(1.04); animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }
.hero__img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,6,10,.92) 0%, rgba(7,6,10,.6) 40%, rgba(194,62,26,.08) 70%, rgba(7,6,10,.88) 100%); }
.hero__particles { position: absolute; inset: 0; pointer-events: none; opacity: .35; z-index: 0; }
.hero__content { flex: 1; display: grid; grid-template-columns: 1fr 400px; grid-template-areas: "left card"; gap: 3.5rem; align-items: center; padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem)); padding-bottom: clamp(5rem, 10vw, 8rem); position: relative; z-index: 1; }
.hero__left { grid-area: left; display: flex; flex-direction: column; }
.hero__card { grid-area: card; background: rgba(14,13,19,.85); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); position: relative; overflow: hidden; box-shadow: 0 32px 96px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.08); opacity: 0; animation: fadeSlideUp .8s var(--ease-out) 2s forwards; align-self: center; }
.hero__card-glow { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-2) 40%, var(--gold) 60%, transparent); }
.hero__card-inner { padding: 0; }
.hero__float-tag { display: inline-flex; align-items: center; gap: .6rem; padding: .42rem 1rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(12px); font-size: .62rem; font-weight: 400; letter-spacing: .16em; color: var(--grey-1); margin-bottom: 2rem; align-self: flex-start; opacity: 0; animation: fadeSlideUp .7s var(--ease-out) 1.2s forwards; }
.hero__float-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--open-color); flex-shrink: 0; }
.hero__float-dot.closed { background: var(--closed-color); }
.hero__float-dot.open { animation: pulse 2s ease-in-out infinite; }
.hero__float-sep { color: var(--grey-3); }
.hero__eyebrow { display: flex; align-items: center; gap: .8rem; font-size: .56rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; color: var(--grey-2); margin-bottom: 1.6rem; opacity: 0; animation: fadeSlideUp .7s var(--ease-out) 1.4s forwards; }
.eyebrow__line { display: block; width: 28px; height: 1px; background: var(--accent-2); flex-shrink: 0; }
.hero__heading { font-family: var(--serif); font-size: clamp(3.5rem, 10vw, 8.5rem); font-weight: 900; line-height: .88; letter-spacing: -.04em; color: var(--white); margin-bottom: 2rem; display: flex; flex-direction: column; gap: .05em; }
.hero__heading em { font-style: italic; color: transparent; font-weight: 400; -webkit-text-stroke: 1.5px var(--accent-2); }
.hero__heading-line { display: block; overflow: hidden; opacity: 0; transform: translateY(60px); }
.hero__heading-line.line-1 { animation: lineReveal .9s var(--ease-out) 1.5s forwards; }
.hero__heading-line.line-2 { animation: lineReveal .9s var(--ease-out) 1.65s forwards; }
.hero__heading-line.line-3 { animation: lineReveal .9s var(--ease-out) 1.8s forwards; }
@keyframes lineReveal { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.hero__sub { font-size: clamp(.9rem, 1.8vw, 1.05rem); font-weight: 300; line-height: 1.9; color: rgba(244,238,230,.42); max-width: 480px; margin-bottom: 2.2rem; opacity: 0; animation: fadeSlideUp .7s var(--ease-out) 2s forwards; }
.hero__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeSlideUp .7s var(--ease-out) 2.15s forwards; }

/* ──── Hero Card internals ──── */
.hcard__header { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.5rem .8rem; flex-wrap: wrap; gap: .5rem; }
.hcard__date { font-size: .55rem; letter-spacing: .16em; text-transform: uppercase; color: var(--grey-3); }
.hcard__banner { display: none; align-items: center; gap: .9rem; padding: .8rem 1.5rem; background: rgba(196,66,31,.05); border-top: 1px solid var(--closed-border); border-bottom: 1px solid var(--closed-border); }
.hcard__banner--visible { display: flex; }
.hcard__banner-ico { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.2); flex-shrink: 0; }
.hcard__banner-titulo { display: block; font-size: .56rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--closed-light); margin-bottom: .12rem; }
.hcard__banner-sub { display: block; font-size: .76rem; font-weight: 300; color: rgba(255,255,255,.3); }
.hcard__divider { height: 1px; background: rgba(255,255,255,.06); }
.hcard__turnos { padding: .3rem 1.5rem; }
.hcard__turno { display: flex; align-items: center; gap: .9rem; padding: .7rem 0; transition: all .3s; }
.hcard__turno + .hcard__turno { border-top: 1px solid rgba(255,255,255,.04); }
.hcard__turno-ico { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.18); flex-shrink: 0; transition: color .3s; }
.hcard__turno-ico svg { width: 18px; height: 18px; }
.hcard__turno-label { display: block; font-size: .5rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--grey-3); margin-bottom: .18rem; }
.hcard__turno-hora { display: block; font-family: var(--serif); font-size: 1.45rem; font-weight: 700; color: var(--white); line-height: 1; }
.hcard__turno--activo .hcard__turno-hora { color: var(--open-light); }
.hcard__turno--activo .hcard__turno-ico { color: var(--open-light); opacity: .6; }
.hcard__esp { padding: .9rem 1.5rem; display: flex; flex-direction: column; gap: .3rem; }
.hcard__esp-label { font-size: .5rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--grey-3); }
.hcard__esp-nombre { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; font-style: italic; color: var(--gold); margin-bottom: .4rem; }
.hcard__esp-img { height: 100px; overflow: hidden; border: 1px solid var(--border); background: linear-gradient(135deg, rgba(201,169,110,.12) 0%, rgba(194,62,26,.08) 50%, rgba(7,6,10,.6) 100%); position: relative; }
.hcard__esp-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: brightness(.85) saturate(1.2); transition: filter .4s; display: block; }
.hcard__sedes { padding: .8rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.hcard__sede { display: flex; align-items: center; gap: .5rem; font-size: .7rem; font-weight: 300; color: var(--grey-2); }
.hcard__sede svg { color: var(--grey-3); flex-shrink: 0; }
.hcard__sede--new { color: var(--tix-2); }
.hcard__sede--new svg { color: var(--tix); }
.hcard__sede-badge { margin-left: auto; padding: .1rem .5rem; font-size: .47rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; background: var(--tix-dim); border: 1px solid rgba(155,94,58,.3); color: var(--tix-2); }
.hcard__cta { padding: 1.1rem 1.5rem; }

/* ══════ MARQUEE ══════ */
.marquee { overflow: hidden; padding: .9rem 0; background: var(--ink-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; z-index: 2; }
.marquee__track { display: inline-flex; align-items: center; gap: 1.8rem; animation: marquee 60s linear infinite; white-space: nowrap; }
.marquee__track span { font-size: .55rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; color: rgba(244,238,230,.14); }
.marquee__track em { color: rgba(194,62,26,.35); font-style: normal; font-size: .65rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ══════ NOSOTROS ══════ */
.nosotros-sec { position: relative; }
.nosotros { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(3.5rem, 8vw, 8rem); align-items: center; position: relative; z-index: 1; }
.nosotros__media { position: relative; }
.nosotros__photos { position: relative; }
.nosotros__photo-main { position: relative; aspect-ratio: 3/4; overflow: hidden; border: 1px solid var(--border-md); background: linear-gradient(135deg, rgba(194,62,26,.15) 0%, rgba(201,169,110,.08) 40%, rgba(7,6,10,.8) 100%); display: flex; align-items: center; justify-content: center; }
.nosotros__photo-main::before { content: 'Encanto'; font-family: var(--serif); font-size: 4rem; font-weight: 700; font-style: italic; color: rgba(255,255,255,.04); letter-spacing: -.02em; line-height: 1; position: absolute; text-align: center; }
.nosotros__photo-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; position: relative; z-index: 1; }
.nosotros__photo-main:hover img { transform: scale(1.05); }
.nosotros__photo-frame { position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.12); pointer-events: none; z-index: 2; }
.nosotros__photo-frame::before, .nosotros__photo-frame::after { content: ''; position: absolute; width: 24px; height: 24px; }
.nosotros__photo-frame::before { top: -1px; left: -1px; border-top: 2px solid var(--accent-2); border-left: 2px solid var(--accent-2); }
.nosotros__photo-frame::after  { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.nosotros__photo-sec { position: absolute; bottom: -3rem; right: -3rem; width: 55%; aspect-ratio: 4/3; overflow: hidden; border: 2px solid var(--ink); box-shadow: 0 20px 60px rgba(0,0,0,.6); z-index: 2; }
.nosotros__photo-sec img { width: 100%; height: 100%; object-fit: cover; }
.nosotros__quote { position: absolute; top: 2rem; left: -2rem; width: 78%; z-index: 3; background: rgba(14,13,19,.9); border: 1px solid var(--border-md); padding: 1.4rem; backdrop-filter: blur(20px); box-shadow: 0 24px 60px rgba(0,0,0,.6); }
.nosotros__quote blockquote { font-family: var(--serif); font-size: .92rem; font-style: italic; color: var(--grey-1); line-height: 1.6; margin-bottom: .5rem; }
.nosotros__quote figcaption { font-size: .54rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.nosotros__body { display: flex; flex-direction: column; gap: .8rem; padding-bottom: 4rem; }
.nosotros__stats { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: .5rem 0; }
.nstat { display: flex; flex-direction: column; gap: .22rem; }
.nstat__n { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: -.03em; }
.nstat__l { font-size: .52rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--grey-3); }
.nstat__sep { width: 1px; height: 40px; background: var(--border); }
.pilares { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.pilar { padding: 1.2rem; border: 1px solid var(--border); background: rgba(255,255,255,.015); transition: background .3s, border-color .3s; }
.pilar:hover { background: rgba(255,255,255,.03); border-color: var(--border-md); }
.pilar__n { display: block; font-family: var(--serif); font-size: 1.8rem; font-weight: 700; font-style: italic; color: var(--accent-2); opacity: .4; line-height: 1; margin-bottom: .4rem; }
.pilar__t { font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--white); margin-bottom: .4rem; }
.pilar__d { font-size: .8rem; font-weight: 300; color: var(--grey-3); line-height: 1.75; }

/* ══════════════════════════════════════
   MENÚ — CORRECCIÓN CRÍTICA TABS MÓVIL
══════════════════════════════════════ */
.menu-head { background: var(--ink); border-bottom: 1px solid var(--border); padding: clamp(2.5rem,6vw,5.5rem) 0 0; position: relative; z-index: 2; }
.menu-head__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; padding-bottom: clamp(2rem,5vw,4rem); flex-wrap: wrap; }
.menu-head__sub { font-size: .9rem; font-weight: 300; color: var(--grey-3); max-width: 340px; line-height: 1.85; margin-top: .5rem; }

/* FIX CRÍTICO: overflow-x: auto siempre, no overflow: hidden */
.menu-tabs {
    display: flex;
    border: 1px solid var(--border-md);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-shrink: 0;
    /* NO min-width: max-content aquí — era la causa del corrupto en móvil */
}
.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
    display: flex; flex-direction: column; align-items: center; gap: .28rem;
    padding: 1.1rem 1.6rem; min-width: 96px; text-align: center;
    border-right: 1px solid var(--border-md);
    transition: background .25s, color .25s;
    flex-shrink: 0; /* CRÍTICO: no dejar que los tabs se compriman */
    min-height: 68px; position: relative; overflow: hidden;
    cursor: pointer;
}
.menu-tab:last-child { border-right: none; }
.menu-tab__ico { display: flex; align-items: center; justify-content: center; color: var(--grey-3); transition: color .25s; height: 20px; }
.menu-tab__ico svg { width: 16px; height: 16px; }
.menu-tab__name { font-size: .57rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--grey-3); transition: color .25s; white-space: nowrap; }
.menu-tab__time { font-size: .5rem; font-weight: 300; color: rgba(255,255,255,.08); transition: color .25s; white-space: nowrap; }
.menu-tab--on { background: var(--white); }
.menu-tab--on .menu-tab__ico,
.menu-tab--on .menu-tab__name { color: var(--ink); }
.menu-tab--on .menu-tab__time { color: rgba(14,13,12,.35); }
.menu-tab:not(.menu-tab--on):hover { background: var(--ink-hover); }
.menu-tab:not(.menu-tab--on):hover .menu-tab__ico,
.menu-tab:not(.menu-tab--on):hover .menu-tab__name { color: var(--grey-1); }

.menu-panel { padding: clamp(2rem,5vw,4rem) 0; background: var(--ink-2); }
.menu-panel--off { display: none; }

/* Featured */
.featured { display: grid; grid-template-columns: 420px 1fr; border: 1px solid var(--border-md); margin-bottom: clamp(1.5rem,4vw,3rem); overflow: hidden; transition: box-shadow .4s; background: var(--ink-card); }
.featured:hover { box-shadow: 0 0 0 1px var(--border-lg), 0 24px 64px rgba(0,0,0,.5); }
.featured__img-side { position: relative; overflow: hidden; min-height: 300px; border-right: 1px solid var(--border-md); background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(194,62,26,.25) 0%, transparent 65%), linear-gradient(160deg, #0f0c14 0%, #1a0d0a 50%, #0c0b10 100%); display: flex; align-items: center; justify-content: center; }
.featured__img-side::before { content: 'E'; font-family: var(--serif); font-size: 8rem; font-weight: 900; font-style: italic; color: rgba(255,255,255,.035); position: absolute; z-index: 0; letter-spacing: -.05em; line-height: 1; pointer-events: none; }
.featured__img-side img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease, filter .4s; filter: brightness(.75) saturate(1.2); position: relative; z-index: 1; }
.featured:hover .featured__img-side img { transform: scale(1.08); filter: brightness(.88) saturate(1.3); }
.featured__img-badge { position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2; padding: .25rem .9rem; background: var(--gold-dim); border: 1px solid rgba(201,169,110,.3); font-size: .52rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); backdrop-filter: blur(8px); }
.featured__text { padding: clamp(1.8rem,4vw,2.8rem); display: flex; flex-direction: column; gap: .65rem; justify-content: center; }
.featured__cat { font-size: .54rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--grey-3); }
.featured__name { font-family: var(--serif); font-size: clamp(1.9rem,3.2vw,3rem); font-weight: 700; color: var(--white); line-height: 1; letter-spacing: -.025em; }
.featured__desc { font-size: .9rem; font-weight: 300; color: rgba(244,238,230,.4); line-height: 1.9; max-width: 440px; }
.featured__footer { display: flex; align-items: center; gap: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.featured__price { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: var(--white); }
.featured__avail { font-size: .55rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--grey-3); }

/* Dish grid */
.dish-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border-md); background: var(--border); gap: 1px; }
.dish { display: flex; align-items: stretch; background: var(--ink-card); transition: background .22s; overflow: hidden; min-height: 100px; }
.dish:hover { background: var(--ink-hover); }
.dish--star { background: rgba(201,169,110,.02); }
.dish__img { width: 110px; min-width: 110px; flex-shrink: 0; overflow: hidden; border-right: 1px solid var(--border); background: linear-gradient(135deg, rgba(194,62,26,.12) 0%, rgba(7,6,10,.8) 100%); display: flex; align-items: center; justify-content: center; position: relative; align-self: stretch; }
.dish__img::before { content: '×'; font-family: var(--serif); font-size: 1.4rem; color: rgba(201,169,110,.14); position: absolute; font-style: italic; }
.dish__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.75) saturate(1.15); transition: filter .3s, transform .5s var(--ease-out); z-index: 1; }
.dish:hover .dish__img img { filter: brightness(.9) saturate(1.3); transform: scale(1.05); }
.dish__content { padding: 1.1rem 1.4rem; flex: 1; min-width: 0; }
.dish__row { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .35rem; flex-wrap: wrap; }
.dish__name { font-family: var(--serif); font-size: 1.08rem; font-weight: 600; color: var(--white); flex: 1; min-width: 0; }
.dish__price { font-family: var(--serif); font-size: .98rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.dish__desc { font-size: .78rem; font-weight: 300; color: rgba(244,238,230,.32); line-height: 1.75; }

/* ══════ EVENTOS ══════ */
.eventos-sec { position: relative; }
.eventos-header { display: flex; flex-direction: column; gap: .5rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); border-bottom: 1px solid var(--border); }
.eventos-header__sub { font-size: .95rem; font-weight: 300; color: rgba(244,238,230,.35); line-height: 1.9; max-width: 500px; }
.evento-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border-md); border: 1px solid var(--border-md); margin-bottom: clamp(1.5rem, 4vw, 3rem); overflow: hidden; }
.evento-featured__img { position: relative; overflow: hidden; min-height: 480px; background: radial-gradient(ellipse 70% 60% at 40% 40%, rgba(232,101,26,.25) 0%, transparent 60%), linear-gradient(160deg, #0f0a14 0%, #180e0a 50%, #100a18 100%); display: flex; align-items: flex-end; justify-content: flex-start; }
.evento-featured__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(1.3); transition: transform 8s ease, filter .4s; z-index: 1; }
.evento-featured:hover .evento-featured__img img { transform: scale(1.06); filter: brightness(.65) saturate(1.4); }
.evento-featured__img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,6,10,.95) 0%, rgba(7,6,10,.3) 40%, transparent 100%); z-index: 2; }
.evento-featured__badges { position: absolute; top: 1.2rem; left: 1.2rem; z-index: 3; display: flex; gap: .5rem; flex-wrap: wrap; }
.evento-badge { display: inline-flex; align-items: center; gap: .4rem; padding: .24rem .9rem; font-size: .5rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; backdrop-filter: blur(8px); }
.evento-badge--temporada { background: rgba(232,101,26,.12); border: 1px solid rgba(232,101,26,.4); color: #E8886A; }
.evento-badge__pulse { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: #E8886A; animation: pulse 2s ease-in-out infinite; }
.evento-badge--tipo { background: rgba(123,63,160,.1); border: 1px solid rgba(123,63,160,.35); color: #A87ED0; }
.evento-featured__fecha-stamp { position: absolute; bottom: 1.4rem; left: 1.4rem; z-index: 3; display: flex; flex-direction: column; align-items: center; background: rgba(232,101,26,.12); border: 1px solid rgba(232,101,26,.35); padding: .6rem .9rem; backdrop-filter: blur(12px); min-width: 54px; text-align: center; }
.evento-fecha__mes { font-size: .46rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: #E8886A; display: block; }
.evento-fecha__dia { font-family: var(--serif); font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; display: block; }
.evento-featured__body { background: var(--ink-card); padding: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; gap: 1.2rem; justify-content: center; }
.evento-featured__meta { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.evento-meta-tag { display: inline-flex; align-items: center; gap: .38rem; padding: .2rem .78rem; font-size: .5rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-2); border: 1px solid var(--border); background: rgba(255,255,255,.02); }
.evento-meta-tag svg { color: var(--hw-orange); flex-shrink: 0; width: 10px; height: 10px; }
.evento-featured__eyebrow { font-size: .55rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: #E8886A; }
.evento-featured__titulo { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; color: var(--white); line-height: .95; letter-spacing: -.025em; }
.evento-featured__titulo em { font-style: italic; color: #E8886A; font-weight: 400; }
.evento-featured__desc { font-size: .9rem; font-weight: 300; color: rgba(244,238,230,.4); line-height: 1.9; max-width: 460px; }
.evento-featured__desc strong { color: rgba(244,238,230,.7); font-weight: 500; }
.evento-featured__highlights { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.evento-highlight { display: flex; align-items: flex-start; gap: .7rem; }
.evento-highlight__ico { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: rgba(232,101,26,.7); }
.evento-highlight__ico svg { width: 22px; height: 22px; }
.evento-highlight__titulo { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: .2rem; }
.evento-highlight__sub { display: block; font-size: .76rem; font-weight: 300; color: var(--grey-3); line-height: 1.55; }
.evento-featured__cta { display: flex; gap: .8rem; padding-top: .5rem; flex-wrap: wrap; }
.eventos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border-md); border: 1px solid var(--border-md); margin-bottom: 1.5rem; }
.evento-card { background: var(--ink-card); padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1rem; transition: background .22s; }
.evento-card:hover { background: var(--ink-hover); }
.evento-card__ico-wrap { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-md); background: rgba(255,255,255,.02); flex-shrink: 0; color: rgba(255,255,255,.25); }
.evento-card__mes { font-size: .5rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--grey-3); }
.evento-card__titulo { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--white); line-height: 1.1; }
.evento-card__desc { font-size: .82rem; font-weight: 300; color: rgba(244,238,230,.35); line-height: 1.8; margin-top: .2rem; }
.evento-card__status { display: inline-flex; align-items: center; gap: .35rem; padding: .22rem .75rem; font-size: .52rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-top: .5rem; align-self: flex-start; border: 1px solid; transition: all .2s; }
.evento-card__status--pronto { color: var(--grey-3); border-color: var(--border); background: rgba(255,255,255,.02); }
.evento-card__status--activo { color: var(--gold); border-color: rgba(201,169,110,.3); background: var(--gold-dim); }
.evento-card__status--activo:hover { background: rgba(201,169,110,.2); border-color: rgba(201,169,110,.5); transform: translateX(3px); }
.eventos-nota { display: flex; align-items: flex-start; gap: .6rem; font-size: .8rem; font-weight: 300; color: var(--grey-3); line-height: 1.8; padding: .9rem 1.2rem; border: 1px solid var(--border); background: rgba(255,255,255,.015); }
.eventos-nota svg { flex-shrink: 0; margin-top: .12rem; color: var(--grey-3); }
.eventos-nota a { color: var(--grey-2); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.eventos-nota a:hover { color: var(--white); }

/* ══════ GALERÍA ══════ */
.galeria-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(1.5rem,3.5vw,2.5rem); padding-bottom: clamp(1.5rem,3.5vw,2.5rem); border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.galeria-filters { display: flex; border: 1px solid var(--border-md); overflow-x: auto; scrollbar-width: none; }
.galeria-filters::-webkit-scrollbar { display: none; }
.galeria-filter { padding: .82rem 1.2rem; font-size: .56rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-3); border-right: 1px solid var(--border); cursor: pointer; white-space: nowrap; transition: all .22s; min-height: 46px; flex-shrink: 0; }
.galeria-filter:last-child { border-right: none; }
.galeria-filter:hover { color: var(--grey-1); background: var(--ink-hover); }
.galeria-filter--on { color: var(--white); background: rgba(244,238,230,.05); border-bottom: 2px solid var(--accent-2); }

.gal-mosaic { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: 280px 220px 240px; gap: 2px; background: var(--border); }
.gal-item--area-xl   { grid-column: 1; grid-row: 1 / 3; }
.gal-item--area-a    { grid-column: 2; grid-row: 1; }
.gal-item--area-tall { grid-column: 3; grid-row: 1 / 3; }
.gal-item--area-b    { grid-column: 2; grid-row: 2; }
.gal-item--area-c    { grid-column: 1; grid-row: 3; }
.gal-item--area-d    { grid-column: 2; grid-row: 3; }
.gal-item--area-e    { grid-column: 3; grid-row: 3; }

.gal-item {
    position: relative; overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(194,62,26,.14) 0%, transparent 65%), linear-gradient(135deg, #0f0c14 0%, #0c0b10 100%);
    cursor: pointer; /* IMPORTANTE: cursor pointer no none, para que sea clickeable en móvil */
}
.gal-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out), filter .4s; filter: brightness(.6) saturate(1.1); z-index: 1; display: block; }
.gal-item:hover img { transform: scale(1.08); filter: brightness(.75) saturate(1.3); }
.gal-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,6,10,.85) 0%, rgba(7,6,10,.2) 50%, transparent 75%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.1rem 1.3rem; transition: background .35s; z-index: 2; pointer-events: none; /* FIX: overlay no bloquea clicks */ }
.gal-item:hover .gal-overlay { background: linear-gradient(to top, rgba(7,6,10,.92) 0%, rgba(7,6,10,.2) 50%, transparent 75%); }
.gal-overlay--accent { background: linear-gradient(to top, rgba(7,6,10,.95) 0%, rgba(194,62,26,.06) 55%, transparent 78%); }
.gal-tag { display: inline-flex; align-self: flex-start; padding: .18rem .68rem; font-size: .49rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px); margin-bottom: .5rem; }
.gal-tag--gold { color: var(--gold); border-color: rgba(201,169,110,.3); }
.gal-overlay__info { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.gal-overlay__name { font-family: var(--serif); font-size: clamp(.9rem, 2vw, 1.2rem); font-weight: 600; color: var(--white); line-height: 1; }
.gal-overlay__sub { font-size: .7rem; font-weight: 300; color: rgba(244,238,230,.45); }
.gal-overlay__price { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.gal-zoom { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.18); background: rgba(7,6,10,.65); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); backdrop-filter: blur(8px); opacity: 0; transform: scale(.75); transition: all .25s; z-index: 3; pointer-events: none; }
.gal-zoom svg { width: 14px; height: 14px; }
.gal-item:hover .gal-zoom { opacity: 1; transform: scale(1); color: var(--white); }
@media (hover: none) { .gal-item .gal-zoom { opacity: 1; transform: scale(1); color: rgba(255,255,255,.7); } }

.galeria-ig { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: clamp(1.5rem,3vw,2.5rem); padding-top: clamp(1.5rem,3vw,2.5rem); border-top: 1px solid var(--border); flex-wrap: wrap; }
.galeria-ig__quote { display: flex; align-items: flex-start; gap: 1.3rem; flex: 1; min-width: 200px; }
.galeria-ig__rule { width: 28px; height: 1.5px; background: var(--accent-2); flex-shrink: 0; margin-top: .6rem; }
.galeria-ig__quote blockquote { font-family: var(--serif); font-size: clamp(1rem, 1.8vw, 1.55rem); font-style: italic; color: rgba(244,238,230,.4); line-height: 1.5; }
.galeria-ig__quote em { color: var(--accent-2); font-style: normal; }
.galeria-ig__cta { display: inline-flex; align-items: center; gap: .6rem; font-size: .59rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-2); padding: .85rem 1.5rem; border: 1px solid var(--border-md); white-space: nowrap; flex-shrink: 0; transition: all .2s; min-height: 46px; }
.galeria-ig__cta:hover { color: var(--white); border-color: var(--border-lg); }

/* ══════ SUCURSALES ══════ */
.suc-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2rem,4vw,3.5rem); padding-bottom: clamp(2rem,4vw,3.5rem); border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.suc-header__sub { font-size: .9rem; font-weight: 300; color: rgba(244,238,230,.35); max-width: 360px; line-height: 1.9; }
.suc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border-md); border: 1px solid var(--border-md); }
.suc-card { background: var(--ink-card); display: flex; flex-direction: column; transition: background .22s; }
.suc-card:hover { background: var(--ink-hover); }
.suc-card__img-wrap { position: relative; height: 280px; overflow: hidden; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(194,62,26,.2) 0%, transparent 65%), linear-gradient(160deg, #0f0c14 0%, #1a0d0a 50%, #0c0b10 100%); display: flex; align-items: center; justify-content: center; }
.suc-card--motul .suc-card__img-wrap::before { content: 'Motul'; font-family: var(--serif); font-size: 3rem; font-weight: 900; font-style: italic; color: rgba(255,255,255,.04); letter-spacing: -.03em; position: absolute; }
.suc-card--tixkokob .suc-card__img-wrap::before { content: 'Tixkokob'; font-family: var(--serif); font-size: 2.2rem; font-weight: 900; font-style: italic; color: rgba(255,255,255,.04); letter-spacing: -.03em; position: absolute; }
.suc-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(1.1); transition: transform 6s ease, filter .4s; position: relative; z-index: 1; }
.suc-card:hover .suc-card__img-wrap img { transform: scale(1.06); filter: brightness(.65) saturate(1.3); }
.suc-card__img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,6,10,.9) 0%, transparent 60%); z-index: 2; }
.suc-card__img-wrap--tix { background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(155,94,58,.2) 0%, transparent 60%), linear-gradient(160deg, #0f0b09 0%, #1a1208 50%, #0c0b10 100%); }
.suc-card__img-overlay--tix { background: linear-gradient(to top, rgba(7,6,10,.95) 0%, rgba(155,94,58,.06) 60%, transparent 100%); }
.suc-badge { position: absolute; top: 1.2rem; left: 1.2rem; z-index: 3; display: inline-flex; align-items: center; gap: .45rem; padding: .24rem .9rem; font-size: .5rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); background: rgba(201,169,110,.08); border: 1px solid rgba(201,169,110,.25); backdrop-filter: blur(8px); }
.suc-badge--nueva { color: var(--tix-2); background: var(--tix-dim); border-color: rgba(155,94,58,.35); }
.suc-badge__pulse { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--tix-2); animation: pulse 2s ease-in-out infinite; }
.suc-card__body { padding: 1.8rem 2rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.suc-lugar-tag { display: inline-flex; align-items: center; gap: .38rem; padding: .2rem .72rem; font-size: .5rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-2); border: 1px solid var(--border); background: rgba(255,255,255,.02); }
.suc-lugar-tag svg { color: var(--accent-2); }
.suc-lugar-tag--tix { color: var(--tix-2); border-color: rgba(155,94,58,.25); background: var(--tix-dim); }
.suc-lugar-tag--tix svg { color: var(--tix-2); }
.suc-card__nombre { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--white); letter-spacing: -.025em; line-height: 1.05; }
.suc-card__dir { font-size: .85rem; font-weight: 300; color: var(--grey-2); line-height: 1.9; }
.suc-turnos { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; padding: .95rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.suc-turno { display: flex; align-items: center; gap: .65rem; }
.suc-turno > span:first-child { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; flex-shrink: 0; color: rgba(255,255,255,.15); }
.suc-turno div { display: flex; flex-direction: column; }
.suc-turno div span { font-size: .5rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-3); margin-bottom: .16rem; }
.suc-turno div b { font-family: var(--serif); font-size: 1.08rem; font-weight: 700; color: var(--white); font-style: normal; }
.suc-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.suc-tag { padding: .18rem .72rem; font-size: .51rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--grey-3); border: 1px solid var(--border); }
.suc-tag--new { color: var(--tix-2); border-color: rgba(155,94,58,.35); background: var(--tix-dim); }
.suc-card__acciones { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: auto; padding-top: .5rem; }

/* ══════ HORARIOS & CONTACTO ══════ */
.info-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(1.5rem,4vw,3rem); padding-bottom: clamp(1.5rem,4vw,3rem); border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.info-top__btns { display: flex; gap: .9rem; flex-shrink: 0; flex-wrap: wrap; }
.estado-live { display: flex; align-items: center; justify-content: space-between; padding: .95rem 1.4rem; border: 1px solid var(--border-md); background: var(--ink-card); margin-bottom: 1.3rem; gap: 1rem; flex-wrap: wrap; }
.estado-live__left { display: flex; align-items: center; gap: .75rem; }
.estado-live__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.estado-live__dot--open { background: var(--open-color); animation: pulse 2s ease-in-out infinite; }
.estado-live__dot--closed { background: var(--closed-color); }
.estado-live__label { font-size: .78rem; font-weight: 600; color: var(--white); }
.estado-live__detalle { font-size: .72rem; font-weight: 300; color: var(--grey-2); }
.turnos { display: flex; border: 1px solid var(--border-md); margin-bottom: 1rem; overflow: hidden; }
.turno-block { flex: 1; display: flex; align-items: center; gap: 1.6rem; padding: 2rem; transition: background .22s; }
.turno-block:hover { background: var(--ink-hover); }
.turno-block + .turno-block { border-left: 1px solid var(--border-md); }
.turno-block__ico { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0; color: rgba(255,255,255,.1); transition: color .3s; }
.turno-block__ico svg { width: 28px; height: 28px; }
.turno-block:hover .turno-block__ico { color: rgba(255,255,255,.2); }
.turno-block__info { display: flex; flex-direction: column; gap: .28rem; }
.turno-block__nombre { font-size: .55rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--grey-3); }
.turno-block__hora { font-family: var(--serif); font-size: clamp(1.8rem,3.2vw,2.8rem); font-weight: 700; color: var(--white); line-height: 1; letter-spacing: -.02em; }
.turno-block__dias { font-size: .78rem; font-weight: 300; color: var(--grey-3); }
.turno-block__tag { margin-left: auto; flex-shrink: 0; padding: .28rem .85rem; border: 1px solid var(--border-md); font-size: .53rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--grey-3); }
.turno-divider { width: 1px; background: var(--border-md); flex-shrink: 0; }
.turno-block--activo .turno-block__hora { color: var(--open-light); }
.turno-block--activo .turno-block__ico { color: rgba(92,181,89,.35); }
.nota-horarios { font-size: .83rem; font-weight: 300; color: var(--grey-3); line-height: 1.8; padding: .9rem 1.1rem; border-left: 2px solid var(--accent-dim); background: rgba(194,62,26,.03); margin-bottom: clamp(1.5rem,4vw,3rem); }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,4vw,3rem); padding-top: clamp(1.5rem,4vw,3rem); border-top: 1px solid var(--border); }
.info-bloque__title { font-family: var(--serif); font-size: 1.55rem; font-weight: 700; color: var(--white); letter-spacing: -.015em; margin-bottom: 1rem; }
.info-dir { font-size: .86rem; font-weight: 300; color: var(--grey-2); line-height: 1.9; margin-bottom: 1.1rem; }
.mapa-wrap { display: block; height: 192px; background: var(--ink-card); border: 1px solid var(--border-md); overflow: hidden; margin-bottom: .75rem; position: relative; transition: border-color .25s; }
.mapa-wrap:hover { border-color: rgba(255,255,255,.2); }
.mapa-wrap iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05) invert(1) brightness(.72); opacity: .42; pointer-events: none; }
.mapa-wrap__overlay { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(7,6,10,.9); padding: .55rem 1rem; font-size: .58rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--white); text-align: center; transform: translateY(100%); transition: transform .28s var(--ease-out); }
.mapa-wrap:hover .mapa-wrap__overlay { transform: none; }
.mapa-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--grey-2); transition: color .2s; padding: .3rem 0; }
.mapa-link:hover { color: var(--white); }
.contact-list { display: flex; flex-direction: column; }
.c-row { display: flex; align-items: center; gap: .9rem; padding: .88rem 0; border-bottom: 1px solid var(--border); transition: all .2s; min-height: 54px; }
.c-row:last-child { border-bottom: none; }
.c-row:hover .c-row__v { color: var(--white); }
.c-row__ico { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); color: var(--grey-2); flex-shrink: 0; transition: all .2s; }
.c-row:hover .c-row__ico { border-color: var(--border-md); color: var(--white); }
.c-row__l { font-size: .51rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--grey-3); display: block; margin-bottom: .14rem; }
.c-row__v { font-size: .84rem; font-weight: 300; color: var(--grey-2); transition: color .2s; word-break: break-all; overflow: hidden; text-overflow: ellipsis; }
.c-row__arrow { margin-left: auto; color: var(--grey-3); flex-shrink: 0; transition: all .2s; }
.c-row:hover .c-row__arrow { color: var(--white); transform: translate(2px,-2px); }
.form { display: flex; flex-direction: column; gap: .95rem; }
.form-g { display: flex; flex-direction: column; gap: .32rem; }
.form-l { font-size: .55rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-3); }
.form-inp { padding: .85rem 1.05rem; border: 1px solid var(--border-md); background: var(--ink-card); font-family: var(--sans); font-size: .94rem; font-weight: 300; color: var(--white); outline: none; width: 100%; border-radius: 0; -webkit-appearance: none; transition: border-color .22s, box-shadow .22s; }
.form-inp:focus { border-color: rgba(255,255,255,.26); box-shadow: 0 0 0 3px rgba(255,255,255,.03); }
.form-inp::placeholder { color: var(--grey-4); }
.form-ta { resize: vertical; min-height: 105px; }
.form-note { font-size: .68rem; font-weight: 300; color: var(--grey-3); text-align: center; line-height: 1.6; }

/* ══════ CTA FINAL ══════ */
.cta-section { padding: 0; position: relative; overflow: hidden; min-height: 480px; display: flex; align-items: center; }
.cta-section__bg-img { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 80% 60% at 35% 50%, rgba(194,62,26,.2) 0%, transparent 60%), linear-gradient(135deg, #07060A 0%, #130e0a 50%, #07060A 100%); }
.cta-section__bg-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.2) saturate(1.1); }
.cta-section__bg-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,6,10,.92) 0%, rgba(194,62,26,.08) 50%, rgba(7,6,10,.88) 100%); }
.cta-section__inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; position: relative; z-index: 1; padding-top: clamp(3.5rem,8vw,6rem); padding-bottom: clamp(3.5rem,8vw,6rem); flex-wrap: wrap; }
.cta-section__text { flex: 1; min-width: 260px; }
.cta-section__btns { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }
.cta-sedes-hint { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-top: 1.2rem; }
.cta-sedes-hint svg { width: 10px; height: 10px; flex-shrink: 0; }
.cta-sedes-hint span { font-size: .7rem; font-weight: 300; color: var(--grey-3); }
.cta-sedes-sep { color: var(--border-md); }

/* ══════════════════════════════════════
   FOOTER — REDISEÑO LIMPIO PARA MÓVIL
══════════════════════════════════════ */
.footer { background: var(--ink); border-top: 1px solid var(--border); }
.footer__top { padding: clamp(2.5rem,5vw,4.5rem) 0 clamp(2rem,4vw,3.5rem); }
.footer__top-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(3rem,6vw,6rem); align-items: start; }
.footer__logo { font-family: var(--serif); font-size: 2.1rem; font-weight: 700; color: var(--white); display: inline-block; letter-spacing: -.02em; margin-bottom: .8rem; line-height: 1; }
.footer__logo em { font-style: italic; color: var(--accent-2); font-weight: 400; }
.footer__tag { font-size: .83rem; font-weight: 300; color: var(--grey-3); line-height: 1.9; max-width: 270px; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer__social a { display: flex; align-items: center; justify-content: center; gap: .35rem; height: 40px; padding: 0 .9rem; border: 1px solid var(--border); color: var(--grey-3); transition: all .2s; font-size: .75rem; }
.footer__social a svg { width: 14px; height: 14px; }
.footer__social a:hover { border-color: var(--border-md); color: var(--white); }
.footer__links { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2rem; }
.footer__col h3 { font-size: .53rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--grey-3); margin-bottom: 1.1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border); }
.footer__col ul { display: flex; flex-direction: column; gap: .52rem; }
.footer__col a { font-size: .84rem; font-weight: 300; color: var(--grey-3); transition: color .2s; min-height: 28px; display: flex; align-items: center; }
.footer__col a:hover { color: var(--grey-1); }
.footer__sede-link { display: flex; align-items: flex-start; gap: .6rem; padding: .65rem .85rem; border: 1px solid var(--border); background: rgba(255,255,255,.015); transition: all .2s; margin-bottom: .3rem; font-size: .8rem; color: var(--grey-2) !important; line-height: 1.45; min-height: auto !important; }
.footer__sede-link svg { width: 10px; height: 10px; margin-top: .25rem; flex-shrink: 0; }
.footer__sede-link:hover { border-color: var(--border-md); background: rgba(255,255,255,.03); color: var(--grey-1) !important; }
.footer__sede-link--new { border-color: rgba(155,94,58,.2); background: rgba(155,94,58,.04); }
.footer__sede-link strong { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: .1rem; }
.footer__sede-badge { display: inline-block; padding: .08rem .45rem; font-size: .45rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; background: var(--tix-dim); border: 1px solid rgba(155,94,58,.3); color: var(--tix-2); margin-left: .35rem; vertical-align: middle; }
.footer__bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; }
.footer__bottom-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .62rem; font-weight: 300; color: var(--grey-4); letter-spacing: .06em; flex-wrap: wrap; }

/* ══════════════════════════════════════
   LIGHTBOX — ROBUSTO Y SIMPLIFICADO
══════════════════════════════════════ */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    opacity: 0; pointer-events: none;
    transition: opacity .4s var(--ease-out);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(3,2,6,.96); backdrop-filter: blur(16px); z-index: 0; }
.lightbox__inner {
    position: relative; z-index: 2;
    max-width: min(960px, 95vw); width: 100%;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    transform: scale(.92) translateY(16px);
    transition: transform .45s var(--ease-out);
}
.lightbox.open .lightbox__inner { transform: none; }
.lightbox__img-wrap {
    position: relative; width: 100%;
    border: 1px solid var(--border-md); overflow: hidden;
    min-height: 200px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(194,62,26,.1) 0%, rgba(7,6,10,.8) 100%);
}
/* FIX: img con transición de opacity directa — sin clase .loading */
.lightbox__img {
    display: block;
    max-width: 100%; max-height: 75vh;
    object-fit: contain;
    transition: opacity .3s ease;
}
.lightbox__caption { font-size: .65rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--grey-2); text-align: center; min-height: 1.2em; }
.lightbox__close {
    position: fixed; top: 1rem; right: 1rem; z-index: 10;
    width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
    background: rgba(7,6,10,.88); border: 1px solid var(--border-md);
    color: var(--grey-1); transition: all .2s; backdrop-filter: blur(8px);
    cursor: pointer;
}
.lightbox__close:hover { color: var(--white); }
.lightbox__prev, .lightbox__next {
    position: fixed; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    background: rgba(7,6,10,.78); border: 1px solid var(--border-md);
    color: var(--grey-1); transition: all .2s; backdrop-filter: blur(8px);
    cursor: pointer;
}
.lightbox__prev { left: .4rem; }
.lightbox__next { right: .4rem; }
.lightbox__prev:hover, .lightbox__next:hover { color: var(--white); }

/* ══════ WA FLOAT ══════ */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900; display: flex; align-items: center; gap: .6rem; padding: .75rem 1.3rem .75rem 1rem; background: #25D366; color: #fff; border-radius: 100px; box-shadow: 0 6px 24px rgba(37,211,102,.4); transition: all .3s var(--ease-out); -webkit-tap-highlight-color: transparent; }
.wa-float:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(37,211,102,.55); }
.wa-float__label { font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.wa-float--hidden { opacity: 0 !important; pointer-events: none !important; transform: translateY(20px) !important; }

/* ══════════════════════════════════════
   RESPONSIVE ≤ 1100px
══════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero__content { grid-template-columns: 1fr 360px; gap: 2.5rem; }
    .nosotros { grid-template-columns: 1fr; }
    .nosotros__media { display: none; }
    .nosotros__body { padding-bottom: 0; }
    .featured { grid-template-columns: 300px 1fr; }
    .menu-head__inner { flex-direction: column; align-items: flex-start; }
    /* FIX: tabs en tablet — ancho completo */
    .menu-tabs { width: 100%; }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .info-grid > .info-bloque:last-child { grid-column: 1 / -1; }
    .footer__top-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer__links { grid-template-columns: 1fr 1fr; }
    .suc-grid { grid-template-columns: 1fr; }
    .pilares { grid-template-columns: repeat(3,1fr); }
    .gal-mosaic { grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 260px 200px 220px; }
    .evento-featured { grid-template-columns: 1fr; }
    .evento-featured__img { min-height: 340px; }
    .eventos-grid { grid-template-columns: 1fr 1fr; }
    .eventos-grid .evento-card:last-child { grid-column: 1 / -1; }
}

/* ══════════════════════════════════════
   RESPONSIVE ≤ 768px — MÓVIL
══════════════════════════════════════ */
@media (max-width: 768px) {
    :root { --nav-h: 62px; }
    body { cursor: auto; }
    .cursor, .cursor-trail { display: none; }
    button { cursor: pointer; }

    .nav__menu, .nav__cta { display: none; }
    .nav__burger { display: flex; }

    /* ── Hero móvil ── */
    .hero__content {
        grid-template-columns: 1fr;
        grid-template-areas: "left" "card";
        padding-top: calc(var(--nav-h) + 1.8rem);
        padding-bottom: 3.5rem;
        gap: 2rem;
    }
    .hero__card { display: block; }
    .hero__heading { font-size: clamp(3rem, 13vw, 5rem); margin-bottom: 1.4rem; }
    .hero__heading em { -webkit-text-stroke-width: 1px; }
    .hero__sub { font-size: .9rem; margin-bottom: 1.6rem; }
    .hero__actions { flex-wrap: wrap; gap: .7rem; }
    .hero__actions .btn--hero-primary,
    .hero__actions .btn--hero-ghost { flex: 1; min-width: 130px; font-size: .58rem; padding: .9rem 1.2rem; }
    .hero__float-tag { font-size: .58rem; }

    /* ── Menú tabs móvil — FIX PRINCIPAL ── */
    .menu-head__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-bottom: 0;
    }
    .menu-tabs {
        width: 100%;
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--border-md);
        border-bottom: 1px solid var(--border-md);
        /* Scroll horizontal funcional */
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        display: flex;
        flex-wrap: nowrap; /* NO wrap — tabs en línea horizontal */
    }
    .menu-tab {
        min-width: 80px;
        padding: .85rem .9rem;
        flex-shrink: 0; /* CRUCIAL: no comprimir */
    }
    .menu-tab__time { display: none; } /* ocultar en móvil para ahorrar espacio */

    /* ── Menu panel móvil ── */
    .menu-panel { padding: 1.5rem 0; }

    /* ── Featured móvil ── */
    .featured { grid-template-columns: 1fr; }
    .featured__img-side { height: 200px; border-right: none; border-bottom: 1px solid var(--border-md); min-height: unset; }
    .featured__text { padding: 1.5rem; }
    .featured__name { font-size: clamp(1.5rem, 6vw, 2.2rem); }
    .featured__price { font-size: 2rem; }

    /* ── Dish grid 1 columna en móvil ── */
    .dish-grid { grid-template-columns: 1fr; }
    .dish { min-height: 110px; }
    .dish__img { width: 110px; min-width: 110px; min-height: 110px; }
    .dish { min-height: 110px; }
    .dish__img { width: 110px; min-width: 110px; min-height: 110px; }

    /* ── Nosotros ── */
    .nosotros__body { padding-bottom: 0; }
    .nosotros__stats { flex-wrap: wrap; gap: 1.5rem; }
    .pilares { grid-template-columns: 1fr; gap: .8rem; }

    /* ── Galería móvil — 2 columnas simples ── */
    .gal-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        grid-auto-rows: 160px;
    }
    .gal-item--area-xl,
    .gal-item--area-a,
    .gal-item--area-tall,
    .gal-item--area-b,
    .gal-item--area-c,
    .gal-item--area-d,
    .gal-item--area-e { grid-column: auto; grid-row: auto; }
    /* Primera imagen más grande */
    .gal-item--area-xl { grid-column: 1 / -1; grid-row: span 1; height: 200px; }
    .gal-item--area-tall { height: 160px; }
    /* Zoom siempre visible en touch */
    .gal-item .gal-zoom { opacity: 1; transform: scale(1); color: rgba(255,255,255,.8); background: rgba(7,6,10,.75); }

    .galeria-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .galeria-ig { flex-direction: column; gap: 1.2rem; }

    /* ── Eventos móvil ── */
    .evento-featured { grid-template-columns: 1fr; }
    .evento-featured__img { min-height: 260px; }
    .evento-featured__body { padding: 1.5rem; }
    .evento-featured__titulo { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .evento-featured__highlights { grid-template-columns: 1fr; gap: .6rem; }
    .evento-featured__cta { flex-direction: column; }
    .evento-featured__cta .btn { width: 100%; justify-content: center; }
    .eventos-grid { grid-template-columns: 1fr; }
    .eventos-grid .evento-card:last-child { grid-column: auto; }

    /* ── Sucursales móvil ── */
    .suc-grid { grid-template-columns: 1fr; }
    .suc-card__img-wrap { height: 200px; }
    .suc-card__body { padding: 1.4rem; }
    .suc-card__acciones { flex-direction: column; }
    .suc-card__acciones .btn { width: 100%; justify-content: center; }
    .suc-turnos { grid-template-columns: 1fr 1fr; gap: .5rem; }

    /* ── Horarios & Contacto móvil ── */
    .info-top { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    .info-top__btns { width: 100%; flex-direction: column; }
    .info-top__btns .btn { width: 100%; justify-content: center; }
    .estado-live { flex-direction: column; align-items: flex-start; gap: .4rem; }
    .turnos { flex-direction: column; }
    .turno-block { border-left: none !important; border-top: 1px solid var(--border-md); gap: 1rem; padding: 1.2rem; }
    .turno-block:first-child { border-top: none; }
    .turno-block__hora { font-size: clamp(1.6rem, 7vw, 2.4rem); }
    .turno-block__tag { display: none; }
    .turno-divider { display: none; }
    .info-grid { grid-template-columns: 1fr; gap: 2rem; }
    .info-grid > .info-bloque:last-child { grid-column: auto; }

    /* ── CTA final móvil ── */
    .cta-section__inner { flex-direction: column; text-align: center; align-items: center; gap: 2rem; }
    .cta-sedes-hint { justify-content: center; }
    .cta-section__btns { width: 100%; flex-direction: column; align-items: stretch; }
    .cta-section__btns .btn { width: 100%; justify-content: center; }

    /* ── Footer móvil — limpio y ordenado ── */
    .footer__top-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer__links { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer__social { gap: .4rem; }
    .footer__bottom-in {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
        font-size: .6rem;
    }

    /* ── Lightbox móvil ── */
    .lightbox { padding: 1rem; }
    .lightbox__img { max-height: 65vh; }
    .lightbox__prev { left: .2rem; width: 40px; height: 40px; }
    .lightbox__next { right: .2rem; width: 40px; height: 40px; }
    .lightbox__close { top: .5rem; right: .5rem; width: 42px; height: 42px; }

    /* ── WA float móvil ── */
    .wa-float__label { display: none; }
    .wa-float { padding: .82rem; border-radius: 50%; }

    /* ── Heading display móvil ── */
    .heading-display { font-size: clamp(2.2rem, 8vw, 4rem); }

    /* ── Drawer footer móvil ── */
    .drawer__footer { padding: 1rem 1.5rem; gap: .6rem; }
    .footer__sede-link { padding: .5rem .7rem; }
    .footer__sede-link strong { font-size: .65rem; }
}

/* ══════════════════════════════════════
   RESPONSIVE ≤ 480px — PANTALLAS PEQUEÑAS
══════════════════════════════════════ */
@media (max-width: 480px) {
    .hero__heading { font-size: clamp(2.6rem, 12vw, 3.8rem); }

    /* Galería 1 columna en pantallas muy pequeñas */
    .gal-mosaic { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gal-item--area-xl { grid-column: auto; height: 220px; }

    .dish__img { width: 72px; min-width: 72px; }
    .dish__name { font-size: .95rem; }
    .dish__content { padding: .85rem 1rem; }

    .suc-turnos { grid-template-columns: 1fr; }

    /* Footer links 1 columna */
    .footer__links { grid-template-columns: 1fr; gap: 1.5rem; }

    /* Tabs menú — más compacto */
    .menu-tab { min-width: 68px; padding: .8rem .7rem; }
    .menu-tab__name { font-size: .5rem; letter-spacing: .08em; }
    .menu-tab__ico svg { width: 14px; height: 14px; }

    /* Eventos */
    .evento-featured__body { padding: 1.2rem; }
    .evento-featured__titulo { font-size: clamp(1.6rem, 8vw, 2.2rem); }

    .featured__text { padding: 1.2rem; }
}