/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #0e0b09;
  --bg-2: #17120d;
  --bg-3: #1f1811;
  --ivory: #f5efe1;
  --ivory-2: #e9dfc7;
  --ink: #1a1510;
  --ink-soft: #3a3226;
  --ink-mute: #6e6455;
  --gold: #c9a227;
  --gold-2: #e8c765;
  --gold-dim: #8a6f22;
  --line-dark: rgba(245,239,225,.14);
  --line-light: rgba(26,21,16,.12);

  --sans: "Inter", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; overflow-x: clip; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--serif); text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-weight: 500; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem;
  background: var(--gold); color: var(--ink); z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px) { .container { padding-inline: 2rem; } }

.eyebrow {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: .9rem;
}
.eyebrow-center { text-align: center; }
.section-title { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 2.4rem; }
.section-dark .section-title, .section-dark .eyebrow-center { text-align: center; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.7rem; border-radius: 999px; font-size: .92rem; font-weight: 600;
  letter-spacing: .01em; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1a1408; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(201,162,39,.55); }
.btn-ghost { border: 1px solid var(--line-dark); color: var(--ivory); }
.section-light .btn-ghost { border-color: var(--line-light); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-call {
  background: var(--bg-3); color: var(--ivory); padding: .6rem 1.1rem; font-size: .82rem;
  border: 1px solid var(--line-dark);
}
.btn-call:hover { border-color: var(--gold); color: var(--gold); }

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 999; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashSafety .01s 3.2s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .6s var(--ease-out); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; } }
.splash-logo { width: 84px; height: 84px; border-radius: 50%; animation: splashPulse 1.6s ease-in-out infinite; }
@keyframes splashPulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.08); opacity: 1; } }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding-block: 1.1rem; transition: background .4s var(--ease-out), padding .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav.is-solid { background: rgba(14,11,9,.86); backdrop-filter: blur(14px) saturate(140%); padding-block: .7rem; box-shadow: 0 8px 24px -12px rgba(0,0,0,.5); }
.nav-inner { max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; display: flex; align-items: center; gap: 1.5rem; }
@media (min-width: 720px) { .nav-inner { padding-inline: 2rem; } }
.nav-brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.nav-logo { width: 52px; height: 52px; border-radius: 50%; box-shadow: 0 0 0 1px var(--line-dark); }
@media (min-width: 720px) { .nav-logo { width: 58px; height: 58px; } }
.nav-brand-text { font-family: var(--serif); font-size: 1.15rem; line-height: 1; display: none; }
.nav-brand-text em { display: block; font-size: .62rem; font-style: normal; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: .2rem; }
@media (min-width: 540px) { .nav-brand-text { display: block; } }
.nav-links { display: none; gap: 1.6rem; font-size: .88rem; }
.nav-links a { position: relative; padding-block: .3rem; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold); transition: right .35s var(--ease-out); }
.nav-links a:hover::after { right: 0; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.nav-actions .btn-call { display: none; }
@media (min-width: 640px) { .nav-actions .btn-call { display: inline-flex; } }
@media (min-width: 720px) { .nav-actions { gap: .8rem; } }

.lang-switch { position: relative; }
.lang-btn { border: 1px solid var(--line-dark); border-radius: 999px; padding: .5rem .9rem; font-size: .78rem; letter-spacing: .06em; }
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-menu {
  position: absolute; top: calc(100% + .5rem); right: 0; background: var(--bg-3); border: 1px solid var(--line-dark);
  border-radius: 12px; padding: .4rem; display: flex; flex-direction: column; min-width: 130px;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .25s var(--ease-out); z-index: 50;
}
.lang-switch.is-open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu button { text-align: left; padding: .5rem .7rem; border-radius: 8px; font-size: .85rem; }
.lang-menu button:hover { background: rgba(201,162,39,.14); color: var(--gold); }
.lang-switch-footer { display: flex; gap: .4rem; }
.lang-switch-footer button { border: 1px solid var(--line-dark); border-radius: 999px; padding: .4rem .8rem; font-size: .75rem; }
.lang-switch-footer button:hover { border-color: var(--gold); color: var(--gold); }
.lang-switch-footer .lang-menu { display: none; }

.nav-burger { display: flex; flex-direction: column; gap: 5px; padding: .5rem; z-index: 60; }
.nav-burger span { width: 22px; height: 2px; background: var(--ivory); transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
@media (min-width: 720px) { .nav-burger { display: none; } }
.nav.is-menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.is-menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav.is-menu-open .nav-links {
  display: flex; position: fixed; inset: 0; top: 0; background: var(--bg); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem; font-size: 1.3rem; z-index: 40;
}
.nav.is-menu-open .nav-actions { display: flex; position: fixed; bottom: 3rem; left: 0; right: 0; justify-content: center; z-index: 45; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; overflow: clip; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% top; will-change: transform; }
@media (min-width: 960px) { .hero-bg img { object-position: center top; } }
.hero-bg-tint {
  position: absolute; inset: 0;
  /* light at the very top so the venue sign stays readable, dark at the bottom for the copy */
  background: linear-gradient(180deg,
    rgba(14,11,9,.18) 0%, rgba(14,11,9,.30) 26%, rgba(14,11,9,.72) 62%, rgba(14,11,9,.97) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: .06; mix-blend-mode: overlay; pointer-events: none; z-index: 1;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1180px; margin-inline: auto; padding: 0 1.25rem 5.5rem; }
@media (min-width: 720px) { .hero-inner { padding-inline: 2rem; padding-bottom: 6.5rem; } }
.hero-logo {
  width: clamp(110px, 15vw, 168px); height: auto; border-radius: 50%; margin-bottom: 1.4rem;
  box-shadow: 0 20px 50px -18px rgba(0,0,0,.9), 0 0 0 1px rgba(201,162,39,.25);
}
.hero-kicker { font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.1rem; }
.hero-title { font-size: clamp(2.6rem, 7vw, 5.6rem); max-width: 16ch; color: var(--ivory); }
.hero-title em { font-style: italic; color: var(--gold-2); }
.hero-sub { margin-top: 1.3rem; font-size: 1.05rem; color: var(--ivory-2); max-width: 40ch; }
.hero-rating { margin-top: 1.4rem; display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: var(--ivory-2); }
.stars { color: var(--gold); letter-spacing: .1em; }
.hero-actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 1.5px solid var(--line-dark); border-radius: 999px;
}
.hero-scroll span { position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; background: var(--gold); border-radius: 999px; transform: translateX(-50%); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { top: 7px; opacity: 1; } 70% { top: 24px; opacity: 0; } 100% { top: 24px; opacity: 0; } }

/* =============================================================
   8. Sections
   ============================================================= */
.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-dark { background: var(--bg); color: var(--ivory); }
.section-light { background: var(--ivory); color: var(--ink); }
.section-light .eyebrow { color: var(--gold-dim); }
.section-light h2, .section-light h3 { color: var(--ink); }

/* Historia */
.historia-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .historia-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; } }
.historia-figure { border-radius: 18px; overflow: clip; box-shadow: 0 30px 60px -30px rgba(26,21,16,.35); }
.historia-figure img { aspect-ratio: 4/3; object-fit: cover; transition: transform .8s var(--ease-out); }
.historia-figure:hover img { transform: scale(1.05); }
.historia-copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1.3rem; }
.historia-copy p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 52ch; }
.historia-stats { display: flex; gap: 2.2rem; margin-top: 1.8rem; flex-wrap: wrap; }
.historia-stats span { display: block; font-family: var(--serif); font-size: 2rem; color: var(--gold-dim); }
.historia-stats small { font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute); }

