/* =====================================
   MOKADU — Estilos
   ===================================== */

/* ── FUENTES LOCALES ── */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/BricolageGrotesque-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/BricolageGrotesque-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/BricolageGrotesque-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/BricolageGrotesque-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg:       #fdf8f0;
  --bg-2:     #fef4e6;
  --fg:       #1c0805;
  --fg-muted: #7a5c45;
  --red:      #cc1c1c;
  --red-dk:   #9e1a17;
  --red-lt:   #fdecea;
  --border:   #e8d5c0;
  --display:  'Bebas Neue', Impact, sans-serif;
  --sans:     'Bricolage Grotesque', system-ui, sans-serif;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  font-family: var(--sans);
}

.hidden { display: none !important; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── NAV ── */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}

#nav.scrolled {
  background: rgba(253, 248, 240, 0.97);
  padding: 0.8rem 2.5rem;
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.3s;
  font-family: var(--sans);
}
.nav-links a:hover { color: var(--red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  background: var(--bg);
}

.hero-content { max-width: 600px; }

.hero-logo-circle {
  width: clamp(180px, 28vw, 280px);
  height: clamp(180px, 28vw, 280px);
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.2rem;
  box-shadow: 0 16px 48px rgba(204,28,28,0.22);
  opacity: 0;
  animation: scaleIn 0.8s var(--ease) 0.2s forwards;
  padding: 2.2rem;
}

.hero-logo-circle img {
  width: 85%;
  height: auto;
  filter: brightness(0) invert(1);
}

.hero-tagline {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--fg);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}

.hero-sub {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
  font-family: var(--sans);
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  transition: background 0.3s, color 0.3s;
  font-family: var(--sans);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.95s forwards;
}
.btn-primary:hover { background: transparent; color: var(--red); }

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-secondary:hover { background: var(--red); color: #fff; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: var(--sans);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  transform-origin: top;
  animation: scrollPulse 2.2s ease infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.75); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  70%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ── CONCEPTO (SPLIT EDITORIAL) ── */
#concepto {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 88vh;
  border-top: 1px solid var(--border);
}

.concepto-split-foto {
  overflow: hidden;
  background: var(--fg);
  position: relative;
}

.concepto-split-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}

.concepto-split-foto:hover img { transform: scale(1.03); }

.concepto-split-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  background: var(--bg);
  position: relative;
}

.concepto-split-texto h2 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 6.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 2.5rem;
  color: var(--fg);
}

.concepto-body { margin-bottom: 2.5rem; }

.concepto-body p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1rem;
  font-weight: 300;
  max-width: 38ch;
}

.concepto-split-texto .btn-primary {
  animation: none;
  opacity: 1;
  align-self: flex-start;
}

/* ── FOTOS ── */
.fotos-section {
  padding: 0;
  overflow: hidden;
}

.fotos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px 220px;
  gap: 4px;
}

.foto-slot {
  overflow: hidden;
  background: #1c0805;
}

.foto-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.foto-slot:hover img { transform: scale(1.04); }

.foto-slot--tall { grid-row: span 2; }
.foto-slot--wide { grid-column: span 3; }

/* ── RESEÑAS ── */
#resenas {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.resenas-header {
  padding: 6rem 2rem 2rem;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.resenas-titulo h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-top: 0.5rem;
}

.resenas-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  flex-shrink: 0;
  padding-bottom: 0.3rem;
}

.resenas-stars-big {
  font-size: 1.5rem;
  color: var(--red);
  letter-spacing: 0.1em;
}

.resenas-gmaps-link {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--sans);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem;
  transition: color 0.3s, border-color 0.3s;
}
.resenas-gmaps-link:hover { color: var(--red); border-color: var(--red); }

.resenas-scroll-hint {
  padding: 0 2rem 1rem;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: var(--sans);
}

.resenas-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.resenas-track::-webkit-scrollbar { display: none; }
.resenas-track.grabbing { cursor: grabbing; }

