/* ═══════════════════════════════════════════════════════════════
   BIDAXKA · Cocktail & Food — Bera, Navarra
   Sistema de diseño
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Color */
  --black:      #0a0908;
  --night:      #100e0d;
  --card:       #16130f;
  --card-2:     #1e1915;
  --line:       rgba(255, 255, 255, 0.09);
  --line-gold:  rgba(227, 178, 60, 0.28);

  --red:        #e11d28;
  --red-deep:   #a8121b;
  --gold:       #e3b23c;
  --gold-soft:  #f5d47f;
  --cream:      #f7f0e6;
  --text:       #ece5dc;
  --muted:      #a49a8e;
  --dim:        #6d645b;
  --green:      #35c46b;

  /* Tipografía fluida */
  --fs-micro:  clamp(0.66rem, 0.2vw + 0.62rem, 0.74rem);
  --fs-xs:     clamp(0.76rem, 0.2vw + 0.72rem, 0.84rem);
  --fs-sm:     clamp(0.86rem, 0.2vw + 0.82rem, 0.94rem);
  --fs-base:   clamp(0.98rem, 0.25vw + 0.92rem, 1.06rem);
  --fs-lg:     clamp(1.1rem, 0.5vw + 1rem, 1.3rem);
  --fs-h3:     clamp(1.35rem, 1.2vw + 1.05rem, 1.9rem);
  --fs-h2:     clamp(2.3rem, 4.5vw + 0.8rem, 4.6rem);
  --fs-hero:   clamp(3.6rem, 15vw, 13rem);

  /* Espaciado */
  --pad-x:     clamp(1.15rem, 4vw, 3.5rem);
  --section:   clamp(4.5rem, 9vw, 9rem);
  --wrap:      1280px;

  /* Movimiento */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io:   cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h:     72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img, picture, svg, video { display: block; max-width: 100%; }
/* Sin esto, los atributos width/height del HTML fijan la altura y deforman la foto */
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

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

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--card-2); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  top: -200px; left: 12px;
  z-index: 9999;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  font-weight: 700;
  font-size: var(--fs-sm);
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Grano de película (textura global) ───────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.038;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) }
  10% { transform: translate(-4%,-4%) }
  20% { transform: translate(-8%,3%) }
  30% { transform: translate(4%,-8%) }
  40% { transform: translate(-3%,7%) }
  50% { transform: translate(-6%,4%) }
  60% { transform: translate(7%,0) }
  70% { transform: translate(0,6%) }
  80% { transform: translate(3%,8%) }
  90% { transform: translate(-6%,3%) }
}

/* ── Barra de progreso de scroll ───────────────────────────── */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 9997;
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════
   HELPERS
   ═══════════════════════════════════════════════════════════ */
.wrap {
  width: min(100% - var(--pad-x) * 2, var(--wrap));
  margin-inline: auto;
}

section { position: relative; }

