/* ============================================================
   BARRO — Restaurante, Ávila
   Dirección visual v4 — LUJO TRADICIONAL
   Simetría central, serif en todo, marcos finos, ornamentos
   de bronce viejo, papel marfil y tinta profunda.
   Una carta antigua convertida en web.
   ============================================================ */

/* ---------- Tipografías (auto-alojadas, SIL OFL) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-300-700-normal.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-300-700-italic.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/hanken-300-800-normal.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Marcellus";
  src: url("../fonts/marcellus-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --marfil: #ffffff;        /* base de toda la web: blanco */
  --pergamino: #ffffff;     /* toda la web en blanco: secciones alternas incluidas */
  --tinta: #2B2015;         /* tinta profunda */
  --vino: #6B3A28;          /* acento: arcilla avinada */
  --bronce: #A3844C;        /* ornamentos y filetes */
  --noche: #251B12;         /* secciones oscuras */
  --crema-noche: #F1E9DA;   /* texto sobre noche */
  --linea: rgba(43, 32, 21, 0.22);
  --linea-noche: rgba(241, 233, 218, 0.28);

  --f-serif: "Fraunces", Georgia, serif;
  --f-apoyo: "Hanken Grotesk", "Segoe UI", sans-serif;

  --ancho: 68rem;
  --ancho-texto: 42rem;
  --margen: clamp(1.25rem, 4vw, 3rem);
  --alto-topbar: 4.4rem;

  --dur: 0.6s;
  --curva: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: only light; }
[id] { scroll-margin-top: 5.4rem; }
html:has(.overlay:target) { overflow: hidden; }

body {
  margin: 0;
  background: var(--marfil);
  color: var(--tinta);
  font-family: var(--f-serif);
  font-optical-sizing: auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 400;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

/* El papel vivo: grano sutil sobre toda la página (el pasado como materia) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23g)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
figure, blockquote { margin: 0; }
p, li, figcaption { text-wrap: pretty; }

/* Títulos en letra recta (Hanken) y a escala contenida */
h1, h2, h3 {
  font-family: var(--f-apoyo);
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.02em;
  margin: 0 0 1.2rem;
  text-wrap: balance;
}
h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); font-weight: 420; }

p { margin: 0 0 1.15rem; max-width: var(--ancho-texto); margin-inline: auto; }
.entradilla { font-size: clamp(1.15rem, 1.7vw, 1.35rem); line-height: 1.65; }

a { color: var(--vino); text-decoration: none; text-underline-offset: 0.22em; }
a:hover { text-decoration: underline; text-decoration-thickness: 1px; }
p a, td a, address a { text-decoration: underline; text-decoration-thickness: 1px; }

:focus-visible { outline: 2px solid var(--vino); outline-offset: 3px; }
::selection { background: #6B3A28; color: #F6ECDC; }
/* La barra de desplazamiento, en la paleta de la casa */
html { scrollbar-width: thin; scrollbar-color: #6B3A28 transparent; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #6B3A28; border-radius: 5px; border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background-color: #8a4b26; }

/* ---------- La gramática ceremonial ---------- */

/* Etiqueta: versalitas espaciadas en serif */
.etiqueta {
  font-family: var(--f-serif);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vino);
  display: block;
  margin-bottom: 1rem;
}

/* Ornamento: filete con cuenco de barro central */
.ornamento {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 1.6rem auto;
  border: 0;
  padding: 0;
}
.ornamento span { display: block; width: clamp(2.5rem, 6vw, 4.5rem); height: 1px; background: var(--bronce); }
/* El centro del ornamento es un cuenco de barro, no un rombo cualquiera */
.ornamento i {
  position: relative;
  display: block;
  width: 13px; height: 7px;
  border: 1.2px solid var(--bronce);
  border-top: 0;
  border-radius: 0 0 11px 11px;
  background: none;
}
.ornamento i::after {
  content: ""; position: absolute; left: 50%; bottom: -3.5px;
  width: 6px; height: 1.2px; background: var(--bronce);
  transform: translateX(-50%);
}
.ornamento.doble span { position: relative; }
.ornamento.doble span::after { content: ""; position: absolute; inset: 3px 0 auto; height: 1px; background: var(--bronce); }

/* Cita ceremonial */
.cita {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.45;
  max-width: 30ch;
  margin: 0 auto;
  text-wrap: balance;
  hanging-punctuation: first;
}
.cita--menor { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.cita-fuente {
  font-family: var(--f-serif);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronce);
  margin-top: 1.3rem;
  display: block;
}

.dato {
  font-family: var(--f-serif);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dato-suave { color: rgba(43, 32, 21, 0.65); }

/* Enlace ceremonial */
.lnk {
  display: inline-block;
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tinta);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--bronce);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.lnk:hover { color: var(--vino); border-color: var(--vino); text-decoration: none; }

/* Botón: marco fino doble */
.btn-reserva {
  display: inline-block;
  font-family: var(--f-serif);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--tinta);
  border: 1px solid var(--tinta);
  outline: 1px solid var(--linea);
  outline-offset: 3px;
  padding: 0.95rem 2rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-reserva:hover, .btn-reserva:active {
  background: var(--vino);
  border-color: var(--vino);
  color: var(--marfil);
  text-decoration: none;
}
.btn-reserva:focus-visible { outline: 2px solid var(--vino); outline-offset: 4px; }

/* ---------- Distinciones: emblemas propios ---------- */
.distinciones {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.8rem, 4.5vw, 3.2rem);
  flex-wrap: wrap;
  margin: 0 0 2.2rem;
}
.distincion { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.distincion .emblema { width: 46px; height: 46px; display: block; }
.distincion span {
  font-family: var(--f-serif);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}
.distinciones--pie { margin: 1.6rem 0 0; }
.distinciones--pie .emblema { width: 34px; height: 34px; }

/* ---------- Mapa ---------- */
.mapa {
  border: 0;
  width: 100%;
  height: clamp(16rem, 42vh, 22rem);
  display: block;
  filter: sepia(0.22) saturate(0.85);
}

/* ---------- Formulario de solicitud de reserva ---------- */
.formulario {
  max-width: 34rem;
  margin: 2rem auto 0;
  text-align: left;
  display: grid;
  gap: 1.1rem;
}
.formulario .fila { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 34rem) { .formulario .fila { grid-template-columns: 1fr 1fr; } }
.formulario .campo { display: grid; gap: 0.4rem; }
.formulario label {
  font-family: var(--f-serif);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--vino);
}
.formulario input,
.formulario select,
.formulario textarea {
  font-family: var(--f-serif);
  font-size: 1rem;
  color: var(--tinta);
  background: #FBF8F1;
  border: 1px solid var(--linea);
  padding: 0.7rem 0.9rem;
  width: 100%;
  border-radius: 0;
}
.formulario textarea { resize: vertical; min-height: 5.5rem; }
.formulario input:focus-visible,
.formulario select:focus-visible,
.formulario textarea:focus-visible { outline: 2px solid var(--vino); outline-offset: 1px; }
.formulario .acciones { text-align: center; margin-top: 0.6rem; }
button.btn-reserva { background: none; cursor: pointer; font-family: var(--f-serif); }
.formulario-nota {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(43, 32, 21, 0.68);
  text-align: center;
  margin-top: 0.9rem;
}

/* ---------- Estructura centrada ---------- */
.contenedor { width: min(100% - 2 * var(--margen), var(--ancho)); margin-inline: auto; text-align: center; }
.seccion { padding-block: clamp(3.8rem, 9vh, 7rem); }
.seccion-pergamino { background: var(--pergamino); }

/* Sección nocturna */
.seccion-noche { background: var(--noche); color: var(--crema-noche); }
.seccion-noche .etiqueta { color: var(--bronce); }
.seccion-noche .lnk { color: var(--crema-noche); border-color: var(--bronce); }
.seccion-noche .lnk:hover { color: var(--bronce); }
.seccion-noche .btn-reserva { color: var(--crema-noche); border-color: var(--crema-noche); outline-color: var(--linea-noche); }
.seccion-noche .btn-reserva:hover { background: var(--bronce); border-color: var(--bronce); color: var(--noche); }
.seccion-noche a { color: var(--bronce); }
.seccion-noche :focus-visible { outline-color: var(--bronce); }
.seccion-noche .dato-suave { color: rgba(241, 233, 218, 0.72); }
.seccion-noche .cita-fuente { color: var(--bronce); }
.seccion-noche .pie-foto { color: rgba(241, 233, 218, 0.72); }

/* ---------- Fotografía: láminas enmarcadas ---------- */
.cuadro {
  display: block;
  border: 1px solid var(--bronce);
  padding: clamp(0.5rem, 1.4vw, 0.9rem);
  background: var(--marfil);
  margin-inline: auto;
}
.cuadro img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cuadro-retrato { max-width: 26rem; }
.cuadro-retrato img { aspect-ratio: 3 / 4; }
.cuadro-medio { max-width: 34rem; }
.cuadro-ancho { max-width: 54rem; }
.cuadro-ancho img { aspect-ratio: 16 / 9; }
.seccion-noche .cuadro { background: var(--noche); border-color: rgba(163, 132, 76, 0.75); }
.seccion-pergamino .cuadro { background: var(--pergamino); }

/* Pareja de láminas centrada */
.pareja {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3.5vw, 2.8rem);
  justify-items: center;
  max-width: 56rem;
  margin-inline: auto;
}
@media (min-width: 48rem) { .pareja { grid-template-columns: 1fr 1fr; } }

.pie-foto {
  font-family: var(--f-serif);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(43, 32, 21, 0.65);
  margin-top: 0.8rem;
  text-align: center;
}
.pie-foto a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; }

/* ---------- Cabecera: la marca en el centro ---------- */
.topbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.5rem);
  height: var(--alto-topbar);
  padding: 0 clamp(0.9rem, 3.5vw, 2.5rem);
  background: rgba(245, 239, 226, 0.97);
  border-bottom: 1px solid var(--linea);
}
.marca {
  font-family: var(--f-serif);
  font-weight: 480;
  font-size: clamp(1.15rem, 0.8rem + 1.2vw, 1.55rem);
  letter-spacing: clamp(0.18em, 0.1em + 0.25vw, 0.3em);
  margin-right: -0.18em;
  line-height: 1;
  color: var(--tinta);
  white-space: nowrap;
  text-align: center;
}
.topnav-lado { display: flex; align-items: center; gap: clamp(0.7rem, 1.6vw, 1.5rem); }
.topnav-lado.izquierda { justify-content: flex-start; }
.topnav-lado.derecha { justify-content: flex-end; }
.topnav-lado a {
  font-family: var(--f-serif);
  font-weight: 480;
  font-size: clamp(0.72rem, 0.62rem + 0.3vw, 0.82rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.1;
  padding-block: 0.5rem;
  color: var(--tinta);
  transition: color 0.25s ease;
  white-space: nowrap;
}
.topnav-lado a:hover,
.topnav-lado a[aria-current="page"] { color: var(--vino); }
.topnav-lado a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--bronce);
  text-underline-offset: 0.5em;
}
.topnav-lado .lnk-reservar {
  border: 1px solid var(--tinta);
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 clamp(0.7rem, 1.6vw, 1.3rem);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.topnav-lado .lnk-reservar:hover {
  background: var(--vino);
  border-color: var(--vino);
  color: var(--marfil);
  text-decoration: none;
}
.solo-ancho { display: none; }
.solo-estrecho { display: inline-flex; }
@media (min-width: 64rem) {
  .solo-ancho { display: inline-flex; }
  .solo-estrecho { display: none; }
}

/* ---------- Portada ceremonial (héroe) ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--crema-noche);
  isolation: isolate;
  margin-top: var(--alto-topbar);
}
.hero .fondo { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero .fondo img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: rgba(37, 27, 18, 0.55);
}
.hero .contenido {
  position: relative;
  padding: clamp(2rem, 6vh, 4rem) var(--margen);
  max-width: 46rem;
}
.hero .etiqueta { color: var(--crema-noche); opacity: 0.9; }
.hero h1 {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  margin-right: -0.14em;
  margin-bottom: 0.6rem;
}
.hero .lema {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin: 0 auto 2rem;
  max-width: 34ch;
}
.hero .ornamento span { background: var(--bronce); }
.hero .ornamento i { border-color: var(--bronce); }
.hero .btn-reserva { color: var(--crema-noche); border-color: var(--crema-noche); outline-color: rgba(241, 233, 218, 0.4); }
.hero .btn-reserva:hover { background: var(--marfil); border-color: var(--marfil); color: var(--tinta); }
.hero :focus-visible { outline-color: var(--crema-noche); }

/* Portada tipográfica de páginas interiores */
.portada {
  padding: clamp(8rem, 16vh, 10.5rem) var(--margen) clamp(1.6rem, 4vh, 2.8rem);
  text-align: center;
}
.portada h1 { margin-bottom: 0.4rem; }
.portada .funcional {
  font-family: var(--f-serif);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--vino);
  display: block;
  margin-top: 0.9rem;
}

/* ---------- La carta (menús) ---------- */
.plato-menu { padding: clamp(2rem, 5vh, 3.2rem) 0; text-align: center; }
.plato-menu .nombre {
  font-family: var(--f-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 420;
  margin: 0 0 0.6rem;
}
.plato-menu .detalle {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
  max-width: 44ch;
  margin: 0 auto 0.9rem;
}
.plato-menu .precio {
  font-family: var(--f-serif);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  margin: 0 0 0.5rem;
  color: var(--vino);
}
.plato-menu .condicion {
  font-family: var(--f-serif);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(43, 32, 21, 0.62);
  display: block;
}

.armonias { list-style: none; margin: 0 auto; padding: 0; max-width: 44rem; }
.armonias li { padding: 1.6rem 0; text-align: center; }
.armonias li + li { border-top: 1px solid var(--linea-noche); }
body:not(.pagina-noche) .armonias li + li { border-top-color: var(--linea); }
.armonias .nombre { font-family: var(--f-serif); font-size: clamp(1.35rem, 2.2vw, 1.8rem); font-weight: 450; display: block; margin-bottom: 0.3rem; }
.armonias .precio { font-family: var(--f-serif); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.24em; color: var(--bronce); display: block; margin-bottom: 0.4rem; }
.armonias .detalle { font-style: italic; font-size: 1rem; display: block; max-width: 52ch; margin-inline: auto; }

/* ---------- Datos prácticos, centrados ---------- */
.reserva-datos {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 1fr;
  margin: 2.2rem auto;
  padding: 0;
  list-style: none;
  max-width: 44rem;
  text-align: center;
}
@media (min-width: 42rem) { .reserva-datos { grid-template-columns: 1fr 1fr; } }
.reserva-datos .titulo {
  font-family: var(--f-serif);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronce);
  display: block;
  margin-bottom: 0.4rem;
}
.reserva-datos .valor { font-size: 1.05rem; }
.reserva-nota {
  font-size: 0.98rem;
  font-style: italic;
  color: rgba(43, 32, 21, 0.75);
  border-top: 1px solid var(--linea);
  padding-top: 1.5rem;
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

/* ---------- Cronología centrada ---------- */
.camino { list-style: none; margin: 2.5rem auto 0; padding: 0; max-width: 38rem; }
.camino li { padding: 1.1rem 0; text-align: center; }
.camino li + li { border-top: 1px solid var(--linea); }
.camino .anho {
  font-family: var(--f-serif);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--bronce);
  display: block;
  margin-bottom: 0.3rem;
}
.camino .hecho { margin: 0 auto; max-width: 52ch; }

/* ---------- Cifras ---------- */
.cifras { display: grid; gap: 2.2rem; grid-template-columns: 1fr; margin: 3rem auto 0; max-width: 56rem; }
@media (min-width: 48rem) { .cifras { grid-template-columns: repeat(3, 1fr); } }
.cifra { text-align: center; }
.cifra .valor {
  font-family: var(--f-apoyo);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 350;
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}
.cifra .concepto {
  font-family: var(--f-serif);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronce);
}