/* Carta */
.menu-block { max-width: 820px; margin: 0 auto 3rem; border: 1px solid var(--line-dark); border-radius: 20px; padding: 2rem clamp(1.2rem,4vw,2.6rem); background: linear-gradient(180deg, var(--bg-2), var(--bg-3)); }
.menu-block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-bottom: 1px solid var(--line-dark); padding-bottom: 1rem; margin-bottom: .3rem; }
.menu-block-head h3 { font-size: 1.7rem; color: var(--gold-2); }
.menu-price { font-family: var(--serif); font-size: 1.4rem; color: var(--ivory); }
.menu-note { font-size: .85rem; color: var(--ivory-2); font-style: italic; margin: .8rem 0 1.6rem; }
.menu-section-title { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin: 1.6rem 0 .8rem; }
.menu-item { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--line-dark); font-size: .95rem; }
.menu-item:last-child { border-bottom: 0; }
.menu-item-name { color: var(--ivory-2); }
.menu-item-price { color: var(--gold-2); white-space: nowrap; font-variant-numeric: tabular-nums; }
.carta-cta { text-align: center; margin-top: 1rem; }

/* Platos destacados — foto grande + texto al lado */
.platos-list { display: flex; flex-direction: column; gap: clamp(2.5rem, 6vw, 5rem); margin-top: 1rem; }
.plato-row {
  display: grid; gap: clamp(1.2rem, 3vw, 3rem); align-items: center;
  width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem;
}
@media (min-width: 720px) { .plato-row { padding-inline: 2rem; } }
@media (min-width: 960px) {
  .plato-row { grid-template-columns: 1.15fr 1fr; }
  .plato-row:nth-child(even) .plato-figure { order: 2; }
}
.plato-figure { border-radius: 20px; overflow: clip; box-shadow: 0 30px 70px -30px rgba(0,0,0,.7); }
.plato-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .8s var(--ease-out); }
.plato-row:hover .plato-figure img { transform: scale(1.05); }
.plato-num { display: block; font-family: var(--serif); font-size: 1.1rem; color: var(--gold); margin-bottom: .6rem; letter-spacing: .1em; }
.plato-copy h3 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); color: var(--ivory); margin-bottom: .8rem; }
.plato-copy p { color: var(--ivory-2); font-size: 1rem; max-width: 44ch; }

