/* =========================================================
   Caldén del Soho — styles.css
   Diseño: Atelier Blanc — Editorial de lujo
   ========================================================= */

/* =========================================================
   INTRO SCREEN — cinematic loading animation
   ========================================================= */
#intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #100E0B;
  overflow: hidden;
  will-change: opacity;
  -webkit-transition: opacity 1s cubic-bezier(.4, 0, .2, 1);
  transition: opacity 1s cubic-bezier(.4, 0, .2, 1);
}

#intro-screen.intro-fade-out {
  opacity: 0;
  pointer-events: none;
}

body.intro-active { overflow: hidden; }

.intro-inner {
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
  padding: 0 clamp(1.5rem, 6vw, 3rem);
}

.intro-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: clamp(.58rem, 1.4vw, .68rem);
  font-weight: 300;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(176, 148, 105, .55);
  margin: 0 0 1.6rem;
  opacity: 0;
  -webkit-animation: introFadeUp .9s .2s cubic-bezier(.4, 0, .2, 1) forwards;
  animation: introFadeUp .9s .2s cubic-bezier(.4, 0, .2, 1) forwards;
}

.intro-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 7.5vw, 5.4rem);
  font-weight: 400;
  color: #EDE8DF;
  letter-spacing: .04em;
  line-height: 1.05;
  margin: 0;
  text-shadow:
    0 0 80px rgba(176, 125, 53, .30),
    0 0 140px rgba(176, 125, 53, .12),
    0 2px 24px rgba(0, 0, 0, .55);
  opacity: 0;
  -webkit-animation: introFadeUp 1s .05s cubic-bezier(.4, 0, .2, 1) forwards;
  animation: introFadeUp 1s .05s cubic-bezier(.4, 0, .2, 1) forwards;
}

.intro-logo em {
  font-style: italic;
  font-weight: 300;
  color: #C9A46A;
}

.intro-rule {
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(176, 125, 53, .55) 50%,
    transparent 100%
  );
  margin: 1.7rem auto;
  -webkit-animation: introRule .75s .72s cubic-bezier(.4, 0, .2, 1) forwards;
  animation: introRule .75s .72s cubic-bezier(.4, 0, .2, 1) forwards;
}

.intro-since {
  font-family: 'Jost', sans-serif;
  font-size: clamp(.56rem, 1.3vw, .65rem);
  font-weight: 300;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: rgba(176, 148, 105, .42);
  margin: 0;
  opacity: 0;
  -webkit-animation: introFadeUp .8s .82s cubic-bezier(.4, 0, .2, 1) forwards;
  animation: introFadeUp .8s .82s cubic-bezier(.4, 0, .2, 1) forwards;
}

/* Estado de salida del contenido */
.intro-inner.intro-exiting {
  -webkit-animation: introExit .70s cubic-bezier(.4, 0, .2, 1) forwards !important;
  animation: introExit .70s cubic-bezier(.4, 0, .2, 1) forwards !important;
}

@-webkit-keyframes introFadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(14px);
    transform: translateY(14px);
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes introFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@-webkit-keyframes introRule {
  to { width: clamp(80px, 12vw, 140px); }
}
@keyframes introRule {
  to { width: clamp(80px, 12vw, 140px); }
}

@-webkit-keyframes introExit {
  from {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1.05) translateY(-10px);
    transform: scale(1.05) translateY(-10px);
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }
}
@keyframes introExit {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: scale(1.05) translateY(-10px);
    filter: blur(6px);
  }
}

/* =========================================================
   FIN INTRO SCREEN
   ========================================================= */

/* ---------------------------------------------------------
   Variables globales
   --------------------------------------------------------- */
:root {
  --bg:           #FAFAF7;
  --bg-alt:       #F3EDE3;
  --bg-dark:      #181610;
  --bg-dark-2:    #231F18;
  --white:        #FFFFFF;
  --ink:          #1B1814;
  --ink-mid:      #524B43;
  --ink-muted:    #9C9086;
  --on-dark:      #EDE8DF;
  --on-dark-2:    rgba(237,232,223,0.52);
  --gold:         #8A6020;
  --gold-warm:    #B07D35;
  --gold-border:  rgba(138,96,32,0.22);
  --border:       rgba(27,24,20,0.08);
  --border-mid:   rgba(27,24,20,0.16);
  --border-dark:  rgba(255,255,255,0.07);
  --shadow-sm:    0 1px 3px rgba(27,24,20,.04), 0 5px 14px rgba(27,24,20,.07);
  --shadow-md:    0 4px 16px rgba(27,24,20,.08), 0 18px 52px rgba(27,24,20,.10);
  --r-sm:         3px;
  --r:            8px;
  --pad-x:        clamp(1.5rem, 5vw, 5rem);
  --pad-y:        clamp(4rem, 8vw, 8rem);
  --t1:           0.22s cubic-bezier(.4, 0, .2, 1);
  --t2:           0.44s cubic-bezier(.4, 0, .2, 1);
  --t3:           0.66s cubic-bezier(.4, 0, .2, 1);
}

