/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  /* Palette — Editorial Dark Warm */
  --bg:        #0E0B09;
  --bg-2:      #15110E;
  --bg-3:      #1C1713;
  --bg-4:      #221E19;
  --cream:     #F2EBDA;
  --cream-2:   #DDD2BC;
  --cream-3:   #9C8E78;
  --accent:    #C5301E;
  --accent-2:  #A02516;
  --gold:      #C49A5B;
  --gold-2:    #A07B3E;
  --line:      rgba(242,235,218,.10);
  --line-2:    rgba(242,235,218,.06);

  /* Typography */
  --serif: "Fraunces", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Spacing */
  --section-gap: clamp(5rem, 10vw, 9rem);
  --container:   min(72rem, 100% - 3rem);
  --nav-h:       72px;

  /* Easings */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.025em; }
ul[role="list"] { list-style: none; padding: 0; }

::selection { background: var(--accent); color: var(--cream); }

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

/* =============================================================
   3. UTILITIES
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .5rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 4px; font-weight: 500; font-size: .875rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.container { width: var(--container); margin-inline: auto; }

.section-kicker {
  display: block;
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* =============================================================
   4. TYPOGRAPHY
   ============================================================= */
.hero-title {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 14vw, 11rem);
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 400, "SOFT" 80;
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--cream);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-variation-settings: "opsz" 72, "wght" 400, "SOFT" 60;
  letter-spacing: -.025em;
  color: var(--cream);
}

h3 {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-variation-settings: "opsz" 36, "wght" 400, "SOFT" 40;
  color: var(--cream);
}

/* =============================================================
   5. COMPONENTS — BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2.25rem;
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s, color .3s;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--cream);
  box-shadow: 0 4px 24px rgba(197,48,30,.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(197,48,30,.4);
  background: #d43522;
}
.btn-primary:active { transform: translateY(-1px); transition-duration: .1s; }

/* =============================================================
   6. CUSTOM CURSOR
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity .3s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }

.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px;
  margin: -2.5px 0 0 -2.5px;
  background: var(--cream);
  border-radius: 50%;
}
.cursor-ring {
  width: 28px; height: 28px;
  margin: -14px 0 0 -14px;
  border: 1px solid rgba(242,235,218,.6);
  border-radius: 50%;
  transition: width .4s var(--ease-out), height .4s var(--ease-out), margin .4s var(--ease-out), border-color .3s;
}
.cursor.is-active .cursor-ring {
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  border-color: var(--accent);
}

.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   7. SPLASH
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  pointer-events: auto;
  transition: opacity .9s var(--ease-out), clip-path 1.1s var(--ease-soft);
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}

.splash-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem;
}
.splash-logo {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 350, "SOFT" 80;
  color: var(--cream);
  letter-spacing: -.02em;
  animation: splashLogoIn .8s var(--ease-out) .2s both;
}
@keyframes splashLogoIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.splash-line {
  display: block;
  width: 0; height: 1px;
  background: var(--accent);
  animation: splashLineGrow .7s var(--ease-out) .7s both;
}
@keyframes splashLineGrow {
  from { width: 0; }
  to   { width: 3rem; }
}

/* =============================================================
   8. NAV
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0;
  z-index: 100; height: var(--nav-h);
  transition: background .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s;
}
.nav.is-scrolled {
  background: rgba(14,11,9,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-container {
  width: var(--container);
  margin-inline: auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  font-variation-settings: "opsz" 36, "wght" 400, "SOFT" 60;
  color: var(--cream);
  letter-spacing: -.02em;
  transition: color .3s;
}
.nav-brand:hover { color: var(--gold); }

.nav-links {
  display: none;
  gap: 2.5rem;
}
@media (min-width: 720px) { .nav-links { display: flex; } }

.nav-link {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-3);
  position: relative;
  padding: .25rem 0;
  transition: color .3s;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-soft);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-hamburger {
  display: flex; flex-direction: column;
  gap: 5px; padding: .5rem;
}
@media (min-width: 720px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--cream);
  transition: transform .35s var(--ease-soft), opacity .25s;
}
.nav-hamburger[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg-2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }

.nav-mobile nav {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.nav-mobile nav a {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 7vw, 3rem);
  font-variation-settings: "opsz" 72, "wght" 300, "SOFT" 70;
  color: var(--cream-2);
  transition: color .3s;
}
.nav-mobile nav a:hover { color: var(--cream); }

.nav-mobile-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.nav-mobile-close span {
  position: absolute; width: 22px; height: 1px; background: var(--cream);
}
.nav-mobile-close span:first-child  { transform: rotate(45deg); }
.nav-mobile-close span:last-child   { transform: rotate(-45deg); }

.nav-mobile-footer {
  font-size: .6875rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* =============================================================
   9. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-tint {
  position: absolute; inset: 0;
  background: rgba(14,11,9,.62);
}

.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 30%, rgba(14,11,9,.55) 75%, rgba(14,11,9,.9) 100%),
    linear-gradient(180deg, rgba(14,11,9,.4) 0%, transparent 35%, transparent 55%, rgba(14,11,9,.85) 100%);
  pointer-events: none;
}

.hero-grain {
  position: absolute; inset: 0; z-index: 2;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 3;
  padding: 0 max(1.5rem, (100% - var(--container)) / 2);
  padding-bottom: clamp(4rem, 8vh, 7rem);
  padding-top: calc(var(--nav-h) + 1rem);
  display: flex; flex-direction: column;
  align-items: flex-start;
  max-width: 1200px;
}

.hero-kicker {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  animation: heroIn .7s var(--ease-out) 1s both;
}

.hero-title em {
  font-style: italic;
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn .9s var(--ease-out) 1.1s both;
}
@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

.hero-loc {
  font-size: clamp(.75rem, 1.2vw, .9375rem);
  letter-spacing: .06em;
  color: var(--cream-3);
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: heroIn .7s var(--ease-out) 1.35s both;
}

.hero-actions {
  margin-top: 2.25rem;
  opacity: 0;
  transform: translateY(12px);
  animation: heroIn .7s var(--ease-out) 1.55s both;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero-scroll-line {
  display: block; width: 1px; height: 3.5rem;
  background: linear-gradient(180deg, rgba(242,235,218,0) 0%, var(--cream-3) 100%);
  transform-origin: top;
  animation: scrollPulse 2.4s ease-in-out 2.5s infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0); opacity: 0; }
  40%, 70% { transform: scaleY(1); opacity: 1; }
}

/* =============================================================
   10. MARQUEE
   ============================================================= */
