/* ==========================================================================
   El Tunki'pe — Gastronomía del Perú
   Paleta: negro carbón / rojo tunki / azul logo / crema / ámbar (acento mínimo)
   Tipografía: Staatliches (display) + Hanken Grotesk (cuerpo)
   ========================================================================== */

:root {
  --negro: #0d0d0f;
  --carbon: #17171b;
  --rojo: #d7263d;
  --rojo-oscuro: #a81c2f;
  --azul: #2848a8;
  --azul-claro: #6f8fee;   /* azul legible sobre fondo oscuro */
  --crema: #f5efe6;
  --crema-oscura: #e9dfd0;
  --ambar: #f2a33c;
  --tinta: #221f1b;        /* texto sobre crema */
  --tinta-suave: #5c554b;
  --claro: #f1ece2;        /* texto sobre negro */
  --claro-suave: #b9b2a6;
  --display: 'Staatliches', 'Arial Narrow', sans-serif;
  --cuerpo: 'Hanken Grotesk', 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--cuerpo);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--tinta);
  background: var(--negro);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; }

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

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

/* ===== Tipografía de sección ===== */

.eyebrow {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rojo-oscuro); /* AA sobre crema */
}

/* Sobre fondo negro el rojo no alcanza AA: usar ámbar */
.platos .eyebrow, .ubicacion .eyebrow { color: var(--ambar); }

.titulo {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 3.9rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--tinta);
  margin: 0.35rem 0 1.1rem;
}

/* Firma del logo: doble subrayado rojo + azul bajo cada título */
.titulo::after {
  content: '';
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 0.9rem;
  background: linear-gradient(to right, var(--rojo) 0 60%, var(--azul) 60% 100%);
}

.titulo-claro { color: var(--claro); }

.seccion-crema { background: var(--crema); }

/* ===== Header ===== */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding: 1rem 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.header.compacto {
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.55rem 0;
  box-shadow: 0 1px 0 rgba(241, 236, 226, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { text-decoration: none; line-height: 1.1; }

.brand-name {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--claro);
}

.brand-name em { font-style: normal; color: var(--rojo); }
.brand-name strong { font-weight: 400; color: var(--azul-claro); }

.brand-tag {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--claro-suave);
}

.nav { display: flex; align-items: center; gap: 1.7rem; }

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--claro);
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.nav a:hover { color: #fff; border-bottom-color: var(--rojo); }

.nav .nav-cta {
  background: var(--rojo);
  color: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border-bottom: none;
  transition: background 0.25s ease, transform 0.25s var(--ease);
}

.nav .nav-cta:hover { background: var(--rojo-oscuro); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--claro);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

/* ===== Hero ===== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(13, 13, 15, 0.88) 0%, rgba(13, 13, 15, 0.55) 55%, rgba(13, 13, 15, 0.25) 100%),
    linear-gradient(to top, rgba(13, 13, 15, 0.85), transparent 35%);
}

.hero-content { position: relative; z-index: 1; padding: 7rem 0 5rem; }

.hero-logo {
  width: clamp(120px, 14vw, 190px);
  height: auto;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.55));
  animation: hero-in 0.9s var(--ease) backwards;
}

.hero-eyebrow {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ambar);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(4.2rem, 12.5vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
}

.hero-title .line { display: block; }
.line-1 { color: var(--claro); }
.line-2 { color: var(--rojo); }
.line-3 {
  color: var(--azul-claro);
  text-shadow: 5px 5px 0 rgba(215, 38, 61, 0.35); /* doble impresión, guiño al cartel chicha */
}

.hero-sub {
  max-width: 34rem;
  margin: 1.6rem 0 2.2rem;
  font-size: 1.15rem;
  color: var(--claro);
}

/* Entrada del hero al cargar */
.hero-eyebrow, .hero-title .line, .hero-sub, .hero-ctas {
  animation: hero-in 0.9s var(--ease) backwards;
}
.hero-title .line-1 { animation-delay: 0.1s; }
.hero-title .line-2 { animation-delay: 0.22s; }
.hero-title .line-3 { animation-delay: 0.34s; }
.hero-sub { animation-delay: 0.5s; }
.hero-ctas { animation-delay: 0.62s; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--claro-suave);
  border-radius: 14px;
  z-index: 1;
}