.display {
  font-family: 'Anton', 'Arial Narrow', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.015em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker::before {
  content: '';
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.kicker.center::after {
  content: '';
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head.center { text-align: center; }
.section-head.center .kicker { justify-content: center; }

.title {
  font-family: 'Anton', 'Arial Narrow', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: var(--fs-h2);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-top: 18px;
}
.title .accent { color: var(--gold); }
.title .accent-red { color: var(--red); }
.title .outline {
  -webkit-text-stroke: 1.5px var(--gold);
  color: transparent;
}

.lead {
  font-size: var(--fs-lg);
  color: var(--muted);
  max-width: 58ch;
  margin-top: 22px;
  font-weight: 300;
}
.section-head.center .lead { margin-inline: auto; }

.num {
  font-family: 'Anton', sans-serif;
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  color: var(--dim);
}

/* ── Botones ───────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -14px rgba(227, 178, 60, 0.55);
}
.btn:active { transform: translateY(-1px); }

.btn--red {
  --btn-bg: var(--red);
  --btn-fg: #fff;
}
.btn--red:hover { box-shadow: 0 16px 34px -14px rgba(225, 29, 40, 0.6); }

.btn--wa {
  --btn-bg: #25d366;
  --btn-fg: #062e14;
}
.btn--wa:hover { box-shadow: 0 16px 34px -14px rgba(37, 211, 102, 0.55); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(227, 178, 60, 0.06);
  box-shadow: none;
}

.btn--sm { min-height: 42px; padding: 0 20px; font-size: var(--fs-micro); }

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s, height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  height: 62px;
  background: rgba(10, 9, 8, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}

.nav__inner {
  width: min(100% - var(--pad-x) * 2, var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 2;
}
.brand__mark { height: 34px; width: auto; flex-shrink: 0; transition: height 0.4s var(--ease); }
.nav.is-stuck .brand__mark { height: 30px; }
.brand__name {
  font-family: 'Anton', sans-serif;
  font-size: 1.22rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}
.brand__name .a { color: var(--red); }
.brand__name .b { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}
.nav__links a:not(.btn) {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s;
}
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--cream); }
.nav__links a:not(.btn):hover::after,
.nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--gold); }

.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 2;
}
.burger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.25s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 26px; }
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); background: var(--gold); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); background: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 40px) var(--pad-x) 120px;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: -4%;
  z-index: -3;
  will-change: transform;
}
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.06) brightness(0.62);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1000px 620px at 78% 22%, rgba(227, 178, 60, 0.16), transparent 62%),
    radial-gradient(760px 520px at 14% 78%, rgba(225, 29, 40, 0.15), transparent 62%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.72) 0%, rgba(10, 9, 8, 0.55) 42%, rgba(10, 9, 8, 0.95) 88%, var(--black) 100%);
}

/* Líneas verticales decorativas */
.hero__rules {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  display: flex;
  justify-content: space-evenly;
  opacity: 0.5;
}
.hero__rules span {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.07) 30%, rgba(255,255,255,0.07) 70%, transparent);
}

.hero__inner {
  text-align: center;
  max-width: 1000px;
  width: 100%;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(10px);
  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
}
.hero__pill b { color: var(--cream); font-weight: 600; }

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(53, 196, 107, 0.55);
  animation: ping 2.4s var(--ease-io) infinite;
  flex-shrink: 0;
}
.dot.is-closed {
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(225, 29, 40, 0.55);
  animation: none;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(53, 196, 107, 0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(53, 196, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 196, 107, 0); }
}

/* El logotipo real del bar */
.hero__logo {
  width: clamp(230px, 32vw, 355px);
  margin: 0 auto 26px;
  opacity: 0;
  animation: logoIn 1.1s 0.2s var(--ease) forwards;
}
.hero__logo img {
  width: 100%;
  filter: drop-shadow(0 20px 46px rgba(0, 0, 0, 0.6));
}
@keyframes logoIn {
  from { opacity: 0; transform: translateY(28px) scale(0.95); }
  to   { opacity: 1; transform: none; }
}

.hero__sub {
  font-family: 'Anton', sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 1.15rem);
  letter-spacing: clamp(0.3em, 1.2vw, 0.62em);
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 0.9s 0.85s var(--ease) forwards;
  padding-left: 0.5em;
}
.hero__sub em { font-style: normal; color: var(--gold); }

.hero__tags {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.9s 1s var(--ease) forwards;
}
.hero__tags span { display: inline-flex; align-items: center; gap: 8px; }
.hero__tags svg { width: 15px; height: 15px; color: var(--gold); }
.hero__tags i {
  width: 3px; height: 3px;
  background: var(--dim);
  border-radius: 50%;
}

.hero__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 42px;
  opacity: 0;
  animation: fadeUp 0.9s 1.15s var(--ease) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-micro);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  opacity: 0;
  animation: fadeUp 1s 1.5s var(--ease) forwards;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 42px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: dropLine 2.2s var(--ease-io) infinite;
}
@keyframes dropLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════════════════ */
.ticker {
  background: var(--red);
  color: #fff;
  padding: 15px 0;
  overflow: hidden;
  border-block: 1px solid rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}
