/* ══════════════════════════════════════════════════════
   EL LIBANÉS — v2 Premium · styles.css
   Archetype: Editorial Dark Warm (adapted Lebanese)
   Cache: ?v=20260625
══════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bg:      #130E0A;
  --bg-2:    #1D1510;
  --bg-card: #241912;
  --cream:   #FBEACA;
  --cream-2: #DBBF8A;
  --cream-3: #907060;
  --red:     #AB2814;
  --red-2:   #8A1F10;
  --gold:    #B29961;
  --gold-2:  #8A7040;
  --green:   #396631;
  --line:    rgba(251,234,202,0.1);
  --nav-h:   60px;
  --ease:    cubic-bezier(0.25, 0, 0.15, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  overflow-x: clip;
  -webkit-tap-highlight-color: transparent;
}
button, a { touch-action: manipulation; }
img { display: block; max-width: 100%; }

/* ── GRAIN — textura cinematográfica fija sobre toda la página ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}

/* ── MARQUEE ── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  background: var(--bg);
  cursor: default;
  user-select: none;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem; letter-spacing: 5px;
  color: var(--cream-3);
  padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
}
.marquee-dot {
  display: inline-block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--gold); flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── REVEAL SAFETY — si GSAP falla, contenido visible ── */
[data-reveal-item] { will-change: opacity, transform; }

/* ── TYPOGRAPHY ── */
.label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.65rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); display: block;
  margin-bottom: 8px;
}
.title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 13vw, 7.5rem);
  line-height: 0.95; letter-spacing: 1px; color: var(--cream);
}
.body-text {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.8; color: var(--cream-2);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  border: none; transition: background .2s, transform .15s, opacity .2s;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--red); color: var(--cream);
  font-size: clamp(0.85rem, 2vw, 0.95rem); padding: 15px 28px;
}
.btn-primary:hover { background: var(--red-2); }
.btn-ghost {
  background: transparent; color: var(--cream);
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  padding: 13px 28px; border: 2px solid var(--line);
}
.btn-ghost:hover { border-color: rgba(251,234,202,0.4); }
.btn-gold {
  background: var(--gold); color: var(--bg);
  font-size: clamp(0.85rem, 2vw, 0.95rem); padding: 15px 28px;
}
.btn-gold:hover { background: var(--gold-2); color: var(--cream); }

/* ════════════════════════════════
   SPLASH
════════════════════════════════ */
#splash {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
  animation: splashSafety 0.01s 2.5s forwards;
}
#splash.is-out { opacity: 0; visibility: hidden; }
#splash img { width: 140px; opacity: 0.9; }
@keyframes splashSafety {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* ════════════════════════════════
   NAV
════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  transition: background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(19,14,10,0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: none; }
.nav-cta { display: none; }
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--bg-2);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; padding: 80px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
  color: var(--cream); text-decoration: none; letter-spacing: 2px;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-primary { font-size: 1rem; padding: 14px 28px; margin-top: 8px; }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--bg);
  overflow: hidden;
}
/* wrapper que recibe el parallax de GSAP */
.hero-kb-wrap {
  position: absolute;
  width: 100%; height: 130%;
  top: -15%; left: 0;
  overflow: hidden;
}
/* imagen que recibe Ken Burns */
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
  animation: kenBurns 24s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes kenBurns {
  0%   { transform: scale(1.0)  translate(0%,    0%); }
  30%  { transform: scale(1.07) translate(-1.2%, -0.8%); }
  60%  { transform: scale(1.09) translate(1%,    -1.2%); }
  100% { transform: scale(1.0)  translate(0%,    0%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(19,14,10,0.65) 0%,
    rgba(19,14,10,0.2) 35%,
    rgba(19,14,10,0.45) 65%,
    rgba(19,14,10,0.88) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 24px;
  padding-top: var(--nav-h);
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  will-change: opacity, transform;
}
.hero-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.65rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--cream);
  margin-bottom: 20px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}