/* ---------------------------------------------------------
   Reset & Base
   --------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

figure { margin: 0; }

a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---------------------------------------------------------
   Placeholder de imagen
   --------------------------------------------------------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: repeating-linear-gradient(
    -45deg,
    #1B1814 0, #1B1814 11px,
    #231F18 11px, #231F18 22px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder-label {
  background: rgba(12, 10, 8, 0.80);
  color: var(--gold-warm);
  font-family: 'Jost', sans-serif;
  font-size: .70rem;
  font-weight: 400;
  letter-spacing: .07em;
  padding: .4rem 1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--gold-border);
  text-align: center;
  pointer-events: none;
}

/* ---------------------------------------------------------
   Tokens compartidos
   --------------------------------------------------------- */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .9rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  display: block;
}

.divider {
  width: 38px;
  height: 1px;
  background: var(--gold);
  margin: 1.4rem 0;
}

/* ---------------------------------------------------------
   Nav — index (frosted glass, fixed)
   --------------------------------------------------------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem var(--pad-x);
  background: rgba(250, 250, 247, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(27, 24, 20, 0.07);
  transition: background var(--t1), box-shadow var(--t1);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--ink);
  transition: opacity var(--t1);
}

.nav-logo:hover { opacity: .65; }

.nav-links {
  display: flex;
  gap: 2.4rem;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t1);
}

.nav-links a:hover { color: var(--ink); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t2);
}

.nav-links a:hover::after { transform: scaleX(1); }

/* ---------------------------------------------------------
   Nav — páginas internas (page-nav, estático)
   --------------------------------------------------------- */
nav.page-nav {
  position: static;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem var(--pad-x);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

nav.page-nav .nav-logo  { color: var(--ink); }
nav.page-nav .nav-links a { color: var(--ink-mid); }
nav.page-nav .nav-links a:hover { color: var(--ink); }
nav.page-nav .nav-links a::after { background: var(--gold); }

/* ---------------------------------------------------------
   Language switcher — pill con banderas
   --------------------------------------------------------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 1.6rem;
  padding: 3px;
  border-radius: 8px;
  background: rgba(27, 24, 20, 0.07);
  border: 1px solid rgba(27, 24, 20, 0.10);
  transition: border-color var(--t1);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: .26rem .54rem;
  border-radius: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: .67rem;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: background var(--t1), color var(--t1), box-shadow var(--t1);
  line-height: 1;
  white-space: nowrap;
}

.lang-btn:hover {
  color: var(--ink);
  background: rgba(27, 24, 20, 0.06);
}

.lang-btn.active {
  background: var(--white);
  color: var(--ink);
  font-weight: 500;
  box-shadow: 0 1px 5px rgba(27, 24, 20, 0.13);
}

.lang-flag {
  display: block;
  width: 17px;
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
}

/* nav principal (frosted, index.html) */
nav:not(.page-nav) .lang-switch {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.20);
}
nav:not(.page-nav) .lang-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--ink);
}
nav:not(.page-nav) .lang-btn.active {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* English mode: hide Spanish dish descriptions */
html[lang="en"] .dish-dsc { display: none; }
html[lang="en"] .dish-en  { font-weight: 400; color: var(--ink-mid); }

@media (max-width: 768px) {
  .lang-switch { margin-left: 1rem; }
}

@media (max-width: 480px) {
  .lang-switch { margin-left: .6rem; padding: 2px; }
  .lang-btn { gap: 4px; padding: .22rem .4rem; font-size: .63rem; }
  .lang-flag { width: 14px; height: 10px; }
}

/* ---------------------------------------------------------
   Botones
   --------------------------------------------------------- */
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .84rem 2.1rem;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--r-sm);
  transition: box-shadow var(--t2);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform var(--t2);
  z-index: -1;
}

.btn-primary:hover { box-shadow: var(--shadow-md); }
.btn-primary:hover::after { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .84rem 1.9rem;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--on-dark);
  background: transparent;
  border: 1px solid rgba(237, 232, 223, 0.38);
  border-radius: var(--r-sm);
  transition: border-color var(--t1), background var(--t1);
}

.btn-ghost:hover {
  border-color: rgba(237, 232, 223, 0.72);
  background: rgba(237, 232, 223, 0.09);
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  font-family: 'Jost', sans-serif;
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--t1), opacity var(--t1);
}

.info-link:hover { gap: .72rem; opacity: .78; }

/* ---------------------------------------------------------
   Hero — imagen cinematográfica con texto superpuesto
   --------------------------------------------------------- */
.hero { position: relative; }

.hero-foto-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