.marquee-sep {
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: .6rem;
}
.marquee-sep::before, .marquee-sep::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  width: 6rem; z-index: 2; pointer-events: none;
}
.marquee-sep::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-sep::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

.marquee-track {
  display: inline-flex; gap: 2rem;
  white-space: nowrap; will-change: transform;
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cream-3);
  align-items: center;
}
.mq-dot {
  color: var(--accent);
  font-size: .5rem;
}

/* =============================================================
   11. CONCEPTO / HISTORIA
   ============================================================= */
.section-concepto {
  padding-block: var(--section-gap);
  background: var(--bg);
}

.concepto-header {
  max-width: 54rem;
  margin-bottom: 2.5rem;
}

.concepto-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 350, "SOFT" 80;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -.03em;
  /* Scatter chars will be inserted by JS */
}
/* Defensive: if JS adds split chars, parent stays visible */
.concepto-title .scatter-char {
  display: inline-block;
  will-change: transform, opacity;
}

.concepto-body {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: var(--cream-2);
  max-width: 52ch;
  margin-bottom: 3.5rem;
}

.concepto-figura {
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 4.5rem;
}
.concepto-figura img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-soft);
}
.concepto-figura:hover img { transform: scale(1.04); }

.concepto-pilares {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 720px) {
  .concepto-pilares { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.pilar { display: flex; flex-direction: column; gap: 1.25rem; }

.pilar-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
}
.pilar-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-soft), filter .6s;
}
.pilar:hover .pilar-img img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(1.04);
}

.pilar-titulo {
  color: var(--cream);
  margin-bottom: .5rem;
}
.pilar-texto p {
  font-size: .9375rem;
  color: var(--cream-3);
  line-height: 1.7;
}

/* =============================================================
   12. LA CARTA
   ============================================================= */
.section-carta {
  padding-block: var(--section-gap);
  background: var(--bg-2);
}