/* Gallery slider */
.gallery-slider { position: relative; margin-top: 2rem; }
.gallery-slider { overflow: clip; }
.gallery-track {
  display: flex; gap: 1.1rem; padding: 1rem 0 2.5rem; width: max-content;
  animation: galleryMarquee 90s linear infinite;
}
.gallery-slider:hover .gallery-track,
.gallery-track:focus-within { animation-play-state: paused; }
@keyframes galleryMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gallery-card {
  position: relative; flex: 0 0 auto; width: min(78vw, 340px); aspect-ratio: 3/4; border-radius: 18px;
  overflow: clip; background: var(--bg-3);
  transform: perspective(900px) rotateY(0deg); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  box-shadow: 0 20px 45px -20px rgba(0,0,0,.5);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery-card:hover { transform: perspective(900px) rotateY(-4deg) translateY(-6px); box-shadow: 0 30px 60px -20px rgba(201,162,39,.25); }
.gallery-card:hover img { transform: scale(1.08); }
.gallery-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.2rem 1.1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(14,11,9,.92));
  font-size: .84rem; color: var(--ivory-2);
}
.gallery-nav {
  position: absolute; top: 50%; translate: 0 -50%; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(14,11,9,.7); border: 1px solid var(--line-dark); font-size: 1.4rem; display: none;
  align-items: center; justify-content: center; color: var(--ivory); backdrop-filter: blur(6px);
}
.gallery-prev { left: -4px; } .gallery-next { right: -4px; }
@media (min-width: 1240px) { .gallery-nav { display: flex; } }
.gallery-nav:hover { border-color: var(--gold); color: var(--gold); }

/* Reviews */
.reviews-grid { display: grid; gap: 1.4rem; }
@media (min-width: 780px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: var(--bg-3); border: 1px solid var(--line-dark); border-radius: 18px; padding: 1.8rem; }
.review-stars { color: var(--gold); letter-spacing: .08em; margin-bottom: .9rem; font-size: .9rem; }
.review-text { font-size: .96rem; color: var(--ivory-2); margin-bottom: 1.2rem; }
.review-author { font-size: .82rem; color: var(--gold-2); font-weight: 600; }
.review-source { color: var(--ink-mute); font-weight: 400; }

/* Ubicacion */
.ubicacion-grid { display: grid; gap: 2.4rem; }
@media (min-width: 960px) { .ubicacion-grid { grid-template-columns: 1fr 1.15fr; align-items: center; } }
.ubicacion-copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.ubicacion-address { font-size: 1.1rem; margin-bottom: .6rem; }
.ubicacion-hours { color: var(--ink-mute); margin-bottom: 1.6rem; }
.ubicacion-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.social-row { display: flex; gap: .8rem; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-light); display: flex; align-items: center; justify-content: center; transition: all .3s var(--ease-out); }
.section-dark .social-row a, .footer .social-row a { border-color: var(--line-dark); }
.social-row a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.ubicacion-map { border-radius: 18px; overflow: clip; aspect-ratio: 4/3; box-shadow: 0 30px 60px -30px rgba(26,21,16,.3); }
.ubicacion-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) contrast(1.05); }