.hero-scroll span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--claro);
  animation: rueda 1.8s ease-in-out infinite;
}

@keyframes rueda {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0.2; }
}

/* ===== Botones ===== */

.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 1.9rem;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover { transform: translateY(-3px); }

.btn-rojo { background: var(--rojo); color: #fff; }
.btn-rojo:hover { background: var(--rojo-oscuro); }

.btn-negro { background: var(--negro); color: var(--claro); }
.btn-negro:hover { background: var(--azul); color: #fff; }

.btn-borde { border: 2px solid var(--claro); color: var(--claro); }
.btn-borde:hover { background: var(--claro); color: var(--negro); }

.btn-borde-claro { border: 2px solid var(--claro); color: var(--claro); }
.btn-borde-claro:hover { background: var(--claro); color: var(--negro); }

/* ===== Nosotros ===== */

.nosotros { padding: 6.5rem 0; }

.nosotros-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}

.nosotros-texto > p:not(.eyebrow) { color: var(--tinta-suave); }

.nosotros-puntos { list-style: none; margin-top: 1.8rem; }

.nosotros-puntos li {
  padding: 0.85rem 0 0.85rem 1.6rem;
  position: relative;
  color: var(--tinta-suave);
  border-bottom: 1px solid var(--crema-oscura);
}

.nosotros-puntos li strong { color: var(--tinta); }

.nosotros-puntos li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.42rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rojo);
}

.nosotros-puntos li:nth-child(2)::before { background: var(--azul); }
.nosotros-puntos li:nth-child(3)::before { background: var(--ambar); }

.nosotros-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 14px 14px 0 var(--rojo), 14px 14px 0 1px var(--rojo);
  transform: rotate(1.2deg);
}

.nosotros-media img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }

.nosotros-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 1.2rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--claro);
  background: linear-gradient(to top, rgba(13, 13, 15, 0.75), transparent);
}

/* ===== Platos estrella ===== */

.platos { background: var(--negro); padding: 6.5rem 0; }

.platos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.plato {
  background: var(--carbon);
  border-radius: 16px;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(241, 236, 226, 0.07);
  transition: transform 0.35s var(--ease), border-color 0.3s ease;
}

.plato:hover { transform: translateY(-6px); border-color: rgba(215, 38, 61, 0.5); }

.plato-grande { grid-column: span 3; display: grid; grid-template-columns: 1.6fr 1fr; }

.plato img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.plato-grande img { aspect-ratio: auto; height: 100%; }

.plato:hover img { transform: scale(1.035); }

.plato-grande:hover img { transform: scale(1.02); }

.plato-info { padding: 1.4rem 1.5rem 1.6rem; align-self: center; }

.plato-info h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.65rem;
  letter-spacing: 0.03em;
  color: var(--claro);
}

.plato-info p { font-size: 0.95rem; color: var(--claro-suave); margin: 0.4rem 0 0.9rem; }

.plato-precio {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--ambar);
  letter-spacing: 0.05em;
}

/* ===== La carta ===== */

.carta { padding: 6.5rem 0; }

.carta-nota { color: var(--tinta-suave); font-size: 0.95rem; margin-bottom: 2rem; }

.carta-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.4rem;
}

.tab-btn {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--tinta);
  background: transparent;
  border: 2px solid var(--tinta);
  border-radius: 999px;
  padding: 0.45rem 1.15rem;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.25s var(--ease);
}

.tab-btn:hover { transform: translateY(-2px); border-color: var(--rojo); color: var(--rojo); }

.tab-btn.activa {
  background: var(--rojo);
  border-color: var(--rojo);
  color: #fff;
}

.carta-lista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.5rem;
  row-gap: 0.3rem;
}

.carta-item {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.95rem 0;
  border-bottom: 1px dashed var(--crema-oscura);
  min-width: 0;
  animation: item-in 0.5s var(--ease) backwards;
}

@keyframes item-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.carta-item-texto { min-width: 0; }

.carta-item h3 {
  font-family: var(--cuerpo);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tinta);
}

.carta-item p { font-size: 0.9rem; color: var(--tinta-suave); line-height: 1.5; }