.hero-logo {
  width: min(85%, 340px); height: auto;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,0.5));
  margin-bottom: 20px;
}
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(251,234,202,0.9); margin-bottom: 32px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}
.hero-ctas { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.hero-ctas .btn { text-align: center; }
/* Hero siempre visible — el movimiento viene del Ken Burns y el parallax */

/* ── HERO BOTTOM CTA — sutil, encima del scroll ── */
.hero-bottom-cta {
  position: absolute; bottom: 72px; left: 50%;
  transform: translateX(-50%);
  z-index: 3; white-space: nowrap;
  animation: heroIn 0.7s ease both 1.1s;
}
.hero-bottom-cta a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(251,234,202,0.6); text-decoration: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.hero-bottom-cta a:hover { color: var(--cream); }

.hero-scroll {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.6rem;
  letter-spacing: 3px; text-transform: uppercase; color: var(--cream-3);
}
.hero-scroll-line {
  width: 1px; height: 40px; background: var(--cream-3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ════════════════════════════════
   PRODUCTO ESTRELLA
════════════════════════════════ */
#producto {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.producto-img {
  height: 70vw; max-height: 480px;
  overflow: hidden; position: relative; flex-shrink: 0;
}
.producto-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; transition: transform .6s var(--ease);
}
.producto-img:hover img { transform: scale(1.04); }
.producto-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--red); color: var(--cream);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px;
}
.producto-content {
  padding: 48px 24px;
  background: var(--bg-2);
}
.producto-content .title { margin-bottom: 20px; }
.producto-content .body-text { margin-bottom: 32px; }

/* ════════════════════════════════
   HISTORIA
════════════════════════════════ */
#historia {
  padding: 64px 24px;
  border-top: 1px solid var(--line);
}
.historia-inner { display: flex; flex-direction: column; gap: 40px; }
.historia-text .title { margin-bottom: 20px; }
.historia-text .body-text { margin-bottom: 16px; }
.historia-img {
  height: 56vw; max-height: 380px; overflow: hidden; position: relative;
}
.historia-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform .5s var(--ease);
}
.historia-img:hover img { transform: scale(1.03); }
.historia-img-label {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--red); color: var(--cream);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px;
}

/* ════════════════════════════════
   CARTA
════════════════════════════════ */
#carta {
  border-top: 1px solid var(--line);
  padding-bottom: 48px;
}
.carta-header { padding: 48px 24px 0; }
.carta-header .title { margin-bottom: 24px; }
.tab-nav {
  display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; border-bottom: 1px solid var(--line);
  padding: 0 24px;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream-3); border: none; background: none; cursor: pointer;
  padding: 12px 18px; white-space: nowrap; flex-shrink: 0;
  border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
  margin-bottom: -1px;
}
.tab-btn.active { color: var(--cream); border-bottom-color: var(--red); }
.tab-panel { display: none; padding: 24px; }
.tab-panel.active { display: block; }
.cards-grid { display: flex; flex-direction: column; gap: 12px; }
.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden; position: relative;
  transition: box-shadow .3s, transform .3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.dish-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover; object-position: center center;
  display: block; border-bottom: 1px solid var(--line);
  flex-shrink: 0; transition: transform .5s var(--ease);
}
.dish-card-body { padding: 16px 18px; }
.dish-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--cream); margin-bottom: 8px;
}
.dish-card p { font-size: 0.85rem; line-height: 1.6; color: var(--cream-3); }
.dish-card p + p { margin-top: 6px; font-size: 0.78rem; font-weight: 600; color: var(--gold); }
.dish-tag {
  position: absolute; top: 8px; right: 8px;
  background: var(--green); color: var(--cream);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.58rem; letter-spacing: 1px; text-transform: uppercase; padding: 3px 7px;
}
.dish-tag.top { background: var(--red); }
.carta-cta {
  padding: 24px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.carta-cta-text {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--cream);
}

/* ════════════════════════════════
   REVIEWS
════════════════════════════════ */
#reviews {
  background: var(--green); padding: 56px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
#reviews .title { margin-bottom: 28px; }