.ticker__row {
  display: flex;
  width: max-content;
  animation: slide 32s linear infinite;
}
.ticker:hover .ticker__row { animation-play-state: paused; }
.ticker__row span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-inline: 22px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.25rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__row span::after {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-left: 8px;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   SOBRE NOSOTROS
   ═══════════════════════════════════════════════════════════ */
.about { padding: var(--section) 0; }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about__figure {
  position: relative;
  isolation: isolate;
}
.about__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.about__figure::before {
  content: '';
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid var(--line-gold);
  z-index: -1;
}
.about__stamp {
  position: absolute;
  right: -18px; bottom: -18px;
  width: 118px; height: 118px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: 0.98rem;
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.9);
}
.about__stamp small {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  opacity: 0.85;
}

.about__body p + p { margin-top: 16px; }
.about__body p { color: var(--muted); }

.about__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
}
.about__list li {
  background: var(--night);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: var(--fs-sm);
  color: var(--text);
  transition: background 0.3s;
}
.about__list li:hover { background: var(--card-2); }
.about__list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ── Cifras ────────────────────────────────────────────────── */
.stats {
  border-block: 1px solid var(--line);
  background: var(--night);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(28px, 4vw, 44px) 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat__n {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--gold);
  display: block;
}
.stat__l {
  display: block;
  margin-top: 10px;
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════
   BENTO — EL PLAN
   ═══════════════════════════════════════════════════════════ */
.plan { padding: var(--section) 0; }

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 14px;
}

.tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  isolation: isolate;
  transition: border-color 0.4s, transform 0.5s var(--ease);
}
.tile:hover { border-color: var(--line-gold); transform: translateY(-4px); }

.tile__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.tile__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.5) saturate(0.8);
  transition: transform 0.9s var(--ease), filter 0.6s;
}
.tile:hover .tile__bg img { transform: scale(1.06); filter: grayscale(0) brightness(0.62) saturate(1); }
.tile__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,9,8,0.94) 6%, rgba(10,9,8,0.5) 55%, rgba(10,9,8,0.25) 100%);
}

.tile__icon {
  width: 40px; height: 40px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 6px;
}
.tile__icon svg { width: 19px; height: 19px; }

.tile h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: var(--fs-h3);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--cream);
}
.tile p { font-size: var(--fs-sm); color: var(--muted); }

.tile--wide { grid-column: span 2; }
.tile--tall { grid-row: span 2; }
.tile--hero { grid-column: span 2; grid-row: span 2; }