/* ---------- Overlays ---------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--marfil);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  padding: clamp(4.8rem, 10vh, 6.5rem) var(--margen) 3rem;
  text-align: center;
}
.overlay:target, .overlay.abierta { visibility: visible; opacity: 1; transition: opacity 0.4s ease; }
.overlay .cerrar {
  position: fixed;
  top: 0.75rem;
  right: var(--margen);
  font-family: var(--f-serif);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tinta);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.6rem;
}

.indice-lista { list-style: none; margin: 0 auto; padding: 0; max-width: 34rem; }
.indice-lista li + li { border-top: 1px solid var(--linea); }
.indice-lista a {
  display: block;
  padding: 1.15rem 0.25rem;
  color: var(--tinta);
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  font-weight: 430;
  text-decoration: none;
  transition: color 0.3s ease;
}
.indice-lista a:hover { color: var(--vino); }
.indice-lista a[aria-current="page"] {
  color: var(--vino);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--bronce);
  text-underline-offset: 0.4em;
}
.indice-pie { max-width: 34rem; margin: 2.4rem auto 0; display: flex; flex-direction: column; gap: 1.4rem; align-items: center; }

.overlay-reserva { background: var(--pergamino); }
.reserva-caja { max-width: 44rem; margin-inline: auto; }
.reserva-caja h2 { margin-bottom: 0.6rem; }
.overlay-reserva .reserva-datos li:first-child { grid-column: 1 / -1; }
.overlay-reserva .reserva-datos a[href^="tel:"] {
  font-family: var(--f-apoyo);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 350;
  line-height: 1.2;
  display: inline-block;
  color: var(--tinta);
  text-decoration: none;
  border-bottom: 1px solid var(--bronce);
  padding-bottom: 0.2rem;
}
.overlay-reserva .reserva-datos a[href^="tel:"]:hover { color: var(--vino); }

/* ============================================================
   SECCIÓN «CIERRE — RESERVAR MESA» — la mesa puesta a pantalla
   completa; funde a chocolate hacia el pie
   ============================================================ */