.hero-foto-wrap #exterior {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradiente de velo sobre la imagen */
.hero-foto-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(24, 22, 16, .26) 0%,
    rgba(24, 22, 16, .04) 35%,
    rgba(24, 22, 16, .65) 75%,
    rgba(24, 22, 16, .90) 100%
  );
  pointer-events: none;
}

/* Logo en esquina superior derecha, bajo el nav */
.hero-logo-overlay {
  position: absolute;
  top: 5.5rem;
  right: var(--pad-x);
  z-index: 3;
}

.hero-logo-overlay #logo {
  height: 74px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.44));
}

/* Contenido superpuesto en la parte baja de la imagen */
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x) clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 9vw, 7rem);
  font-weight: 300;
  line-height: .98;
  color: var(--on-dark);
  letter-spacing: -.02em;
  margin-bottom: 2rem;
  max-width: 11ch;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-warm);
  display: block;
}

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: .94rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--on-dark-2);
  max-width: 46ch;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

/* Animaciones de entrada */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp .7s .10s cubic-bezier(.4,0,.2,1) both; }
.hero-title   { animation: fadeUp .7s .22s cubic-bezier(.4,0,.2,1) both; }
.hero-sub     { animation: fadeUp .7s .36s cubic-bezier(.4,0,.2,1) both; }
.hero-actions { animation: fadeUp .7s .50s cubic-bezier(.4,0,.2,1) both; }

/* ---------------------------------------------------------
   Fotos Strip
   --------------------------------------------------------- */
.fotos-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fotos-strip-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.fotos-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t3);
}

.fotos-strip-item:hover img { transform: scale(1.06); }

.fotos-strip-item .img-placeholder {
  height: 100%;
  min-height: unset;
}

/* ---------------------------------------------------------
   Especialidades — fondo crema, layout dos columnas
   --------------------------------------------------------- */
.especialidades-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--bg-alt);
  padding: var(--pad-y) var(--pad-x);
  align-items: start;
}

.esp-left {
  padding-right: clamp(2rem, 5vw, 5rem);
  border-right: 1px solid var(--border-mid);
  padding-top: .5rem;
}

.esp-left .section-title { color: var(--ink); }
.esp-left .divider       { background: var(--gold); }

.esp-desc {
  font-family: 'Jost', sans-serif;
  font-size: .90rem;
  font-weight: 300;
  line-height: 1.84;
  color: var(--ink-mid);
  max-width: 34ch;
}

.esp-right {
  padding-left: clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
}

.esp-item {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left var(--t1);
  cursor: default;
}

.esp-item:first-child { border-top: 1px solid var(--border); }
.esp-item:hover       { padding-left: .65rem; }

.esp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .15em;
  color: var(--gold);
  flex-shrink: 0;
  width: 2rem;
}

.esp-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: .02em;
  color: var(--ink);
}

/* ---------------------------------------------------------
   Ambiente — texto izquierda, imagen derecha
   --------------------------------------------------------- */
.ambiente-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--bg);
  min-height: 520px;
  padding-bottom: var(--pad-y);
}

.ambiente-text {
  padding: clamp(3rem, 6vw, 5.5rem) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.ambiente-text .section-title { color: var(--ink); }

.ambiente-text .section-title em {
  font-style: italic;
  color: var(--gold);
}

.ambiente-body {
  font-family: 'Jost', sans-serif;
  font-size: .94rem;
  font-weight: 300;
  line-height: 1.84;
  color: var(--ink-mid);
  margin-bottom: 2rem;
  max-width: 40ch;
}

.ambiente-img {
  overflow: hidden;
  position: relative;
}

.ambiente-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t3);
}

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

.ambiente-img .img-placeholder {
  height: 100%;
  min-height: unset;
}

/* ---------------------------------------------------------
   Info Section — tarjetas sobre fondo blanco
   --------------------------------------------------------- */
.info-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: var(--pad-y) var(--pad-x);
  background: var(--white);
}

.info-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.5rem 2.8rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t1), transform var(--t1);
}

.info-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: #B87333;
  text-shadow: 0 1px 8px rgba(184, 115, 51, 0.20);
  margin: .3rem 0 .75rem;
  line-height: 1.18;
}

.info-text {
  font-family: 'Jost', sans-serif;
  font-size: .87rem;
  font-weight: 300;
  line-height: 1.92;
  color: var(--ink-mid);
  margin-bottom: 1.1rem;
}

.info-text span {
  display: block;
}

.info-gap {
  margin-top: .85rem;
}

.info-links {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.esp-left .section-title span {
  display: block;
}

/* ---------------------------------------------------------
   Page Header — páginas internas
   --------------------------------------------------------- */
.page-header {
  padding: 3.5rem var(--pad-x) 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin-top: .6rem;
}

.page-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

/* ---------------------------------------------------------
   Nosotros — editorial con meta lateral pegajosa
   --------------------------------------------------------- */
.nosotros-section {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 4rem;
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
  align-items: start;
}

.nosotros-meta {
  position: sticky;
  top: 5rem;
}

.nosotros-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -.03em;
  margin-bottom: .5rem;
}

