/* ============================================
   KEBAB HOUSE RESTAURANT — Zenvex Studio
   ============================================ */

/* ============ VARIABLES ============ */
:root {
  /* Colores del sistema */
  --color-primary:     #FF8C00;
  --color-secondary:   #FFFFFF;
  --color-accent:      #FFB347;
  --color-bg:          #080808;
  --color-surface:     #111111;
  --color-surface-2:   #1A1A1A;
  --color-text:        #E8E8E8;
  --color-text-muted:  #888888;
  --color-border:      rgba(255,140,0,0.3);

  /* Efectos neón (intensidad moderada) */
  --neon-orange:    0 0 3px #FF8C00, 0 0 6px rgba(255,140,0,0.6), 0 0 14px rgba(255,140,0,0.3);
  --neon-white:     0 0 3px #fff, 0 0 6px rgba(255,255,255,0.5), 0 0 14px rgba(255,255,255,0.22);
  --neon-glow-box:  0 0 10px rgba(255,140,0,0.3), 0 0 22px rgba(255,140,0,0.15);
  --glow-btn:       0 0 8px rgba(255,140,0,0.45), 0 0 16px rgba(255,140,0,0.2);

  /* Tipografía */
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Espaciados y transiciones */
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.16,1,0.3,1);
  --section-pad: clamp(4rem, 8vw, 7rem);
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

html, body { max-width: 100%; overflow-x: hidden; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}
main, section { overflow-x: hidden; }

* { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }

/* ============ SCROLLBAR PERSONALIZADO ============ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-accent); }
* { scrollbar-width: thin; scrollbar-color: var(--color-primary) var(--color-bg); }

/* ============ TEXTURA DE GRANO (solo desktop, coste de repintado en móvil/tablet) ============ */
@media (min-width: 1025px) {
  body::after {
    content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' 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;
  }
}

/* ============ NIEBLA AMBIENTAL DE FONDO (solo desktop, coste de repintado en móvil/tablet) ============ */
@media (max-width: 1024px) {
  .fog-bg { display: none; }
}
.fog-bg {
  position: fixed; inset: 0; z-index: 1; overflow: hidden; pointer-events: none;
}
.fog-blob {
  position: absolute; filter: blur(40px); mix-blend-mode: screen; will-change: transform;
  transform: translateZ(0);
}
body.is-scrolling .fog-blob { animation-play-state: paused; }
.fog-blob.f1 {
  width: 520px; height: 400px; top: -12%; left: -14%;
  border-radius: 58% 42% 34% 66% / 62% 32% 68% 38%;
  background: radial-gradient(circle at 35% 35%, rgba(255,140,0,0.22) 0%, rgba(255,140,0,0) 68%);
  animation: fog-drift-1 42s ease-in-out infinite;
}
.fog-blob.f2 {
  width: 460px; height: 460px; top: 32%; right: -18%;
  border-radius: 46% 54% 62% 38% / 40% 58% 42% 60%;
  background: radial-gradient(circle at 60% 40%, rgba(255,179,71,0.2) 0%, rgba(255,179,71,0) 68%);
  animation: fog-drift-2 50s ease-in-out infinite; animation-delay: -14s;
}
.fog-blob.f3 {
  width: 480px; height: 380px; bottom: -14%; left: 22%;
  border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
  background: radial-gradient(circle at 45% 55%, rgba(255,140,0,0.2) 0%, rgba(255,140,0,0) 68%);
  animation: fog-drift-3 56s ease-in-out infinite; animation-delay: -26s;
}

@keyframes fog-drift-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%      { transform: translate(7%, 5%) rotate(9deg) scale(1.12); }
}
@keyframes fog-drift-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%      { transform: translate(-7%, -5%) rotate(-9deg) scale(1.1); }
}
@keyframes fog-drift-3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%      { transform: translate(5%, -5%) rotate(8deg) scale(0.92); }
}

@media (prefers-reduced-motion: reduce) {
  .fog-blob { animation: none; }
}

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

h1, h2, h3 { font-family: var(--font-display); letter-spacing: 0.05em; line-height: 1.05; }

/* ============ UTILIDADES NEÓN ============ */
.neon-white { color: #FFFFFF; text-shadow: var(--neon-white); }
.neon-orange { color: #FF8C00; text-shadow: var(--neon-orange); }

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.85; }
}
.neon-flicker { animation: flicker 8s infinite; }