/* Reserva */
.reserva-grid { display: grid; gap: 2.6rem; }
@media (min-width: 960px) { .reserva-grid { grid-template-columns: .8fr 1.2fr; } }
.reserva-copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: .6rem 0 1rem; }
.reserva-copy p { color: var(--ivory-2); max-width: 42ch; margin-bottom: 1.4rem; }
.reserva-phone { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-2); border-bottom: 1px solid var(--gold-dim); padding-bottom: .1rem; }
.reserva-form { background: var(--bg-3); border: 1px solid var(--line-dark); border-radius: 20px; padding: clamp(1.4rem,4vw,2.4rem); display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.reserva-form label { display: flex; flex-direction: column; gap: .5rem; font-size: .82rem; color: var(--ivory-2); }
.reserva-form input, .reserva-form select, .reserva-form textarea {
  background: var(--bg); border: 1px solid var(--line-dark); border-radius: 10px; padding: .75rem .9rem;
  color: var(--ivory); font: inherit; font-size: .92rem; transition: border-color .3s var(--ease-out);
}
.reserva-form input:focus, .reserva-form select:focus, .reserva-form textarea:focus { border-color: var(--gold); }
.reserva-form textarea { resize: vertical; }
.reserva-form .btn { margin-top: .4rem; }
.reserva-legal { font-size: .74rem; color: var(--ink-mute); }
.reserva-form.is-sending .btn-primary:hover { transform: none; }
.reserva-form.is-sent .btn-primary { background: linear-gradient(135deg, #7fae63, #4f7d3a); }

/* =============================================================
   9. Footer
   ============================================================= */
.footer { position: relative; background: var(--bg); border-top: 1px solid var(--line-dark); overflow: clip; }
.footer-photo { position: relative; height: clamp(420px, 58vw, 680px); overflow: clip; }
.footer-photo img {
  width: 100%; height: 118%; object-fit: cover; object-position: center 40%;
  will-change: transform; transform: translateY(0) scale(1.04);
}
.footer-photo-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,11,9,.92) 0%, rgba(14,11,9,.28) 16%, rgba(14,11,9,.10) 45%, rgba(14,11,9,.55) 82%, var(--bg) 100%);
}
.footer-photo-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.1rem; text-align: center; padding: 1.5rem;
}
.footer-photo-kicker {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2);
  text-shadow: 0 2px 18px rgba(0,0,0,.8);
}
.footer-photo-caption {
  font-size: clamp(2rem, 5.5vw, 4rem); color: var(--ivory); max-width: 16ch;
  text-shadow: 0 4px 40px rgba(0,0,0,.85), 0 1px 6px rgba(0,0,0,.7);
}
.footer-grid { padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-halo {
  position: absolute; inset: -30% -10% auto -10%; height: 60%;
  background: radial-gradient(50% 60% at 50% 0%, rgba(201,162,39,.16), transparent 75%);
  filter: blur(60px); pointer-events: none;
}
.footer-grid { position: relative; display: grid; gap: 2.6rem; padding-bottom: 3rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { width: 56px; height: 56px; border-radius: 50%; }
.footer-brand p { color: var(--ivory-2); font-size: .9rem; max-width: 30ch; }
.footer-col { display: flex; flex-direction: column; gap: .8rem; }
.footer-col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.footer-col a, .footer-col span { font-size: .92rem; color: var(--ivory-2); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding-block: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between; font-size: .8rem; color: var(--ink-mute);
}

/* =============================================================
   10. Cursor (fine pointers only)
   ============================================================= */
.cursor { position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none; opacity: 0; transition: opacity .25s var(--ease-out); }
.cursor.is-ready { opacity: 1; }
.cursor-dot { position: fixed; top: 0; left: 0; width: 6px; height: 6px; margin: -3px; border-radius: 50%; background: var(--gold); }
.cursor-ring { position: fixed; top: 0; left: 0; width: 34px; height: 34px; margin: -17px; border-radius: 50%; border: 1px solid var(--gold); mix-blend-mode: difference; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* =============================================================
   11. Responsive niceties
   ============================================================= */
@media (max-width: 539px) {
  .hero-actions .btn { flex: 1 1 auto; }
  .historia-stats { gap: 1.6rem; }
}

/* =============================================================
   12. Momentos (dos fotos en paralelo)
   ============================================================= */
.momentos-head { text-align: center; }
.momentos-sub {
  max-width: 58ch; margin: -1.4rem auto 0; color: var(--ivory-2); font-size: 1.02rem;
}
.momentos-grid {
  display: grid; gap: clamp(1rem, 2.5vw, 1.8rem); margin-top: clamp(2.2rem, 5vw, 3.4rem);
}
@media (min-width: 760px) { .momentos-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.momento-card {
  position: relative; border-radius: 24px; overflow: clip; background: var(--bg-3);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.75);
  aspect-ratio: 4/3;
}
@media (min-width: 760px) { .momento-card { aspect-ratio: 3/4; } }
.momento-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.momento-card:hover img { transform: scale(1.06); }
.momentos-cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* Horario en tabla */
.hours-block { margin-bottom: 1.8rem; }
.hours-title {
  font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: .7rem;
}
.hours-list { display: flex; flex-direction: column; gap: .1rem; max-width: 340px; }
.hours-row {
  display: flex; justify-content: space-between; gap: 1rem; padding: .42rem 0;
  border-bottom: 1px dashed var(--line-light); font-size: .93rem;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row dt { color: var(--ink-soft); }
.hours-row dd { color: var(--ink); font-variant-numeric: tabular-nums; }
.hours-row.is-closed dd { color: var(--ink-mute); }
.hours-row.is-today { font-weight: 600; }
.hours-row.is-today dt, .hours-row.is-today dd { color: var(--gold-dim); }

/* Carta plegable */
.carta-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1rem;
}
.carta-toggle .carta-chevron { transition: transform .35s var(--ease-out); }
.carta-toggle.is-open .carta-chevron { transform: rotate(180deg); }
.carta-panel { margin-top: 2.4rem; animation: cartaIn .5s var(--ease-out) both; }
.carta-panel[hidden] { display: none; }
@keyframes cartaIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

/* Menú móvil: panel propio, sólido y a prueba de scroll */
body.menu-open { overflow: hidden; touch-action: none; }
.nav.is-menu-open .nav-links {
  display: flex; position: fixed; inset: 0; z-index: 40;
  background: var(--bg);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.6rem; font-size: 1.25rem;
  overflow-y: auto; padding: 6rem 1.5rem 9rem;
  overscroll-behavior: contain;
}
.nav.is-menu-open .nav-actions {
  position: fixed; left: 0; right: 0; bottom: 2.4rem;
  justify-content: center; z-index: 45;
}
.nav.is-menu-open .nav-actions .btn-call { display: inline-flex; }
.nav-burger { position: relative; z-index: 60; }

/* Precio en los platos destacados */
.plato-price {
  display: inline-block; margin-top: .7rem; font-family: var(--serif);
  font-size: 1.35rem; color: var(--gold-2);
}

/* FIX menú móvil: el backdrop-filter del nav creaba un bloque contenedor que
   atrapaba el panel fijo dentro de la barra (quedaba de 240px, con los primeros
   enlaces cortados y el texto encima del contenido de la página). */
.nav.is-menu-open { backdrop-filter: none; -webkit-backdrop-filter: none; background: transparent; box-shadow: none; }
.nav.is-menu-open .nav-links {
  justify-content: flex-start;      /* 'center' recortaba el inicio al desbordar */
  padding: 6.5rem 1.5rem 8rem;
  gap: 1.25rem;
  background: #0e0b09;              /* opaco, sin transparencias */
  font-size: 1.2rem; font-weight: 500; color: var(--ivory);
}
.nav.is-menu-open .nav-links a {
  color: var(--ivory); width: 100%; max-width: 22rem; text-align: center;
  padding: .85rem 1rem; border-radius: 12px;
  border-bottom: 1px solid rgba(245,239,225,.10);
}
.nav.is-menu-open .nav-links a:hover,
.nav.is-menu-open .nav-links a:focus-visible { background: rgba(201,162,39,.14); color: var(--gold-2); }
.nav.is-menu-open .nav-links a::after { content: none; }