.nosotros-tag {
  font-family: 'Jost', sans-serif;
  font-size: .80rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-mid);
  letter-spacing: .04em;
  margin: 0;
}

.nosotros-body-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nosotros-body {
  font-family: 'Jost', sans-serif;
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--ink-mid);
}

.nosotros-body--lead {
  font-size: 1.08rem;
  line-height: 2;
  color: var(--ink-mid);
}

.nosotros-body strong {
  font-weight: 500;
  color: var(--ink);
}

.nos-hl {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-warm);
}

.nosotros-tag--since {
  font-family: 'Cormorant Garamond', serif;
  font-size: .92rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .06em;
}

/* ---------------------------------------------------------
   Nosotros imagen panorámica
   --------------------------------------------------------- */
.nosotros-img-full {
  width: 100%;
  height: 440px;
  overflow: hidden;
  position: relative;
}

.nosotros-img-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nosotros-img-full .img-placeholder {
  height: 100%;
  min-height: unset;
}

/* ---------------------------------------------------------
   Galería — oscuro, tarjetas con hover
   --------------------------------------------------------- */
.galeria-section {
  background: var(--bg-dark);
  padding: var(--pad-y) var(--pad-x);
}

.galeria-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--on-dark);
  margin-bottom: 3rem;
  margin-top: .5rem;
  line-height: 1.08;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-dark-2);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t3);
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-item .img-placeholder {
  height: 100%;
  min-height: unset;
  border-radius: var(--r);
}

.gallery-item .img-placeholder-label {
  background: rgba(10, 8, 6, 0.82);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.1rem 1.3rem;
  background: linear-gradient(to top, rgba(24,22,16,.78) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--t1), opacity var(--t1);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption-text {
  font-family: 'Jost', sans-serif;
  font-size: .73rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark);
}

/* ---------------------------------------------------------
   Menú — imagen de portada
   --------------------------------------------------------- */
.menu-header-img {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
}

.menu-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-header-img .img-placeholder {
  height: 100%;
  min-height: unset;
}

/* ---------------------------------------------------------
   Menú + Contacto — grid dos columnas
   --------------------------------------------------------- */
.menu-contact-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 0;
}

/* Columna Menú */
.menu-col {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
  border-right: 1px solid var(--border);
}

.menu-category { margin-bottom: 2.8rem; }

.cat-label {
  font-family: 'Jost', sans-serif;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: .8rem;
  margin-bottom: .4rem;
  border-bottom: 1px solid var(--border-mid);
}

.menu-items { display: flex; flex-direction: column; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1.5rem;
  transition: padding-left var(--t1);
}

.menu-item:last-child { border-bottom: none; }
.menu-item:hover      { padding-left: .5rem; }

.item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: .2rem;
  line-height: 1.2;
}

.item-desc {
  font-family: 'Jost', sans-serif;
  font-size: .77rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.5;
}

.item-price {
  font-family: 'Jost', sans-serif;
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--gold);
  white-space: nowrap;
  margin-top: .18rem;
  flex-shrink: 0;
}

.menu-note {
  font-family: 'Jost', sans-serif;
  font-size: .77rem;
  font-weight: 300;
  color: var(--ink-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 1.4rem;
  margin-top: .5rem;
  line-height: 1.65;
}

/* Columna Contacto */
.contact-col {
  background: var(--bg-dark);
  padding: var(--pad-y) clamp(2rem, 4.5vw, 3.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 300;
  line-height: 1.14;
  color: var(--on-dark);
}

.contact-title span {
  display: block;
}

.contact-col .divider {
  background: var(--gold);
  margin: 1.5rem 0 2rem;
}

.contact-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.contact-item:first-of-type { border-top: 1px solid var(--border-dark); }

.contact-item-label {
  font-family: 'Jost', sans-serif;
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .42rem;
}

.contact-item-value {
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--on-dark);
}

.contact-item-value span {
  display: block;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-top: 2.2rem;
  padding: .95rem 1.8rem;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: #25D366;
  border-radius: var(--r-sm);
  transition: background var(--t1), box-shadow var(--t1), transform var(--t1);
  box-shadow: 0 4px 18px rgba(37,211,102,.26);
  align-self: flex-start;
}

.btn-wa:hover {
  background: #1ebe59;
  box-shadow: 0 6px 28px rgba(37,211,102,.42);
  transform: translateY(-2px);
}

.btn-wa svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   Footer — premium multi-column
   --------------------------------------------------------- */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x) clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--on-dark);
  letter-spacing: .04em;
  margin-bottom: .55rem;
  line-height: 1;
}