.tile--accent {
  background: linear-gradient(150deg, var(--red-deep), #6d0a11);
  border-color: transparent;
}
.tile--accent h3, .tile--accent p { color: #fff; }
.tile--accent p { opacity: 0.85; }
.tile--accent .tile__icon { border-color: rgba(255,255,255,0.4); color: #fff; }

.tile--gold {
  background: linear-gradient(150deg, var(--gold), #b98a1f);
  border-color: transparent;
}
.tile--gold h3, .tile--gold p { color: #1a1206; }
.tile--gold .tile__icon { border-color: rgba(0,0,0,0.3); color: #1a1206; }

/* ═══════════════════════════════════════════════════════════
   CARTA
   ═══════════════════════════════════════════════════════════ */
.carta {
  padding: var(--section) 0;
  background:
    radial-gradient(900px 600px at 85% 8%, rgba(225, 29, 40, 0.07), transparent 60%),
    var(--night);
  border-block: 1px solid var(--line);
}

.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.3s var(--ease);
}
.tab svg { width: 16px; height: 16px; }
.tab:hover { border-color: var(--line-gold); color: var(--cream); }
.tab[aria-selected="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 700;
}

.pane { display: none; }
.pane.is-on { display: block; animation: fadeUp 0.5s var(--ease); }

.carta__cols {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.drinks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.drink {
  background: var(--black);
  padding: 19px 22px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  position: relative;
  transition: background 0.35s;
}
.drink::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.drink:hover { background: var(--card); }
.drink:hover::before { transform: scaleY(1); }

.drink__body { flex: 1; min-width: 0; }
.drink__name {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.15;
}
.drink__desc {
  font-size: var(--fs-xs);
  color: var(--dim);
  line-height: 1.5;
  margin-top: 4px;
}
.drink__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,0.14);
  min-width: 14px;
  align-self: center;
  margin-bottom: 4px;
}
.drink__price {
  font-family: 'Anton', sans-serif;
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.signature {
  margin-top: 16px;
  padding: 30px 26px;
  text-align: center;
  border: 1px solid var(--line-gold);
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(227, 178, 60, 0.12), transparent 70%),
    linear-gradient(140deg, rgba(225, 29, 40, 0.09), rgba(227, 178, 60, 0.05));
  position: relative;
}
.signature__tag {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.signature h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.signature p { color: var(--muted); font-size: var(--fs-sm); margin: 8px 0 12px; }
.signature .drink__price { font-size: 2.4rem; display: block; }

.note {
  margin-top: 26px;
  padding: 16px 20px;
  border-left: 2px solid var(--gold);
  background: var(--card);
  font-size: var(--fs-sm);
  color: var(--muted);
}
.note strong { color: var(--gold); font-weight: 600; }

/* ── Carta de comida ─────────────────────────────────────── */
.food-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px 0 14px;
}
.food-cat:first-of-type { margin-top: 6px; }
.food-cat h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  flex-shrink: 0;
}
.food-cat__price {
  font-family: 'Anton', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--black);
  background: var(--gold);
  padding: 4px 13px;
  border-radius: 999px;
  flex-shrink: 0;
}
.food-cat__line {
  flex: 1;
  height: 1px;
  background: var(--line-gold);
  opacity: 0.45;
}
.food-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.food-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: var(--fs-sm);
  color: var(--cream);
  background: var(--black);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.food-chips span:hover { border-color: var(--line-gold); color: var(--gold); }

.carta__poster {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: zoom-in;
}
.carta__poster img {
  width: 100%;
  transition: transform 0.7s var(--ease);
}
.carta__poster:hover img { transform: scale(1.03); }
.carta__poster figcaption {
  padding: 12px 16px;
  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  border-top: 1px solid var(--line);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.carta__poster figcaption svg { width: 15px; height: 15px; color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   GALERÍA
   ═══════════════════════════════════════════════════════════ */
.gallery {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--black);
}
.gallery__track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 10px 0;
  animation: slide 46s linear infinite;
}
.gallery__track.rev { animation-direction: reverse; animation-duration: 54s; }
.gallery:hover .gallery__track { animation-play-state: paused; }

.gallery__item {
  width: clamp(210px, 26vw, 340px);
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  border: 1px solid var(--line);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.08) brightness(0.72);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}
.gallery__item:hover img {
  filter: grayscale(0) contrast(1) brightness(0.95);
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════
   EVENTOS
   ═══════════════════════════════════════════════════════════ */
.events { padding: var(--section) 0; }

/* ── Próximas fechas (caducan solas) ───────────────────────── */
.upcoming {
  display: grid;
  gap: 12px;
  margin-bottom: 10px;
}
/* display:grid/flex ganan a [hidden], hay que decirlo explícitamente */
.upcoming[hidden], .next[hidden], .ev[hidden] { display: none; }
.ev {
  display: flex;
  align-items: stretch;
  gap: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 20px 24px;
  transition: border-color 0.35s, background 0.35s, transform 0.45s var(--ease);
}
.ev:hover {
  border-color: var(--line-gold);
  background: var(--card-2);
  transform: translateX(5px);
}
.ev[hidden] { display: none; }

.ev__date {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-right: 1px solid var(--line);
  padding-right: 18px;
}
.ev__d {
  font-family: 'Anton', sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--gold);
}
.ev__m {
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.ev__body { min-width: 0; }
.ev__when {
  display: block;
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 8px;
}
.ev__body h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 7px;
}
.ev__body p { font-size: var(--fs-sm); color: var(--muted); }
.ev__body strong { color: var(--gold); font-weight: 600; }

.ev--hot {
  background: linear-gradient(120deg, rgba(225, 29, 40, 0.12), var(--card) 55%);
  border-color: var(--line-gold);
}
.ev--hot .ev__d { color: var(--red); }

@media (max-width: 560px) {
  .ev { gap: 16px; padding: 18px; }
  .ev__date { width: 54px; padding-right: 14px; }
  .ev__d { font-size: 1.7rem; }
  .ev__body h3 { font-size: 1.15rem; }
}

.agenda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  margin-bottom: 60px;
}
.agenda__item {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 24px;
  transition: border-color 0.35s, transform 0.45s var(--ease), background 0.35s;
}
.agenda__item:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
  background: var(--card-2);
}
.agenda__when {
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.agenda__when svg { width: 14px; height: 14px; }
.agenda__item h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.32rem;
  text-transform: uppercase;
  color: var(--cream);
  margin: 12px 0 8px;
  line-height: 1.05;
}
.agenda__item p { font-size: var(--fs-sm); color: var(--muted); }

