/* ============ TOKENS (cambia aquí los colores del cliente) ============ */
:root {
  /* Paleta «Abetterlou» (refero.design): brasas sobre cuero */
  --fondo: #140b00;         /* Espresso */
  --hondo: #0b0600;         /* Midnight Cocoa: pie y bandas */
  --tarjeta: #1b1105;       /* un paso sobre el lienzo */
  --boton: #21170b;
  --linea: #43392d;         /* Walnut */
  --linea-clara: #fff1e0;
  --cedro: #4f4538;         /* Cedar: bordes de inputs */
  --texto: #fff1e0;         /* Warm Cream */
  --suave: #a89a8a;         /* Driftwood aclarado para contraste AA */
  --acento: #ffb442;        /* Amber Forge: único acento */
  --acento-texto: #140b00;

  --f-display: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --f-texto: 'Manrope', ui-sans-serif, system-ui, sans-serif;

  --r-tarjeta: 6px;
  --r-pill: 9999px;
  --ancho: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --sec: clamp(64px, 9vw, 112px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--fondo); color: var(--texto);
  font: 400 16px/1.5 var(--f-texto);
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--acento); outline-offset: 3px; border-radius: 4px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.saltar { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--acento); color: var(--acento-texto); padding: 10px 16px; border-radius: var(--r-pill); }
.saltar:focus { top: 44px; }

/* ============ TIPOGRAFÍA ============ */
.titulo, .titulo-m, .hero-titulo, .logo, .subtitulo, .cifra b, .desfile-nombre {
  font-family: var(--f-display); font-weight: 400;
}
.titulo { font-size: clamp(34px, 4.6vw, 55px); line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance; }
.titulo-m { font-size: clamp(28px, 3vw, 35px); line-height: 1.1; letter-spacing: -0.006em; }
.subtitulo { font-size: 19px; line-height: 1.3; font-weight: 500; margin-bottom: 14px; }
.eyebrow { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--suave); margin-bottom: 18px; font-weight: 500; }
.texto-suave { color: var(--suave); max-width: 52ch; }
.mini { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--suave); margin: 22px 0 10px; font-weight: 500; }
.nota { color: var(--suave); font-size: 14px; margin-top: 24px; }
.mt { margin-top: 24px; }
.titulo + .texto-suave { margin-top: 22px; }
.linea-mask { padding-block: .12em .04em; margin-block: -.12em -.04em; }