.footer-tagline {
  font-family: 'Jost', sans-serif;
  font-size: .62rem;
  font-weight: 300;
  color: var(--on-dark-2);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark-2);
  transition: border-color var(--t1), color var(--t1), background var(--t1);
}

.footer-social-link:hover {
  border-color: var(--gold-warm);
  color: var(--gold-warm);
  background: rgba(176, 125, 53, 0.10);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col-label {
  font-family: 'Jost', sans-serif;
  font-size: .60rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-col-list {
  display: flex;
  flex-direction: column;
  gap: .58rem;
  list-style: none;
}

.footer-col-list li,
.footer-col-list a {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 300;
  color: var(--on-dark-2);
  line-height: 1.55;
  transition: color var(--t1);
}

.footer-col-list a:hover { color: var(--on-dark); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--pad-x);
  flex-wrap: wrap;
  gap: .4rem;
}

.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: .64rem;
  font-weight: 300;
  color: rgba(237, 232, 223, 0.26);
  letter-spacing: .08em;
}

/* ---------------------------------------------------------
   WhatsApp flotante
   --------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.42);
  transition: transform var(--t1), box-shadow var(--t1);
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: #fff;
}

/* ---------------------------------------------------------
   Responsive — Tablet (max-width: 900px)
   --------------------------------------------------------- */
@media (max-width: 900px) {
  .fotos-strip { grid-template-columns: 1fr; }
  .fotos-strip-item { aspect-ratio: 16 / 9; }

  .especialidades-section { grid-template-columns: 1fr; }
  .esp-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--border-mid);
    padding-bottom: 2.5rem;
  }
  .esp-right { padding-left: 0; padding-top: 2.5rem; }

  .ambiente-section { grid-template-columns: 1fr; }
  .ambiente-text { border-right: none; border-bottom: 1px solid var(--border); }
  .ambiente-img { height: 340px; }

  .info-section { grid-template-columns: 1fr; }

  .nosotros-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .nosotros-meta {
    position: static;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .nosotros-meta .divider { display: none; }

  .gallery-grid { gap: .7rem; }

  .menu-contact-grid { grid-template-columns: 1fr; }
  .menu-col { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-col { padding: var(--pad-y) var(--pad-x); }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand-col { grid-column: 1 / -1; }
}

/* ---------------------------------------------------------
   Responsive — Mobile (max-width: 600px)
   --------------------------------------------------------- */
@media (max-width: 600px) {
  nav,
  nav.page-nav { padding: 1rem 1.25rem; }

  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: .70rem; }

  .hero-foto-wrap { height: 100svh; min-height: 520px; }

  .hero-logo-overlay { top: 4.5rem; }
  .hero-logo-overlay #logo { height: 52px; }

  .hero-title { font-size: 3rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .btn-primary,
  .btn-ghost { width: 100%; justify-content: center; }

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

  .nosotros-meta { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .nosotros-img-full { height: 240px; }
  .menu-header-img  { height: 220px; }
  .info-block       { padding: 2rem 1.75rem; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem 2rem;
  }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-bottom { padding: 1rem 1.5rem; flex-direction: column; align-items: flex-start; gap: .3rem; }

  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 46px; height: 46px; }
  .whatsapp-float svg { width: 23px; height: 23px; }

  .scroll-top { bottom: 5.25rem; right: 1.25rem; width: 40px; height: 40px; }
  .scroll-top svg { width: 19px; height: 19px; }
}

/* ---------------------------------------------------------
   Reseñas — layout estático (4 tarjetas en grid)
   --------------------------------------------------------- */
.resenas-section--static {
  overflow: visible;
  padding-top: clamp(6rem, 13vw, 12rem);
}

.resenas-section--static::before,
.resenas-section--static::after {
  display: none;
}

.resenas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 0 var(--pad-x);
}

.resenas-grid .resena-card {
  width: auto;
  flex-shrink: unset;
}

@media (max-width: 900px) {
  .resenas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .resenas-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }
}

/* ---------------------------------------------------------
   Scroll to top
   --------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 199;
  width: 44px;
  height: 44px;
  background: var(--ink);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(27,24,20,.22);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .28s cubic-bezier(.4,0,.2,1),
              transform .28s cubic-bezier(.4,0,.2,1),
              background var(--t1),
              box-shadow var(--t1);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--gold);
  box-shadow: 0 6px 24px rgba(138,96,32,.35);
}

.scroll-top svg {
  width: 21px;
  height: 21px;
  fill: #fff;
}

/* =========================================================
   MENÚ PREMIUM — Tema claro (paleta del sitio)
   ========================================================= */

/* Portada */
.menu-portada {
  width: 100%;
  height: clamp(260px, 38vw, 520px);
  overflow: hidden;
}