.next {
  border: 1px solid var(--line-gold);
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(227, 178, 60, 0.1), transparent 65%),
    var(--card);
  padding: clamp(28px, 5vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.next h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.next p { color: var(--muted); margin-top: 12px; max-width: 46ch; font-size: var(--fs-sm); }
.next__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.posters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.poster {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  background: var(--card);
}
.poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.poster:hover img { transform: scale(1.06); }
.poster__mask {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  background: linear-gradient(0deg, rgba(10,9,8,0.95) 4%, rgba(10,9,8,0.35) 48%, transparent 72%);
}
.poster__tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.poster__title {
  font-family: 'Anton', sans-serif;
  font-size: 1.24rem;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.05;
}
.poster__sub {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}
.poster__zoom {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s var(--ease);
}
.poster__zoom svg { width: 15px; height: 15px; }
.poster:hover .poster__zoom { opacity: 1; transform: scale(1); }

/* ═══════════════════════════════════════════════════════════
   VISITA (horarios + contacto)
   ═══════════════════════════════════════════════════════════ */
.visit {
  padding: var(--section) 0;
  background: var(--night);
  border-top: 1px solid var(--line);
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.hours { margin-top: 34px; }
.hours__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.hours__row:hover { background: var(--card); }
.hours__row.is-today {
  background: linear-gradient(90deg, rgba(227, 178, 60, 0.13), transparent 80%);
  border-bottom-color: var(--line-gold);
}
.hours__day {
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hours__row.is-today .hours__day { color: var(--gold); font-weight: 600; }
.hours__row.is-today .hours__day::after {
  content: 'HOY';
  margin-left: 10px;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  padding: 3px 7px;
  background: var(--gold);
  color: var(--black);
  border-radius: 3px;
  vertical-align: middle;
  font-weight: 700;
}
.hours__time {
  font-family: 'Anton', sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-align: right;
}
.hours__time.is-late { color: var(--gold); }
.hours__time.is-closed {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-xs);
  font-style: italic;
  color: var(--dim);
  letter-spacing: 0;
}

.status-card {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--card);
}
.status-card__txt strong {
  display: block;
  font-size: var(--fs-base);
  color: var(--cream);
  font-weight: 600;
}
.status-card__txt span { font-size: var(--fs-xs); color: var(--muted); }

.contacts { margin-top: 34px; display: grid; gap: 12px; }
.contact {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  background: var(--card);
  transition: all 0.35s var(--ease);
}
.contact:hover {
  border-color: var(--line-gold);
  transform: translateX(5px);
  background: var(--card-2);
}
.contact__ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(227, 178, 60, 0.1);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact__ico svg { width: 19px; height: 19px; }
.contact__txt { flex: 1; min-width: 0; }
.contact__l {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}
.contact__v {
  display: block;
  color: var(--cream);
  font-size: var(--fs-base);
  font-weight: 500;
  margin-top: 3px;
}
.contact__arrow {
  margin-left: auto;
  color: var(--dim);
  transition: transform 0.35s var(--ease), color 0.35s;
}
.contact__arrow svg { width: 17px; height: 17px; }
.contact:hover .contact__arrow { color: var(--gold); transform: translateX(4px); }

.visit__cta { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }

.map {
  height: clamp(300px, 42vw, 460px);
  position: relative;
  border-top: 1px solid var(--line);
}
.map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) contrast(1.06) brightness(0.88) saturate(0.7);
}
.map::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 22px 44px -22px var(--black), inset 0 -22px 44px -22px var(--black);
  z-index: 1;
}