.carta-encabezado {
  margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.carta-titulo {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-variation-settings: "opsz" 72, "wght" 300, "SOFT" 90;
  color: var(--cream);
  letter-spacing: -.03em;
  margin-bottom: .5rem;
}

.carta-aviso {
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--cream-3);
  text-transform: uppercase;
  font-weight: 400;
}

.carta-seccion {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line-2);
}
.carta-seccion:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

.carta-cat {
  font-family: var(--sans);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-variation-settings: normal;
  margin-bottom: 1.75rem;
}

.carta-lista { display: flex; flex-direction: column; }

.carta-plato {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line-2);
  transition:
    background .3s,
    transform .45s var(--ease-soft),
    box-shadow .45s var(--ease-soft);
  border-radius: 2px;
  padding-inline: .75rem;
  margin-inline: -.75rem;
}
.carta-plato:last-child { border-bottom: 0; }

.carta-plato-info {
  display: flex; flex-direction: column; gap: .2rem;
  min-width: 0;
  flex: 1;
}
.carta-plato-nom {
  font-size: clamp(.9375rem, 1.5vw, 1.0625rem);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -.01em;
}
.carta-plato-desc {
  font-size: .8125rem;
  color: var(--cream-3);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}
.carta-plato-meta {
  font-size: .75rem;
  color: var(--cream-3);
  letter-spacing: .06em;
  line-height: 1.4;
}

.carta-plato-precio {
  font-family: var(--serif);
  font-size: 1rem;
  font-variation-settings: "opsz" 24, "wght" 400, "SOFT" 0;
  color: var(--cream-2);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Featured cuts — parrilla */
.carta-plato-destacado {
  background: rgba(196,154,91,.04);
  border-left: 2px solid var(--gold);
  border-radius: 0 2px 2px 0;
  padding-left: 1rem;
  margin-left: -.75rem;
}
.carta-plato-destacado .carta-plato-precio {
  color: var(--gold);
  font-size: 1.0625rem;
}
.carta-plato-destacado .carta-plato-nom {
  color: var(--cream);
  font-size: 1.0625rem;
}
.carta-plato-destacado:hover {
  background: rgba(196,154,91,.07);
}

/* Special cut — cordero */
.carta-plato-especial {
  background: rgba(197,48,30,.04);
  border-left: 2px solid rgba(197,48,30,.4);
  border-radius: 0 2px 2px 0;
  padding-left: 1rem;
  margin-left: -.75rem;
}
.carta-plato-especial .carta-plato-precio {
  color: var(--accent);
  font-size: 1.0625rem;
}

/* Double-price vinos */
.carta-precio-vino {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .2rem;
  font-size: .8125rem;
  font-family: var(--sans);
  font-variation-settings: normal;
  color: var(--cream-3);
}

/* Two-column layout for guarniciones + postres */
.carta-doble {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line-2);
}
@media (min-width: 720px) {
  .carta-doble {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Vinos section */
.carta-vinos { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

/* Stagger delays via CSS custom property */
.carta-plato[data-reveal] {
  transition-delay: calc(var(--stagger, 0) * 0.06s);
}

/* =============================================================
   13. GALERÍA — PINNED HORIZONTAL
   ============================================================= */
.section-galeria {
  padding-top: var(--section-gap);
  background: var(--bg);
  overflow: hidden;
}
.section-galeria.is-pinned { overflow: hidden; }

.galeria-header {
  width: var(--container);
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.galeria-titulo {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 72, "wght" 350, "SOFT" 70;
  color: var(--cream);
}

.galeria-track {
  display: flex;
  gap: 1rem;
  padding-bottom: var(--section-gap);
  padding-inline: max(1.5rem, (100% - var(--container)) / 2);
  width: max-content;
}
/* On mobile, wrap and scroll normally */
@media (max-width: 959px) {
  .galeria-track {
    width: 100%;
    flex-wrap: wrap;
    padding-bottom: var(--section-gap);
  }
}

.galeria-item {
  flex-shrink: 0;
  width: clamp(18rem, 30vw, 26rem);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
@media (max-width: 959px) {
  .galeria-item {
    width: calc(50% - .5rem);
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 539px) {
  .galeria-item { width: 100%; aspect-ratio: 16 / 10; }
}

.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-soft), filter .5s;
}
.galeria-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.15) brightness(1.05);
}

/* =============================================================
   14. INFO / UBICACIÓN
   ============================================================= */
.section-info {
  padding-block: var(--section-gap);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 960px) {
  .info-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.info-titulo {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-variation-settings: "opsz" 72, "wght" 350, "SOFT" 70;
  color: var(--cream);
  margin-bottom: 2.5rem;
}

.info-lista { display: flex; flex-direction: column; gap: 2rem; }

.info-fila {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-2);
}
.info-fila:last-child { border-bottom: 0; padding-bottom: 0; }

.info-fila dt {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: .1rem;
}
.info-fila dd {
  font-size: .9375rem;
  color: var(--cream-2);
  line-height: 1.65;
}
.info-cerrado {
  font-size: .75rem;
  color: var(--cream-3);
  letter-spacing: .06em;
}
.info-link {
  color: var(--cream);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  transition: color .3s, border-color .3s;
}
.info-link:hover { color: var(--gold); border-color: var(--gold); }

/* Map placeholder */
.info-mapa { height: 100%; }

.mapa-placeholder {
  height: 100%;
  min-height: 340px;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(196,154,91,.07), transparent 70%),
    var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  position: relative;
  overflow: hidden;
}

.mapa-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, var(--line-2) 0, var(--line-2) 1px, transparent 1px, transparent 2.5rem),
    repeating-linear-gradient(90deg, var(--line-2) 0, var(--line-2) 1px, transparent 1px, transparent 2.5rem);
  pointer-events: none;
}