.menu-portada img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Menu body */
.menu-full { background: var(--bg); }

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Category section */
.menu-cat {
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  border-bottom: 1px solid var(--border);
}

.menu-cat-hd {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.cat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: .88rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .18em;
  flex-shrink: 0;
}

.cat-t {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 3.8vw, 3.2rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1;
  white-space: nowrap;
}

.cat-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border-mid), transparent);
  align-self: center;
  margin-left: .6rem;
  min-width: 30px;
}

/* Dishes — with description, 2 columns */
.dishes-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
}

.dish-card {
  padding: 1.8rem 2.5rem 1.8rem 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background var(--t1);
  cursor: default;
}

.dish-card:nth-child(even) {
  border-right: none;
  padding-left: 2.5rem;
  padding-right: 0;
}

.dish-card:hover { background: var(--bg-alt); }

/* Dishes — name only, 3 columns */
.dishes-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.dish-simple {
  padding: 1.15rem 1.2rem 1.15rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--t1), padding-left var(--t1);
  cursor: default;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.dish-simple:not(:nth-child(3n)) {
  border-right: 1px solid var(--border);
}

.dish-simple:hover {
  background: var(--bg-alt);
  padding-left: .55rem;
}

/* Dish typography */
.dish-nm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: .3rem;
}

.dish-dsc {
  font-family: 'Jost', sans-serif;
  font-size: .80rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: .45rem;
}

.dish-en {
  font-family: 'Jost', sans-serif;
  font-size: .70rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .04em;
  opacity: .78;
}

.dish-weight {
  font-family: 'Jost', sans-serif;
  font-size: .66rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .08em;
  opacity: .8;
  margin-left: .3rem;
}

.dish-share {
  font-family: 'Jost', sans-serif;
  font-size: .62rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .75;
  display: block;
  margin-top: .18rem;
}

.dish-qty {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 300;
  color: var(--ink-muted);
  margin-left: .18rem;
}

.dish-price {
  font-family: 'Jost', sans-serif;
  font-size: .70rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .03em;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
  margin-top: .72rem;
  line-height: 1.6;
}

.dish-simple .dish-price { margin-top: .12rem; }

.dish-price-usd {
  display: block;
  color: var(--ink-muted);
  font-size: .65rem;
}

/* Salsas block */
.salsas-block {
  margin-top: 2.5rem;
  padding: 1.6rem 2rem;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-sm);
  background: var(--bg-alt);
}

.salsas-label {
  font-family: 'Jost', sans-serif;
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.salsas-list {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  letter-spacing: .02em;
}

/* Reservas / Contacto */
.menu-reservas {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: var(--pad-y) var(--pad-x);
}

.reservas-inner { max-width: 640px; }

.reservas-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.12;
  margin-top: .6rem;
}

.reservas-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.reservas-info {
  display: flex;
  gap: 4rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.reservas-item-label {
  font-family: 'Jost', sans-serif;
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .38rem;
}

.reservas-item-val {
  font-family: 'Jost', sans-serif;
  font-size: .86rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.88;
}

.reservas-item-val span { display: block; }

/* Responsive — tablet (≤ 900px) */
@media (max-width: 900px) {
  .dishes-full { grid-template-columns: 1fr; }

  .dish-card,
  .dish-card:nth-child(even) {
    border-right: none;
    padding: 1.5rem 0;
  }

  .dishes-list { grid-template-columns: repeat(2, 1fr); }
  .dish-simple:not(:nth-child(3n)) { border-right: 1px solid var(--border); }
  .dish-simple:nth-child(even) { border-right: none; }

  .cat-t { white-space: normal; }
  .reservas-info { gap: 2rem; }

  .menu-portada { height: clamp(240px, 38vw, 440px); }

  .bebidas-grupo { margin-bottom: 2rem; }
}

/* Responsive — mobile (≤ 600px) */
@media (max-width: 600px) {
  .dishes-list { grid-template-columns: 1fr; }
  .dish-simple,
  .dish-simple:not(:nth-child(3n)) { border-right: none; }

  .menu-cat-hd { flex-wrap: wrap; gap: .7rem; }
  .cat-rule { display: none; }
  .salsas-block { padding: 1.2rem 1.3rem; }
  .menu-reservas { padding: var(--pad-y) 1.5rem; }

  /* Portada proporcional al viewport móvil */
  .menu-portada { height: clamp(200px, 56vw, 280px); }

  /* Page header: menos padding vertical */
  .page-header { padding: 2rem 1.5rem 1.6rem; }

  /* Tipografía de platos */
  .dish-nm  { font-size: 1.10rem; }
  .dish-dsc { font-size: .76rem; }

  /* Salsas */
  .salsas-list { font-size: 1rem; }

  /* Bebidas */
  .bebidas-grupo { margin-bottom: 1.4rem; }
  .bebidas-grupo-label { font-size: .58rem; }

  /* Reservas: items en columna, mapa 4:3, botones full-width */
  .reservas-info { flex-direction: column; gap: 1.4rem; }
  .reservas-map { aspect-ratio: 4 / 3; }
  .btn-wa { width: 100%; justify-content: center; }
  .btn-tel { font-size: .84rem; }
}

/* Responsive — teléfonos pequeños (≤ 400px) */
@media (max-width: 400px) {
  .menu-portada { height: 52vw; }

  .page-title  { font-size: 2.1rem; }
  .cat-t       { font-size: 1.55rem; }
  .dish-nm     { font-size: 1rem; }
  .dish-price  { font-size: .66rem; }

  .dish-badge {
    font-size: .44rem;
    padding: .09rem .24rem;
    margin-left: .24rem;
  }

  .menu-cat-nav a {
    padding: .65rem .55rem;
    font-size: .58rem;
  }

  .reservas-title { font-size: 1.65rem; }
  .reservas-item-val { font-size: .80rem; }
}

/* =========================================================
   RESEÑAS — Marquee infinito + Parallax
   ========================================================= */

.resenas-section {
  background: var(--bg-alt);
  background-image: radial-gradient(
    ellipse 70% 55% at 50% calc(50% + var(--res-py, 0px)),
    rgba(138, 96, 32, 0.06) 0%,
    transparent 70%
  );
  padding: var(--pad-y) 0;
  overflow: hidden;
  position: relative;
}

/* Edge fades */
.resenas-section::before,
.resenas-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(60px, 8vw, 140px);
  z-index: 3;
  pointer-events: none;
}