.carta-item .puntos {
  flex: 1;
  min-width: 1.5rem;
  border-bottom: 2px dotted rgba(92, 85, 75, 0.45);
  transform: translateY(-5px);
}

.carta-precio {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--rojo-oscuro); /* AA sobre crema */
  white-space: nowrap;
}

.carta-cta {
  margin-top: 3.5rem;
  padding: 2.2rem 2.5rem;
  border-radius: 18px;
  background: var(--negro);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.carta-cta p {
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--claro);
}

.carta-cta-botones { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.carta-cta .btn-negro { border: 2px solid var(--claro); }

/* ===== Reseñas ===== */

.resenas {
  padding: 6.5rem 0 7rem;
  background:
    radial-gradient(58% 75% at 12% 15%, rgba(215, 38, 61, 0.16), transparent 62%),
    radial-gradient(50% 70% at 88% 85%, rgba(40, 72, 168, 0.2), transparent 62%),
    var(--negro);
  overflow: hidden;
}

.resenas .eyebrow { color: var(--ambar); }

.resenas-sub { color: var(--claro-suave); margin-bottom: 2.5rem; }

.resenas-escenario { perspective: 1200px; }

.resenas-pista {
  position: relative;
  transition: height 0.4s ease;
}

.resena-card {
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(620px, 92%);
  transform: translateX(-50%);
  background: var(--crema);
  color: var(--tinta);
  border-radius: 20px;
  padding: 1.8rem 2rem 1.9rem;
  box-shadow:
    0 34px 70px -28px rgba(215, 38, 61, 0.4),
    0 34px 70px -24px rgba(40, 72, 168, 0.35);
  transition: transform 0.9s var(--ease), opacity 0.9s ease, filter 0.9s ease;
  will-change: transform, opacity;
}

/* Posiciones del escenario */
.resena-card.pos-centro {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 3;
}

.resena-card.pos-der {
  transform: translateX(28%) scale(0.8) rotateY(-9deg);
  opacity: 0.28;
  filter: blur(1.5px) saturate(0.7);
  z-index: 2;
}

.resena-card.pos-izq {
  transform: translateX(-128%) scale(0.8) rotateY(9deg);
  opacity: 0.28;
  filter: blur(1.5px) saturate(0.7);
  z-index: 2;
}

.resena-card.pos-fuera-der {
  transform: translateX(95%) scale(0.6);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.resena-card.pos-fuera-izq {
  transform: translateX(-195%) scale(0.6);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.resena-card.pos-centro .resena-texto { animation: texto-in 0.8s var(--ease) 0.25s backwards; }

@keyframes texto-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.resena-g {
  position: absolute;
  top: 1.6rem;
  right: 1.7rem;
  width: 26px;
  height: 26px;
}

.resena-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.7rem;
}

.resena-avatar {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.35rem;
  color: #fff;
}

.resena-quien { display: flex; flex-direction: column; line-height: 1.3; }

.resena-quien strong { font-size: 1.05rem; }

.resena-quien span { font-size: 0.82rem; color: var(--tinta-suave); }

.resena-stars {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: #e8a613;
}

.resena-stars time { font-size: 0.82rem; letter-spacing: 0; color: var(--tinta-suave); }

.resena-texto { font-size: 0.98rem; line-height: 1.6; color: var(--tinta); }

.resenas-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2.2rem;
}

.resena-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(241, 236, 226, 0.28);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s var(--ease);
}

.resena-dot.activa { background: var(--ambar); width: 26px; }

/* ===== Ubicación ===== */

.ubicacion { background: var(--negro); padding: 6.5rem 0; }

.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.ubicacion address { font-style: normal; margin-bottom: 2rem; }

.ubicacion address a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--claro);
  text-decoration-color: var(--rojo);
  text-underline-offset: 5px;
}

.horarios { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }

.horarios caption {
  text-align: left;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ambar);
  padding-bottom: 0.6rem;
}

.horarios th, .horarios td {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(241, 236, 226, 0.12);
  font-size: 0.98rem;
}