/* ════════════════════════════════
   EL CLUB
════════════════════════════════ */
#club {
  padding: 64px 24px;
  border-top: 1px solid var(--gold-2);
  background: var(--bg-2);
}
.club-badge {
  display: inline-block; border: 1px solid var(--gold-2);
  color: var(--gold); font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; padding: 5px 14px; margin-bottom: 14px;
}
#club .title { margin-bottom: 18px; }
#club .body-text { margin-bottom: 28px; }
#club .btn-gold { width: 100%; text-align: center; margin-bottom: 36px; }
.club-points { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.club-point {
  border: 1px solid rgba(178,153,97,0.25); padding: 18px;
  transition: border-color .25s, background .25s;
}
.club-point:hover { border-color: var(--gold); background: rgba(178,153,97,0.06); }
.club-point .num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.club-point p { font-size: 0.78rem; color: var(--cream-2); line-height: 1.4; opacity: 0.85; }

/* ════════════════════════════════
   LOCALES
════════════════════════════════ */
#locales {
  padding: 64px 24px;
  border-top: 1px solid var(--line);
}
#locales .title { margin-bottom: 28px; }
.locales-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--line); }
.local-card { overflow: hidden; border-bottom: 1px solid var(--line); }
.local-card:last-child { border-bottom: none; }
.local-img { height: 200px; position: relative; }
.local-img iframe { width: 100%; height: 100%; border: 0; display: block; }
.local-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--bg);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px;
}
.local-body { padding: 20px; background: var(--bg-card); }
.local-body h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--cream); margin-bottom: 6px;
}
.local-body .addr { font-size: 0.88rem; color: var(--cream-3); margin-bottom: 16px; line-height: 1.6; }
.local-body .btn-primary { width: 100%; text-align: center; padding: 12px; }

/* ════════════════════════════════
   TRABAJA
════════════════════════════════ */
#trabaja { border-top: 1px solid var(--line); }
.trabaja-left {
  padding: 56px 24px;
  background: var(--red);
}
.trabaja-left .label { color: rgba(251,234,202,0.7); margin-bottom: 14px; }
.trabaja-left .title { margin-bottom: 16px; }
.trabaja-left .body-text { color: rgba(251,234,202,0.82); }
.trabaja-right { padding: 40px 24px; }
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block; margin-bottom: 6px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--cream-3);
}
.form-row input, .form-row textarea {
  width: 100%; background: var(--bg-card); color: var(--cream);
  border: 1px solid var(--line); font-family: 'Barlow', sans-serif;
  font-size: 16px; padding: 12px 14px; outline: none;
  transition: border-color .2s; -webkit-appearance: none;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 0.82rem; color: var(--cream-3); line-height: 1.5; margin-bottom: 8px; }
.form-label-hint { font-size: 0.65rem; letter-spacing: 1px; color: var(--cream-3); opacity: 0.7; font-weight: 400; text-transform: none; }
.form-row input[type="file"] {
  cursor: pointer;
  color: var(--cream-2);
  padding: 10px 14px;
}
.form-row input[type="file"]::file-selector-button {
  background: var(--line);
  color: var(--cream);
  border: 1px solid rgba(251,234,202,0.2);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.75rem; letter-spacing: 1px;
  text-transform: uppercase; padding: 6px 14px;
  cursor: pointer; margin-right: 12px;
  transition: background .2s;
}
.form-row input[type="file"]::file-selector-button:hover {
  background: rgba(251,234,202,0.15);
}
.form-grid { display: flex; flex-direction: column; }
#jobForm .btn-primary { width: 100%; text-align: center; padding: 15px; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 48px 24px 32px;
}
.footer-brand { margin-bottom: 36px; }
.footer-brand img { height: 48px; width: auto; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: var(--cream-3); }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: var(--cream-3); text-decoration: none; font-size: 0.85rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 0.75rem; color: var(--cream-3);
  display: flex; flex-direction: column; gap: 8px;
}
.footer-legal-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-legal-btns button {
  background: none; border: none; color: var(--cream-3); cursor: pointer;
  font-size: 0.75rem; text-decoration: underline; padding: 0;
  transition: color .2s;
}
.footer-legal-btns button:hover { color: var(--cream); }