.resenas-section::before {
  left: 0;
  background: linear-gradient(to right, #0f0f0f 15%, transparent);
}

.resenas-section::after {
  right: 0;
  background: linear-gradient(to left, #0f0f0f 15%, transparent);
}

/* Header */
.resenas-hd {
  padding: 0 var(--pad-x) clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.resenas-hd .section-label       { color: var(--gold); }
.resenas-hd .section-label::before { background: var(--gold); }
.resenas-hd .section-title        { color: var(--ink); }
.resenas-hd .section-title em     { color: var(--gold); }

/* Track rows */
.resenas-track-wrap {
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.resenas-track-wrap:last-of-type { margin-bottom: 0; }

.resenas-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  animation: res-left 40s linear infinite;
}

.resenas-track--right {
  animation: res-right 46s linear infinite;
}

.resenas-track-wrap:hover .resenas-track {
  animation-play-state: paused;
}

@keyframes res-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes res-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Card */
.resena-card {
  flex-shrink: 0;
  width: 282px;
  background: var(--white);
  border: 1px solid rgba(27, 24, 20, 0.08);
  border-top: 2px solid rgba(138, 96, 32, 0.32);
  border-radius: 14px;
  padding: 2.2rem 2rem 1.9rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 2px 8px rgba(27, 24, 20, 0.06),
    0 12px 32px rgba(27, 24, 20, 0.09);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--t2), box-shadow var(--t2), border-color var(--t2);
}

/* Comilla decorativa de fondo */
.resena-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  right: 1.3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8.5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(138, 96, 32, 0.07);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0;
}

.resena-card:hover {
  transform: translateY(-6px);
  border-top-color: rgba(138, 96, 32, 0.55);
  box-shadow:
    0 4px 14px rgba(27, 24, 20, 0.10),
    0 20px 48px rgba(27, 24, 20, 0.13);
}

/* Avatar */
.resena-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(138, 96, 32, 0.14) 0%, rgba(176, 125, 53, 0.07) 100%);
  border: 1.5px solid rgba(138, 96, 32, 0.28);
  box-shadow: 0 0 0 3px rgba(138, 96, 32, 0.06), 0 3px 10px rgba(27, 24, 20, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .06em;
  margin-bottom: 1.4rem;
  flex-shrink: 0;
}

/* Stars */
.resena-stars {
  font-size: .80rem;
  color: var(--gold);
  letter-spacing: .15em;
  margin-bottom: 1.1rem;
  line-height: 1;
}

/* Review text */
.resena-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.06rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.70;
  margin-bottom: 0;
  flex: 1;
}

/* Author */
.resena-author {
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(27, 24, 20, 0.10);
  opacity: .88;
}

/* =========================================================
   HAMBURGER NAV — solo mobile (≤ 768px)
   ========================================================= */