.resena-card {
  flex: 0 0 clamp(280px, 30vw, 400px);
  scroll-snap-align: start;
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.resena-card:last-child { border-right: none; }

.resena-stars {
  color: var(--red);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.resena-texto {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--fg);
  font-weight: 300;
  font-style: italic;
  flex: 1;
}

.resena-autor {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.resena-nombre {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 600;
  font-family: var(--sans);
}

.resena-tiempo {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ── HISTORIA DEL MENÚ ── */
#historia {
  border-top: 1px solid var(--border);
}

.historia-intro {
  padding: 6rem 2rem 4rem;
  max-width: 1120px;
  margin: 0 auto;
}

.historia-intro h2 {
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 0.8rem;
}

.historia-intro p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.8;
}

/* Cada bloque de versión */
.hist-version {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-top: 1px solid var(--border);
}

.hist-version.v2 .hist-foto { order: 2; }
.hist-version.v2 .hist-texto { order: 1; }

.hist-foto {
  overflow: hidden;
  background: var(--fg);
  position: relative;
}

.hist-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.hist-foto:hover img { transform: scale(1.03); }

.hist-texto {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.hist-v-bg {
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-family: var(--display);
  font-size: 16rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.hist-fecha {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
}

.hist-v-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.hist-menu {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.hist-cat {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--sans);
}

.hist-platos {
  list-style: none;
}

.hist-platos li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 0.28rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.35;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.hist-platos li:last-child { border-bottom: none; }

.hist-precio {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 600;
  flex-shrink: 0;
  font-family: var(--sans);
}

.hist-note {
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-style: italic;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

/* ── CARTA (FOTO CAROUSEL) ── */
#carta {
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.carta-header {
  padding: 6rem 2rem 3rem;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.carta-header h2 {
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--fg);
}

.carta-season {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: var(--sans);
  font-weight: 600;
  flex-shrink: 0;
  padding-bottom: 0.5rem;
}

.carta-scroll-hint {
  padding: 0 2rem 1.2rem;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: var(--sans);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.carta-scroll-hint::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--fg-muted);
}

.carta-scroll-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  border-top: 1px solid var(--border);
}
.carta-scroll-track::-webkit-scrollbar { display: none; }
.carta-scroll-track.grabbing { cursor: grabbing; }

.carta-foto-item {
  flex: 0 0 clamp(260px, 28vw, 380px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
}
.carta-foto-item:last-child { border-right: none; }

.carta-num {
  padding: 1rem 1.2rem 0.5rem;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--red);
}

.carta-img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--fg);
  flex-shrink: 0;
}

.carta-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.carta-foto-item:hover .carta-img-wrap img { transform: scale(1.04); }

.carta-caption {
  padding: 0.8rem 1.2rem 1.5rem;
  flex: 1;
}

.carta-caption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 0.2rem;
}

.carta-caption span {
  font-size: 0.72rem;
  color: var(--fg-muted);
  line-height: 1.5;
  font-style: italic;
  font-weight: 300;
}

.carta-footer-note {
  padding: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
  max-width: 1120px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── HORARIOS ── */
#horarios {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}

.horarios-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 6rem;
  align-items: start;
}

.horarios-intro h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 0.75rem;
}

.horarios-intro p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.horarios-tabla { display: flex; flex-direction: column; }

.dia-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
.dia-row:first-child { border-top: 1px solid var(--border); }

.dia { font-size: 0.88rem; color: var(--fg); font-weight: 400; }
.hora { font-size: 0.82rem; color: var(--red); text-align: right; font-weight: 600; }

.dia-row.closed .dia,
.dia-row.closed .hora { color: var(--fg-muted); font-weight: 300; }

.dia-row.highlight { background: var(--red-lt); margin: 0 -0.75rem; padding: 1.2rem 0.75rem; }
.dia-row.highlight .dia { color: var(--red-dk); font-weight: 600; }

/* ── CONTACTO ── */
#contacto {
  padding: 8rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.contacto-info h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 2rem;
}