/* Puerta de consentimiento del mapa (no carga Google hasta que se pide) */
.map__gate {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(700px 340px at 50% 30%, rgba(227, 178, 60, 0.08), transparent 70%),
    var(--card);
}
.map__gate-box { max-width: 520px; }
.map__gate-ico {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.map__gate-ico svg { width: 22px; height: 22px; }
.map__gate h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 10px;
}
.map__gate p { font-size: var(--fs-sm); color: var(--muted); max-width: 46ch; margin-inline: auto; }
.map__gate-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}
.map__gate-note { margin-top: 16px; font-size: var(--fs-micro); color: var(--dim); }
.map__gate-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: var(--black);
  padding: clamp(50px, 7vw, 80px) 0 30px;
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 44px;
}
.footer__logo { display: block; width: 176px; }
.footer__logo img { width: 100%; }
.footer__brand p {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin-top: 18px;
  max-width: 34ch;
}
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all 0.35s var(--ease);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.footer__social svg { width: 18px; height: 18px; }

.footer__col h5 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col li { margin-bottom: 11px; }
.footer__col a, .footer__col span {
  font-size: var(--fs-sm);
  color: var(--muted);
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: var(--fs-micro);
  color: var(--dim);
  letter-spacing: 0.06em;
}
.footer__bottom b { color: var(--gold); font-weight: 600; }