/* ════════════════════════════════
   FLOAT BUTTON (mobile only)
════════════════════════════════ */
.float-btn {
  display: flex; position: fixed;
  bottom: 16px; right: 16px; z-index: 200;
  background: var(--red); color: var(--cream);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; padding: 13px 18px;
  box-shadow: 0 4px 20px rgba(171,40,20,0.45);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.float-btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ════════════════════════════════
   DESKTOP ≥ 900px
════════════════════════════════ */
@media (min-width: 900px) {
  :root { --nav-h: 72px; }

  /* NAV */
  .nav { padding: 0 48px; }
  .nav-logo img { height: 44px; }
  .nav-links {
    display: flex; gap: 32px; list-style: none;
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase;
  }
  .nav-links a { color: var(--cream-2); text-decoration: none; transition: color .2s; }
  .nav-links a:hover { color: var(--cream); }
  .nav-cta { display: block; }
  .hamburger { display: none !important; }

  /* HERO */
  .hero-content { align-items: flex-start; text-align: left; padding: 0 72px 72px; }
  .hero-ctas { flex-direction: row; width: auto; }
  .hero-logo { max-width: 480px; margin-bottom: 24px; }
  .hero-sub { font-size: 0.95rem; }

  /* PRODUCTO */
  #producto { flex-direction: row; min-height: 560px; }
  .producto-img { width: 55%; height: auto; max-height: none; }
  .producto-content { width: 45%; padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }

  /* HISTORIA */
  #historia { padding: 96px 72px; }
  .historia-inner { flex-direction: row; gap: 72px; align-items: center; }
  .historia-text { flex: 1; }
  .historia-img { flex: 1; height: auto; min-height: 480px; max-height: none; }

  /* CARTA */
  .carta-header { padding: 80px 72px 0; display: flex; justify-content: space-between; align-items: flex-end; }
  .tab-nav { padding: 0 72px; overflow-x: visible; }
  .tab-panel { padding: 40px 72px; }
  .cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; flex-direction: unset; }
  .dish-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
  .dish-card:hover .dish-card-img { transform: scale(1.04); }
  .dish-card-img { height: 170px; aspect-ratio: unset; object-position: center center; }
  .carta-cta { padding: 36px 72px; flex-direction: row; align-items: center; }
  .carta-cta .btn { width: auto !important; }

  /* REVIEWS */
  #reviews { padding: 96px 72px; }

  /* CLUB */
  #club { padding: 96px 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
  #club .btn-gold { width: auto; }
  .club-points { grid-column: 2; grid-row: 1; align-self: center; }

  /* LOCALES */
  #locales { padding: 96px 72px; }
  .locales-grid { display: grid; grid-template-columns: 1fr 1fr; flex-direction: unset; }
  .local-card { border-bottom: none; border-right: 1px solid var(--line); }
  .local-card:last-child { border-right: none; }
  .local-img { height: 280px; }
  .local-body .btn-primary { width: auto; }

  /* TRABAJA */
  #trabaja { display: grid; grid-template-columns: 1fr 1fr; }
  .trabaja-left { padding: 96px 72px; }
  .trabaja-right { padding: 96px 60px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  /* FOOTER */
  footer { padding: 72px; }
  .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
  .footer-brand { margin-bottom: 0; }
  .footer-cols { grid-template-columns: 1fr; gap: 0; }
  .footer-cols-wrap { display: contents; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }

  .float-btn { display: none !important; }
}

/* ════════════════════════════════
   MODALES LEGALES
════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.8); overflow-y: auto;
}
.modal-box {
  background: var(--bg-card); max-width: 720px; margin: 40px auto;
  padding: 48px; border: 1px solid var(--line); position: relative;
}
.modal-box h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem;
  color: var(--cream); margin-bottom: 24px;
}
.modal-box p, .modal-box li {
  font-size: 0.9rem; line-height: 1.8; color: var(--cream-2); margin-bottom: 12px;
}
.modal-box ul { padding-left: 20px; margin-bottom: 16px; }
.modal-box strong { color: var(--cream); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--line); color: var(--cream); border: none;
  cursor: pointer; font-size: 1.1rem; padding: 6px 14px;
  transition: background .2s;
}
.modal-close:hover { background: var(--red); }
.modal-table {
  width: 100%; font-size: 0.85rem; border-collapse: collapse; margin-bottom: 16px; color: var(--cream-2);
}
.modal-table th {
  text-align: left; padding: 8px; border-bottom: 1px solid var(--gold-2);
  color: var(--gold); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px;
}
.modal-table td { padding: 8px; border-bottom: 1px solid var(--line); }

/* ════════════════════════════════
   COOKIE BANNER
════════════════════════════════ */
#cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--bg-2); color: var(--cream);
  padding: 20px 24px;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-top: 1px solid var(--gold-2);
}
#cookie-banner p { font-size: 0.88rem; line-height: 1.6; max-width: 580px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 10px 18px; cursor: pointer; border: none; transition: background .2s;
}
.cookie-btn-accept { background: var(--red); color: var(--cream); }
.cookie-btn-accept:hover { background: var(--red-2); }
.cookie-btn-reject { background: transparent; color: var(--cream); border: 1px solid var(--line) !important; }
.cookie-btn-reject:hover { border-color: var(--cream) !important; }
.cookie-more { background: none; border: none; color: var(--gold); cursor: pointer; font-size: 0.88rem; text-decoration: underline; padding: 0; }