@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 0 3px rgba(255,140,0,0.22), 0 0 6px rgba(255,140,0,0.12); }
  50%       { box-shadow: 0 0 9px rgba(255,140,0,0.4), 0 0 16px rgba(255,140,0,0.18); }
}

.title-shine {
  background: linear-gradient(90deg, #fff 0%, #FF8C00 50%, #fff 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 4s ease infinite;
}
@keyframes shine { 0% { background-position: 0% center; } 100% { background-position: -200% center; } }

/* Sweep en H2/H3 */
h2.sweep::after, h3.sweep::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  box-shadow: var(--neon-orange);
  transition: width 0.7s ease;
  margin: 12px auto 0;
}
h2.sweep.is-visible::after, h3.sweep.is-visible::after { width: 80px; }
.section-header h2.sweep::after,
#nosotros h2.sweep::after,
#contacto h2.sweep::after { margin-left: 0; margin-right: auto; }

/* ============ REVEAL ============ */
.reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-scale { transform: scale(0.9); }
.reveal.visible, .reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ============ CURSOR DE BRASAS ============ */
@media (hover: hover) and (pointer: fine) {
  * { cursor: none !important; }
}
.cursor-ember {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  pointer-events: none; z-index: 10000; transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  box-shadow: 0 0 6px currentColor, 0 0 12px rgba(255,140,0,0.5);
  transition: box-shadow 0.2s ease, filter 0.2s ease;
  will-change: transform;
}
.cursor-ember.is-hover { box-shadow: 0 0 10px currentColor, 0 0 26px rgba(255,140,0,0.7); filter: brightness(1.3); }
@media (hover: none), (pointer: coarse) {
  .cursor-ember { display: none !important; }
}

/* ============ LOADER ============ */
#loader {
  position: fixed; inset: 0; background: var(--color-bg);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px;
  z-index: 99999; transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
#loader-logo { height: 80px; width: auto; animation: loaderPulse 1.5s ease-in-out infinite; }
@keyframes loaderPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.95); } }
#loader-bar { position: relative; width: 200px; height: 3px; background: var(--color-surface-2); border-radius: 2px; overflow: hidden; }
#loader-bar::after {
  content: ''; position: absolute; inset: 0; width: 0%; background: var(--color-primary);
  box-shadow: var(--neon-orange); animation: loaderBar 1.5s ease forwards;
}
@keyframes loaderBar { from { width: 0%; } to { width: 100%; } }

/* ============ NAVBAR ============ */
header { position: fixed; top: 0; width: 100%; z-index: 1000; }
#navbar {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 clamp(1.2rem, 4vw, 3rem);
  background: transparent;
  transition: background 0.4s ease, height 0.3s ease;
}
#navbar.scrolled { background: rgba(8,8,8,0.94); height: 64px; }
@media (min-width: 1025px) {
  #navbar.scrolled { background: rgba(8,8,8,0.88); backdrop-filter: blur(10px); }
}
.nav-logo img { max-height: 52px; width: auto; transition: transform 0.3s ease, filter 0.3s ease; }
.nav-logo:hover img { transform: scale(1.06); filter: drop-shadow(0 0 6px rgba(255,140,0,0.5)); }
.nav-links { display: flex; gap: 2rem; }
.nav-link {
  font-family: var(--font-heading); font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text);
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease; position: relative;
  display: inline-block;
}
.nav-link:hover { color: var(--color-primary); text-shadow: var(--neon-orange); transform: translateY(-2px); }
.nav-link::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px;
  background: var(--color-primary); transition: width 0.35s cubic-bezier(0.76,0,0.24,1);
}
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 0.7rem 1.4rem; font-size: 0.85rem; animation: neon-pulse 2.5s infinite;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.icon-svg { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; transition: transform 0.3s ease; }
.hamburger:hover { transform: scale(1.1); }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--color-primary); transition: 0.35s cubic-bezier(0.23,1,0.32,1); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: rgba(8,8,8,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-link { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.1em; font-size: 1.1rem; color: var(--color-text); display: inline-block; transition: color 0.3s ease, transform 0.3s ease; }
.mobile-link:hover { color: var(--color-primary); transform: scale(1.08); }
.mobile-cta { margin-top: 1rem; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-logo img { max-height: 38px; }
}

/* ============ DOTS NAV (navegación lateral por secciones) ============ */
.dots-nav {
  position: fixed; right: 1.6rem; top: 50%; transform: translateY(-50%);
  z-index: 8000; display: flex; flex-direction: column; gap: 0.85rem;
  padding: 16px 9px; background: rgba(8,8,8,0.72);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.dn-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4);
  border: none; padding: 0; position: relative; transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6);
}
.dn-dot::after {
  content: attr(data-label); position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-heading); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; white-space: nowrap; opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none; background: rgba(8,8,8,0.8); padding: 0.35rem 0.7rem; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
}
.dn-dot:hover::after, .dn-dot.active::after { opacity: 1; color: var(--color-primary); }
.dn-dot:hover { background: rgba(255,140,0,0.85); transform: scale(1.2); }
.dn-dot.active { background: var(--color-primary); transform: scale(1.4); box-shadow: 0 0 8px rgba(255,140,0,0.6), 0 0 0 1px rgba(0,0,0,0.6); }
@media (max-width: 1024px) { .dots-nav { display: none; } }