/* Botón: oculto en desktop, revelado solo en mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  -webkit-transition: transform .28s cubic-bezier(.4,0,.2,1),
                      opacity   .28s cubic-bezier(.4,0,.2,1);
  transition:         transform .28s cubic-bezier(.4,0,.2,1),
                      opacity   .28s cubic-bezier(.4,0,.2,1);
}

/* Estado X cuando el menú está abierto */
.nav-hamburger.is-open span:nth-child(1) { -webkit-transform: translateY(6.5px) rotate(45deg);  transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; -webkit-transform: scaleX(0); transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { -webkit-transform: translateY(-6.5px) rotate(-45deg); transform: translateY(-6.5px) rotate(-45deg); }

/* Panel móvil: oculto por defecto */
.nav-mobile-panel { display: none; }

@media (max-width: 768px) {
  /* Posicionamiento correcto para nav estático (páginas internas) */
  nav.page-nav { position: relative; }

  /* Ocultar links de desktop, mostrar hamburger */
  .nav-links    { display: none; }
  .nav-hamburger { display: -webkit-flex; display: flex; }

  /* Panel que aparece al abrir */
  .nav-mobile-panel {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 250, 247, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 24, 20, 0.10);
    box-shadow: 0 16px 40px rgba(27, 24, 20, 0.10);
    padding: 1.4rem 1.75rem 1.8rem;
    opacity: 0;
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    pointer-events: none;
    -webkit-transition: opacity .28s cubic-bezier(.4,0,.2,1),
                        -webkit-transform .28s cubic-bezier(.4,0,.2,1);
    transition: opacity .28s cubic-bezier(.4,0,.2,1),
                transform .28s cubic-bezier(.4,0,.2,1);
    z-index: 99;
  }

  nav.nav-is-open .nav-mobile-panel {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Lista de links dentro del panel */
  .nav-mobile-links {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .nav-mobile-links li {
    border-bottom: 1px solid rgba(27, 24, 20, 0.07);
  }

  .nav-mobile-links li:last-child { border-bottom: none; }

  .nav-mobile-links a {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: .95rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: .03em;
    color: var(--ink);
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: color .2s ease, padding-left .2s ease;
    transition: color .2s ease, padding-left .2s ease;
  }

  .nav-mobile-links a:active {
    color: var(--gold);
    padding-left: .35rem;
  }

  .nav-mobile-arrow {
    font-family: 'Jost', sans-serif;
    font-size: .72rem;
    font-weight: 300;
    color: var(--gold-warm);
    opacity: .55;
    letter-spacing: 0;
    flex-shrink: 0;
  }
}

/* ---------------------------------------------------------
   Menú — barra de categorías sticky
   --------------------------------------------------------- */
.menu-cat-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27,24,20,.06);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.menu-cat-nav::-webkit-scrollbar { display: none; }

.menu-cat-nav-inner {
  display: flex;
  padding: 0 var(--pad-x);
  min-width: max-content;
}

.menu-cat-nav a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .9rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--t1), border-color var(--t1);
}

.menu-cat-nav a:hover { color: var(--ink); }

.menu-cat-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-cat-nav-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: .80rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .55;
}

.menu-cat-nav a.active .menu-cat-nav-num { opacity: 1; }

/* ---------------------------------------------------------
   Badges de plato
   --------------------------------------------------------- */
.dish-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Jost', sans-serif;
  font-size: .50rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .12rem .36rem;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: .42rem;
  line-height: 1.6;
  flex-shrink: 0;
}

.dish-badge--veg {
  color: #2d7a4f;
  background: rgba(45,122,79,.09);
  border: 1px solid rgba(45,122,79,.22);
}

.dish-badge--sc {
  color: #2563a8;
  background: rgba(37,99,168,.07);
  border: 1px solid rgba(37,99,168,.18);
}

.dish-badge--chef {
  color: var(--gold-warm);
  background: rgba(176,125,53,.10);
  border: 1px solid rgba(176,125,53,.24);
}

/* ---------------------------------------------------------
   Bebidas — grupos internos
   --------------------------------------------------------- */
.bebidas-grupo { margin-bottom: clamp(2rem, 4vw, 3rem); }
.bebidas-grupo:last-child { margin-bottom: 0; }

.bebidas-grupo-label {
  font-family: 'Jost', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: .7rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border-mid);
}

/* ---------------------------------------------------------
   Reservas — grid con mapa
   --------------------------------------------------------- */
.reservas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  max-width: none;
}

.reservas-grid .reservas-inner { max-width: none; }

.reservas-map {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border-mid);
  aspect-ratio: 4 / 3;
  background: var(--border);
  align-self: stretch;
}

.reservas-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  min-height: 300px;
}

.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: .6rem;
  font-family: 'Jost', sans-serif;
  font-size: .86rem;
  font-weight: 300;
  color: var(--ink-mid);
  transition: color var(--t1);
}

.btn-tel:hover { color: var(--gold); }

.btn-tel svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: .65;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .reservas-grid {
    grid-template-columns: 1fr;
  }
  .reservas-map { aspect-ratio: 16 / 9; }
}

@media (max-width: 600px) {
  .menu-cat-nav-inner { padding: 0 1.25rem; }
  .menu-cat-nav a { padding: .75rem .7rem; font-size: .60rem; }
}