/* ============ BOTONES ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 24px; border-radius: var(--r-pill);
  text-decoration: none; font-weight: 500; font-size: 15px; letter-spacing: .01em;
  border: 1px solid transparent; cursor: pointer; background: none;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn-primario { background: var(--acento); color: var(--acento-texto); font-weight: 500; }
.btn-primario:hover { background: #ffc466; }
.btn-fantasma { border-color: var(--linea-clara); color: var(--texto); }
.btn-fantasma:hover { background: var(--texto); color: var(--fondo); }
.btn-ancho { width: 100%; }
.btn[aria-disabled="true"] { opacity: .55; }

/* ============ AVISO + CABECERA ============ */
.aviso-demo {
  position: relative; z-index: 60; text-align: center; font-size: 12px; letter-spacing: .06em;
  padding: 7px 16px; background: var(--hondo); color: var(--suave);
}
.cabecera {
  position: fixed; inset: 30px 0 auto; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  padding: 14px var(--gutter);
  transition: background-color .35s var(--ease), inset .35s var(--ease), backdrop-filter .35s;
}
.cabecera.solida { inset: 0 0 auto; background: rgba(20, 11, 0, .82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.06); }
.logo { white-space: nowrap; font-size: 17px; font-weight: 500; letter-spacing: .01em; align-items: center; text-decoration: none; display: flex; align-items: baseline; gap: 10px; }
.logo span { font-family: var(--f-texto); font-size: 12px; font-weight: 400; letter-spacing: .1em; color: var(--suave); text-transform: uppercase; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a { white-space: nowrap; text-decoration: none; padding: 8px 16px; border-radius: var(--r-pill); font-size: 15px; transition: background-color .2s; }
.nav a:hover { background: rgba(255,255,255,.08); }
.btn-cab { min-height: 42px; padding: 9px 20px; }
.menu-btn { display: none; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; margin-top: -30px; }
.hero-foto { position: absolute; inset: 0 0 0 18%; }
.hero-foto img, .hero-video {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%;
  /* bordes difuminados hacia el lienzo */
  -webkit-mask-image: radial-gradient(ellipse 72% 80% at 58% 50%, #000 45%, transparent 100%);
          mask-image: radial-gradient(ellipse 72% 80% at 58% 50%, #000 45%, transparent 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, var(--fondo) 0%, rgba(20,11,0,.55) 38%, transparent 70%),
    linear-gradient(to right, rgba(20,11,0,.75) 0%, transparent 60%);
}
.hero-contenido { position: relative; z-index: 2; padding: 0 var(--gutter) clamp(72px, 12vh, 140px); max-width: 1100px; }
.hero-titulo { font-size: clamp(46px, 7vw, 88px); line-height: .98; letter-spacing: -0.015em; font-weight: 400; margin-bottom: 24px; }
.hero-sub { font-size: clamp(17px, 1.6vw, 20px); color: var(--texto); opacity: .9; margin-bottom: 32px; max-width: 44ch; }
.hero-acciones { display: flex; flex-wrap: wrap; gap: 12px; }
.estado { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: var(--r-pill); background: rgba(20,11,0,.6); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.12); letter-spacing: .06em; }
.estado::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--suave); }
.estado.abierto::before { background: #5fd38a; box-shadow: 0 0 0 4px rgba(95,211,138,.18); }
.hero-scroll { position: absolute; z-index: 2; right: var(--gutter); bottom: 40px; width: 28px; height: 46px; border: 1px solid rgba(255,255,255,.4); border-radius: 20px; }
.hero-scroll span { position: absolute; left: 50%; top: 9px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: var(--texto); animation: rueda 1.8s var(--ease) infinite; }
@keyframes rueda { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* El vídeo aparece con un fundido cuando ya se está reproduciendo (sin foto previa) */
.hero-video { opacity: 0; transition: opacity .8s var(--ease); }
.hero-video.listo { opacity: 1; }
.hero-foto .hero-video { position: absolute; inset: 0; }
/* Nombre del plato que sale en el vídeo */
.hero-plato { position: absolute; z-index: 2; right: var(--gutter); bottom: clamp(24px, 5vh, 48px); margin: 0; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--suave); transition: opacity .6s var(--ease); }
.hero-plato::before { content: "En la carta · "; color: var(--acento); }
.hero-plato:empty { opacity: 0; }

/* ============ SECCIONES ============ */
.seccion { padding: var(--sec) 0; }
.contenedor { width: min(100% - 2 * var(--gutter), var(--ancho)); margin-inline: auto; }
.estrecho { max-width: 820px; }
.dos-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.cabeza-seccion { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.tarjeta { background: var(--tarjeta); border: 1px solid #22180c; border-radius: var(--r-tarjeta); padding: clamp(22px, 3vw, 32px); }
.rejilla-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }

.historia-texto p { font-size: clamp(17px, 1.5vw, 19px); color: var(--suave); margin-bottom: 18px; }
.historia-texto p:first-child { color: var(--texto); }
.cifras { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: clamp(56px, 8vw, 96px); border-top: 1px solid var(--linea); padding-top: 40px; }
.cifra b { display: block; font-size: clamp(34px, 4vw, 52px); line-height: 1; margin-bottom: 10px; font-weight: 500; }
.cifra span { color: var(--suave); font-size: 14px; }

/* ============ DESFILE (sección fijada) ============ */
.desfile { position: relative; }
.desfile-fijo { height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.desfile-eyebrow { padding-inline: var(--gutter); }
.desfile-pista { display: flex; gap: clamp(16px, 3vw, 40px); padding-inline: var(--gutter); width: max-content; }
.desfile-item { width: clamp(280px, 38vw, 520px); flex: none; }
.desfile-item figure { margin: 0; aspect-ratio: 4 / 5; border-radius: var(--r-tarjeta); overflow: hidden; background: var(--tarjeta); }
.desfile-item img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); }
.desfile-num { color: var(--suave); font-size: 13px; letter-spacing: .12em; margin-top: 18px; }
.desfile-nombre { font-size: clamp(26px, 3vw, 38px); margin-top: 4px; }

/* ============ CARTA ============ */
.filtros { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { border: 1px solid var(--linea); background: none; border-radius: var(--r-pill); padding: 9px 18px; min-height: 42px; cursor: pointer; font-size: 14px; transition: background-color .2s, border-color .2s, color .2s; }
.chip:hover { border-color: var(--linea-clara); }
.chip[aria-pressed="true"] { background: var(--texto); color: var(--fondo); border-color: var(--texto); }
.rejilla-burgers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.burger { background: var(--tarjeta); border-radius: var(--r-tarjeta); overflow: hidden; }
.burger[hidden] { display: none; }
.burger button { all: unset; display: block; width: 100%; cursor: pointer; }
.burger button:focus-visible { outline: 2px solid var(--acento); outline-offset: -2px; }
.burger-foto { aspect-ratio: 3 / 2; overflow: hidden; }
.burger-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.burger:hover .burger-foto img { transform: scale(1.06); }
.burger-cuerpo { padding: 22px 24px 26px; }
.burger-cab { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.burger-cab h3 { font-family: var(--f-display); font-weight: 400; font-size: 22px; }
.precio { font-variant-numeric: tabular-nums; font-weight: 500; white-space: nowrap; }
.burger p { color: var(--suave); font-size: 15px; margin-top: 8px; }
.etiquetas { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
.etiqueta { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-pill); background: var(--boton); color: var(--suave); }
.etiqueta.picante { color: #ff9b73; }
.etiqueta.vegetariana { color: #9fd9a8; }
.etiqueta.nueva { color: var(--texto); }
.carta-extra { margin-top: 56px; gap: 16px; }
.lista-precios li { display: grid; grid-template-columns: 1fr auto; gap: 2px 16px; padding: 14px 0; border-bottom: 1px solid var(--linea); }
.lista-precios li:last-child { border-bottom: 0; }
.lista-precios small { grid-column: 1; color: var(--suave); font-size: 14px; }
.alergenos-leyenda { margin-top: 24px; color: var(--suave); font-size: 14px; }
.alergenos-leyenda summary { cursor: pointer; padding: 8px 0; }
.alergenos-leyenda ul { display: flex; flex-wrap: wrap; gap: 8px 18px; padding-top: 10px; }
.alergenos { display: flex; flex-wrap: wrap; gap: 6px; }
.alergenos li { font-size: 13px; padding: 5px 12px; border-radius: var(--r-pill); border: 1px solid var(--linea); }

/* ============ BEBIDAS ============ */
.bebidas { position: relative; overflow: hidden; }
.bebidas-foto { position: absolute; inset: -10% 0 auto; height: 120%; opacity: .22; pointer-events: none; }
.bebidas-foto img { width: 100%; height: 100%; object-fit: cover;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 60%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 60%, transparent); }
.bebidas .contenedor { position: relative; }
.rejilla-bebidas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.rejilla-bebidas .tarjeta { background: rgba(29, 25, 22, .86); backdrop-filter: none; }

/* ============ OFERTAS ============ */
.oferta { display: flex; flex-direction: column; gap: 12px; min-height: 220px; }
.oferta-precio { font-family: var(--f-display); font-size: 40px; font-weight: 500; line-height: 1; margin-top: auto; }
.oferta p { color: var(--suave); }

/* ============ RESERVAS ============ */
.ventajas { margin: 28px 0 32px; display: grid; gap: 12px; }
.ventajas li { padding-left: 28px; position: relative; color: var(--suave); }
.ventajas li::before { content: ""; position: absolute; left: 0; top: .55em; width: 14px; height: 1px; background: var(--acento); }
.form-reserva, .confirmacion { display: grid; gap: 18px; }
.fila { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.campo { display: grid; gap: 8px; border: 0; padding: 0; margin: 0; min-width: 0; }
.campo label, .campo legend { font-size: 14px; color: var(--suave); padding: 0; }
.opcional { opacity: .7; }
input:not([type="checkbox"]):not([type="radio"]), select, textarea {
  width: 100%; min-height: 48px; padding: 12px 20px; border-radius: 24px;
  background: transparent; border: 1px solid var(--cedro); color: var(--texto);
  transition: border-color .2s;
}
textarea { resize: vertical; border-radius: 18px; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--suave) 50%), linear-gradient(135deg, var(--suave) 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 17px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
input:focus, select:focus, textarea:focus { border-color: var(--acento); outline: none; }
input[type="date"] { color-scheme: dark; }
.form-reserva.intentado :invalid { border-color: #ff8a7a; }
.segmentado { display: flex; background: var(--boton); border-radius: 24px; padding: 4px; min-height: 48px; }
.segmentado label { flex: 1; }
.segmentado input { position: absolute; opacity: 0; }
.segmentado span { display: grid; place-items: center; height: 100%; min-height: 40px; border-radius: 20px; cursor: pointer; font-size: 14px; transition: background-color .2s, color .2s; }
.segmentado input:checked + span { background: var(--texto); color: var(--fondo); }
.segmentado input:focus-visible + span { outline: 2px solid var(--acento); }
.check { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--suave); cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--acento); }
.form-error { color: #ff9c8f; font-size: 14px; min-height: 1em; }
.confirmacion[hidden] { display: none; }

/* ============ PEDIDOS / CLUB ============ */
.pedidos { padding-top: 0; }
.pedidos-caja, .club-caja { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.pedidos-botones { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.form-club { display: flex; flex-wrap: wrap; gap: 10px; }
.form-club input { flex: 1 1 220px; }
.form-ok { width: 100%; color: #9fd9a8; font-size: 14px; min-height: 1em; }

/* ============ UBICACIÓN ============ */
.ubicacion { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; margin-top: 40px; }
.mapa { padding: 0; overflow: hidden; min-height: 420px; }
.mapa iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(1) invert(.92) sepia(.35) contrast(.9); }
.ubicacion-info { display: grid; gap: 16px; }
.botones-linea { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.horario li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--linea); font-size: 15px; color: var(--suave); }
.horario li:last-child { border: 0; }
.horario li.hoy { color: var(--texto); font-weight: 500; }
.horario li.hoy span:first-child::after { content: " · hoy"; color: var(--acento); }
.rejilla-aparca { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; margin-top: 16px; }
.aparca li { display: grid; grid-template-columns: 1fr auto; gap: 2px 16px; padding: 12px 0; border-bottom: 1px solid var(--linea); }
.aparca li:last-child { border: 0; }
.aparca small { color: var(--suave); font-size: 14px; }
.aparca .dist { color: var(--texto); font-size: 14px; white-space: nowrap; }
.rejilla-aparca p { color: var(--suave); }

/* ============ GALERÍA ============ */
.galeria { overflow: hidden; padding: 8px 0; }
.galeria-pista { display: flex; gap: 16px; width: max-content; padding-inline: var(--gutter); }
.galeria img { width: clamp(260px, 30vw, 440px); aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r-tarjeta); }

/* ============ RESEÑAS / GRUPOS / FAQ ============ */
.resena { display: flex; flex-direction: column; gap: 16px; }
.estrellas { color: var(--acento); letter-spacing: .12em; }
.resena p { font-size: 17px; }
.resena footer { color: var(--suave); font-size: 14px; margin-top: auto; }
.nota-media { font-family: var(--f-display); font-size: 44px; line-height: 1; }
.nota-media small { display: block; font-family: var(--f-texto); font-size: 13px; color: var(--suave); margin-top: 6px; }
.grupos-foto { border-radius: var(--r-tarjeta); overflow: hidden; }
.grupos-foto img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.grupos .dos-col { align-items: center; }
.faq { margin-top: 32px; border-top: 1px solid var(--linea); }
.faq details { border-bottom: 1px solid var(--linea); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 40px 22px 0; font-size: 18px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; translate: 0 -50%; font-size: 24px; color: var(--suave); transition: rotate .3s var(--ease); }
.faq details[open] summary::after { rotate: 45deg; }
.faq details p { color: var(--suave); padding-bottom: 22px; max-width: 62ch; }

/* ============ PIE ============ */
.pie { background: var(--hondo); border-top: 1px solid var(--linea); padding: 72px 0 110px; }
.pie-rejilla { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.logo-pie { margin-bottom: 14px; }
.pie-titulo { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--suave); margin-bottom: 14px; font-weight: 500; }
.pie a { color: var(--texto); text-decoration: none; line-height: 1.9; }
.pie a:hover { text-decoration: underline; }
.redes a { margin-right: 14px; }
.pie-aviso { width: min(100% - 2 * var(--gutter), var(--ancho)); margin: 48px auto 0; font-size: 12px; color: var(--suave); }

/* ============ BARRA MÓVIL ============ */
.barra-movil { display: none; }

/* ============ FICHA (dialog) ============ */
.ficha { width: min(92vw, 560px); max-height: 90svh; padding: 0; border: 0; border-radius: 16px; background: var(--tarjeta); color: var(--texto); overflow: auto; }
.ficha::backdrop { background: rgba(0,0,0,.65); backdrop-filter: blur(4px); }
.ficha[open] { animation: ficha-in .4s var(--ease); }
@keyframes ficha-in { from { opacity: 0; transform: translateY(16px) scale(.98); } }
.ficha img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.ficha-cuerpo { padding: 28px; }
.ficha-cerrar { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(20,11,0,.75); color: var(--texto); font-size: 26px; cursor: pointer; }
.ingredientes li { padding: 6px 0; color: var(--suave); border-bottom: 1px solid var(--linea); }
.ficha .check { margin-top: 22px; color: var(--texto); }
.ficha-precio { font-family: var(--f-display); font-size: 32px; margin-top: 16px; }

/* ============ PIEZAS PROPIAS DE LA TABERNA ============ */
.monograma { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--acento); color: var(--acento); font: 500 12px/1 Georgia, serif; letter-spacing: .02em; margin-right: 10px; }
.flecha { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--acento); color: var(--acento-texto); text-decoration: none; font-size: 20px; transition: transform .3s var(--ease); }
.hero-acciones:hover .flecha { transform: rotate(45deg); }
.rasgos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: clamp(48px, 7vw, 80px); }
.rasgo { border-bottom: 1px solid var(--linea); padding: 12px 0 16px; }
.rasgo h3 { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.rasgo p { color: var(--suave); font-size: 14px; }

/* Carta con pestañas y línea de puntos, como la pizarra de una taberna */
.pestanas { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.chip[aria-selected="true"] { background: var(--acento); color: var(--acento-texto); border-color: var(--acento); }
.panel-intro { color: var(--suave); margin-bottom: 8px; }
.platos { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(32px, 6vw, 80px); }
.plato { padding: 20px 0; border-bottom: 1px solid var(--linea); }
.plato-cab { display: flex; align-items: baseline; gap: 10px; }
.plato-cab h3 { font-size: 18px; font-weight: 500; }
.puntos { flex: 1; border-bottom: 1px dotted var(--linea); transform: translateY(-4px); min-width: 20px; }
.plato .precio { color: var(--acento); }
.plato .precio small { color: var(--suave); font-size: 12px; }
.plato p { color: var(--suave); font-size: 15px; margin-top: 4px; }
.plato .alergenos { margin-top: 10px; }
.plato .alergenos li { font-size: 11px; padding: 3px 9px; color: var(--suave); }

/* Banda de partidos, un paso más honda */
.partidos { background: var(--hondo); border-block: 1px solid var(--linea); }

/* Preguntas en banda crema: el sistema se da la vuelta */
.faq-banda { background: var(--texto); color: var(--fondo); }
.faq-banda .eyebrow { color: #6b5d4d; }
.faq-banda .faq, .faq-banda .faq details { border-color: #d9c9b2; }
.faq-banda .faq summary::after { color: var(--fondo); }
.faq-banda .faq details p { color: #4f4538; }
.faq-banda :focus-visible { outline-color: var(--fondo); }

/* ============ ANIMACIÓN: estado inicial (solo con JS y sin movimiento reducido) ============ */
.js-anima [data-revela] { opacity: 0; transform: translateY(32px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-plato { top: 110px; bottom: auto; }
  .rejilla-burgers { grid-template-columns: repeat(2, 1fr); }
  .rejilla-bebidas { grid-template-columns: repeat(2, 1fr); }
  .rasgos { grid-template-columns: repeat(3, 1fr); }
  .pie-rejilla { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .hero-foto { inset: 0; width: auto; }
  .nav { position: fixed; inset: 0; z-index: -1; flex-direction: column; justify-content: center; align-items: center; gap: 8px; background: var(--fondo); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
  .nav a { font-family: var(--f-display); font-size: 30px; }
  .nav.abierto { opacity: 1; visibility: visible; }
  .btn-cab { display: none; }
  .menu-btn { display: grid; gap: 7px; place-content: center; margin-left: auto; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(20,11,0,.4); cursor: pointer; }
  .menu-btn i { display: block; width: 18px; height: 1.5px; background: var(--texto); transition: transform .3s var(--ease); }
  .menu-btn[aria-expanded="true"] i:first-of-type { transform: translateY(4.25px) rotate(45deg); }
  .menu-btn[aria-expanded="true"] i:last-of-type { transform: translateY(-4.25px) rotate(-45deg); }
  .dos-col, .ubicacion, .rejilla-aparca, .pedidos-caja, .club-caja { grid-template-columns: 1fr; }
  .rejilla-3 { grid-template-columns: 1fr; }
  .cifras { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .pedidos-botones { justify-content: flex-start; }
  .mapa, .mapa iframe { min-height: 300px; }
  .barra-movil {
    display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 6px;
    position: fixed; z-index: 40; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 6px; border-radius: var(--r-pill); background: rgba(29,25,22,.9);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.08);
  }
  .barra-movil a { display: grid; place-items: center; min-height: 46px; border-radius: var(--r-pill); text-decoration: none; font-size: 14px; font-weight: 500; }
  .barra-movil .destacado { background: var(--acento); color: var(--acento-texto); font-weight: 600; }
  .hero-scroll { display: none; }
  /* el desfile pasa a carrusel horizontal con scroll-snap */
  .desfile-fijo { height: auto; padding: var(--sec) 0 0; }
  .desfile-pista { width: auto; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: none; }
  .desfile-item { width: 78vw; scroll-snap-align: center; }
}
@media (max-width: 600px) {
  .rejilla-burgers, .rejilla-bebidas, .pie-rejilla { grid-template-columns: 1fr; }
  .fila { grid-template-columns: 1fr; }
  .platos { grid-template-columns: 1fr; }
  .rasgos { grid-template-columns: 1fr 1fr; }
  .logo span { display: none; }
  .hero-acciones .btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video, .hero-plato { display: none; }
  .hero-foto { background: url(https://images.unsplash.com/photo-1626011852881-4609127619a8?w=1200&q=80&auto=format) center / cover; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