.contacto-dato { margin-bottom: 1.5rem; }

.dato-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.dato-valor {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.7;
  text-decoration: none;
}
.dato-valor.link { transition: color 0.3s; }
.dato-valor.link:hover { color: var(--red); }

.contacto-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.contacto-social a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s, border-color 0.3s;
  font-weight: 600;
}
.contacto-social a:hover { color: var(--red); border-bottom-color: var(--red); }

.contacto-mapa iframe {
  width: 100%;
  height: 360px;
  border: 2px solid var(--border);
  display: block;
}

/* ── FOOTER ── */
footer {
  padding: 3.5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.footer-address {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-address:hover { color: var(--red); }

.footer-hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin: 0.4rem 0;
}
.footer-hours span { font-size: 0.68rem; color: var(--fg-muted); }

footer p { font-size: 0.8rem; color: var(--fg-muted); }
footer p a { color: var(--fg-muted); text-decoration: underline; transition: color 0.3s; }
footer p a:hover { color: var(--red); }

.footer-social {
  display: flex;
  gap: 1.5rem;
}
.footer-social a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}
.footer-social a:hover { color: var(--red); }

.footer-copy { font-size: 0.65rem !important; opacity: 0.4; margin-top: 0.4rem; }

/* ── FAQ ── */
#faq {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.faq-header { margin-bottom: 4rem; }

.faq-header h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  margin-top: 0.5rem;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--fg);
  transition: color 0.3s;
  line-height: 1.4;
}
.faq-q:hover { color: var(--red); }

.faq-q::after {
  content: '+';
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
  line-height: 1;
}
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.45s;
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.85;
  font-weight: 300;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 1.6rem;
}
.faq-a a { color: var(--red); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #concepto {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh auto;
    min-height: auto;
  }
  .concepto-split-texto { padding: 4rem 3rem; }

  .hist-version,
  .hist-version.v2 {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hist-version.v2 .hist-foto { order: 0; }
  .hist-version.v2 .hist-texto { order: 1; }
  .hist-foto { height: 300px; }
  .hist-texto { padding: 3rem 2rem; }
  .hist-v-bg { font-size: 8rem; }
}

@media (max-width: 768px) {
  .horarios-grid,
  .contacto-grid { grid-template-columns: 1fr; gap: 3rem; }

  .resenas-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .resenas-meta { align-items: flex-start; }
  .resena-card { flex: 0 0 80vw; }

  .contacto-mapa { order: -1; }
  .contacto-mapa iframe { height: 240px; }

  .fotos-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px 180px;
  }
  .foto-slot--tall { grid-row: span 2; }
  .foto-slot--wide { grid-column: span 2; }

  .carta-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .carta-foto-item { flex: 0 0 72vw; }
}

@media (max-width: 640px) {
  #nav { padding: 1rem 1.5rem; }
  #nav.scrolled { padding: 0.7rem 1.5rem; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 5;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.14em; color: var(--fg); }
  .nav-toggle { display: flex; }

  .container { padding: 0 1.25rem; }

  #concepto { grid-template-rows: 50vh auto; }
  .concepto-split-texto { padding: 3rem 1.5rem; }

  #horarios, #contacto, #faq { padding: 5rem 0; }

  .historia-intro { padding: 4rem 1.25rem 2rem; }
  .hist-texto { padding: 2.5rem 1.25rem; }
  .carta-header { padding: 4rem 1.25rem 2rem; }
  .resenas-header { padding: 4rem 1.25rem 2rem; }
  .resena-card { flex: 0 0 86vw; }

  .dia-row { flex-direction: column; gap: 0.2rem; }
  .hora { text-align: left; }

  .fotos-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .foto-slot { height: 240px; }
  .foto-slot--tall { grid-row: span 1; height: 240px; }
  .foto-slot--wide { grid-column: span 1; }

  .carta-foto-item { flex: 0 0 82vw; }
}