.cierre-seccion { position: relative; height: min(100vh, 800px); min-height: 560px; overflow: clip; font-family: var(--f-apoyo); }
.cie-foto { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; display: block; }
.cie-velo { position: absolute; inset: 0; background: rgba(43,32,21,0.42); pointer-events: none; }
.cie-fundido { position: absolute; left: 0; right: 0; bottom: 0; height: 150px; background: linear-gradient(rgba(51,36,26,0), #33241A); pointer-events: none; }
/* #33241A = fondo del pie chocolate: el fundido debe casar exactamente */
.cie-contenido {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; text-align: center; color: var(--crema-noche); padding: 0 48px;
}
.cie-eyebrow { display: flex; align-items: center; gap: 16px; }
.cie-dash { width: 34px; height: 1px; background: #EAD9B8; }
.cie-rotulo { font-weight: 300; font-size: 13px; letter-spacing: 0.34em; color: #EAD9B8; }
.cierre-seccion h2 {
  margin: 0;
  font-family: var(--f-apoyo);
  font-weight: 350;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.22;
  color: var(--crema-noche);
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(43,32,21,0.65);
}
.cie-espera { font-family: var(--f-serif); font-style: italic; font-weight: 300; font-size: 0.7em; }
.cie-horario { margin: 0; max-width: none; font-weight: 300; font-size: 15px; letter-spacing: 0.14em; color: rgba(241,233,218,0.9); text-shadow: 0 1px 14px rgba(43,32,21,0.6); }
.cie-btn {
  background: #33241A; color: #f6ecdc; text-decoration: none;
  font-size: 14px; letter-spacing: 0.28em; padding: 18px 46px; margin-top: 8px;
  box-shadow: 0 6px 24px rgba(43,32,21,0.35);
}
.cie-btn:hover { background: #43301F; color: #f6ecdc; text-decoration: none; }
.cie-tel { margin: 0; max-width: none; font-weight: 300; font-size: 14px; font-style: italic; color: rgba(241,233,218,0.85); text-shadow: 0 1px 14px rgba(43,32,21,0.6); }
.cie-tel a { color: var(--crema-noche); text-decoration: none; border-bottom: 1px solid #EAD9B8; white-space: nowrap; }
.cie-tel a:hover { color: #EAD9B8; text-decoration: none; }
/* A) Entrada al llegar — mismo patrón data-in + .play del observador de main.js */
.js .cierre-seccion [data-in] { opacity: 0; }
.cierre-seccion.play [data-in="eyebrow"] { animation: cieSube 0.8s cubic-bezier(0.33,1,0.68,1) 0.15s both; }
.cierre-seccion.play [data-in="titular"] { animation: cieSube 0.8s cubic-bezier(0.33,1,0.68,1) 0.35s both; }
.cierre-seccion.play [data-in="horario"] { animation: cieSube 0.8s cubic-bezier(0.33,1,0.68,1) 0.6s both; }
.cierre-seccion.play [data-in="boton"] { animation: cieSube 0.8s cubic-bezier(0.33,1,0.68,1) 0.85s both; }
.cierre-seccion.play [data-in="telefono"] { animation: cieSube 0.8s cubic-bezier(0.33,1,0.68,1) 1.05s both; }
.cierre-seccion.play .cie-foto { animation: cieZoom 8s cubic-bezier(0.22,0.61,0.36,1) both; }
@keyframes cieSube { 0% { opacity: 0; transform: translateY(34px); } 100% { opacity: 1; transform: none; } }
@keyframes cieZoom { 0% { transform: scale(1.08); } 100% { transform: scale(1); } }
@media (max-width: 900px) {
  .cierre-seccion { height: min(100vh, 700px); }
  .cie-foto { object-position: 50% 45%; } /* la foto es vertical: en móvil es nativa */
  .cie-contenido { gap: 22px; padding: 0 30px; }
  .cierre-seccion h2 { line-height: 1.25; }
  .cie-horario { font-size: 12.5px; letter-spacing: 0.12em; line-height: 1.8; }
  .cie-btn { width: 100%; padding: 16px 0; font-size: 13px; letter-spacing: 0.26em; text-align: center; }
  .cie-fundido { height: 120px; }
}
@media (prefers-reduced-motion: reduce) {
  .js .cierre-seccion [data-in] { opacity: 1; }
  .cierre-seccion [data-in], .cie-foto { animation: none !important; transform: none !important; }
}

/* ---------- Pie chocolate: columnas · sellos · legal ---------- */
.pie {
  position: relative;
  background: #33241A;
  color: var(--crema-noche);
  padding: 68px clamp(40px, 6vw, 90px) 28px;
  font-family: var(--f-apoyo);
  text-align: left;
  border-top: 0;
}
.pie-columnas { display: grid; grid-template-columns: 1.3fr 1fr 0.9fr 0.9fr; gap: 56px; align-items: start; }
.pie-marca-col { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.pie-marca-bloque { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.pie .pie-marca {
  font-family: "Marcellus", Georgia, serif;
  font-size: 40px; letter-spacing: 0.24em; line-height: 1;
  color: var(--crema-noche); text-decoration: none;
}
.pie-linea { /* la línea del hero (.hc-line), más larga que el nombre */
  display: block; height: 2px; width: 128%;
  background: linear-gradient(90deg, #cdbb96 0%, #f6ecdc 18%, #fffdf2 30%, #f6ecdc 44%, #d8c6a1 100%);
  box-shadow: 0 0 10px rgba(255,248,226,0.55), 0 1px 4px rgba(255,248,226,0.35);
}
.pie-frase { margin: 0; font-weight: 300; font-size: 14.5px; line-height: 1.7; font-style: italic; color: rgba(241,233,218,0.65); max-width: none; }
.pie-reservar {
  color: var(--crema-noche); text-decoration: none; font-size: 13px;
  letter-spacing: 0.26em; border-bottom: 1px solid var(--bronce);
  padding-bottom: 7px; margin-top: 6px;
}
.pie-reservar:hover { color: #C9A36B; text-decoration: none; }
.pie-col { display: flex; flex-direction: column; gap: 14px; }
.pie-rotulo { font-weight: 300; font-size: 11.5px; letter-spacing: 0.3em; color: #C9A36B; }
.pie-direccion { font-style: normal; font-weight: 300; font-size: 14px; line-height: 2; color: rgba(241,233,218,0.85); }
.pie-direccion a { color: var(--crema-noche); text-decoration: none; }
.pie-direccion a:hover { color: #C9A36B; }
.pie-horario { font-weight: 300; font-size: 13px; line-height: 1.9; font-style: italic; color: rgba(241,233,218,0.6); }
.pie-paginas { display: flex; flex-direction: column; gap: 10px; }
.pie-paginas a {
  font-family: "Marcellus", Georgia, serif; font-size: 13px; letter-spacing: 0.16em;
  color: var(--crema-noche); text-decoration: none;
}
.pie-paginas a:hover, .pie-secundarias a:hover { color: #C9A36B; text-decoration: none; }
.pie-paginas a[aria-current="page"], .pie-secundarias a[aria-current="page"] { color: #C9A36B; }
.pie-secundarias { display: flex; flex-direction: column; gap: 10px; }
.pie-secundarias a { font-weight: 300; font-size: 13.5px; color: rgba(241,233,218,0.85); text-decoration: none; }
.pie-sellos {
  margin-top: 52px; padding: 26px 0;
  border-top: 1px solid rgba(241,233,218,0.18);
  border-bottom: 1px solid rgba(241,233,218,0.18);
  display: flex; justify-content: center; align-items: center; gap: 56px; flex-wrap: wrap;
}
.pie-sellos img { height: 48px; width: auto; display: block; opacity: 0.9; }
.pie .pie-marca img { height: 40px; width: auto; display: block; }
@media (max-width: 900px) {
  .pie { padding: 52px 28px 26px; }
  .pie-columnas { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pie-marca-col { grid-column: 1 / -1; }
  .pie .pie-marca { font-size: 32px; }
  .pie-linea { height: 1.5px; }
  .pie-col:last-child { display: none; } /* MÁS se recoge: sus enlaces viven en el índice */
  .pie-sellos { margin-top: 36px; padding: 22px 0; gap: 20px 16px; display: grid; grid-template-columns: 1fr 1fr; justify-items: center; }
  .pie-sellos img { height: 40px; }
  .pie-legal { flex-direction: column; align-items: center; text-align: center; }
}

.indice-secundaria {
  list-style: none;
  margin: 1.6rem auto 0;
  padding: 1.3rem 0 0;
  max-width: 34rem;
  border-top: 1px solid var(--linea);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.4rem;
}
.indice-secundaria a {
  font-family: var(--f-serif);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(43, 32, 21, 0.75);
}
.indice-secundaria a:hover { color: var(--vino); }

.pie-legal {
  margin: 0; border: 0; padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 8px 24px; font-size: 12.5px; font-style: italic; color: rgba(241,233,218,0.55);
}
.pie-legal a { color: inherit; }

/* ---------- Tabla de créditos ---------- */
.tabla-creditos { width: 100%; border-collapse: collapse; font-size: 0.95rem; text-align: left; }
.tabla-creditos th, .tabla-creditos td {
  padding: 0.75rem 1rem 0.75rem 0;
  border-bottom: 1px solid var(--linea);
  vertical-align: top;
}
.tabla-creditos th {
  font-family: var(--f-serif);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronce);
}
.desborde { overflow-x: auto; }

/* ============================================================
   EL PASADO, COCINADO EN PRESENTE — coreografía de movimiento
   ============================================================ */

/* Revelados: los textos llegan como tinta que se asienta (desenfoque → nitidez) */
.js .reveal {
  opacity: 0;
  transform: translateY(0.7rem);
  transition: opacity var(--dur) var(--curva), transform var(--dur) var(--curva), filter var(--dur) var(--curva);
}
.js h1.reveal, .js h2.reveal, .js .cita, .js blockquote.reveal .cita { filter: blur(0); }
.js h1.reveal:not(.visto), .js h2.reveal:not(.visto), .js blockquote.reveal:not(.visto) .cita { filter: blur(5px); }
.js .reveal.visto { opacity: 1; transform: none; filter: blur(0); }
.js .hero .reveal { opacity: 1; transform: none; transition: none; filter: none; }
.js .reveal-img { opacity: 0; transition: opacity 0.9s var(--curva); }
.js .reveal-img.visto { opacity: 1; }
.js .reveal-img img { transform: scale(1.04); transition: transform 1.6s var(--curva); }
.js .reveal-img.visto img { transform: scale(1); }

/* Los ornamentos se dibujan solos: la línea se traza y el cuenco aparece */
.js .ornamento span { transform: scaleX(0); transition: transform 1s var(--curva) 0.15s; }
.js .ornamento i { opacity: 0; transform: scale(0); transition: opacity 0.5s ease 0.6s, transform 0.7s var(--curva) 0.6s; }
.js .ornamento.visto span, .js .hero .ornamento span { transform: scaleX(1); }
.js .ornamento.visto i, .js .hero .ornamento i { opacity: 1; transform: scale(1); }
.js .hero .ornamento span { transform-origin: center; animation: trazo 1.1s var(--curva) 0.5s backwards; }
.js .hero .ornamento i { animation: rombo 0.8s var(--curva) 1.1s backwards; }
@keyframes trazo { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes rombo { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

/* La portada respira: la sala se acerca muy despacio (Ken Burns) */
.js .hero .fondo img { animation: respirar 22s ease-in-out infinite alternate; }
@keyframes respirar { from { transform: scale(1); } to { transform: scale(1.07); } }

/* El nombre se compone letra a letra, como tipografía de imprenta */
.js .hero h1 .letra {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em);
  animation: letra 0.8s var(--curva) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes letra { to { opacity: 1; transform: none; } }
.js .hero .etiqueta { animation: letra 0.7s var(--curva) 0.1s backwards; }
.js .hero .lema { animation: letra 0.9s var(--curva) 1.2s backwards; }
.js .hero .distinciones { animation: letra 0.9s var(--curva) 1.5s backwards; }
.js .hero .btn-reserva { animation: letra 0.9s var(--curva) 1.75s backwards; }

/* Los emblemas florecen */
.js .hero .distincion .emblema { transform-origin: center; animation: florecer 0.9s var(--curva) backwards; }
.js .hero .distincion:nth-child(1) .emblema { animation-delay: 1.55s; }
.js .hero .distincion:nth-child(2) .emblema { animation-delay: 1.7s; }
.js .hero .distincion:nth-child(3) .emblema { animation-delay: 1.85s; }
@keyframes florecer { from { opacity: 0; transform: scale(0.4) rotate(-18deg); } to { opacity: 1; transform: scale(1) rotate(0); } }

/* Las láminas tienen profundidad al hacer scroll (scroll-driven, con degradación limpia) */
@supports (animation-timeline: view()) {
  .js .cuadro img {
    animation: deriva linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  @keyframes deriva {
    from { transform: translateY(-4.5%) scale(1.1); }
    to { transform: translateY(4.5%) scale(1.1); }
  }
}

/* Marcos que responden: el bronce se enciende al pasar */
@media (hover: hover) {
  .cuadro { transition: border-color 0.4s ease, box-shadow 0.4s ease; }
  .cuadro:hover { border-color: var(--vino); box-shadow: 0 0 0 1px rgba(163, 132, 76, 0.35); }
}

/* La barra se retira al leer y vuelve al subir */
.topbar { transition: transform 0.45s var(--curva); }
.topbar.oculta { transform: translateY(-100%); }

/* ---------- Accesibilidad ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .js .reveal-img img { transform: none; }
}
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
}

/* ============================================================
   HERO 3B · CICLO — handoff hifi (lujo silencioso)
   ============================================================ */
.hero-ciclo { position: relative; height: 100vh; min-height: 640px; overflow: hidden; color: #f3ead9; background: #2e190b; }
.hero-ciclo a { text-decoration: none; }
.hc-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; animation: barroFade 20s linear infinite; }
/* Emparejadas por tipo (inmune a otros hijos de la sección): foto y frase comparten retardo */
.hc-bg:nth-of-type(1) { object-position: 50% 60%; }
.hc-bg:nth-of-type(2) { object-position: 50% 45%; animation-delay: 5s; }
.hc-bg:nth-of-type(3) { object-position: 50% 40%; animation-delay: 10s; }
.hc-bg:nth-of-type(4) { object-position: 50% 55%; animation-delay: 15s; }
/* Con JS, el ciclo espera a tener las cuatro fotos decodificadas: ninguna escena
   entra en vacío (marrón) y foto y frase arrancan exactamente en el mismo instante */
.js .hero-ciclo:not(.hc-listo) .hc-bg,
.js .hero-ciclo:not(.hc-listo) .hc-phrases > div { animation-play-state: paused; }
/* En pantallas anchas, la foto se sirve a su resolución nativa (1320 px) con fundido lateral:
   nada de reescalado borroso; el fondo tierra sostiene los márgenes */
@media (min-width: 1320px) {
  .hc-bg {
    left: 50%;
    right: auto;
    width: 1320px;
    transform: translateX(-50%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
}
.hc-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(58,33,16,0.55) 0%, rgba(58,33,16,0.1) 30%, rgba(58,33,16,0.1) 60%, rgba(46,25,11,0.68) 100%); }
.hc-content { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.hc-nav { display: flex; justify-content: space-between; align-items: center; padding: 34px 56px; font-family: var(--f-apoyo); font-weight: 300; font-size: 14px; letter-spacing: 0.26em; }
.hc-links { display: flex; gap: 36px; align-items: center; }
/* Con las estrellas, el bloque de marca es más alto: en escritorio la fila de
   enlaces se alinea con la altura del logo, no con el centro del bloque */
@media (min-width: 769px) {
  .hc-nav { align-items: flex-start; }
  .hc-links { min-height: 46px; }
}
.hc-links a { color: rgba(243,234,217,0.85); }
.hc-links a:hover { color: #f3ead9; text-decoration: none; }
.hc-brand { display: flex; flex-direction: column; gap: 7px; }
.hc-brand img { height: 46px; width: auto; display: block; }
.hc-line {
  display: block;
  height: 2px;
  width: 128%;
  transform-origin: left;
  background: linear-gradient(90deg, #cdbb96 0%, #f6ecdc 18%, #fffdf2 30%, #f6ecdc 44%, #d8c6a1 100%);
  background-size: 220% 100%;
  box-shadow: 0 0 10px rgba(255,248,226,0.55), 0 1px 4px rgba(255,248,226,0.35);
  animation: barroLine 1.4s cubic-bezier(0.65,0,0.35,1) 0.4s both, barroGlint 6s ease-in-out 2s infinite;
}
.hc-estrellas { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.hc-estrellas img { height: 38px; width: auto; display: block; filter: drop-shadow(0 1px 6px rgba(28,19,12,0.5)); }
/* Florecen tras dibujarse la línea, con el patrón del hero */
.js .hc-estrellas img { transform-origin: center; animation: florecer 0.9s var(--curva) backwards; }
.js .hc-estrellas img:nth-child(1) { animation-delay: 1.5s; }
.js .hc-estrellas img:nth-child(2) { animation-delay: 1.65s; }
.hc-btn {
  background: #33241A;
  color: #f6ecdc;
  padding: 13px 32px;
  letter-spacing: 0.26em;
  font-weight: 400;
  font-family: var(--f-apoyo);
  border: 0;
}
.hc-botones { display: flex; gap: 14px; }
.hc-btn-regalo {
  border: 1px solid rgba(243,234,217,0.75);
  color: #f3ead9;
  padding: 15px 34px;
  letter-spacing: 0.26em;
  font-size: 14px;
  font-family: var(--f-apoyo);
  font-weight: 400;
  white-space: nowrap;
}
.hc-btn-regalo:hover { background: rgba(243,234,217,0.14); color: #f3ead9; text-decoration: none; }
.hc-btn:hover { background: #43301F; color: #f6ecdc; text-decoration: none; }
.hc-bottom { padding: 0 56px 52px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.hc-phrases { position: relative; height: 170px; flex: 1; max-width: 680px; }
.hc-phrases > div {
  position: absolute; left: 0; bottom: 0;
  font-family: "Marcellus", Georgia, serif;
  font-size: 40px;
  line-height: 1.25;
  text-shadow: 0 2px 26px rgba(28,19,12,0.5);
  opacity: 0;
  animation: barroText 20s ease-in-out infinite;
}
.hc-phrases > div:nth-child(2) { animation-delay: 5s; }
.hc-phrases > div:nth-child(3) { animation-delay: 10s; }
.hc-phrases > div:nth-child(4) { animation-delay: 15s; }
.hc-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 24px; }
.hc-cta .hc-btn { padding: 16px 44px; font-size: 14px; }
.hc-burger { display: none; }
.hero-ciclo :focus-visible { outline: 2px solid #f3ead9; outline-offset: 3px; }
@keyframes barroFade { 0% { opacity: 0; } 12% { opacity: 1; } 33% { opacity: 1; } 45% { opacity: 0; } 100% { opacity: 0; } }
@keyframes barroText { 0% { opacity: 0; } 8% { opacity: 0; } 14% { opacity: 1; } 26% { opacity: 1; } 32% { opacity: 0; } 100% { opacity: 0; } }
@keyframes barroLine { 0% { transform: scaleX(0); } 100% { transform: scaleX(1); } }
@keyframes barroGlint { 0% { background-position: -160% 0; } 55% { background-position: 260% 0; } 100% { background-position: 260% 0; } }
@media (max-width: 768px) {
  .hc-nav { padding: 24px 24px 0; }
  .hc-links { display: none; }
  .hc-brand img { height: 30px; }
  .hc-line { height: 1.5px; }
  .hc-burger { display: flex; flex-direction: column; gap: 5px; padding: 6px 0; background: none; border: none; cursor: pointer; }
  .hc-burger span { display: block; width: 24px; height: 1px; background: #f3ead9; }
  .hc-bottom { flex-direction: column; align-items: stretch; padding: 0 26px 36px; gap: 18px; }
  .hc-phrases { height: 155px; max-width: none; }
  .hc-phrases > div { font-size: 30px; line-height: 1.28; }
  .hc-cta { align-items: stretch; gap: 18px; }
  .hc-cta .hc-btn { padding: 15px 0; text-align: center; font-size: 13px; }
  .hc-estrellas { gap: 12px; margin-top: 6px; }
  .hc-estrellas img { height: 28px; }
  /* El sólido (RESERVAR) arriba sin tocar el HTML */
  .hc-botones { flex-direction: column-reverse; gap: 12px; }
  .hc-btn-regalo { padding: 14px 0; text-align: center; font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .hc-bg, .hc-phrases > div, .hc-line, .hc-estrellas img { animation: none !important; }
  .hc-bg:nth-of-type(1), .hc-phrases > div:first-child { opacity: 1; }
}

/* ============================================================
   SECCIÓN «EL ESPACIO» — handoff hifi (pasado B/N + presente color)
   ============================================================ */
.espacio {
  background: #ffffff;
  color: #35241a;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  padding: 90px 96px;
  min-height: 860px;
  align-items: center;
}
.esp-col { display: flex; flex-direction: column; gap: 38px; align-self: stretch; justify-content: center; }
.esp-eyebrow { display: flex; align-items: center; gap: 18px; }
.esp-dash { width: 34px; height: 1px; background: #8a4b26; display: block; }
.esp-rotulo { font-family: var(--f-apoyo); font-weight: 300; font-size: 13px; letter-spacing: 0.34em; color: #8a4b26; }
.espacio h2 { margin: 0; font-family: var(--f-apoyo); font-weight: 400; font-size: 30px; line-height: 1.28; letter-spacing: 0.02em; text-wrap: balance; }
.esp-body { font-family: var(--f-apoyo); font-weight: 300; font-size: 17px; line-height: 1.7; color: #56412e; max-width: 26em; margin: -10px 0 0; }
.esp-archivo { position: relative; transform: rotate(-2deg); align-self: flex-start; margin: 6px 0 10px 6px; }
.esp-archivo img {
  width: 280px; height: 350px; object-fit: cover; display: block;
  filter: grayscale(1) contrast(1.08) sepia(0.22) brightness(1.04);
  border: 12px solid #faf5ea; border-bottom-width: 16px;
  box-shadow: 0 10px 28px rgba(43,32,24,0.26);
}
.esp-cta {
  display: inline-flex; align-items: center; gap: 16px; align-self: flex-start;
  color: #35241a; font-family: var(--f-apoyo); font-weight: 400; font-size: 14px;
  letter-spacing: 0.28em; border-bottom: 1px solid #8a4b26; padding-bottom: 10px;
  text-decoration: none;
}
.esp-cta:hover { color: #8a4b26; text-decoration: none; }
.esp-flecha { font-size: 17px; letter-spacing: 0; }
.esp-hoy { position: relative; align-self: stretch; min-height: 0; overflow: hidden; }
.esp-hoy img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; display: block; }
.esp-filete { position: absolute; inset: 14px; border: 1px solid rgba(240,232,216,0.45); pointer-events: none; }
/* --- Animaciones de entrada de «El espacio» (disparo único por IntersectionObserver) --- */
.js .espacio .esp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.33,1,0.68,1), transform 0.9s cubic-bezier(0.33,1,0.68,1);
}
.js .espacio.in .esp-reveal { opacity: 1; transform: none; }
/* Escalonado del texto (desktop y móvil) */
.js .espacio .esp-eyebrow.esp-reveal { transition-delay: 0s; }
.js .espacio h2.esp-reveal { transition-delay: 0.1s; }
.js .espacio .esp-body.esp-reveal { transition-delay: 0.2s; }
.js .espacio .esp-cta.esp-reveal { transition-delay: 0.4s; }
/* Foto de archivo (desktop): no cae — funde con leve zoom, conservando el giro */
.js .espacio .esp-archivo.esp-reveal { transform: rotate(-2deg) scale(0.97); transition-delay: 0.3s; }
.js .espacio.in .esp-archivo.esp-reveal { transform: rotate(-2deg); }
/* Foto grande (desktop): entra a la vez que la de archivo; su imagen pasa de B/N a color */
.js .espacio .esp-hoy.esp-solo-desktop.esp-reveal { transition-delay: 0.3s; }
.js .espacio .esp-hoy.esp-solo-desktop img {
  filter: grayscale(1);
  transform: scale(1.05);
  transition: filter 1.4s ease 0.3s, transform 1.4s cubic-bezier(0.33,1,0.68,1) 0.3s;
}
.js .espacio.in .esp-hoy.esp-solo-desktop img { filter: none; transform: scale(1); }

@media (min-width: 901px) { .esp-solo-movil { display: none; } }
@media (max-width: 900px) {
  .esp-solo-desktop { display: none; }
  .espacio { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px 36px; min-height: 0; }
  .espacio h2 { font-size: 24px; line-height: 1.3; }
  .esp-body { font-size: 14.5px; margin-top: -8px; }
  .esp-collage { position: relative; padding-bottom: 34px; }
  .esp-collage .esp-archivo { transform: rotate(-2.4deg); width: 200px; z-index: 2; margin: 0; }
  .esp-collage .esp-archivo img { width: 200px; height: 250px; border-width: 9px; border-bottom-width: 12px; }
  .esp-collage .esp-hoy { position: relative; margin-top: -160px; margin-left: 110px; z-index: 1; min-height: 330px; align-self: auto; }
  .esp-collage .esp-hoy img { position: static; height: 330px; object-position: 62% 62%; box-shadow: 0 8px 22px rgba(43,32,24,0.22); }
  .esp-cta { font-size: 13px; letter-spacing: 0.26em; padding-bottom: 9px; }
  /* Móvil: SÍ hay secuencia — primero el archivo desliza desde la izquierda… */
  .js .espacio .esp-collage .esp-archivo.esp-reveal {
    transform: rotate(-2.4deg) translateX(-24px);
    transition: opacity 0.8s cubic-bezier(0.33,1,0.68,1) 0.2s, transform 0.8s cubic-bezier(0.33,1,0.68,1) 0.2s;
  }
  .js .espacio.in .esp-collage .esp-archivo.esp-reveal { transform: rotate(-2.4deg); }
  /* …después la foto a color cae desde arriba y encaja con un pequeño rebote */
  .js .espacio .esp-collage .esp-hoy.esp-reveal {
    transform: translateY(-44px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1) 0.7s, transform 0.8s cubic-bezier(0.34,1.3,0.5,1) 0.7s;
  }
  .js .espacio.in .esp-collage .esp-hoy.esp-reveal { transform: none; }
  /* En móvil la foto a color no lleva el paso B/N→color */
  .js .espacio .esp-collage .esp-hoy img { filter: none; transform: none; transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  .js .espacio .esp-reveal { opacity: 1 !important; transition: none !important; }
  .js .espacio .esp-reveal, .js .espacio.in .esp-reveal { transform: none !important; }
  .js .espacio .esp-archivo.esp-reveal { transform: rotate(-2deg) !important; }
  .js .espacio .esp-collage .esp-archivo.esp-reveal { transform: rotate(-2.4deg) !important; }
  .js .espacio .esp-hoy.esp-solo-desktop img { filter: none !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   SEPARADOR «DE LA TIERRA, A LA MESA» — frase quieta en la franja,
   foto en movimiento: la imagen respira dentro del marco (zoom
   lento de ida y vuelta, ciclo de 28 s como la portada). Visible
   sin scrollear y en todos los navegadores.
   ============================================================ */
.separador { position: relative; width: 100%; height: 640px; overflow: hidden; }
.sep-foto {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 64%;
  transform-origin: 50% 40%;
  animation: barroAliento 28s ease-in-out infinite;
}
@keyframes barroAliento {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
/* Velo ligero: la foto se ve limpia arriba y la zona de la frase queda anclada */
.sep-velo {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(46,25,11,0.06) 0%, rgba(46,25,11,0.1) 55%, rgba(28,19,12,0.5) 100%);
}
/* Filete interior que se dibuja solo al llegar (la misma luz que el rótulo del hero) */
.sep-filete { position: absolute; inset: 16px; pointer-events: none; }
.sep-filete rect { fill: none; stroke: rgba(243,234,217,0.5); stroke-width: 1; vector-effect: non-scaling-stroke; }
.js .separador .sep-filete rect {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.33,1,0.68,1) 0.4s;
}
.js .separador.in .sep-filete rect { stroke-dashoffset: 0; }
.sep-texto {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 64px;
}
/* Composición editorial: rótulo pequeño en versalitas espaciadas sobre una
   itálica de gran cuerpo — el contraste de escala hace la pieza */
.sep-frase { margin: 0; max-width: none; text-align: center; }
.sep-linea1 {
  display: block;
  font-family: var(--f-apoyo);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(243,234,217,0.85);
  text-shadow: 0 1px 12px rgba(28,19,12,0.5);
  margin-bottom: 20px;
}
.sep-linea2 {
  display: block;
  font-family: var(--f-serif);
  font-weight: 300;
  font-style: italic;
  font-size: min(92px, 10.5vw); line-height: 1.05;
  color: #f3ead9;
  text-shadow: 0 2px 30px rgba(28,19,12,0.6);
}
/* El velo se aclara en el pico de la respiración: la luz se enciende con ella */
.sep-velo { animation: barroCandela 28s ease-in-out infinite; }
@keyframes barroCandela {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}
/* La frase respira con la foto: mismo ciclo, misma fase, amplitud menor */
.sep-texto { animation: barroAlientoTexto 28s ease-in-out infinite; }
@keyframes barroAlientoTexto {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}
/* Entrada: el rótulo se abre expandiendo su espaciado; la itálica sube del desenfoque */
@media (prefers-reduced-motion: no-preference) {
  .js .separador .sep-linea1 {
    opacity: 0;
    letter-spacing: 0.18em;
    transition: opacity 1.2s cubic-bezier(0.33,1,0.68,1), letter-spacing 1.2s cubic-bezier(0.33,1,0.68,1);
  }
  .js .separador.in .sep-linea1 { opacity: 1; letter-spacing: 0.4em; }
  .js .separador .sep-linea2 {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
    transition:
      opacity 1.2s cubic-bezier(0.33,1,0.68,1) 0.35s,
      transform 1.2s cubic-bezier(0.33,1,0.68,1) 0.35s,
      filter 1.2s cubic-bezier(0.33,1,0.68,1) 0.35s;
  }
  .js .separador.in .sep-linea2 { opacity: 1; transform: none; filter: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sep-foto, .sep-velo, .sep-texto { animation: none; }
  .js .separador .sep-filete rect { stroke-dashoffset: 0; transition: none; }
}
@media (max-width: 768px) {
  .separador { height: 400px; }
  .sep-foto { object-position: 45% 60%; }
  .sep-velo { background: linear-gradient(180deg, rgba(46,25,11,0.08) 0%, rgba(46,25,11,0.12) 50%, rgba(28,19,12,0.56) 100%); }
  .sep-filete { inset: 12px; }
  /* En móvil la frase baja para no tapar el bocado */
  .sep-texto { justify-content: flex-end; padding-bottom: 34px; }
  .sep-frase { padding: 0 20px; }
  .sep-linea1 { font-size: 11.5px; letter-spacing: 0.32em; margin-bottom: 12px; }
  .sep-linea2 { font-size: min(52px, 9vw); line-height: 1.08; }
}
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .js .separador .sep-linea1 { letter-spacing: 0.14em; }
  .js .separador.in .sep-linea1 { letter-spacing: 0.32em; }
}

/* ============================================================
   SECCIÓN «EL CHEF» — retrato ante la muralla, sobre blanco
   (la única sección del home sobre #ffffff)
   ============================================================ */
.chef-seccion {
  background: #ffffff;
  color: #35241a;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 470px);
  gap: clamp(36px, 5vw, 68px);
  padding: clamp(64px, 8vw, 84px) clamp(28px, 7vw, 96px);
  align-items: center;
  max-width: 1240px;
  margin-inline: auto;
}
.chef-col { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.chef-eyebrow { display: flex; align-items: center; gap: 14px; }
.chef-dash { width: 30px; height: 1px; background: #8a4b26; }
.chef-rotulo { font-family: var(--f-apoyo); font-weight: 300; font-size: 12px; letter-spacing: 0.32em; color: #8a4b26; }
.chef-seccion h2 {
  margin: 0;
  font-family: var(--f-apoyo);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.22;
  color: #35241a;
}
.chef-lugar { font-family: var(--f-apoyo); font-weight: 300; font-size: 12px; letter-spacing: 0.28em; color: #8a4b26; }
.chef-bio {
  margin: 0;
  font-family: var(--f-apoyo);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: #56412e;
  max-width: 26em;
}
.chef-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  color: #35241a;
  font-family: var(--f-apoyo);
  font-size: 12.5px;
  letter-spacing: 0.26em;
  border-bottom: 1px solid #8a4b26;
  padding-bottom: 9px;
  text-decoration: none;
}
.chef-cta:hover { color: #8a4b26; text-decoration: none; }
.chef-flecha { font-size: 15px; letter-spacing: 0; }
.chef-foto { position: relative; height: 100%; min-height: 470px; max-height: 560px; overflow: hidden; }
.chef-foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.chef-filete { position: absolute; inset: 14px; border: 1px solid rgba(240,232,216,0.5); pointer-events: none; }
/* Revelado empujado por el scroll sobre el timeline de la sección (así el
   escalonado es un recorrido suave de 860px, no un pop por elemento) */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .chef-seccion { view-timeline: --chef-vista; }
    .chef-eyebrow, .chef-seccion h2, .chef-lugar, .chef-bio, .chef-cta {
      animation: chefIn linear both;
      animation-timeline: --chef-vista;
    }
    .chef-eyebrow { animation-range: entry 20% entry 60%; }
    .chef-seccion h2 { animation-range: entry 30% entry 75%; }
    .chef-lugar { animation-range: entry 35% entry 80%; }
    .chef-bio { animation-range: entry 40% entry 90%; }
    .chef-cta { animation-range: entry 45% entry 95%; }
    .chef-foto img {
      animation: chefImg linear both;
      animation-timeline: --chef-vista;
      animation-range: cover 0% cover 100%;
    }
    @media (max-width: 900px) {
      .chef-eyebrow { animation-range: entry 10% entry 50%; }
      .chef-seccion h2 { animation-range: entry 20% entry 65%; }
      .chef-lugar { animation-range: entry 25% entry 70%; }
      .chef-bio { animation-range: entry 30% entry 80%; }
      .chef-cta { animation-range: entry 35% entry 85%; }
    }
  }
}
@keyframes chefIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}
/* El handoff pedía scale(1.08) con ±6% de recorrido, pero eso descubre un 2%
   del marco en los extremos; 1.13 conserva el recorrido sin huecos */
@keyframes chefImg {
  0% { transform: translateY(6%) scale(1.13); }
  100% { transform: translateY(-6%) scale(1.13); }
}
@media (max-width: 900px) {
  .chef-seccion { display: flex; flex-direction: column; align-items: stretch; gap: 18px; padding: 36px 24px; min-height: 0; }
  .chef-col { display: contents; }
  .chef-eyebrow { order: 1; }
  .chef-seccion h2 { order: 2; font-size: 25px; }
  .chef-lugar { order: 3; }
  .chef-foto { order: 4; height: 340px; min-height: 0; }
  .chef-bio { order: 5; font-size: 15px; line-height: 1.7; }
  .chef-cta { order: 6; align-self: flex-start; font-size: 12.5px; letter-spacing: 0.24em; padding-bottom: 9px; }
  .chef-filete { inset: 12px; }
  .chef-bio-extra { display: none; }
}

/* ============================================================
   SECCIÓN «LOS MENÚS» — la temporada decide; foto en arco que
   pasa de B/N a color con el scroll (pasado→presente)
   ============================================================ */
.menus-seccion {
  background: #ffffff;
  color: #35241a;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: clamp(40px, 5vw, 72px);
  padding: 90px clamp(28px, 7vw, 96px) 0;
  min-height: 860px;
  align-items: center;
  overflow: clip; /* nunca hidden: crearía un scroll container y rompería view() */
}
.men-col { display: flex; flex-direction: column; gap: 40px; padding-bottom: 90px; min-width: 0; }
.men-eyebrow { display: flex; align-items: center; gap: 18px; }
.men-dash { width: 34px; height: 1px; background: #8a4b26; }
.men-rotulo { font-family: var(--f-apoyo); font-weight: 300; font-size: 13px; letter-spacing: 0.34em; color: #8a4b26; }
.menus-seccion h2 {
  margin: 0 0 6px;
  font-family: var(--f-apoyo);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.24;
  color: #4a2c17;
}
.menus-seccion h2 span { display: inline-block; }
.men-lista { display: flex; flex-direction: column; }
.men-fila {
  padding: 26px 0;
  border-top: 1px solid rgba(110,58,31,0.35);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  color: #35241a;
  text-decoration: none;
}
.men-fila:last-child { border-bottom: 1px solid rgba(110,58,31,0.35); }
.men-fila-info { display: block; }
.men-nombre { display: block; font-family: "Marcellus", Georgia, serif; font-size: 30px; line-height: 1; color: #4a2c17; }
.men-desc { display: block; font-family: var(--f-apoyo); font-weight: 300; font-size: 14px; line-height: 1.6; color: #7a5f45; margin-top: 8px; }
.men-precio { font-family: "Marcellus", Georgia, serif; font-size: 23px; color: #8a4b26; }
.men-fila:hover .men-nombre, .men-fila:hover .men-precio { color: #8a4b26; }
.men-fila:hover { text-decoration: none; }
.men-ctas { display: flex; gap: 24px 36px; align-items: center; flex-wrap: wrap; }
.men-btn {
  background: #33241A;
  color: #f6ecdc;
  padding: 16px 40px;
  font-family: var(--f-apoyo);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-decoration: none;
}
.men-btn:hover { background: #9c5636; color: #f6ecdc; text-decoration: none; }
.men-enlace {
  display: inline-flex; align-items: center; gap: 16px;
  color: #35241a;
  font-family: var(--f-apoyo);
  font-size: 14px;
  letter-spacing: 0.28em;
  border-bottom: 1px solid #8a4b26;
  padding-bottom: 10px;
  text-decoration: none;
}
.men-enlace:hover { color: #8a4b26; text-decoration: none; }
.men-flecha { font-size: 17px; letter-spacing: 0; }
.men-fotocol { position: relative; height: 100%; min-height: 680px; display: flex; align-items: flex-end; justify-content: center; }
.men-keyline {
  position: absolute; right: 14px; bottom: 0;
  width: min(490px, 100%); height: 90%;
  border: 1px solid rgba(110,58,31,0.4);
  border-bottom: none;
  border-radius: 245px 245px 0 0;
}
.men-arco {
  position: relative;
  width: min(490px, 100%); height: 96%;
  overflow: clip;
  border-radius: 245px 245px 0 0;
  transform: translateX(-14px);
}
.men-arco img {
  position: absolute; left: 0; top: -6%;
  width: 100%; height: 112%;
  object-fit: cover; object-position: 50% 20%;
}
/* A) Entrada al llegar la sección (.play la pone el observador; se rearma al salir) */
.js .menus-seccion [data-in] { opacity: 0; }
.menus-seccion.play [data-in="eyebrow"] { animation: menIn 0.6s cubic-bezier(0.33,1,0.68,1) 0.02s both; }
.menus-seccion.play [data-in="w1"] { animation: menPalabra 0.5s cubic-bezier(0.33,1,0.68,1) 0.08s both; }
.menus-seccion.play [data-in="w2"] { animation: menPalabra 0.5s cubic-bezier(0.33,1,0.68,1) 0.16s both; }
.menus-seccion.play [data-in="w3"] { animation: menPalabra 0.5s cubic-bezier(0.33,1,0.68,1) 0.24s both; }
.menus-seccion.play [data-in="f1"] { animation: menDesdeIzq 0.6s cubic-bezier(0.33,1,0.68,1) 0.3s both; }
.menus-seccion.play [data-in="f2"] { animation: menDesdeDer 0.6s cubic-bezier(0.33,1,0.68,1) 0.44s both; }
.menus-seccion.play [data-in="f3"] { animation: menDesdeIzq 0.6s cubic-bezier(0.33,1,0.68,1) 0.58s both; }
.menus-seccion.play [data-in="p1"] { animation: menPop 0.35s ease-out 0.6s both; }
.menus-seccion.play [data-in="p2"] { animation: menPop 0.35s ease-out 0.74s both; }
.menus-seccion.play [data-in="p3"] { animation: menPop 0.35s ease-out 0.88s both; }
.menus-seccion.play [data-in="ctas"] { animation: menIn 0.6s cubic-bezier(0.33,1,0.68,1) 1s both; }
.menus-seccion.play [data-in="keyline"] { animation: menIn 0.7s cubic-bezier(0.33,1,0.68,1) 0.4s both; }
.menus-seccion.play [data-in="arco"] { animation: menArco 0.85s cubic-bezier(0.33,1,0.68,1) 0.15s both; }
@keyframes menIn { 0% { opacity: 0; transform: translateY(110px); } 100% { opacity: 1; transform: none; } }
@keyframes menPalabra { 0% { opacity: 0; transform: translateY(46px); } 100% { opacity: 1; transform: none; } }
@keyframes menDesdeIzq { 0% { opacity: 0; transform: translateX(-150px); } 60% { opacity: 1; transform: translateX(10px); } 100% { opacity: 1; transform: none; } }
@keyframes menDesdeDer { 0% { opacity: 0; transform: translateX(150px); } 60% { opacity: 1; transform: translateX(-10px); } 100% { opacity: 1; transform: none; } }
@keyframes menPop { 0% { opacity: 0; transform: scale(0.85); } 100% { opacity: 1; transform: scale(1); } }
@keyframes menArco { 0% { opacity: 0; transform: translateX(-14px) translateY(28%); } 100% { opacity: 1; transform: translateX(-14px); } }
/* B) La foto, ligada al scroll: B/N ampliada → color y escala natural */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .men-arco img {
      animation: menFoto linear both;
      animation-timeline: view();
      animation-range: cover 0% cover 100%;
    }
  }
}
@keyframes menFoto {
  0% { transform: translateY(4%) scale(1.35); filter: grayscale(1); }
  45% { filter: grayscale(1); }
  75% { filter: grayscale(0); }
  100% { transform: translateY(-2%) scale(1); filter: grayscale(0); }
}
@media (max-width: 900px) {
  .menus-seccion { display: flex; flex-direction: column; align-items: stretch; gap: 24px; padding: 40px 24px; min-height: 0; }
  .men-col { display: contents; }
  .men-eyebrow { order: 1; }
  .menus-seccion h2 { order: 2; font-size: 24px; line-height: 1.3; }
  .men-fotocol { order: 3; position: relative; height: auto; min-height: 0; }
  .men-lista { order: 4; }
  .men-ctas { order: 5; flex-direction: column; align-items: stretch; gap: 18px; }
  .men-keyline { display: none; }
  .men-arco { width: 300px; height: 360px; border-radius: 150px 150px 0 0; transform: none; margin: 0 auto; }
  .menus-seccion.play [data-in="arco"] { animation-name: menArcoMovil; }
  .men-nombre { font-size: 24px; }
  .men-precio { font-size: 18px; }
  .men-desc { font-size: 12.5px; }
  .men-btn { text-align: center; padding: 15px 0; font-size: 13px; }
  .men-enlace { align-self: center; font-size: 13px; }
}
@keyframes menArcoMovil { 0% { opacity: 0; transform: translateY(28%); } 100% { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .js .menus-seccion [data-in] { opacity: 1; }
  .menus-seccion [data-in], .men-arco img { animation: none !important; transform: none !important; filter: none !important; }
  /* El rescate del desfase del arco debe superar en especificidad a la regla de arriba */
  .menus-seccion .men-arco[data-in] { transform: translateX(-14px) !important; }
}
@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .menus-seccion .men-arco[data-in] { transform: none !important; }
}

/* ============================================================
   SECCIÓN «LA BODEGA» — base arcilla clara (eco del adobe de la
   foto, sin llegar a penumbra); panorámica limpia, sin velos
   ============================================================ */
.bodega-seccion {
  background: #ffffff;
  color: #35241a;
  display: flex;
  flex-direction: column;
  overflow: clip; /* nunca hidden: crearía un scroll container y rompería view() */
}
/* Todo blanco: los fundidos quedan como respiros neutros */
.bod-descenso { height: 140px; background: #ffffff; }
.bod-ascenso { height: 72px; background: #ffffff; }
.bod-cabecera { display: flex; justify-content: center; padding: 30px clamp(28px, 7vw, 96px) 52px; }
.bod-col { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 26px; max-width: 640px; min-width: 0; }
.bod-eyebrow { display: flex; align-items: center; gap: 16px; }
.bod-dash { width: 34px; height: 1px; background: #8a4b26; }
.bod-rotulo { font-family: var(--f-apoyo); font-weight: 300; font-size: 13px; letter-spacing: 0.34em; color: #8a4b26; }
.bodega-seccion h2 {
  margin: 0;
  font-family: var(--f-apoyo);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.24;
  color: #4a2c17;
  max-width: 13em;
  text-wrap: balance;
}
.bod-texto {
  margin: 0;
  font-family: var(--f-apoyo);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #7a5f45;
  max-width: 32em;
}
.bod-foto { position: relative; height: min(78vh, 660px); min-height: 340px; overflow: clip; }
.bod-foto img {
  position: absolute; left: 0; top: -8%;
  width: 100%; height: 116%;
  object-fit: cover; object-position: 50% 82%; /* la línea de botellas vive en el tercio inferior */
}
.bod-cta-zona { padding: 36px 0 40px; text-align: center; }
.bod-cta {
  display: inline-flex; align-items: center; gap: 16px;
  color: #35241a;
  font-family: var(--f-apoyo);
  font-size: 14px;
  letter-spacing: 0.28em;
  border-bottom: 1px solid #8a4b26;
  padding-bottom: 10px;
  text-decoration: none;
}
.bod-cta:hover { color: #8a4b26; text-decoration: none; }
.bod-flecha { font-size: 17px; letter-spacing: 0; }
/* A) Entrada al llegar (.play la pone el observador; se rearma al salir) */
.js .bodega-seccion [data-in] { opacity: 0; }
.bodega-seccion.play [data-in="eyebrow"] { animation: bodIn 0.8s cubic-bezier(0.33,1,0.68,1) 0.05s both; }
.bodega-seccion.play [data-in="titular"] { animation: bodSube 0.7s cubic-bezier(0.33,1,0.68,1) 0.2s both; }
.bodega-seccion.play [data-in="texto"] { animation: bodSube 0.8s cubic-bezier(0.33,1,0.68,1) 0.65s both; }
.bodega-seccion.play [data-in="cta"] { animation: bodSube 0.8s cubic-bezier(0.33,1,0.68,1) 1.05s both; }
.bodega-seccion.play [data-in="foto"] { animation: bodApertura 1.1s cubic-bezier(0.33,1,0.68,1) 0.3s both; }
@keyframes bodIn { 0% { opacity: 0; transform: translateY(90px); } 100% { opacity: 1; transform: none; } }
@keyframes bodSube { 0% { opacity: 0; transform: translateY(46px); } 100% { opacity: 1; transform: none; } }
@keyframes bodApertura {
  0% { opacity: 0; clip-path: inset(0 8% 0 8%); }
  100% { opacity: 1; clip-path: inset(0 0 0 0); }
}
/* B) La cueva, ligada al scroll: B/N ampliada y oscura → color y escala natural */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .bod-foto img {
      animation: bodCueva linear both;
      animation-timeline: view();
      animation-range: cover 0% cover 100%;
    }
  }
}
@keyframes bodCueva {
  0% { transform: translateY(4%) scale(1.28); filter: grayscale(1) brightness(0.85); }
  50% { filter: grayscale(0.6) brightness(0.92); }
  80% { filter: grayscale(0) brightness(1); }
  100% { transform: translateY(-2%) scale(1); filter: grayscale(0) brightness(1); }
}
@media (max-width: 900px) {
  .bod-descenso { height: 90px; }
  .bod-ascenso { height: 52px; }
  .bod-cabecera { padding: 20px 28px 36px; }
  .bod-col { gap: 20px; }
  .bodega-seccion h2 { font-size: 24px; }
  .bod-texto { font-size: 14px; }
  .bod-foto { height: 300px; min-height: 0; }
  .bod-foto img { object-position: 44% 76%; }
  .bod-cta-zona { padding: 52px 0 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .js .bodega-seccion [data-in] { opacity: 1; }
  .bodega-seccion [data-in], .bod-foto img { animation: none !important; transform: none !important; filter: none !important; clip-path: none !important; }
}

/* ============================================================
   SECCIÓN «LA GALERÍA» — arquería en movimiento: columnata de
   arcos a alturas desiguales que pasa como cinta lenta
   ============================================================ */
.galeria-seccion { background: var(--marfil); color: #35241a; padding: 44px 0 52px; overflow: clip; }
.gal-cinta-marco { overflow: clip; }
.gal-cinta {
  display: flex; gap: 26px; align-items: flex-end; width: max-content;
  /* El padding-right = gap cierra el bucle: sin él, translateX(-50%) con 11
     huecos internos produce un salto de medio gap en cada vuelta */
  padding-right: 26px;
  animation: galCinta 44s linear infinite;
}
.gal-cinta:hover { animation-play-state: paused; }
@keyframes galCinta { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.gal-arco { width: 176px; overflow: hidden; border-radius: 88px 88px 0 0; flex: none; }
.gal-arco--baja { height: 236px; }
.gal-arco--media { height: 250px; }
.gal-arco--alta { height: 268px; }
.gal-arco img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-pie { display: flex; justify-content: center; align-items: center; gap: 26px; padding-top: 34px; }
.gal-rotulo { font-family: var(--f-apoyo); font-weight: 300; font-size: 13px; letter-spacing: 0.34em; color: #8a4b26; }
.gal-dash { width: 34px; height: 1px; background: #8a4b26; }
.gal-cta {
  display: inline-flex; align-items: center; gap: 14px;
  color: #35241a; font-family: var(--f-apoyo); font-size: 14px;
  letter-spacing: 0.28em; border-bottom: 1px solid #8a4b26;
  padding-bottom: 8px; text-decoration: none;
}
.gal-cta:hover { color: #8a4b26; text-decoration: none; }
.gal-flecha { font-size: 17px; letter-spacing: 0; }
@media (max-width: 900px) {
  .galeria-seccion { padding: 26px 0 40px; }
  .gal-cinta { gap: 14px; padding-right: 14px; animation-duration: 32s; }
  .gal-arco { width: 128px; border-radius: 64px 64px 0 0; }
  .gal-arco--baja { height: 172px; }
  .gal-arco--media { height: 180px; }
  .gal-arco--alta { height: 192px; }
  /* En móvil, el pie de la cinta se apila centrado en dos líneas serenas */
  .gal-pie { flex-direction: column; gap: 16px; padding-top: 28px; }
  .gal-rotulo { font-size: 10.5px; letter-spacing: 0.26em; }
  .gal-cta { font-size: 12px; letter-spacing: 0.24em; }
  .gal-dash { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .gal-cinta { animation: none; }
  .gal-cinta-marco { overflow-x: auto; } /* sin animación, la cinta se puede desplazar a mano */
}

/* ============================================================
   PÁGINA «CONOCER BARRO» — cabecera clara, capítulos y láminas
   ============================================================ */
.con-cabecera {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 34px clamp(28px, 5vw, 56px) 10px;
  font-family: var(--f-apoyo); font-weight: 300; font-size: 14px; letter-spacing: 0.26em;
  background: #ffffff;
}
.con-marca { display: flex; flex-direction: column; gap: 7px; text-decoration: none; }
.con-marca > img { height: 46px; width: auto; display: block; filter: brightness(0) opacity(0.85); }
.con-linea {
  display: block; height: 2px; width: 128%;
  background: linear-gradient(90deg, #8a4b26 0%, #C08A4F 35%, #A3844C 70%, #8a4b26 100%);
}
.con-estrellas { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.con-estrellas img { height: 38px; width: auto; display: block; }
.con-nav { display: flex; gap: 36px; align-items: center; min-height: 46px; }
.con-nav a { color: #4a2c17; text-decoration: none; }
.con-nav a:hover, .con-nav a[aria-current="page"] { color: #8a4b26; }
/* El botón de reservar del cabecero: filete fino, no bloque macizo */
.con-nav .con-btn {
  background: none; color: #33241A; padding: 12px 30px;
  border: 1px solid rgba(163, 132, 76, 0.8);
  transition: background 0.35s ease, border-color 0.35s ease;
}
.con-nav .con-btn:hover { background: rgba(163, 132, 76, 0.14); border-color: #A3844C; color: #33241A; }
html[data-tema="noche"] .con-nav .con-btn { color: #EDE3D2; border-color: rgba(201, 163, 107, 0.65); }
html[data-tema="noche"] .con-nav .con-btn:hover { background: rgba(201, 163, 107, 0.18); border-color: #C9A36B; color: #F6ECDC; }
.con-burger { display: none; }
.con-lamina-apertura { margin: 2.5rem auto 0; max-width: 700px; }
.con-lamina-apertura img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 50% 58%; display: block; }
.con-capitulo {
  display: grid; grid-template-columns: 1fr minmax(300px, 420px);
  gap: clamp(40px, 6vw, 88px); align-items: center;
  padding: 84px clamp(28px, 7vw, 96px);
  max-width: 1200px; margin-inline: auto;
}
.con-capitulo--invertido { grid-template-columns: minmax(300px, 420px) 1fr; }
.con-capitulo--invertido .con-cap-texto { order: 2; }
.con-capitulo--invertido .con-lamina { order: 1; }
.con-cap-texto { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.con-cap-rotulo {
  font-family: var(--f-apoyo); font-weight: 300;
  font-size: 12px; letter-spacing: 0.34em; color: #8a4b26;
}
.con-cap-rotulo--noche { color: #C9A36B; }
.con-capitulo h2 { margin: 0; text-align: left; }
.con-capitulo p { margin: 0; max-width: 30em; text-align: left; }
.con-doc {
  margin: 18px 0 0; max-width: 340px;
  background: #FBF7EC; padding: 12px 12px 14px;
  box-shadow: 0 12px 30px rgba(43,32,24,0.18);
  transform: rotate(-1.6deg);
}
.con-doc img { width: 100%; display: block; filter: sepia(0.18) contrast(1.05); }
.con-lamina { margin: 0; width: min(390px, 100%); justify-self: center; }
.con-lamina img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.con-capitulo[aria-labelledby="t-entorno"] .con-lamina img { object-position: 50% 58%; }
.con-capitulo[aria-labelledby="t-territorio"] .con-lamina img { object-position: 50% 45%; }
.con-penumbra {
  background: #2B2015; color: var(--crema-noche);
  padding: 92px clamp(28px, 7vw, 96px);
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  text-align: center;
}
.con-penumbra h2 { margin: 0; color: var(--crema-noche); }
.con-penumbra-texto { margin: 0; max-width: 34em; color: rgba(241,233,218,0.8); }
.con-gala { margin: 26px 0 0; position: relative; width: min(400px, 88%); }
.con-gala img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 12%; display: block; }
.con-gala::before {
  content: ""; position: absolute; inset: -14px;
  border: 1px solid rgba(163,132,76,0.45); pointer-events: none;
}
.cierre-seccion--conocer .cie-foto { object-position: 30% 55%; }
.cierre-seccion--conocer .cie-velo { background: rgba(43,32,21,0.52); }
.cierre-seccion--conocer .cie-fundido { height: 130px; }
@media (max-width: 768px) {
  .con-cabecera { padding: 24px 24px 6px; }
  .con-nav { display: none; }
  .con-marca > img { height: 30px; }
  .con-linea { height: 1.5px; }
  .con-estrellas { gap: 12px; margin-top: 6px; }
  .con-estrellas img { height: 28px; }
  .con-burger { display: flex; flex-direction: column; gap: 5px; padding: 6px 0; }
  .con-burger span { display: block; width: 24px; height: 1px; background: #4a2c17; }
}
@media (max-width: 900px) {
  .con-capitulo, .con-capitulo--invertido { display: flex; flex-direction: column; align-items: stretch; gap: 30px; padding: 56px 28px; }
  .con-capitulo--invertido .con-cap-texto { order: 1; }
  .con-capitulo--invertido .con-lamina { order: 2; }
  .con-lamina { align-self: center; }
  .con-doc { align-self: flex-start; }
  .con-penumbra { padding: 64px 28px; }
}

/* ============================================================
   MODO NOCHE — la web vestida con la penumbra de la casa.
   Se activa con html[data-tema="noche"] (botón + localStorage).
   ============================================================ */
html[data-tema="noche"] { color-scheme: dark; }
html[data-tema="noche"] {
  --marfil: #221910;
  --pergamino: #2B2015;
  --tinta: #EDE3D2;
  --vino: #C9A36B;
  --bronce: #C9A36B;
  --linea: rgba(201, 163, 107, 0.28);
}
/* Secciones claras del home, en penumbra */
html[data-tema="noche"] .espacio,
html[data-tema="noche"] .chef-seccion,
html[data-tema="noche"] .menus-seccion,
html[data-tema="noche"] .bodega-seccion { background: #221910; color: #EDE3D2; }
html[data-tema="noche"] .galeria-seccion { background: #2B2015; color: #EDE3D2; }
html[data-tema="noche"] .espacio h2,
html[data-tema="noche"] .chef-seccion h2,
html[data-tema="noche"] .menus-seccion h2,
html[data-tema="noche"] .bodega-seccion h2 { color: #EDE3D2; }
html[data-tema="noche"] .esp-body,
html[data-tema="noche"] .chef-bio,
html[data-tema="noche"] .men-desc,
html[data-tema="noche"] .bod-texto { color: rgba(237, 227, 210, 0.72); }
html[data-tema="noche"] .esp-rotulo,
html[data-tema="noche"] .chef-rotulo,
html[data-tema="noche"] .chef-lugar,
html[data-tema="noche"] .men-rotulo,
html[data-tema="noche"] .bod-rotulo,
html[data-tema="noche"] .gal-rotulo { color: #C9A36B; }
html[data-tema="noche"] .esp-dash,
html[data-tema="noche"] .chef-dash,
html[data-tema="noche"] .men-dash,
html[data-tema="noche"] .bod-dash,
html[data-tema="noche"] .gal-dash { background: #C9A36B; }
html[data-tema="noche"] .esp-cta,
html[data-tema="noche"] .chef-cta,
html[data-tema="noche"] .men-enlace,
html[data-tema="noche"] .bod-cta,
html[data-tema="noche"] .gal-cta { color: #EDE3D2; border-color: #C9A36B; }
html[data-tema="noche"] .esp-cta:hover,
html[data-tema="noche"] .chef-cta:hover,
html[data-tema="noche"] .men-enlace:hover,
html[data-tema="noche"] .bod-cta:hover,
html[data-tema="noche"] .gal-cta:hover { color: #C9A36B; }
html[data-tema="noche"] .men-nombre { color: #D9BE93; }
html[data-tema="noche"] .men-precio { color: #C9A36B; }
html[data-tema="noche"] .men-fila { border-color: rgba(201, 163, 107, 0.25); }
html[data-tema="noche"] .men-keyline { border-color: rgba(201, 163, 107, 0.35); }
html[data-tema="noche"] .bod-descenso { background: #221910; }
html[data-tema="noche"] .bod-ascenso { background: linear-gradient(#221910, #2B2015); }
/* Cabecera clara de las páginas interiores */
html[data-tema="noche"] .con-cabecera { background: #221910 !important; }
html[data-tema="noche"] .con-marca > img { filter: none; }
html[data-tema="noche"] .con-nav a { color: #EDE3D2; }
html[data-tema="noche"] .con-nav a:hover,
html[data-tema="noche"] .con-nav a[aria-current="page"] { color: #C9A36B; }
html[data-tema="noche"] .con-burger span { background: #EDE3D2; }
/* Página Conocer BARRO */
html[data-tema="noche"] .con-capitulo h2 { color: #EDE3D2; }
html[data-tema="noche"] .con-capitulo p,
html[data-tema="noche"] .entradilla { color: rgba(237, 227, 210, 0.75); }
html[data-tema="noche"] .con-cap-rotulo { color: #C9A36B; }
html[data-tema="noche"] .con-doc { background: #2B2015; box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
/* Barra superior heredada, en penumbra (su fondo claro estaba fijado a mano) */
html[data-tema="noche"] .topbar { background: rgba(34, 25, 16, 0.95); border-bottom-color: rgba(201, 163, 107, 0.22); }
/* Textos suaves con color fijado a mano: su versión de noche */
html[data-tema="noche"] .dato-suave { color: rgba(237, 227, 210, 0.62); }
/* Botón del tema — vive en la cabecera de cada página */
.tema {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  background: transparent; color: #6B3A28;
  border: 1px solid rgba(139, 75, 38, 0.45);
  cursor: pointer; font-size: 15px; line-height: 1; padding: 0;
}
.tema:hover { background: rgba(139, 75, 38, 0.1); }
/* Sobre la foto del hero, en crema */
.hero-ciclo .tema { color: #f3ead9; border-color: rgba(243, 234, 217, 0.55); }
.hero-ciclo .tema:hover { background: rgba(243, 234, 217, 0.14); }
html[data-tema="noche"] .tema { color: #EDE3D2; border-color: rgba(201, 163, 107, 0.5); }
html[data-tema="noche"] .tema:hover { background: rgba(201, 163, 107, 0.14); }
.tema .t-sol { display: none; }
html[data-tema="noche"] .tema .t-luna { display: none; }
html[data-tema="noche"] .tema .t-sol { display: block; }
/* Agrupado a la derecha sin alterar el reparto visual de las cabeceras */
.hc-nav { justify-content: flex-start; gap: 18px; }
.hc-nav .hc-brand { margin-right: auto; }
@media (min-width: 769px) { .hc-nav > .tema { margin-top: 4px; } }
.con-cabecera { justify-content: flex-start; gap: 18px; }
.con-cabecera .con-marca { margin-right: auto; }
.topnav-lado .tema { width: 34px; height: 34px; font-size: 14px; }

/* ---------- Botones sólidos: chocolate con vida (degradado + filete dorado) ---------- */
.hc-btn, .men-btn, .cie-btn, .subir {
  background-image: linear-gradient(180deg, #43301F 0%, #33241A 100%);
  box-shadow: inset 0 0 0 1px rgba(201, 163, 107, 0.42), 0 6px 20px rgba(43, 32, 21, 0.3);
  transition: background-image 0.3s ease, box-shadow 0.3s ease;
}
.hc-btn:hover, .men-btn:hover, .cie-btn:hover, .subir:hover {
  background-image: linear-gradient(180deg, #5A4128 0%, #43301F 100%);
  box-shadow: inset 0 0 0 1px rgba(201, 163, 107, 0.75), 0 8px 26px rgba(43, 32, 21, 0.38);
}
/* Donde hay mucho marrón (fotos, penumbra), el botón se invierte: crema sólido
   con la letra en chocolate — máximo contraste sin salirse de la paleta */
.hc-btn, .cie-btn,
html[data-tema="noche"] .men-btn {
  background-image: linear-gradient(180deg, #FBF5E7 0%, #EFE4CE 100%);
  color: #33241A;
  box-shadow: inset 0 0 0 1px rgba(201, 163, 107, 0.6), 0 6px 22px rgba(28, 19, 12, 0.42);
}
.hc-btn:hover, .cie-btn:hover,
html[data-tema="noche"] .men-btn:hover {
  background-image: linear-gradient(180deg, #FFFFFF 0%, #F6ECDC 100%);
  color: #33241A;
  box-shadow: inset 0 0 0 1px rgba(201, 163, 107, 0.9), 0 8px 28px rgba(28, 19, 12, 0.5);
}
/* El botón de la cabecera del hero vive dentro de .hc-links, cuya regla de color
   (más específica) lo dejaba crema sobre crema: aquí manda el chocolate */
.hc-links .hc-btn, .hc-links .hc-btn:hover { color: #33241A; }

/* ---------- Botón «volver arriba» ---------- */
.subir {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: #33241A; color: #f6ecdc;
  border-radius: 50%;
  font-family: var(--f-apoyo); font-size: 16px; line-height: 1;
  text-decoration: none;
}
.subir:hover { background: #43301F; color: #f6ecdc; text-decoration: none; }
/* Con JS, aparece solo tras el primer scroll largo */
.js .subir { opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity 0.4s ease, transform 0.4s ease; }
.js .subir.visible { opacity: 1; pointer-events: auto; transform: none; }
@media (max-width: 900px) {
  .subir { right: 16px; bottom: 16px; width: 38px; height: 38px; font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .js .subir { transition: none; transform: none; }
}

/* ============================================================
   HERO «LIMPIO» — una foto, silencio, frase centrada,
   botones con halo de luz cálida (fijo, sin pulso)
   ============================================================ */
@keyframes hlSube { 0% { opacity: 0; transform: translateY(26px); } 100% { opacity: 1; transform: none; } }
.hl { position: relative; height: 100vh; min-height: 640px; overflow: hidden; color: #f3ead9; background: #2e190b; }
.hl-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; z-index: 1; }
/* Cuatro escenas, cada foto con su encuadre (los mismos del hero anterior) */
.hl-bg:nth-of-type(2) { object-position: 50% 45%; }
.hl-bg:nth-of-type(3) { object-position: 50% 40%; }
.hl-bg:nth-of-type(4) { object-position: 50% 55%; }
/* Sin JS (o hasta que arranca el ciclo) solo se ve la primera */
.hl-bg + .hl-bg { opacity: 0; }
.hl-velo { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(46,25,11,0.4) 0%, rgba(46,25,11,0.04) 34%, rgba(46,25,11,0.04) 62%, rgba(46,25,11,0.55) 100%); }
.hl-content { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; }
.hl-bottom { flex: 1; padding: 0 64px 84px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 34px; text-align: center; }
.hl-frase { margin: 0; max-width: 22ch; font-family: var(--f-apoyo); font-weight: 300; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.32; letter-spacing: 0.02em; color: #f3ead9; text-shadow: 0 2px 26px rgba(28,19,12,0.5); text-wrap: balance; }
.hl-cta { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.hl-btn { background: rgba(43,32,21,0.92); color: #F1E9DA; backdrop-filter: blur(3px); text-decoration: none; font-family: var(--f-apoyo); font-weight: 400; font-size: 13px; letter-spacing: 0.3em; padding: 17px 46px; white-space: nowrap; transition: background 0.45s ease, color 0.45s ease, box-shadow 0.45s ease; box-shadow: inset 0 0 0 1px rgba(201,163,107,0.55), 0 0 26px rgba(201,163,107,0.32), 0 0 70px rgba(201,163,107,0.14); }
.hl-btn:hover { background: #C9A36B; color: #2B2015; text-decoration: none; box-shadow: inset 0 0 0 1px rgba(217,190,147,0.9), 0 0 40px rgba(201,163,107,0.55); }
.hl-regalo { color: #f3ead9; text-decoration: none; font-family: var(--f-apoyo); font-weight: 300; font-size: 12px; letter-spacing: 0.26em; padding: 4px 2px 8px; white-space: nowrap; border-bottom: 1px solid rgba(243,234,217,0.55); text-shadow: 0 1px 14px rgba(28,19,12,0.55); transition: color 0.45s ease, border-color 0.45s ease; }
.hl-regalo-flecha { display: inline-block; transition: transform 0.45s ease; }
.hl-regalo:hover { color: #ffffff; border-color: #F6ECDC; text-decoration: none; }
.hl-regalo:hover .hl-regalo-flecha { transform: translateX(5px); }
/* Entrada por capas. La foto espera a estar decodificada, pero el texto y los
   botones no: aparecen en cuanto la página está lista, para que en un móvil
   lento no se quede la portada en blanco esperando a la imagen */
.js .hl-bg { opacity: 0; transition: opacity 1.6s ease; }
.js .hl.lista .hl-bg:first-of-type { opacity: 1; }
.js .hl-frase { opacity: 0; animation: hlSube 1.1s cubic-bezier(0.33,1,0.68,1) 0.35s both; }
.js .hl-cta { opacity: 0; animation: hlSube 1.1s cubic-bezier(0.33,1,0.68,1) 0.55s both; }
@media (max-width: 768px) {
  .hl-bottom { padding: 0 28px 44px; gap: 26px; justify-content: flex-end; }
  .hl-frase { font-size: clamp(21px, 6vw, 26px); }
  .hl-cta { align-self: stretch; flex-direction: column; align-items: stretch; gap: 14px; }
  .hl-btn { text-align: center; padding: 17px 0; }
  .hl-regalo { align-self: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .hl-bg { animation: none !important; }
  .js .hl-bg:first-of-type, .js .hl-frase, .js .hl-cta { opacity: 1; animation: none !important; transition: none; }
}

/* ============================================================
   SEPARADOR «LAS PUERTAS» — dos fotos cerradas sobre el centro
   se abren y revelan la frase; B/N → color al encajar
   ============================================================ */
@keyframes spSube { 0% { opacity: 0; transform: translateY(26px); } 100% { opacity: 1; transform: none; } }
@keyframes spLetra { to { opacity: 1; transform: none; filter: blur(0); } }
.sp2 { background: #ffffff; padding: clamp(70px, 13vh, 120px) clamp(20px, 4vw, 56px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(20px, 3.5vw, 48px); max-width: 1240px; margin-inline: auto; overflow: clip; }
.sp2-foto { margin: 0; overflow: hidden; height: clamp(300px, 44vw, 520px); }
.sp2-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp2-foto.izq img { object-position: 50% 45%; }
/* La foto de la muralla es cuadrada: el encuadre vertical centra los torreones */
.sp2-foto.der img { object-position: 50% 42%; }
.js .sp2 .sp2-foto img { filter: grayscale(1) contrast(1.04); transform: scale(1.3); transition: filter 1.7s ease 0.55s, transform 1.9s cubic-bezier(0.22,0.61,0.36,1) 0.3s; }
.js .sp2.visto .sp2-foto img { filter: grayscale(0) contrast(1); transform: scale(1); }
.sp2-centro { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; min-width: clamp(190px, 25vw, 310px); }
.sp2 .sp-rotulo { font-family: var(--f-apoyo); font-weight: 300; font-size: clamp(11px, 1.1vw, 13px); letter-spacing: 0.4em; color: #8a4b26; }
.sp2-frase { margin: 0; max-width: 16ch; font-family: var(--f-apoyo); font-weight: 350; font-size: clamp(21px, 2.4vw, 28px); line-height: 1.32; letter-spacing: 0.02em; color: #4a2c17; text-wrap: balance; }
.sp2-frase .letra { display: inline-block; }
.js .sp2 .sp2-frase .letra { opacity: 0; transform: translateY(0.45em); filter: blur(5px); }
.js .sp2.visto .sp2-frase .letra { animation: spLetra 0.65s cubic-bezier(0.22,0.61,0.36,1) forwards; animation-delay: var(--d, 0s); }
/* Las puertas: cerradas sobre el centro, se abren */
.js .sp2 .sp2-foto { z-index: 1; transition: transform 1.35s cubic-bezier(0.65, 0, 0.35, 1) 0.2s; will-change: transform; }
.js .sp2 .sp2-foto.izq { transform: translateX(calc(58% + clamp(10px, 1.75vw, 24px))); }
.js .sp2 .sp2-foto.der { transform: translateX(calc(-58% - clamp(10px, 1.75vw, 24px))); }
.js .sp2.visto .sp2-foto.izq, .js .sp2.visto .sp2-foto.der { transform: none; }
.js .sp2 .sp-rotulo { opacity: 0; }
.js .sp2.visto .sp-rotulo { animation: spSube 0.9s cubic-bezier(0.33,1,0.68,1) 0.9s both; }
@media (max-width: 900px) {
  /* Móvil: las puertas se abren en vertical y la frase aparece entre ellas */
  .sp2 { grid-template-columns: 1fr; gap: 18px; padding: clamp(48px, 9vh, 70px) 20px; }
  .sp2-centro { padding: 12px 0; min-width: 0; }
  .sp2-foto { height: clamp(190px, 50vw, 260px); }
  .js .sp2 .sp2-foto.izq { transform: translateY(calc(50% + 66px)); }
  .js .sp2 .sp2-foto.der { transform: translateY(calc(-50% - 66px)); }
  .js .sp2.visto .sp2-foto.izq, .js .sp2.visto .sp2-foto.der { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .js .sp2 .sp2-foto, .js .sp2 .sp2-foto.izq, .js .sp2 .sp2-foto.der { transform: none !important; transition: none !important; }
  .js .sp2 .sp-rotulo, .js .sp2 .sp2-frase .letra { opacity: 1 !important; animation: none !important; transform: none !important; filter: none !important; }
  .js .sp2 .sp2-foto img { filter: none !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   GALERÍA «LA MURALLA» — las fotos son sillares; el borde
   superior almena. Torreones anchos con coronación redonda.
   ============================================================ */
.gm-muralla { display: grid; grid-template-columns: repeat(8, 1fr); align-items: end; gap: 10px; }
.gm-sillar { margin: 0; overflow: hidden; position: relative; }
.gm-sillar img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.4s cubic-bezier(0.22,0.61,0.36,1), filter 0.6s ease; }
.gm-sillar:hover img { transform: scale(1.05); filter: brightness(1.06); }
/* Alturas alternas: merlón alto / almena baja */
.gm-alto { height: 340px; }
.gm-medio { height: 295px; }
.gm-bajo { height: 250px; }
/* Torreones: dos módulos de ancho y coronación redonda */
.gm-torre { grid-column: span 2; height: 400px; border-radius: 50% 50% 0 0 / 22% 22% 0 0; }
/* Los sillares se asientan de abajo arriba (usa el observador de .reveal-img) */
.js .gm-sillar.reveal-img { opacity: 0; transform: translateY(46px); transition: opacity 0.9s cubic-bezier(0.22,0.61,0.36,1), transform 0.9s cubic-bezier(0.22,0.61,0.36,1); }
.js .gm-sillar.reveal-img.visto { opacity: 1; transform: none; }
.js .gm-muralla .gm-sillar:nth-child(2n) { transition-delay: 0.1s; }
.js .gm-muralla .gm-sillar:nth-child(3n) { transition-delay: 0.2s; }
.js .gm-muralla .gm-sillar:nth-child(5n) { transition-delay: 0.3s; }
/* Algunos sillares entran en blanco y negro y toman color al aparecer */
.gm-bn img { filter: grayscale(1) contrast(1.06); transition: filter 1.8s ease 0.5s, transform 1.4s cubic-bezier(0.22,0.61,0.36,1); }
.gm-bn.visto img { filter: grayscale(0) contrast(1); }
.gm-bn:hover img { filter: grayscale(0) contrast(1); }
@media (max-width: 1200px) { .gm-muralla { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 900px) {
  /* Móvil: la muralla se rehace en 4 columnas estrechas — almenas legibles */
  .gm-muralla { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .gm-alto { grid-column: span 2; height: 230px; }
  .gm-medio { grid-column: span 2; height: 190px; }
  .gm-bajo { grid-column: span 2; height: 160px; }
  .gm-torre { grid-column: span 4; height: 280px; border-radius: 50% 50% 0 0 / 14% 14% 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .js .gm-sillar.reveal-img { opacity: 1; transform: none; }
  .gm-bn img { filter: none; transition: none; }
}

/* ============================================================
   RENDIMIENTO — el navegador no pinta lo que no se ve, y el
   móvil se ahorra los efectos caros (desenfoques, zooms vivos)
   ============================================================ */
/* Secciones altas: fuera de pantalla no se maquetan ni se pintan.
   El tamaño estimado evita saltos en la barra de scroll. */
.galeria-seccion { content-visibility: auto; contain-intrinsic-size: auto 460px; }
.chef-seccion { content-visibility: auto; contain-intrinsic-size: auto 640px; }
.sp2 { content-visibility: auto; contain-intrinsic-size: auto 700px; }
/* La cinta de arcos deja de girar mientras no se ve */
.galeria-seccion:not(:hover) .gal-cinta { animation-play-state: running; }
@media (max-width: 900px) {
  /* Desenfoques de fondo: preciosos en escritorio, costosos en móvil */
  .hl-btn { backdrop-filter: none; }
  .hl-btn { background: rgba(43,32,21,0.96); }

  /* Menos capas compuestas a la vez */
  .sp2-foto { will-change: auto; }
}

.solo-lectores {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
a.solo-lectores:focus-visible {
  position: fixed;
  top: 0.6rem; left: 0.6rem;
  width: auto; height: auto;
  margin: 0;
  padding: 0.55rem 0.95rem;
  clip: auto;
  white-space: normal;
  background: var(--tinta);
  color: var(--marfil);
  z-index: 100;
}

/* ============================================================
   HERO — frases finas en ciclo, botones chocolate translúcido
   con halo bronce fijo, menú alineado en móvil y logotipo crema
   ============================================================ */
/* Las cuatro frases se apilan en la misma celda; sin ciclo solo se ve la primera */
.hl .hl-frases { display: grid; max-width: none; }
.hl .hl-frases > span {
  grid-area: 1 / 1;
  font-family: var(--f-apoyo); font-weight: 300; font-style: normal;
  font-size: 29px; line-height: 1.3; letter-spacing: 0.02em;
  color: rgba(243,234,217,0.92); text-shadow: 0 2px 22px rgba(28,19,12,0.5);
  white-space: nowrap;
  opacity: 0;
}
.hl .hl-frases > span:first-child { opacity: 1; }
/* El ciclo de veinte segundos: cuatro escenas, foto y frase siempre a la par.
   Solo arranca (clase .ciclo) cuando las cuatro fotos están decodificadas:
   ninguna escena entra en vacío. El retardo negativo hace que la primera
   escena, ya en pantalla, siga sin saltos en el instante del arranque */
@media (prefers-reduced-motion: no-preference) {
  .js .hl.ciclo .hl-bg { opacity: 0; transition: none; animation: hlFoto 16s linear infinite both; animation-delay: -2.25s; }
  .js .hl.ciclo .hl-bg:nth-of-type(2) { animation-delay: 1.75s; }
  .js .hl.ciclo .hl-bg:nth-of-type(3) { animation-delay: 5.75s; }
  .js .hl.ciclo .hl-bg:nth-of-type(4) { animation-delay: 9.75s; }
  .js .hl.ciclo .hl-frases > span { opacity: 0; animation: hlTexto 16s linear infinite both; animation-delay: -2.25s; }
  .js .hl.ciclo .hl-frases > span:nth-child(2) { animation-delay: 1.75s; }
  .js .hl.ciclo .hl-frases > span:nth-child(3) { animation-delay: 5.75s; }
  .js .hl.ciclo .hl-frases > span:nth-child(4) { animation-delay: 9.75s; }
}
/* Curvas del hero anterior: la foto sostiene mientras el texto respira */
@keyframes hlFoto { 0% { opacity: 0; } 12% { opacity: 1; } 33% { opacity: 1; } 45% { opacity: 0; } 100% { opacity: 0; } }
@keyframes hlTexto { 0% { opacity: 0; } 8% { opacity: 0; } 14% { opacity: 1; } 26% { opacity: 1; } 32% { opacity: 0; } 100% { opacity: 0; } }

/* ============================================================
   MENÚ MÓVIL «LA SALA» — overlay sobre la foto a sangre
   ============================================================ */
@keyframes ifSube { 0% { opacity: 0; transform: translateY(14px); } 100% { opacity: 1; transform: none; } }
.indice-foto { padding: 0; text-align: center; color: #f3ead9; }
/* Foto y velo fijos al viewport: el overlay hace scroll y con `absolute`
   se irían con el contenido, dejando una banda clara al fondo */
.if-bg { position: fixed; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.if-velo { position: fixed; inset: 0; background: linear-gradient(180deg, rgba(46,25,11,0.82) 0%, rgba(46,25,11,0.6) 45%, rgba(46,25,11,0.88) 100%); }
.indice-foto .cerrar { color: #f3ead9; }
.if-caja { position: relative; min-height: 100%; display: flex; flex-direction: column; padding: 64px 30px 30px; }
.if-marca { display: inline-flex; flex-direction: column; gap: 7px; margin-inline: auto; }
.if-marca img { height: 26px; width: auto; display: block; filter: brightness(0.94) sepia(0.22) saturate(1.35) hue-rotate(-8deg); }
.if-linea { display: block; height: 1.5px; width: 128%; background: linear-gradient(90deg, #cdbb96 0%, #f6ecdc 18%, #fffdf2 30%, #f6ecdc 44%, #d8c6a1 100%); box-shadow: 0 0 8px rgba(255,248,226,0.5); }
.indice-foto nav { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.if-lista { list-style: none; margin: 0 auto; padding: 0; max-width: 34rem; width: 100%; }
.if-lista li + li { border-top: 1px solid rgba(243,234,217,0.22); }
.if-lista a { display: block; padding: 0.85rem 0.25rem; text-decoration: none; color: #f3ead9; font-family: var(--f-serif); font-weight: 340; font-size: 1.15rem; letter-spacing: 0.02em; transition: color 0.3s ease; }
.if-lista a:hover, .if-lista a[aria-current="page"] { color: #EAD9B8; font-style: italic; }
.if-pie { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 1.1rem; align-items: center; }
.if-reservar { display: inline-block; border: 1px solid rgba(243,234,217,0.8); color: #f3ead9; text-decoration: none; font-family: var(--f-apoyo); font-weight: 300; font-size: 12px; letter-spacing: 0.28em; padding: 15px 40px; transition: background 0.4s ease, color 0.4s ease; }
.if-reservar:hover { background: #f3ead9; color: #2e190b; }
.if-datos { display: flex; gap: 1.6rem; align-items: baseline; }
.if-datos a { color: rgba(243,234,217,0.8); font-size: 0.84rem; letter-spacing: 0.1em; text-decoration: none; }
.if-datos a:hover { color: #f3ead9; }
/* Entrada escalonada al abrir (el JS abre con .abierta; sin JS, :target) */
.indice-foto:target .if-marca, .indice-foto.abierta .if-marca { animation: ifSube 0.6s cubic-bezier(0.33,1,0.68,1) both; }
.indice-foto:target .if-lista li, .indice-foto.abierta .if-lista li { opacity: 0; animation: ifSube 0.6s cubic-bezier(0.33,1,0.68,1) both; }
.indice-foto:target .if-lista li:nth-child(1), .indice-foto.abierta .if-lista li:nth-child(1) { animation-delay: 0.05s; }
.indice-foto:target .if-lista li:nth-child(2), .indice-foto.abierta .if-lista li:nth-child(2) { animation-delay: 0.08s; }
.indice-foto:target .if-lista li:nth-child(3), .indice-foto.abierta .if-lista li:nth-child(3) { animation-delay: 0.11s; }
.indice-foto:target .if-lista li:nth-child(4), .indice-foto.abierta .if-lista li:nth-child(4) { animation-delay: 0.14s; }
.indice-foto:target .if-lista li:nth-child(5), .indice-foto.abierta .if-lista li:nth-child(5) { animation-delay: 0.17s; }
.indice-foto:target .if-lista li:nth-child(6), .indice-foto.abierta .if-lista li:nth-child(6) { animation-delay: 0.2s; }
.indice-foto:target .if-lista li:nth-child(7), .indice-foto.abierta .if-lista li:nth-child(7) { animation-delay: 0.23s; }
.indice-foto:target .if-lista li:nth-child(8), .indice-foto.abierta .if-lista li:nth-child(8) { animation-delay: 0.26s; }
.indice-foto:target .if-lista li:nth-child(9), .indice-foto.abierta .if-lista li:nth-child(9) { animation-delay: 0.29s; }
.indice-foto:target .if-pie, .indice-foto.abierta .if-pie { animation: ifSube 0.6s cubic-bezier(0.33,1,0.68,1) 0.35s both; }
@media (prefers-reduced-motion: reduce) {
  .indice-foto .if-marca, .indice-foto .if-lista li, .indice-foto .if-pie { animation: none !important; opacity: 1 !important; }
}
/* Remates tras revisión: fondo oscuro mientras llega la foto (nada de velo
   sobre blanco), foco de teclado visible sobre la foto en ambos temas, y el
   botón sin el subrayado del enlace genérico */
.indice-foto { background: #2e190b; }
.indice-foto :focus-visible { outline-color: #EAD9B8; }
.if-reservar:hover { text-decoration: none; }
/* La columna MÁS del pie vuelve a verse en móvil: sus enlaces (English,
   Reconocimientos, Sostenibilidad) ya no viven en el índice nuevo y sin
   ella quedarían inalcanzables en pantallas pequeñas */
@media (max-width: 900px) {
  .pie-columnas .pie-col:last-child { display: block; }
}
/* El aspa de cierre, por encima de la caja del menú: la caja (posicionada y
   a toda altura) se pintaba encima y el toque real nunca llegaba al enlace */
.indice-foto .cerrar { z-index: 3; }
/* El botón día/noche del hero nuevo, en crema sobre la foto
   (heredaba la tinta pensada para fondos claros y no se veía) */
.hl .tema { color: #f3ead9; border-color: rgba(243, 234, 217, 0.55); }
.hl .tema:hover { background: rgba(243, 234, 217, 0.14); }
/* Con las siete páginas en la cabecera, cada nombre va en una sola línea
   y en los anchos medios la letra cede un punto para que todo quepa */
.hc-links a, .con-nav a { white-space: nowrap; }
/* El bloque de la marca no se encoge nunca: con siete enlaces, el flexbox
   lo estaba comprimiendo y deformaba el logo */
.hc-brand, .con-marca { flex-shrink: 0; }
/* Menos tracking y aire medido a todo lo ancho: la fila respira sin sentirse cargada */
.hc-nav { font-size: 13px; letter-spacing: 0.18em; }
.hc-links { gap: 26px; }
.con-cabecera { font-size: 13px; letter-spacing: 0.18em; }
.con-nav { gap: 24px; }
@media (min-width: 1151px) and (max-width: 1400px) {
  .hc-nav { font-size: 12px; letter-spacing: 0.14em; padding-left: 36px; padding-right: 36px; }
  .hc-links { gap: 18px; }
  .hc-links .hc-btn { padding: 12px 20px; }
  .con-cabecera { font-size: 12px; letter-spacing: 0.14em; }
  .con-nav { gap: 17px; }
  .con-nav .con-btn { padding: 12px 20px; }
}
@media (min-width: 901px) and (max-width: 1150px) {
  .hc-nav { font-size: 11px; letter-spacing: 0.1em; padding-left: 20px; padding-right: 20px; }
  .hc-links { gap: 11px; }
  .hc-links .hc-btn { padding: 10px 14px; }
  .con-cabecera { font-size: 11px; letter-spacing: 0.1em; }
  .con-nav { gap: 11px; }
  .con-nav .con-btn { padding: 10px 14px; }
  /* En el tramo mas justo, la marca cede un punto de tamano (sin deformarse) */
  .hc-brand > img { height: 38px; }
  .con-marca > img { height: 38px; }
  .hc-estrellas img, .con-estrellas img { height: 30px; }
}
/* El botón de la cabecera del hero: chocolate translúcido con filete y halo
   bronce fijos; al pasar el ratón se vuelve bronce, sin desplazarse */
.hl .hc-links .hc-btn {
  background-image: none;
  background: none;
  color: #F1E9DA;
  box-shadow: inset 0 0 0 1px rgba(243,234,217,0.75);
  text-shadow: 0 1px 12px rgba(28,19,12,0.5);
  transition: background 0.45s ease, color 0.45s ease, box-shadow 0.45s ease;
}
.hl .hc-links .hc-btn:hover {
  background-image: none;
  background: #C9A36B;
  color: #2B2015; text-decoration: none; transform: none;
  box-shadow: inset 0 0 0 1px rgba(217,190,147,0.9), 0 0 32px rgba(201,163,107,0.5);
}
/* Solo el logotipo se tiñe de crema: los sellos Michelin conservan su color real */
.hl .hc-brand > img { filter: brightness(0.94) sepia(0.22) saturate(1.35) hue-rotate(-8deg); }
@media (max-width: 768px) {
  .hl .hl-frases > span { font-size: 21px; line-height: 1.35; white-space: normal; }
  /* Las rayas del menú, a la altura del logotipo (no del bloque con filete y estrellas) */
  .hl .hc-nav { align-items: flex-start; }
  .hl .hc-burger { margin-top: 6px; }
}

/* ---------- El separador de las puertas, en penumbra cuando la web va de noche ---------- */
html[data-tema="noche"] .sp2 { background: #221910; }
html[data-tema="noche"] .sp2 .sp-rotulo { color: #C9A36B; }
html[data-tema="noche"] .sp2-frase { color: #EDE3D2; }

/* ---------- El cierre de los overlays es un aspa ---------- */
.overlay .cerrar {
  font-family: var(--f-serif); font-size: 1.6rem; font-weight: 300;
  letter-spacing: 0; text-transform: none; line-height: 1; padding: 0.4rem 0.9rem;
}

/* ---------- RESERVAS — el sistema de la casa, por pasos (prefijo rv-) ---------- */
.rv-oculto { display: none !important; }
.rv-nota {
  margin: 1.1rem auto 0; max-width: 30rem;
  font-style: italic; font-weight: 300; font-size: 0.88rem; line-height: 1.6; color: rgba(43, 32, 21, 0.65);
}
.rv-pasos {
  display: flex; justify-content: center; gap: clamp(0.9rem, 3vw, 1.7rem);
  margin: 1.7rem 0 1.9rem; flex-wrap: wrap;
  font-family: var(--f-apoyo); font-weight: 300; font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(43, 32, 21, 0.4);
}
.rv-pasos span { display: inline-flex; align-items: center; gap: 0.5rem; }
.rv-pasos i { font-style: italic; font-family: var(--f-serif); font-size: 0.95rem; letter-spacing: 0; }
.rv-pasos .activo { color: #6B3A28; }
.rv-titulo { margin: 0 0 1.3rem; font-family: var(--f-serif); font-weight: 300; font-size: 1.3rem; color: var(--tinta); max-width: none; }
.rv-panel { min-height: 280px; display: flex; flex-direction: column; justify-content: flex-start; }
/* Paso 1: personas */
.rv-personas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.rv-personas button {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--linea);
  background: none; cursor: pointer; font-family: var(--f-serif); font-weight: 300;
  font-size: 1.15rem; color: var(--tinta);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.rv-personas button:hover { border-color: rgba(163, 132, 76, 0.8); background: rgba(163, 132, 76, 0.08); }
.rv-personas button.elegido { background: #33241A; border-color: #33241A; color: #F6ECDC; }
/* Paso 2: calendario */
.rv-cal { max-width: 330px; margin: 0 auto; width: 100%; }
.rv-cal-cabeza { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.rv-cal-mes { font-family: var(--f-serif); font-weight: 300; font-size: 1.1rem; color: var(--tinta); }
.rv-cal-nav {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--linea);
  background: none; cursor: pointer; color: #6B3A28; font-size: 1rem; line-height: 1;
  transition: border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
.rv-cal-nav:hover:not(:disabled) { border-color: rgba(163, 132, 76, 0.8); background: rgba(163, 132, 76, 0.08); }
.rv-cal-nav:disabled { opacity: 0.3; cursor: default; }
.rv-cal-dias, .rv-cal-red { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.rv-cal-dias span { font-family: var(--f-apoyo); font-weight: 300; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(43, 32, 21, 0.5); text-align: center; padding-bottom: 0.45rem; }
.rv-cal-red button {
  aspect-ratio: 1; border-radius: 50%; border: 0; background: none;
  font-family: var(--f-apoyo); font-weight: 300; font-size: 0.86rem; color: var(--tinta); cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.rv-cal-red button:disabled { color: rgba(43, 32, 21, 0.22); cursor: default; }
.rv-cal-red button:not(:disabled):hover { background: rgba(163, 132, 76, 0.14); }
.rv-cal-red button.elegido { background: #33241A; color: #F6ECDC; }
.rv-cal-red .vacio { visibility: hidden; }
/* Paso 3: servicio */
.rv-servicios { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; max-width: 420px; margin: 0 auto; width: 100%; }
.rv-servicios button {
  border: 1px solid var(--linea); background: none; cursor: pointer; padding: 1.15rem 0.8rem;
  display: grid; gap: 0.3rem; text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.rv-servicios button:hover:not(:disabled) { border-color: rgba(163, 132, 76, 0.8); }
.rv-servicios button.elegido { background: #33241A; border-color: #33241A; }
.rv-servicios button.elegido .rv-serv-nombre, .rv-servicios button.elegido .rv-serv-hora { color: #F6ECDC; }
.rv-servicios button:disabled { opacity: 0.3; cursor: default; }
.rv-serv-nombre { font-family: var(--f-serif); font-weight: 300; font-size: 1.15rem; color: var(--tinta); }
.rv-serv-hora { font-family: var(--f-apoyo); font-weight: 300; font-size: 0.68rem; letter-spacing: 0.24em; color: rgba(43, 32, 21, 0.55); }
/* ---------- La invitación: foto a la izquierda, cartulina crema a la derecha ---------- */
.overlay-reserva.rv-lienzo {
  background:
    radial-gradient(85% 55% at 50% 0%, rgba(201, 163, 107, 0.22), rgba(201, 163, 107, 0) 62%),
    radial-gradient(130% 80% at 50% 108%, rgba(128, 68, 32, 0.30), rgba(0, 0, 0, 0) 60%),
    linear-gradient(180deg, #2E1F10 0%, #211406 100%);
  padding: clamp(3rem, 7vh, 4.6rem) 16px 3rem;
}
.overlay-reserva.rv-lienzo .cerrar { color: #f3ead9; }
/* La carta vieja, posada sobre una superficie lacada que la refleja */
.rv-escena { position: relative; max-width: 980px; margin: 0 auto; }
/* El brillo: un halo ámbar tras la carta, que respira como una vela */
.rv-escena::before {
  content: ""; position: absolute; inset: -14% -18%; z-index: -1; pointer-events: none;
  background: radial-gradient(55% 50% at 50% 42%, rgba(255, 205, 130, 0.20), rgba(255, 205, 130, 0) 70%);
}
@media (prefers-reduced-motion: no-preference) {
  .rv-escena::before { animation: rvBrilla 6.5s ease-in-out infinite alternate; }
}
@keyframes rvBrilla { from { opacity: 0.65; } to { opacity: 1; } }
.rv-escena::after {
  content: ""; position: absolute; left: -6%; right: -6%; bottom: -14px; height: 26px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(255, 240, 210, 0.14), rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
.rv-marco {
  display: grid; grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  text-align: left; overflow: hidden;
  background:
    radial-gradient(130% 100% at 50% 0%, rgba(255, 252, 240, 0.65), rgba(255, 252, 240, 0) 55%),
    linear-gradient(180deg, #F6ECD6 0%, #EBDCBE 100%);
  box-shadow:
    inset 0 0 0 1px rgba(122, 84, 44, 0.4),
    inset 0 0 70px rgba(107, 58, 40, 0.16),
    0 30px 80px rgba(0, 0, 0, 0.55);
  -webkit-box-reflect: below 8px linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.22));
}
.rv-foto { position: relative; min-height: 640px; background: #2e190b; }
.rv-foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.rv-foto-velo { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(46,25,11,0.62) 0%, rgba(46,25,11,0.18) 45%, rgba(46,25,11,0.72) 100%); }
.rv-foto-caja {
  position: absolute; inset: 0; padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #f3ead9;
}
.rv-foto-rotulo { font-family: var(--f-apoyo); font-weight: 300; font-size: 10.5px; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(243, 234, 217, 0.85); }
.rv-foto-titulo { margin: 0.8rem 0 0; font-family: var(--f-serif); font-weight: 300; font-size: clamp(1.7rem, 2.6vw, 2.2rem); line-height: 1.2; color: #F6ECDC; max-width: none; }
.rv-foto-resumen { margin-top: 1.4rem; display: flex; flex-direction: column; align-items: center; }
.rv-foto-orn { display: block; width: 44px; height: 1px; background: rgba(201, 163, 107, 0.75); margin-bottom: 1rem; }
.rv-foto-resumen p { margin: 0.3rem 0 0; font-family: var(--f-serif); font-style: italic; font-weight: 300; font-size: 1.12rem; line-height: 1.5; color: rgba(243, 234, 217, 0.95); max-width: none; }
.rv-foto-resumen .rv-foto-pista { font-size: 0.95rem; color: rgba(243, 234, 217, 0.7); }
/* La mesa se pone silla a silla: las puestas van en tinta, el resto en fantasma */
.rv-sillas { display: flex; align-items: flex-end; gap: 9px; }
.rv-sillas button {
  background: none; border: 0; padding: 4px 3px; cursor: pointer;
  color: rgba(59, 42, 26, 0.24);
  transition: color 0.25s ease, transform 0.25s ease;
}
.rv-sillas button svg { width: 25px; height: 34px; display: block; }
.rv-sillas button.puesta { color: #3B2A1A; }
.rv-sillas button:hover { transform: translateY(-2px); color: rgba(59, 42, 26, 0.6); }
.rv-sillas button.puesta:hover { color: #3B2A1A; }
.rv-mesa-num { display: block; margin-top: 0.7rem; font-family: var(--f-serif); font-style: italic; font-weight: 300; font-size: 1.3rem; color: #3B2A1A; }
@media (prefers-reduced-motion: reduce) {
  .rv-sillas button { transition: none; }
  .rv-sillas button:hover { transform: none; }
}
/* El panel de la cartulina: colores fijos, mismo aspecto de día y de noche */
.rv-panelo { padding: clamp(1.7rem, 3vw, 2.5rem) clamp(1.4rem, 3vw, 2.6rem); }
.rv-marco .rv-bloque { border-top-color: rgba(163, 132, 76, 0.35); }
.rv-marco .rv-bloque:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.rv-marco .rv-etiqueta { color: #8a4b26; }
.rv-marco .rv-cal { margin: 0; max-width: 330px; }
.rv-marco .rv-cal-mes { color: #2B2015; }
.rv-marco .rv-cal-nav { border-color: rgba(163, 132, 76, 0.5); color: #6B3A28; }
.rv-marco .rv-cal-dias span { color: rgba(43, 32, 21, 0.5); }
.rv-marco .rv-cal-red button { color: #2B2015; }
.rv-marco .rv-cal-red button:disabled { color: rgba(43, 32, 21, 0.22); }
.rv-marco .rv-cal-red button.elegido { background: #33241A; color: #F6ECDC; }
.rv-marco .rv-personas { justify-content: flex-start; }
.rv-marco .rv-personas button { border-color: rgba(163, 132, 76, 0.5); color: #2B2015; width: 46px; height: 46px; }
.rv-marco .rv-personas button.elegido { background: #33241A; border-color: #33241A; color: #F6ECDC; }
.rv-marco .rv-servicios { margin: 0; max-width: 420px; }
.rv-marco .rv-servicios button { border-color: rgba(163, 132, 76, 0.5); }
.rv-marco .rv-serv-nombre { color: #2B2015; }
.rv-marco .rv-serv-hora { color: rgba(43, 32, 21, 0.55); }
.rv-marco .rv-servicios button.elegido { background: #33241A; border-color: #33241A; }
.rv-marco .rv-servicios button.elegido .rv-serv-nombre,
.rv-marco .rv-servicios button.elegido .rv-serv-hora { color: #F6ECDC; }
.rv-marco .rv-nota { color: rgba(43, 32, 21, 0.6); margin-left: 0; margin-right: 0; }
.rv-marco .formulario label { color: #6B3A28; }
.rv-marco .formulario input, .rv-marco .formulario select, .rv-marco .formulario textarea {
  background: #ffffff; border-color: rgba(163, 132, 76, 0.4); color: #2B2015;
}
.rv-marco .rv-listo { padding: 3rem 1rem; }
.rv-marco .rv-listo .rv-titulo { color: #2B2015; }
@media (max-width: 859px) {
  .rv-marco { grid-template-columns: 1fr; }
  .rv-foto { min-height: 235px; }
  .rv-foto-caja { padding: 1.3rem 1.4rem; }
  .rv-foto-titulo { font-size: 1.45rem; }
  .rv-foto-resumen p { font-size: 0.98rem; display: inline; }
  .rv-foto-resumen p + p::before { content: " · "; }
  .rv-foto-orn { margin-bottom: 0.6rem; }
}
/* Composición a dos columnas: el calendario manda; lo demás va llegando */
.overlay-reserva .reserva-caja { max-width: 58rem; }
.overlay-reserva.rv-lienzo .reserva-caja { max-width: 1020px; }
.rv-doble {
  display: grid; grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem); align-items: start; text-align: left;
  max-width: 860px; margin: 0 auto;
}
.rv-bloque { border-top: 1px solid var(--linea); padding-top: 1.15rem; margin-top: 1.5rem; }
.rv-col > .rv-bloque:first-child { margin-top: 0; }
.rv-etiqueta {
  display: block; margin-bottom: 0.95rem;
  font-family: var(--f-apoyo); font-weight: 300; font-size: 10.5px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--bronce);
}
.rv-doble .rv-personas { justify-content: flex-start; }
.rv-doble .rv-servicios { margin: 0; max-width: 420px; }
.rv-doble .rv-cal { margin: 0; }
.rv-doble .rv-nota { margin-left: 0; margin-right: 0; }
.rv-resumen-vivo {
  min-height: 1.5em; margin: 1.1rem auto 1.7rem; text-align: center;
  font-family: var(--f-serif); font-style: italic; font-weight: 300; font-size: 1.05rem;
  color: #6B3A28;
}
html[data-tema="noche"] .rv-resumen-vivo { color: #C9A36B; }
html[data-tema="noche"] .rv-etiqueta { color: #C9A36B; }
@media (max-width: 799px) {
  .rv-doble { grid-template-columns: 1fr; gap: 0; }
  .rv-doble .rv-cal { margin: 0 auto; }
}
/* Navegación y cierre */
.rv-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.9rem; }
.rv-atras {
  background: none; border: 0; cursor: pointer;
  font-family: var(--f-serif); font-style: italic; font-weight: 300; font-size: 0.95rem;
  color: rgba(43, 32, 21, 0.55); transition: color 0.25s ease; padding: 0.4rem 0.2rem;
}
.rv-atras:hover { color: #6B3A28; }
.rv-resumen { margin: 1.3rem auto 0; font-family: var(--f-serif); font-style: italic; font-weight: 300; font-size: 0.98rem; color: rgba(43, 32, 21, 0.7); }
.rv-error { margin: 0.9rem auto 0; font-size: 0.85rem; font-style: italic; color: #8a2f22; }
.rv-listo { text-align: center; padding: 2.2rem 0 1rem; }
.rv-listo .rv-titulo { margin-bottom: 0.6rem; }
/* Modo noche */
html[data-tema="noche"] .rv-pasos { color: rgba(241, 233, 218, 0.4); }
html[data-tema="noche"] .rv-pasos .activo { color: #C9A36B; }
html[data-tema="noche"] .rv-titulo, html[data-tema="noche"] .rv-cal-mes,
html[data-tema="noche"] .rv-serv-nombre { color: #EDE3D2; }
html[data-tema="noche"] .rv-personas button, html[data-tema="noche"] .rv-cal-red button { color: #EDE3D2; }
html[data-tema="noche"] .rv-cal-red button:disabled { color: rgba(241, 233, 218, 0.2); }
html[data-tema="noche"] .rv-personas button.elegido, html[data-tema="noche"] .rv-cal-red button.elegido { background: #C9A36B; border-color: #C9A36B; color: #2B2015; }
html[data-tema="noche"] .rv-servicios button.elegido { background: #C9A36B; border-color: #C9A36B; }
html[data-tema="noche"] .rv-servicios button.elegido .rv-serv-nombre,
html[data-tema="noche"] .rv-servicios button.elegido .rv-serv-hora { color: #2B2015; }
html[data-tema="noche"] .rv-serv-hora { color: rgba(241, 233, 218, 0.55); }
html[data-tema="noche"] .rv-cal-dias span { color: rgba(241, 233, 218, 0.5); }
html[data-tema="noche"] .rv-nota, html[data-tema="noche"] .rv-resumen,
html[data-tema="noche"] .rv-atras { color: rgba(241, 233, 218, 0.65); }
html[data-tema="noche"] .rv-atras:hover { color: #C9A36B; }
@media (max-width: 520px) {
  .rv-personas button { width: 46px; height: 46px; }
  .rv-servicios { grid-template-columns: 1fr; }
}

/* ---------- Detalles de la casa: la muralla, el filete, el arco ---------- */
/* El pie se corona con la silueta almenada de la muralla */
.pie::before {
  content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='10'%3E%3Cpath d='M0 10V6h12V0h22v6h12v4z' fill='%2333241A'/%3E%3C/svg%3E") repeat-x bottom;
  pointer-events: none;
}
/* Los divisores mayores llevan el filete de la casa: se funden en los extremos */
.rv-bloque {
  border-top: 0;
  border-image: linear-gradient(90deg, rgba(163, 132, 76, 0), rgba(163, 132, 76, 0.55) 18%, rgba(163, 132, 76, 0.55) 82%, rgba(163, 132, 76, 0)) 1;
  border-top-style: solid; border-top-width: 1px;
}

/* ---------- Compactado del home: misma música, menos volumen ---------- */
@media (min-width: 901px) {
  .espacio { min-height: 0; padding: 64px 84px; gap: 48px; grid-template-columns: 380px 1fr; max-width: 1240px; margin-inline: auto; }
  .esp-col { gap: 26px; }
  .espacio h2 { font-size: 27px; }
  .esp-archivo img { width: 236px; height: 295px; border-width: 10px; border-bottom-width: 14px; }
  .esp-hoy.esp-solo-desktop { max-height: 560px; }
  .menus-seccion h2 { font-size: 27px; }
  .men-nombre { font-size: 26px; }
  .men-precio { font-size: 20px; }
  .sp2 { padding: clamp(52px, 9vh, 84px) clamp(20px, 4vw, 56px); }
  .menus-seccion { min-height: 0; padding-top: 64px; max-width: 1240px; margin-inline: auto; }
  .men-col { gap: 30px; padding-bottom: 64px; }
  .bod-descenso { height: 84px; }
  .bod-ascenso { height: 48px; }
  .galeria-seccion { padding: 36px 0 44px; }
  .cierre-seccion { height: min(88vh, 700px); min-height: 500px; }
}
@media (max-width: 900px) {
  .sp2 { padding: 32px 20px; }
  .bod-descenso { height: 56px; }
  .bod-ascenso { height: 36px; }
  .cierre-seccion { height: min(86vh, 640px); min-height: 480px; }
  /* Aire contenido entre bloques en pantalla estrecha: texto y texto se acompañan */
  .seccion { padding-block: 2.4rem; }
  .cifras { margin-top: 2rem; gap: 1.6rem; }
  .portada { padding-bottom: 0.8rem; }
  .portada + .seccion, .portada + section { padding-top: 1.2rem; }
}
.sp2 { contain-intrinsic-size: auto 560px; }

/* ---------- Selector de idioma: la bandera del idioma actual despliega las demás ---------- */
.idiomas { position: relative; display: inline-block; flex: none; }
.idiomas summary {
  list-style: none; cursor: pointer;
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(74, 44, 23, 0.45);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.idiomas summary::-webkit-details-marker { display: none; }
.idiomas summary:hover { border-color: rgba(138, 75, 38, 0.8); background: rgba(163, 132, 76, 0.08); }
.idiomas .bandera { width: 18px; height: 18px; border-radius: 50%; display: block; box-shadow: inset 0 0 0 1px rgba(43, 32, 21, 0.18); }
/* La luna y la bandera van en pareja: mismo tamaño, misma línea, un poco
   más juntas entre sí y con aire antes de los enlaces */
@media (min-width: 769px) { .hc-nav > .idiomas { margin-top: 4px; } }
.hc-nav > .idiomas, .con-cabecera > .idiomas { margin-left: -7px; margin-right: 9px; }
.topnav-lado .idiomas summary { width: 34px; height: 34px; }
.topnav-lado .idiomas .bandera { width: 16px; height: 16px; }
@media (max-width: 768px) {
  .hl .hc-nav .tema, .hl .hc-nav .idiomas summary { width: 34px; height: 34px; }
  .hl .hc-nav .idiomas .bandera { width: 16px; height: 16px; }
  .hc-nav > .idiomas { margin-left: -5px; margin-right: 0; }
}
.idiomas-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  min-width: 158px; padding: 8px; z-index: 70;
  background: #ffffff; border: 1px solid var(--linea);
  box-shadow: 0 16px 40px rgba(43, 32, 21, 0.16);
  display: grid; gap: 2px; text-align: left;
}
.idiomas-menu a {
  display: flex; align-items: center; gap: 11px; padding: 9px 11px;
  text-decoration: none; color: var(--tinta);
  font-family: var(--f-apoyo); font-weight: 300; font-size: 12.5px; letter-spacing: 0.08em;
  transition: background 0.25s ease;
}
.idiomas-menu a:hover { background: rgba(163, 132, 76, 0.1); text-decoration: none; color: var(--tinta); }
/* Sobre la foto del hero, el aro va en crema como el botón de tema */
.hl .idiomas summary { border-color: rgba(243, 234, 217, 0.55); }
.hl .idiomas summary:hover { border-color: rgba(243, 234, 217, 0.9); background: rgba(243, 234, 217, 0.14); }
html[data-tema="noche"] .con-cabecera .idiomas summary,
html[data-tema="noche"] .topnav .idiomas summary { border-color: rgba(201, 163, 107, 0.5); }
html[data-tema="noche"] .idiomas-menu { background: #241A10; border-color: rgba(241, 233, 218, 0.14); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45); }
html[data-tema="noche"] .idiomas-menu a { color: #EDE3D2; }
html[data-tema="noche"] .idiomas-menu a:hover { background: rgba(201, 163, 107, 0.14); color: #EDE3D2; }


/* ============================================================
   SELLO PROPIO EN EL HOME — carta impresa de menús, enlaces
   con filete vivo y cierre con el cuenco de la casa
   ============================================================ */
/* La carta del home: las filas de siempre, con los puntos de carta
   de la casa entre nombre y precio, y filetes que se funden */
.men-fila { display: block; padding: 24px 0; }
.men-fila, .men-fila:last-child {
  border-top: 0; border-bottom: 0;
  border-image: linear-gradient(90deg, rgba(163, 132, 76, 0), rgba(163, 132, 76, 0.55) 18%, rgba(163, 132, 76, 0.55) 82%, rgba(163, 132, 76, 0)) 1;
  border-top-style: solid; border-top-width: 1px;
}
.men-fila:first-child { border-top-width: 0; padding-top: 0; }
.men-linea1 { display: flex; align-items: baseline; gap: 14px; }
.men-puntos { flex: 1; min-width: 40px; border-bottom: 1px dotted rgba(138, 75, 38, 0.5); transform: translateY(-5px); }
.men-lista .men-desc { display: block; margin-top: 8px; }
html[data-tema="noche"] .men-puntos { border-bottom-color: rgba(201, 163, 107, 0.45); }

/* Los enlaces del home: el filete completo que se funde en los extremos */
.esp-cta, .chef-cta, .men-enlace, .gal-cta { position: relative; border-bottom: 0; padding-bottom: 10px; }
.esp-cta::after, .chef-cta::after, .men-enlace::after, .gal-cta::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, rgba(138, 75, 38, 0), rgba(138, 75, 38, 0.85) 22%, rgba(138, 75, 38, 0.85) 78%, rgba(138, 75, 38, 0));
}
.esp-cta:hover::after, .chef-cta:hover::after, .men-enlace:hover::after, .gal-cta:hover::after {
  background: #8a4b26;
}
html[data-tema="noche"] .esp-cta::after, html[data-tema="noche"] .chef-cta::after,
html[data-tema="noche"] .men-enlace::after, html[data-tema="noche"] .gal-cta::after {
  background: linear-gradient(90deg, rgba(201, 163, 107, 0), rgba(201, 163, 107, 0.85) 22%, rgba(201, 163, 107, 0.85) 78%, rgba(201, 163, 107, 0));
}
html[data-tema="noche"] .esp-cta:hover::after, html[data-tema="noche"] .chef-cta:hover::after,
html[data-tema="noche"] .men-enlace:hover::after, html[data-tema="noche"] .gal-cta:hover::after { background: #C9A36B; }

/* El cierre se corona con el cuenco, no con guiones */
.cie-eyebrow { flex-direction: column; gap: 12px; }
.cie-eyebrow .ornamento { display: flex; align-items: center; gap: 12px; }
.cie-eyebrow .ornamento span { width: 44px; background: #EAD9B8; }
.cie-eyebrow .ornamento i { border-color: #EAD9B8; }
.cie-eyebrow .ornamento i::after { background: #EAD9B8; }
.js .cie-eyebrow .ornamento span { transform: scaleX(1); }
.js .cie-eyebrow .ornamento i { opacity: 1; transform: scale(1); transition: none; }