.horarios th { text-align: left; font-weight: 600; color: var(--claro); }
.horarios td { text-align: right; color: var(--claro-suave); }

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--claro);
  text-decoration: none;
  border-bottom: 2px solid var(--azul-claro);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.ig-link:hover { color: var(--azul-claro); border-color: var(--rojo); }

.ubicacion-mapa {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(241, 236, 226, 0.12);
}

.ubicacion-mapa iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  filter: grayscale(0.85) contrast(1.05);
  transition: filter 0.4s ease;
}

.ubicacion-mapa:hover iframe { filter: none; }

/* ===== Footer ===== */

.footer {
  background: #08080a;
  padding: 4rem 0 6rem;
  color: var(--claro-suave);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem 4rem;
  align-items: center;
}

.footer-marca { display: flex; align-items: center; gap: 1.2rem; }

.footer-marca img {
  width: 88px;
  height: auto;
  background: var(--crema);
  border-radius: 14px;
  padding: 6px;
}

.footer-marca p { font-size: 0.92rem; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--claro);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease;
}

.footer-nav a:hover { border-bottom-color: var(--rojo); }

.footer-firma {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  border-top: 1px solid rgba(241, 236, 226, 0.1);
  padding-top: 1.5rem;
}

/* ===== Barra móvil fija ===== */

.barra-movil {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(13, 13, 15, 0.94);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(241, 236, 226, 0.12);
  transform: translateY(105%);
  transition: transform 0.4s var(--ease);
}

.barra-movil.visible { transform: none; }

.barra-movil .btn { flex: 1; text-align: center; padding: 0.7rem 1rem; font-size: 1rem; }

/* ===== Reveal al hacer scroll ===== */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease);
}

[data-reveal].visto { opacity: 1; transform: none; }

/* ===== Móvil: diseñado, no encogido ===== */

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(13, 13, 15, 0.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .nav.abierta { opacity: 1; pointer-events: auto; }

  .nav a { font-family: var(--display); font-size: 1.9rem; letter-spacing: 0.08em; }

  .nav-toggle { display: flex; position: relative; z-index: 65; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: 88svh; }

  .hero-content { padding: 6.5rem 0 4rem; }

  .hero-scroll { display: none; }

  .nosotros, .platos, .carta, .ubicacion { padding: 4.5rem 0; }

  .resenas { padding: 4.5rem 0 5rem; }

  /* En móvil solo se ve la tarjeta central */
  .resena-card { width: 100%; padding: 1.5rem 1.4rem 1.6rem; }

  .resena-card.pos-der, .resena-card.pos-izq { opacity: 0; pointer-events: none; }

  .resena-card.pos-der { transform: translateX(60%) scale(0.8); }

  .resena-card.pos-izq { transform: translateX(-160%) scale(0.8); }

  .nosotros-grid { grid-template-columns: 1fr; gap: 2.8rem; }

  .nosotros-media { transform: none; box-shadow: 8px 8px 0 var(--rojo); }

  .nosotros-media video { aspect-ratio: 1 / 1; }

  .platos-grid { grid-template-columns: 1fr; }

  .plato-grande { grid-column: auto; grid-template-columns: 1fr; }

  .plato img { aspect-ratio: 16 / 10; }

  /* Pestañas: carril horizontal con scroll, pensado para el pulgar */
  .carta-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 0.6rem;
    margin-inline: calc(50% - 50vw);
    padding-inline: 1.5rem;
    scrollbar-width: none;
  }

  .carta-tabs::-webkit-scrollbar { display: none; }

  .tab-btn { flex: 0 0 auto; scroll-snap-align: start; }

  .carta-lista { grid-template-columns: 1fr; }

  .carta-cta { flex-direction: column; align-items: stretch; text-align: center; }

  .carta-cta-botones { flex-direction: column; }

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

  .ubicacion-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .ubicacion-mapa iframe { height: 320px; }

  .footer { padding-bottom: 7.5rem; } /* deja aire para la barra fija */

  .footer-inner { grid-template-columns: 1fr; }

  .footer-nav { justify-content: flex-start; }

  .barra-movil { display: flex; gap: 0.7rem; }
}

/* ===== Movimiento reducido ===== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] { opacity: 1; transform: none; }

  .hero-scroll span { animation: none; }
}