/* ============ BACK TO TOP ============ */
.back-top {
  position: fixed; right: 1.6rem; bottom: 2rem; z-index: 8000;
  width: 44px; height: 44px; background: var(--color-primary); color: #000;
  border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--glow-btn);
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { transform: translateY(-4px); box-shadow: 0 0 14px rgba(255,140,0,0.6), 0 0 28px rgba(255,140,0,0.3); }
@media (max-width: 768px) { .back-top { right: 1.2rem; bottom: 1.2rem; width: 40px; height: 40px; } }

/* ============ BOTONES ============ */
.btn-premium {
  display: inline-block; background: var(--color-primary); color: #000;
  font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; font-size: 0.85rem; padding: 1rem 2.2rem;
  border-radius: 4px; overflow: hidden; position: relative;
  box-shadow: var(--glow-btn); transition: box-shadow 0.3s ease, transform 0.3s ease;
  will-change: transform;
}
.btn-premium::before {
  content: ''; position: absolute; bottom: -100%; left: 0; width: 100%; height: 100%;
  background: var(--color-accent); transition: bottom 0.35s ease; z-index: -1;
}
.btn-premium:hover::before { bottom: 0; }
.btn-premium:hover { box-shadow: 0 0 12px rgba(255,140,0,0.6), 0 0 26px rgba(255,140,0,0.3); transform: translateY(-2px); }
.btn-premium .ripple {
  position: absolute; border-radius: 50%; background: rgba(0,0,0,0.25);
  transform: scale(0); animation: ripple 0.6s linear; pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

.btn-magnetic { will-change: transform; }
.btn-magnetic.outline {
  display: inline-block; border: 2px solid var(--color-primary); color: var(--color-primary);
  text-shadow: var(--neon-orange); background: transparent; font-family: var(--font-heading);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.85rem;
  padding: 1rem 2.2rem; border-radius: 4px; transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-magnetic.outline:hover { background: var(--color-primary); color: #000; text-shadow: none; transform: translateY(-2px); box-shadow: 0 0 14px rgba(255,140,0,0.4); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; isolation: isolate;
}
.hero-bg {
  position: absolute; top: -20%; left: 0; right: 0; height: 140%; z-index: -2;
  background-image: url('images/media-nuevo/hero.jpeg');
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(8,8,8,0.93) 0%, rgba(8,8,8,0.80) 50%, rgba(255,140,0,0.12) 100%);
}
.cursor-glow {
  position: absolute; width: 300px; height: 300px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,140,0,0.35) 0%, transparent 70%);
  opacity: 0.35; z-index: 0; transform: translate(-50%, -50%); transition: opacity 0.3s ease;
  display: none;
}
@media (hover: hover) { .cursor-glow { display: block; } }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; padding: 0 1.5rem; }
.hero-content h1 {
  font-size: clamp(3.2rem, 8vw, 9rem); margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-family: var(--font-heading); font-weight: 300; font-size: clamp(0.8rem, 1.5vw, 1.1rem);
  color: var(--color-text-muted); letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero-text { font-family: var(--font-body); font-size: 1rem; color: var(--color-text-muted); max-width: 640px; margin: 0 auto 2.2rem; }
.hero-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.scroll-arrow {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  opacity: 0.7; animation: bounce 2s infinite; transition: opacity 0.3s ease;
}
.scroll-arrow:hover { opacity: 1; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

@media (max-width: 768px) {
  .hero-content h1 { font-size: clamp(2.6rem, 12vw, 4.5rem); }
}

/* ============ STRIP PROPUESTA DE VALOR ============ */
.value-strip {
  background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
  padding: 40px clamp(1.2rem, 4vw, 3rem);
  display: flex; flex-wrap: wrap; justify-content: center;
}
.value-item {
  flex: 1 1 260px; text-align: center; padding: 1.5rem 2rem;
  border-right: 1px solid var(--color-border);
  transition: transform 0.35s ease;
}
.value-item:last-child { border-right: none; }
.value-item:hover { transform: translateY(-6px); }
.value-icon { width: 2.5rem; height: 2.5rem; margin-bottom: 0.8rem; transition: transform 0.35s ease, filter 0.35s ease; }
.value-item:hover .value-icon { transform: scale(1.12); filter: drop-shadow(0 0 6px rgba(255,140,0,0.5)); }
.value-item h3 { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.12em; font-size: 1rem; margin-bottom: 0.5rem; }
.value-item p { color: var(--color-text-muted); font-size: 0.9rem; }
@media (max-width: 768px) {
  .value-item { border-right: none; border-bottom: 1px solid var(--color-border); }
  .value-item:last-child { border-bottom: none; }
}

/* ============ SECCIONES GENERALES ============ */
section:not(.hero) { padding: var(--section-pad) clamp(1.2rem, 4vw, 3rem); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.section-subtitle { font-family: var(--font-heading); color: var(--color-text-muted); margin-top: 0.8rem; font-size: 1rem; }

/* ============ CARTA (menú interactivo) ============ */
.carta { background: var(--color-bg); max-width: 1100px; margin: 0 auto; }
.card {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--neon-glow-box); border-color: var(--color-primary); animation: neon-pulse 1.5s infinite; }

.menu-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.menu-tab {
  padding: 0.6rem 1.3rem; border-radius: 100px; border: 1px solid var(--color-border);
  background: transparent; color: var(--color-text-muted); font-family: var(--font-heading);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.menu-tab:hover { border-color: var(--color-primary); color: var(--color-text); transform: translateY(-2px); }
.menu-tab.active { background: var(--color-primary); color: #000; border-color: var(--color-primary); box-shadow: var(--glow-btn); }

.menu-items-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 3rem;
}
.menu-item {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.menu-item:hover { border-color: var(--color-primary); background: var(--color-surface-2); transform: translateY(-3px); }
.menu-item-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
}
.menu-item-head h3 {
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  color: var(--color-text); letter-spacing: 0.01em; line-height: 1.3;
}
.menu-item-price {
  font-family: var(--font-display); font-size: 1.35rem; white-space: nowrap; flex-shrink: 0;
}
.menu-item-desc { color: var(--color-text-muted); font-size: 0.85rem; margin-top: 0.4rem; line-height: 1.5; }
.menu-item-addon { color: var(--color-primary); font-size: 0.78rem; margin-top: 0.6rem; font-style: italic; }

.carta-cta { text-align: center; }

@media (max-width: 700px) {
  .menu-items-grid { grid-template-columns: 1fr; }
  .menu-tabs { gap: 0.5rem; }
  .menu-tab { padding: 0.5rem 1rem; font-size: 0.72rem; }
}

/* ============ NOSOTROS ============ */
.nosotros {
  background: var(--color-bg); display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.nosotros-text p { margin-bottom: 1.1rem; color: var(--color-text); font-size: 0.98rem; }
.nosotros-text h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 1.4rem; }
.counters { display: flex; gap: 2rem; margin: 2rem 0; flex-wrap: wrap; }
.counter-item { text-align: left; transition: transform 0.3s ease; }
.counter-item:hover { transform: translateY(-4px); }
.counter { display: block; font-family: var(--font-display); font-size: 3.5rem; transition: text-shadow 0.3s ease; }
.counter-item:hover .counter { text-shadow: 0 0 4px #FF8C00, 0 0 10px rgba(255,140,0,0.7), 0 0 20px rgba(255,140,0,0.4); }
.counter-item p { font-family: var(--font-body); font-size: 0.85rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.nosotros-img { position: relative; min-height: 420px; }
.nosotros-img-main {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: transform 0.15s ease;
}
.nosotros-img-secondary {
  position: absolute; bottom: -20px; left: -20px; width: 45%;
  clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
  box-shadow: var(--neon-glow-box); outline: 2px solid rgba(255,140,0,0.5);
  transform: rotate(-3deg); z-index: 2; transition: transform 0.15s ease;
}
@media (max-width: 900px) {
  .nosotros { grid-template-columns: 1fr; }
  .nosotros-img { min-height: 320px; margin-top: 3rem; }
}

/* ============ SVG DIVIDERS ============ */
.section-divider { position: relative; line-height: 0; margin-bottom: -2px; }
.section-divider svg { width: 100%; height: 60px; display: block; }

/* ============ EQUIPO / POSTRES / PLATOS / GALERÍA (media general) ============ */
.equipo { background: var(--color-bg); }
.postres { background: var(--color-surface); }
.platos { background: var(--color-bg); }
.galeria { background: var(--color-surface); }

.media-grid { display: grid; gap: 20px; max-width: 1000px; margin: 0 auto; }
.media-grid-2 { grid-template-columns: repeat(2, 1fr); }
.media-grid-4 { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; max-width: 1100px; }
.media-grid-2 .gallery-item, .media-grid-2 .media-video { height: 340px; }
@media (max-width: 700px) {
  .media-grid-2, .media-grid-4 { grid-template-columns: 1fr; }
  .media-grid-2 .gallery-item, .media-grid-2 .media-video { height: 280px; }
}

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 16px; max-width: 1280px; margin: 0 auto; }
.gallery-item, .media-video { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery-item { cursor: pointer; transition: box-shadow 0.35s ease; }
.span-2 { grid-column: span 2; }
.h-400 { grid-row: span 2; }
.h-300 { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item.gallery-item-contain { background: var(--color-surface-2); }
.gallery-item.gallery-item-contain img { object-fit: contain; }
.gallery-item::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(255,140,0,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='10' cy='10' r='6' stroke='%23FF8C00' stroke-width='2'/%3E%3Cpath d='M15 15L21 21' stroke='%23FF8C00' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: 32px 32px; opacity: 0; transform: scale(0.85); transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item:hover::after { opacity: 1; transform: scale(1); }
.gallery-item:hover img { transform: scale(1.06) rotate(1deg); }
.gallery-item:hover { box-shadow: var(--neon-glow-box); }
.gallery-item.gallery-item-contain:hover img { transform: scale(1.03); }

.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 12px 12px; text-align: center;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff; font-family: var(--font-heading); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ============ VÍDEOS (equipo, postres, platos, local) ============ */
.media-video {
  border: 1px solid var(--color-border); background: #000; cursor: pointer;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}
.media-video:hover { box-shadow: var(--neon-glow-box); border-color: var(--color-primary); }
.media-video video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .span-2 { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
  .h-400, .h-300 { grid-row: span 1; height: 260px; }
}

/* ============ LIGHTBOX ============ */
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 5000;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 88vw; max-height: 85vh; border-radius: 8px; box-shadow: var(--neon-glow-box); }
.lightbox video { max-width: 88vw; max-height: 85vh; border-radius: 8px; box-shadow: var(--neon-glow-box); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; color: var(--color-primary); font-size: 2.4rem; background: none;
  text-shadow: var(--neon-orange); transition: transform 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { transform: scale(1.15); text-shadow: var(--neon-orange); }
.lightbox-close:hover { transform: scale(1.15) rotate(90deg); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.15) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.15) translateX(3px); }
.lightbox-close { top: 24px; right: 32px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ============ OPINIONES ============ */
.opiniones { background: var(--color-bg); text-align: center; }
.opiniones h2 { margin-bottom: 2.5rem; }
.rating-hero { margin-bottom: 3rem; }
.rating-number { display: block; font-family: var(--font-display); font-size: clamp(5rem, 10vw, 8rem); }
.stars { display: flex; justify-content: center; gap: 0.3rem; margin: 0.5rem 0; }
.rating-sub { color: var(--color-text-muted); font-size: 0.95rem; }
.reviews-grid { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; max-width: 1200px; margin: 0 auto 3rem; }
.review-card { flex: 1 1 320px; max-width: 380px; padding: 1.8rem; text-align: left; }
.review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--color-primary); color: #000;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700;
  flex-shrink: 0; transition: transform 0.3s ease;
}
.review-card:hover .avatar { transform: scale(1.1) rotate(-5deg); }
.review-name { font-family: var(--font-heading); font-weight: 600; }
.review-meta { color: var(--color-text-muted); font-size: 0.82rem; display: flex; align-items: center; gap: 0.4rem; }
.mini-stars { display: inline-flex; gap: 2px; }
.mini-stars svg { filter: drop-shadow(0 0 3px rgba(255,140,0,0.6)); }
.review-text { font-style: italic; color: var(--color-text); font-size: 0.95rem; }

/* ============ CONTACTO ============ */
.contacto {
  background: var(--color-surface); position: relative;
  background-image: linear-gradient(rgba(255,140,0,0.03) 1px, transparent 1px);
  background-size: 100% 32px;
}
.contacto h2 { text-align: center; margin-bottom: 3rem; }
.contacto-grid { display: grid; grid-template-columns: 45% 55%; gap: 2.5rem; max-width: 1280px; margin: 0 auto; align-items: start; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; transition: transform 0.3s ease; }
.info-row:hover { transform: translateX(4px); }
.info-icon { flex-shrink: 0; margin-top: 0.2rem; }
.info-icon svg { transition: filter 0.3s ease; }
.info-row:hover .info-icon svg { filter: drop-shadow(0 0 5px rgba(255,140,0,0.6)); }
.map-link { color: var(--color-primary); font-size: 0.9rem; display: inline-block; margin-top: 0.3rem; transition: transform 0.3s ease, text-shadow 0.3s ease; }
.map-link:hover { transform: translateX(4px); text-shadow: var(--neon-orange); }
.horario-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 0.4rem; }
.horario-table th, .horario-table td { border: 1px solid var(--color-border); padding: 0.7rem 1rem; text-align: left; font-size: 0.9rem; transition: background 0.3s ease; }
.horario-table tr:hover td { background: rgba(255,140,0,0.06); }
.horario-table th { font-family: var(--font-heading); color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; }
.horario-note { color: var(--color-text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.social-icons { display: flex; gap: 1rem; margin-bottom: 2rem; }
.social-link svg { transition: filter 0.3s ease, transform 0.3s ease; }
.social-link:hover svg { filter: drop-shadow(0 0 4px rgba(255,140,0,0.7)); transform: translateY(-3px) scale(1.1); }
.contacto-cta { width: 100%; text-align: center; }
.contacto-mapa iframe { border: 1px solid var(--color-border); border-radius: 8px; }

@media (max-width: 900px) {
  .contacto-grid { grid-template-columns: 1fr; }
}

/* ============ FOOTER ============ */
footer { background: #040404; border-top: 1px solid var(--color-border); box-shadow: 0 -1px 20px rgba(255,140,0,0.1); padding: 60px clamp(1.2rem, 4vw, 3rem) 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 1280px; margin: 0 auto; }
.footer-logo { max-height: 45px; margin-bottom: 1rem; transition: transform 0.3s ease, filter 0.3s ease; }
.footer-logo:hover { transform: scale(1.05); filter: drop-shadow(0 0 6px rgba(255,140,0,0.4)); }
.footer-tagline { font-style: italic; color: var(--color-text-muted); margin-bottom: 1rem; }
.footer-copy { font-size: 0.82rem; color: var(--color-text-muted); }
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: var(--color-text); font-size: 0.92rem; display: inline-block; transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease; }
.footer-links a:hover { color: var(--color-primary); text-shadow: 0 0 5px rgba(255,140,0,0.45); transform: translateX(4px); }
.footer-col p { margin-bottom: 0.6rem; font-size: 0.92rem; color: var(--color-text-muted); }
.footer-col p a { color: var(--color-text); transition: color 0.3s ease, text-shadow 0.3s ease; }
.footer-col p a:hover { color: var(--color-primary); text-shadow: 0 0 5px rgba(255,140,0,0.45); }
.footer-bottom { text-align: center; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); color: var(--color-text-muted); font-size: 0.85rem; }
.footer-bottom a { color: var(--color-primary); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } .footer-links { align-items: center; } }

/* ============ MODALES ============ */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 99000; align-items: center; justify-content: center; padding: 2rem; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.modal-overlay.active { display: flex; }
.modal-content { background: var(--color-surface-2); color: var(--color-text); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 2.5rem; max-width: 600px; width: 100%; max-height: 80vh; overflow-y: auto; position: relative; }
.modal-content h2 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--color-primary); text-shadow: none; }
.modal-content p { margin-bottom: 1rem; line-height: 1.7; font-size: 0.92rem; color: var(--color-text); }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; font-size: 1.6rem; color: var(--color-text-muted); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.2s ease, transform 0.3s ease, color 0.2s ease; }
.modal-close:hover { background: rgba(255,140,0,0.15); color: var(--color-primary); transform: rotate(90deg); }

/* ============ RESPONSIVE GLOBAL ============ */
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-premium, .btn-magnetic.outline { text-align: center; }
}