.mapa-pin {
  width: 28px; height: auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(197,48,30,.35));
}

.mapa-label {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--cream);
  text-align: center;
  position: relative; z-index: 1;
}
.mapa-sub {
  font-size: .6875rem;
  color: var(--cream-3);
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative; z-index: 1;
}

/* =============================================================
   15. FOOTER
   ============================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1fr auto 1fr; }
}

.footer-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-variation-settings: "opsz" 36, "wght" 350, "SOFT" 70;
  color: var(--cream);
  display: block;
  margin-bottom: .25rem;
}
.footer-tagline {
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  justify-content: center;
}
.footer-nav a {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-3);
  transition: color .3s;
}
.footer-nav a:hover { color: var(--cream); }

.footer-legal {
  font-size: .6875rem;
  color: var(--cream-3);
  line-height: 1.7;
}
@media (min-width: 720px) { .footer-legal { text-align: right; } }

.footer-credits-link {
  color: var(--cream-3);
  transition: color .3s;
}
.footer-credits-link:hover { color: var(--gold); }

/* =============================================================
   16. REVEAL EFFECTS
   ============================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .8s var(--ease-soft),
    transform .8s var(--ease-soft);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* ⚠️ Defensive: if [data-split] coexists, never hide it */
[data-scatter] {
  opacity: 1;
  transform: none;
}

/* Carta stagger: items revealed with slight delay offset */
.carta-plato[data-reveal] {
  transition-delay: calc(var(--stagger, 0) * .055s);
}

/* Tilt effect */
.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .6s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }
.has-tilt::before {
  content: "";
  position: absolute; inset: -1px;
  background: radial-gradient(
    160px circle at var(--mx, 50%) var(--my, 50%),
    rgba(196,154,91,.12), transparent 70%
  );
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.has-tilt:hover::before { opacity: 1; }

/* =============================================================
   17. RESPONSIVE — mobile extras
   ============================================================= */
@media (max-width: 539px) {
  .hero-title {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }
  .hero-content { padding-bottom: 3.5rem; }
  .carta-plato {
    flex-wrap: wrap;
    gap: .5rem;
  }
  .carta-plato-precio { margin-left: auto; }
  .info-fila { grid-template-columns: 6rem 1fr; }
}

/* =============================================================
   18. REDUCED-MOTION — only gate intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line       { animation: none; opacity: .4; transform: scaleY(1); }
  .splash-logo            { animation: none; opacity: 1; transform: none; }
  .splash-line            { animation: none; width: 3rem; }
  .hero-kicker,
  .hero-title em,
  .hero-loc,
  .hero-actions           { animation: none; opacity: 1; transform: none; }
  /* Do NOT disable: tilt, hover, reveals, marquee, nav transitions */
}