.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer__legal a {
  color: var(--muted);
  transition: color 0.25s;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line);
}
.footer__legal a:hover { color: var(--gold); text-decoration-color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   BARRA MÓVIL
   ═══════════════════════════════════════════════════════════ */
.dock {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 880;
  background: rgba(10, 9, 8, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line-gold);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
}
.dock a {
  flex: 1;
  min-height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.dock a svg { width: 20px; height: 20px; color: var(--gold); }
.dock a.wa svg { color: #25d366; }
.dock a:active { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(6, 5, 5, 0.96);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 3vmin;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 94vw;
  max-height: 88vh;
  width: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  transform: scale(0.94);
  transition: transform 0.4s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: rgba(10, 9, 8, 0.7);
  transition: all 0.3s;
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }
.lightbox__close svg { width: 19px; height: 19px; }
.lightbox__cap {
  position: absolute;
  bottom: 20px; left: 0; right: 0;
  text-align: center;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════
   PÁGINAS LEGALES
   ═══════════════════════════════════════════════════════════ */
.legal { padding: calc(var(--nav-h) + clamp(40px, 6vw, 80px)) 0 var(--section); }

.legal__head { padding-bottom: 34px; border-bottom: 1px solid var(--line); margin-bottom: 44px; }
.legal__updated {
  margin-top: 18px;
  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

.legal__body { max-width: 74ch; }
.legal__body > * + * { margin-top: 18px; }
.legal__body p, .legal__body li { color: var(--muted); font-size: var(--fs-base); }

.legal__body h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  line-height: 1.1;
}
.legal__body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal__body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--gold);
  margin-top: 30px;
}
.legal__body strong { color: var(--text); font-weight: 600; }
.legal__body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal__body a:hover { color: var(--gold-soft); }

.legal__body ul, .legal__body ol { padding-left: 22px; }
.legal__body li { margin-bottom: 9px; }
.legal__body ul li { list-style: none; position: relative; }
.legal__body ul li::before {
  content: '';
  position: absolute;
  left: -18px; top: 0.62em;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.legal__body ol { list-style: decimal; }
.legal__body ol li::marker { color: var(--gold); font-weight: 600; }

/* Ficha de datos del titular */
.legal__data {
  border: 1px solid var(--line-gold);
  background: var(--card);
  padding: 24px 26px;
}
.legal__data dl { display: grid; grid-template-columns: minmax(140px, auto) 1fr; gap: 12px 22px; }
.legal__data dt {
  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  padding-top: 3px;
}
.legal__data dd { color: var(--text); font-size: var(--fs-sm); }

/* Marcador de dato pendiente de rellenar */
.todo {
  background: rgba(225, 29, 40, 0.14);
  border: 1px dashed var(--red);
  color: #ff9ba1;
  padding: 1px 8px;
  font-size: 0.86em;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Tabla de cookies */
.legal__table { overflow-x: auto; border: 1px solid var(--line); }
.legal__table table { width: 100%; border-collapse: collapse; min-width: 540px; }
.legal__table th, .legal__table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm);
  vertical-align: top;
}
.legal__table th {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  background: var(--card);
}
.legal__table td { color: var(--muted); }
.legal__table tr:last-child td { border-bottom: 0; }

.legal__nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

@media (max-width: 620px) {
  .legal__data dl { grid-template-columns: 1fr; gap: 4px; }
  .legal__data dd { margin-bottom: 14px; }
}

/* ═══════════════════════════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════════════════════════ */
/* Solo ocultamos si hay JS: sin JS el contenido se ve siempre */
.js .rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js .rv.is-in { opacity: 1; transform: none; }
.rv-1 { transition-delay: 0.08s; }
.rv-2 { transition-delay: 0.16s; }
.rv-3 { transition-delay: 0.24s; }
.rv-4 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile--hero { grid-column: span 2; grid-row: span 1; min-height: 260px; }
  .tile--wide { grid-column: span 2; }
  .tile--tall { grid-row: span 1; }
  .carta__cols { grid-template-columns: 1fr; }
  .carta__poster { position: static; max-width: 520px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav__links { gap: 15px; }
  .nav__links a:not(.btn) { font-size: 0.72rem; letter-spacing: 0.08em; }
  .brand__name { font-size: 1.02rem; letter-spacing: 0.1em; }
  .nav__inner { gap: 14px; }
}

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__figure { max-width: 460px; }
  .about__figure::before { inset: 18px -18px -18px 18px; }
  .visit__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 720px) {
  :root { --nav-h: 64px; }

  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: rgba(10, 9, 8, 0.985);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .nav__links.is-open { transform: none; }
  .nav__links a:not(.btn) { font-size: 1.28rem; font-family: 'Anton', sans-serif; letter-spacing: 0.14em; color: var(--cream); }
  .nav__links .btn { margin-top: 12px; }
  .burger { display: block; }

  .hero { padding-bottom: 110px; min-height: 94svh; }
  .hero__logo { width: min(78vw, 300px); margin-bottom: 20px; }
  .hero__sub span { display: block; }
  .hero__sub em { display: none; }
  .hero__sub span + span { margin-top: 6px; }
  .hero__tags { gap: 8px 14px; font-size: 0.68rem; }
  .hero__tags i { display: none; }
  .hero__cta { flex-direction: column; align-items: stretch; padding-inline: 8px; }
  .hero__scroll { display: none; }

  .about__list { grid-template-columns: 1fr; }
  .about__stamp { width: 92px; height: 92px; font-size: 0.82rem; right: -8px; bottom: -14px; }

  .bento { grid-template-columns: 1fr; }
  .tile--hero, .tile--wide { grid-column: span 1; }
  .tile { min-height: 190px; padding: 22px; }

  .drinks { grid-template-columns: 1fr; }
  .posters { grid-template-columns: repeat(2, 1fr); }
  .poster__title { font-size: 1rem; }
  .poster__mask { padding: 15px 13px; }
  .poster__sub { font-size: 0.66rem; }

  .next { flex-direction: column; align-items: flex-start; }

  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .dock { display: flex; }
  body { padding-bottom: 74px; }
}

@media (max-width: 420px) {
  .posters { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ── Accesibilidad: movimiento reducido ────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js .rv { opacity: 1; transform: none; }
  .hero__logo, .hero__sub, .hero__tags, .hero__cta, .hero__scroll { opacity: 1; }
  .grain { display: none; }
}

/* ── Impresión ─────────────────────────────────────────────── */
@media print {
  .nav, .dock, .grain, .progress, .hero__scroll, .map, .gallery { display: none !important; }
  body { background: #fff; color: #000; }
}
