/* =====================================================================
   ZEÑORIO · MARBELLA
   Sistema de diseño — mediterráneo andaluz, refinado y cálido.
   --------------------------------------------------------------------- */

/* ---------- 1. Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 360;
  color: var(--cream);
  background: var(--noir);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
video,
svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul { list-style: none; padding: 0; }

input,
textarea,
select { font: inherit; color: inherit; }

::selection {
  background: var(--gold);
  color: var(--noir);
}

/* Accesibilidad: foco visible por teclado */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0; left: 50%;
  transform: translate(-50%, -120%);
  z-index: 1100;
  background: var(--gold);
  color: var(--noir);
  padding: 0.7em 1.4em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0 0 8px 8px;
  transition: transform 0.3s var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

/* ---------- 2. Tokens ---------- */
:root {
  /* Color — nocturno andaluz aclarado + highlight VINO
     espresso cálido más luminoso + vino (bordeaux) como acento */
  --noir: #171310;
  --noir-2: #1F1A15;
  --noir-3: #2A231C;
  --noir-soft: #332A20;
  --cream: #EDE4D3;
  --cream-2: #DDD2BE;
  --ink: #1E1712;
  --muted: #B8AC98;
  --muted-2: #9C9077;
  --gold: #B08A54;
  --gold-2: #C6A473;
  --gold-deep: #8C6B3F;
  --olive: #7E8A6B;
  --terra: #A9603E;
  --line: rgba(176, 138, 84, 0.26);
  --line-soft: rgba(237, 228, 211, 0.12);

  /* Type — Bodoni Moda (display, optical-size) + Hanken Grotesk (texto/UI) */
  --font-display: "Bodoni Moda", "Didot", "Bodoni MT", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --section-y: clamp(5rem, 11vw, 11rem);
  --gut: clamp(1.25rem, 5vw, 4rem);
  --maxw: 1320px;
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.display {
  font-size: clamp(3rem, 9vw, 8.5rem);
  font-weight: 500;
  line-height: 0.95;
}

.h2 {
  font-size: clamp(2.3rem, 5.2vw, 4.6rem);
  font-weight: 500;
}

.h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
}

.serif-it { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: clamp(1.4rem, 4vw, 3rem);
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow.center::after {
  content: "";
  width: clamp(1.4rem, 4vw, 3rem);
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--cream-2);
  line-height: 1.75;
  font-weight: 350;
}

.muted { color: var(--muted); }

/* ---------- 4. Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: var(--section-y); position: relative; }

.section--light {
  background: var(--cream);
  color: var(--ink);
}
.section--light .lead { color: #4a4334; }
.section--light .muted { color: #6e6450; }
.section--light .eyebrow { color: var(--gold-deep); }
.section--light .eyebrow::before,
.section--light .eyebrow.center::after { background: var(--gold-deep); }

.section--noir-2 { background: var(--noir-2); }

.section-head { max-width: 60ch; }
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head .h2 { margin-top: 1.4rem; }
.section-head .lead { margin-top: 1.6rem; }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 3rem); }

/* Decorative hairline divider */
.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
  border: 0;
}

/* ---------- 5. Buttons ---------- */
.btn {
  --bg: var(--gold);
  --fg: var(--noir);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.05em 2.2em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.4s var(--ease);
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--noir);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn:hover {
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.7);
}
.btn:hover::after { transform: scaleX(1); transform-origin: left; }

.btn--ghost {
  --bg: rgba(15, 12, 8, 0.34);
  --fg: var(--cream);
  border: 1.5px solid rgba(237, 228, 211, 0.6);
  backdrop-filter: blur(6px);
}
.btn--ghost::after { background: var(--gold); }
.btn--ghost:hover { color: var(--noir); border-color: var(--gold); }

.btn--sm { padding: 0.78em 1.5em; font-size: 0.72rem; }
.btn--block { width: 100%; }

.link-underline {
  position: relative;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-bottom: 2px;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- 6. Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: clamp(1rem, 2.2vw, 1.7rem);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.header.scrolled {
  background: rgba(15, 12, 8, 0.85);
  backdrop-filter: blur(14px) saturate(120%);
  padding-block: 0.7rem;
  box-shadow: 0 1px 0 var(--line-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
}
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__lockup { display: inline-flex; flex-direction: column; align-items: center; gap: 5px; }
.brand__logo { height: 34px; width: auto; display: block; }
.brand__sub {
  font-family: var(--font-body);
  font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.5em; text-indent: 0.5em;
  text-transform: uppercase; color: var(--muted); line-height: 1;
}
.footer .brand__logo { height: 46px; }
.footer .brand__sub { font-size: 0.58rem; }
.brand__name {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.4vw, 2.6rem); }
.nav__links {
  display: flex;
  gap: clamp(1.2rem, 2.2vw, 2.4rem);
}
.nav__links a {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-block: 0.3rem;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav__tools { display: flex; align-items: center; gap: 1.1rem; }

.lang { display: inline-flex; align-items: center; }
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream);
  background-color: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.5em 1.85em 0.5em 0.8em;
  line-height: 1;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%23C6A473' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.62em center;
  transition: color 0.3s, border-color 0.3s;
}
.lang-select:hover { color: #fff; border-color: var(--gold-2); }
.lang-select:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 2px; }
/* Lista desplegable nativa: legible (fondo claro, texto oscuro) */
.lang-select option { color: #1E1712; background: #EDE4D3; }

/* Menú móvil: oculto por completo en escritorio (solo se activa en el media query móvil) */
.nav-mobile { display: none; }

.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  flex: none;
}
.burger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 7. Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--noir);
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__mark {
  width: 96px; height: 96px;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-radius: var(--radius);
  display: grid; place-items: center;
  animation: floaty 3s ease-in-out infinite;
}
.loader__z {
  width: 64%; height: 64%;
  background-color: #fff;
  -webkit-mask: url(/assets/img/logo-z.svg?v=5) center / contain no-repeat;
  mask: url(/assets/img/logo-z.svg?v=5) center / contain no-repeat;
}
.loader__bar {
  position: absolute;
  bottom: 18%;
  width: min(200px, 40vw);
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.loader__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: load 1.6s var(--ease) forwards;
}
@keyframes load { to { transform: translateX(0); } }
@keyframes floaty { 50% { transform: translateY(-8px); } }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Hero solo-foto: zoom sutil para que no quede plano */
.hero--papi .hero__media > img {
  animation: heroZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(115% 80% at 50% 46%, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.26) 58%, rgba(5, 5, 5, 0.52) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.38) 0%, rgba(5, 5, 5, 0.08) 34%, rgba(5, 5, 5, 0.24) 68%, rgba(5, 5, 5, 0.72) 100%);
}
.hero__kb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04); }
  to { transform: scale(1.17); }
}
.hero__inner {
  width: 100%;
  padding-bottom: clamp(3.5rem, 8vw, 7rem);
  padding-top: 8rem;
}
.hero__eyebrow { margin-bottom: 1.8rem; }
.hero h1 {
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.hero h1 .serif-it { color: var(--gold-2); }
.hero__sub {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  color: var(--cream-2);
  line-height: 1.7;
  margin-bottom: 2.6rem;
  font-weight: 350;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Skin "Papi Steak" — hero centrado con wordmark */
.hero--papi { align-items: center; text-align: center; }
.hero--papi .hero__inner { padding-top: 8.5rem; padding-bottom: clamp(4rem, 9vw, 7.5rem); }
.hero--papi .hero__cta { justify-content: center; }

.hero__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}
.hero__mono {
  width: clamp(44px, 5.5vw, 68px);
  height: auto;
  color: var(--cream);
  margin-bottom: 0.4rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.55));
}
.hero__word {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  font-size: clamp(2.7rem, 10.5vw, 7.6rem);
  line-height: 1;
  color: var(--cream);
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.55);
}
.hero__kicker {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  font-size: clamp(0.62rem, 1.3vw, 0.8rem);
  color: var(--gold);
  margin-top: 1.4rem;
}
.hero--papi h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.18;
  color: var(--cream-2);
  max-width: 24ch;
  margin: 1.7rem auto 0;
}
.hero--papi h1 .serif-it { color: var(--gold-2); }

.hero__scroll {
  position: absolute;
  right: var(--gut);
  bottom: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero__scroll i {
  width: 1px; height: 56px;
  background: linear-gradient(var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--cream);
  animation: scrolldot 2.2s var(--ease) infinite;
}
@keyframes scrolldot {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(280%); }
}

/* Accolades marquee */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--noir-2);
  overflow: hidden;
  padding-block: 1.4rem;
}
.marquee__track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
}
.marquee span::after {
  content: "✦";
  font-style: normal;
  color: var(--gold);
  font-size: 0.7em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 9. Story ---------- */
.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.story__media {
  position: relative;
  aspect-ratio: 4 / 5;
}
.story__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.story__media .badge {
  position: absolute;
  bottom: -28px; left: -28px;
  width: clamp(120px, 16vw, 168px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--noir);
  color: var(--gold);
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
}
.story__media .badge b {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
}
.story__media .badge small {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-2);
  margin-top: 4px;
}
.story__body .stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.6rem;
  flex-wrap: wrap;
}
.story__body .stat b {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.story__body .stat span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold);
  margin-top: 2rem;
}

/* ---------- 10. Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pillar {
  padding: clamp(2rem, 4vw, 3.4rem);
  border-right: 1px solid var(--line);
  transition: background 0.5s var(--ease);
  position: relative;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--noir-2); }
.pillar__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.pillar__icon { color: var(--gold); margin: 1.4rem 0 1.6rem; }
.pillar h3 { margin-bottom: 0.9rem; }
.pillar p { color: var(--muted); font-size: 0.96rem; }

/* ---------- 11. Feature (video band) ---------- */
.feature {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}
.feature__media { position: absolute; inset: 0; z-index: -2; }
.feature__media video,
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,9,5,.84) 0%, rgba(12,9,5,.55) 42%, rgba(12,9,5,.15) 100%);
}
.feature__card { max-width: 38rem; }
.feature__card .h2 { margin: 1.4rem 0; }
.feature__card .lead { margin-bottom: 2rem; }

/* ---------- 12. Menu ---------- */
.menu__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.menu__tab {
  padding: 0.6em 1.2em;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.menu__tab:hover { color: var(--cream); }
.menu__tab.active { color: var(--noir); background: var(--gold); border-color: var(--gold); }

.menu__panel { display: none; }
.menu__panel.active { display: block; animation: fadeUp 0.6s var(--ease); }

.menu-cat {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--gold-2);
  margin: clamp(2.6rem, 5vw, 4rem) 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.menu-cat::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.menu-cat:first-of-type { margin-top: 0.5rem; }

.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.6rem) clamp(2.5rem, 6vw, 6rem);
}
.dish {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1rem;
  align-items: baseline;
  padding-bottom: 1.4rem;
  border-bottom: 1px dashed var(--line);
}
.dish__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.dish__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 600;
}
.dish__desc {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 46ch;
}
.tag {
  font-family: var(--font-body);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25em 0.6em;
  border-radius: 100px;
  border: 1px solid currentColor;
  align-self: center;
  line-height: 1;
}
.tag--veg { color: var(--olive); }
.tag--star { color: var(--gold-2); }
.tag--new { color: var(--terra); }

.menu__note {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: var(--muted-2);
  text-align: center;
  font-style: italic;
}

/* Alérgenos */
.allergens {
  margin-top: 2.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}
.allergens__title {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.allergens__txt { font-size: 0.82rem; color: var(--muted); max-width: 60ch; line-height: 1.6; }

/* Lista de eventos */
.ev-list { margin: 1.8rem 0 2.2rem; display: grid; gap: 0.8rem; }
.ev-list li { position: relative; padding-left: 1.7rem; color: var(--cream-2); }
.ev-list li::before { content: "✦"; position: absolute; left: 0; top: 2px; color: var(--gold); font-size: 0.85em; }

/* Banner de cookies */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  background: rgba(8, 8, 10, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 1rem var(--gut);
  animation: ckup 0.5s var(--ease);
}
@keyframes ckup { from { transform: translateY(100%); } to { transform: none; } }
.cookie-banner__in {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner__txt { color: var(--cream-2); font-size: 0.85rem; max-width: 64ch; margin: 0; line-height: 1.6; }
.cookie-banner__txt a { color: var(--gold); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 0.7rem; flex-shrink: 0; }
.cookie-banner__btns button {
  padding: 0.7em 1.6em;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.cookie-banner .ck-acc { background: var(--gold); color: var(--noir); }
.cookie-banner .ck-rej { background: transparent; color: var(--cream); border: 1px solid var(--line); }
.cookie-banner__btns button:hover { transform: translateY(-2px); }
@media (max-width: 600px) {
  .cookie-banner__btns { width: 100%; }
  .cookie-banner__btns button { flex: 1; }
}

/* ---------- 13. Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(120px, 16vw, 220px);
  grid-auto-flow: dense;
  gap: clamp(0.6rem, 1.2vw, 1rem);
}
.gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.gallery figure:hover img { transform: scale(1.07); }
.gallery figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,9,5,.55));
  opacity: 0;
  transition: opacity 0.5s;
}
.gallery figure:hover::after { opacity: 1; }
.gallery figcaption {
  position: absolute;
  left: 1.1rem; bottom: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s;
}
.gallery figure:hover figcaption { transform: none; opacity: 1; }

.g-a { grid-column: span 5; grid-row: span 2; }
.g-b { grid-column: span 4; grid-row: span 1; }
.g-c { grid-column: span 3; grid-row: span 2; }
.g-d { grid-column: span 4; grid-row: span 1; }
.g-e { grid-column: span 4; grid-row: span 2; }
.g-f { grid-column: span 5; grid-row: span 1; }
.g-g { grid-column: span 3; grid-row: span 1; }
.g-h { grid-column: span 5; grid-row: span 2; }
.g-w { grid-column: 1 / -1; grid-row: span 1; }

/* ---------- 14. Experience ---------- */
.exp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}
.exp__card {
  position: relative;
  min-height: clamp(280px, 38vw, 460px);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--cream);
}
.exp__card img,
.exp__card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.2s var(--ease);
}
.exp__card:hover img { transform: scale(1.06); }
.exp__card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 35%, rgba(12,9,5,.78));
}
.exp__card--tall { grid-row: span 2; min-height: clamp(400px, 60vw, 100%); }
.exp__card h3 { margin-bottom: 0.5rem; }
.exp__card p { color: var(--cream-2); font-size: 0.92rem; max-width: 38ch; }
.exp__card .eyebrow { margin-bottom: 1rem; }

/* ---------- 15. Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.quote {
  padding: clamp(1.8rem, 3vw, 2.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--noir-2);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.quote__stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.9rem; }
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
}
.quote footer {
  margin-top: auto;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.quote footer b { color: var(--gold); font-weight: 600; }

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.rating-row .src { text-align: center; }
.rating-row .src b {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  display: block;
}
.rating-row .src span { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- 16. Reservation ---------- */
.reserve {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
/* Motor de reservas CoverManager incrustado */
.reserve__engine iframe {
  width: 100%;
  height: 640px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  display: block;
}
.reserve__alt {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}
.reserve__alt a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.reserve__aside .lead { margin: 1.5rem 0 2.5rem; }
.reserve__contacts { display: grid; gap: 1.4rem; }
.reserve__contacts a,
.reserve__contacts div {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.reserve__contacts .ic {
  color: var(--gold);
  flex: none;
  margin-top: 3px;
}
.reserve__contacts dt {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.reserve__contacts dd { font-size: 1.05rem; color: var(--cream); }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--noir-2), var(--noir));
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  background: var(--noir);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95em 1.1em;
  color: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 76, 0.12);
}
.field select { appearance: none; cursor: pointer; }
.field textarea { resize: vertical; min-height: 92px; }

.form__msg {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
}
.form__msg.show { max-height: 200px; padding: 1rem 1.2rem; border-radius: var(--radius); }
.form__msg.ok { background: rgba(113, 121, 90, 0.18); border: 1px solid var(--olive); color: #d4e0bd; }
.form__msg.err { background: rgba(180, 106, 69, 0.16); border: 1px solid var(--terra); color: #f0c4ac; }
.form__msg a { color: var(--gold); font-weight: 600; }

/* ---------- 17. Location ---------- */
.loc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.loc__info { padding: clamp(2rem, 4vw, 3.5rem); }
.loc__hours { display: grid; gap: 0.7rem; margin-top: 2rem; }
.loc__hours .row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.loc__hours .row.closed { color: var(--muted-2); }
.loc__hours .row b { color: var(--gold); font-weight: 600; }
.loc__map { min-height: 360px; position: relative; }
.loc__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* ---------- 18. Footer ---------- */
.footer {
  background: var(--noir);
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 3.5rem;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  font-weight: 700;
}
.footer__col a,
.footer__col p { color: var(--muted); display: block; margin-bottom: 0.7rem; font-size: 0.92rem; transition: color 0.3s; }
.footer__col a:hover { color: var(--cream); }
.footer .brand__name { font-size: 2rem; }
.footer__tagline { color: var(--muted); margin: 1.2rem 0 1.6rem; max-width: 32ch; font-size: 0.95rem; }
.socials { display: flex; gap: 0.8rem; }
.socials a {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: background 0.4s, color 0.4s, transform 0.4s;
}
.socials a:hover { background: var(--gold); color: var(--noir); transform: translateY(-3px); }

.newsletter { display: flex; gap: 0.5rem; margin-top: 1rem; }
.newsletter input {
  flex: 1;
  background: var(--noir-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.8em 1.2em;
  color: var(--cream);
  min-width: 0;
}
.newsletter input:focus { outline: none; border-color: var(--gold); }
.newsletter button {
  width: 48px; flex: none;
  background: var(--gold);
  color: var(--noir);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: transform 0.3s;
}
.newsletter button:hover { transform: translateX(2px); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted-2);
}
.footer__bottom a:hover { color: var(--gold); }

/* ---------- 19. Floating ---------- */
.floaters {
  position: fixed;
  right: clamp(1rem, 2vw, 1.8rem);
  bottom: clamp(1rem, 2vw, 1.8rem);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -12px rgba(0,0,0,.6);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.fab--wa { background: #25d366; color: #fff; }
.fab--top { background: var(--noir-2); color: var(--gold); border: 1px solid var(--line); opacity: 0; pointer-events: none; }
.fab--top.show { opacity: 1; pointer-events: auto; }
.fab:hover { transform: scale(1.08) translateY(-2px); }

/* ---------- 20. Reveal animation ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
/* Sin JS: el contenido es siempre visible */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Scroll progress */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-2));
  z-index: 200;
}

/* ---------- 21. Responsive ---------- */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .reserve { grid-template-columns: 1fr; }
  .loc { grid-template-columns: 1fr; }
  .loc__map { min-height: 320px; }
}

@media (max-width: 880px) {
  .nav__links,
  .nav__tools { display: none; }
  .burger { display: block; }

  .nav-mobile {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(13, 10, 6, 0.97);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease), visibility 0.5s;
  }
  body.menu-open .nav-mobile { opacity: 1; visibility: visible; }
  .nav-mobile a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
  }
  .nav-mobile a:hover { color: var(--gold); }
  .nav-mobile .lang { margin-top: 1rem; }
  .nav-mobile .btn { margin-top: 0.5rem; }

  .story__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 460px; aspect-ratio: 4/4; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
  .menu__grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .exp__grid { grid-template-columns: 1fr; }
  .exp__card--tall { grid-row: auto; }
  .footer__top { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }

  .gallery { grid-template-columns: repeat(6, 1fr); }
  .g-a, .g-h { grid-column: span 6; grid-row: span 2; }
  .g-b, .g-c, .g-d, .g-e, .g-f, .g-g { grid-column: span 3; grid-row: span 1; }
  .g-c { grid-row: span 2; }
}

@media (max-width: 520px) {
  .hero__scroll { display: none; }
  .marquee span { font-size: 1.1rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f, .g-g, .g-h, .g-w { grid-column: span 1; grid-row: span 1; }
  .g-c { grid-row: span 2; }
  .story__media .badge { left: 50%; transform: translateX(-50%); bottom: -34px; }
  .btn { width: 100%; }
  .hero__cta { width: 100%; }
}

/* =====================================================================
   REFINAMIENTO "LUJO SILENCIOSO" — wordmark serif + ratings susurrados
   ===================================================================== */
.hero__logo { gap: clamp(.7rem, 1.8vw, 1.2rem); }

.hero__mono {
  width: clamp(30px, 3.4vw, 42px);
  color: var(--gold-2);
  opacity: .9;
  margin-bottom: .15rem;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
}

.hero__word {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  text-transform: none;
  letter-spacing: -0.012em;
  text-indent: 0;
  font-size: clamp(3rem, 11vw, 7rem);
  line-height: .94;
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(0,0,0,.42);
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: clamp(.7rem, 2vw, 1.1rem);
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .32em;
  text-indent: .32em;
  font-size: clamp(.56rem, 1.1vw, .68rem);
  color: var(--muted);
  margin-top: clamp(1.2rem, 2.6vw, 1.7rem);
}
.hero__kicker::before,
.hero__kicker::after {
  content: "";
  width: clamp(1.4rem, 4vw, 2.6rem);
  height: 1px;
  background: var(--gold);
  opacity: .45;
}
.hero__kicker::before { margin-left: -.32em; }

.hero--papi h1 { color: var(--cream-2); opacity: .94; }

/* (1) Marquesina · susurrada */
.marquee {
  background: transparent;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding-block: clamp(1rem, 2.2vw, 1.25rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track { gap: clamp(2.6rem, 5vw, 4rem); animation-duration: 60s; }
.marquee span {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: clamp(.62rem, 1vw, .76rem);
  color: var(--muted);
  gap: clamp(2.6rem, 5vw, 4rem);
  opacity: .9;
}
.marquee span::after { content: "·"; font-style: normal; color: var(--gold); opacity: .5; font-size: 1em; }

/* (2) Badge · sello de cristal hairline */
.story__media .badge {
  bottom: -22px; left: -22px;
  width: clamp(84px, 10vw, 104px);
  background: rgba(5, 5, 5, .55);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  color: var(--cream-2);
  border: 1px solid var(--line-soft);
  box-shadow: 0 22px 46px -30px rgba(0,0,0,.55);
}
.story__media .badge b {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(.95rem, 1.4vw, 1.12rem);
  letter-spacing: .03em;
  color: var(--gold-2);
  line-height: 1;
}
.story__media .badge small { font-size: .5rem; letter-spacing: .24em; color: var(--muted); margin-top: 5px; }

/* (3) Rating-row · credenciales al pie */
.rating-row { gap: 0; margin-top: 3rem; padding-top: 2.4rem; border-top: 1px solid var(--line-soft); }
.rating-row .src {
  display: inline-flex;
  align-items: baseline;
  gap: .5em;
  text-align: left;
  padding-inline: clamp(1.1rem, 3vw, 2.2rem);
  border-left: 1px solid var(--line-soft);
}
.rating-row .src:first-child { border-left: 0; padding-left: 0; }
.rating-row .src b {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  color: var(--cream-2);
  display: inline;
}
.rating-row .src span { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* Estrellas de reseñas · atenuadas */
.quote__stars { font-size: .78rem; opacity: .75; letter-spacing: .18em; }

@media (max-width: 520px) {
  .marquee span { font-size: .64rem; }
  .story__media .badge { left: 50%; transform: translateX(-50%); bottom: -26px; }
  .rating-row { flex-direction: column; align-items: center; gap: .9rem; }
  .rating-row .src { border-left: 0; padding-inline: 0; text-align: center; }
}

/* ---------- EFECTO PREMIUM · foil dorado (una pasada) + hairline editorial ---------- */
.hero__word {
  background-image: linear-gradient(100deg,
    var(--cream) 0%, var(--cream) 38%,
    var(--gold-2) 50%,
    var(--cream) 62%, var(--cream) 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: zWordSheen 2.8s var(--ease) 1.1s both;
  will-change: background-position;
}
@keyframes zWordSheen {
  from { background-position: 100% 0; }
  to   { background-position: 0% 0; }
}
.hero__word::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -.26em;
  height: 1px; width: min(44%, 340px);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold-2) 50%, var(--gold) 82%, transparent);
  opacity: .85;
  animation: zHairlineDraw 1.1s var(--ease) 1.5s both;
}
@keyframes zHairlineDraw {
  from { transform: translateX(-50%) scaleX(0); opacity: 0; }
  to   { transform: translateX(-50%) scaleX(1); opacity: .85; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__word { animation: none; background: none; -webkit-text-fill-color: var(--cream); }
  .hero__word::after { animation: none; transform: translateX(-50%) scaleX(1); opacity: .7; }
}

/* =====================================================================
   AJUSTE MINIMALISTA — tipografía más fina y pequeña (gana por cascada)
   ===================================================================== */
/* Titulares serif: peso 400 (más finos) y un punto más pequeños */
h1, h2, h3, h4 { font-weight: 400; }
.h2 { font-size: clamp(1.85rem, 4vw, 3.4rem); font-weight: 400; letter-spacing: -0.01em; }
.h3 { font-size: clamp(1.25rem, 2.2vw, 1.8rem); font-weight: 400; }

/* Cuerpo y destacados: más ligeros */
body { font-weight: 340; }
.lead { font-size: clamp(1rem, 1.35vw, 1.15rem); font-weight: 300; line-height: 1.72; }
.signature { font-weight: 400; }
.quote p { font-weight: 400; }

/* Eyebrows / etiquetas: más pequeñas, finas y espaciadas */
.eyebrow { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.36em; }
.nav__links a { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.16em; }
.menu__tab { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.14em; }

/* Marca */
.brand__name { font-size: 1rem; font-weight: 500; letter-spacing: 0.22em; }
.brand__name small { font-size: 0.46rem; font-weight: 500; }
.footer .brand__name { font-size: 1.6rem; }

/* Botones: más finos y compactos */
.btn { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; padding: 0.92em 2em; }
.btn--sm { font-size: 0.64rem; padding: 0.7em 1.4em; }

/* Hero: monograma, wordmark y tagline más pequeños y finos */
.hero__mono { width: clamp(26px, 3vw, 36px); }
.hero__word { font-weight: 400; font-size: clamp(2.2rem, 8vw, 5.2rem); }
.hero__kicker { font-weight: 400; font-size: clamp(0.5rem, 1vw, 0.62rem); letter-spacing: 0.36em; }
.hero--papi h1 { font-size: clamp(1.2rem, 2.4vw, 1.95rem); font-weight: 400; }

/* Carta */
.dish__name { font-size: 1.18rem; font-weight: 400; }
.dish__price { font-size: 1.08rem; font-weight: 500; }

/* Marquesina y stats: un punto más discretos */
.marquee span { font-weight: 400; }
.story__body .stat b { font-weight: 400; font-size: clamp(1.7rem, 3.2vw, 2.3rem); }

/* =====================================================================
   LOGO / MARCA — wordmark serif (igual que el logotipo del restaurante)
   ===================================================================== */
.brand__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.4rem;
  letter-spacing: 0.44em;
  text-indent: 0.44em;
  color: var(--gold);
  margin-top: 5px;
}
.footer .brand__name { font-size: 2rem; letter-spacing: 0.08em; text-indent: 0.08em; }
.footer .brand__name small { font-size: 0.5rem; }

/* =====================================================================
   SERENO DE ENCINA — nocturno andaluz · ajustes de identidad
   (gana por cascada sobre los bloques anteriores)
   ===================================================================== */

/* Bodoni con optical-sizing para que las líneas finas no se rompan */
h1, h2, h3, h4, .display, .hero__word, .dish__name, .dish__price,
.menu-cat, .quote p, .signature, .story__body .stat b, .brand__name {
  font-optical-sizing: auto;
}

/* Titulares con algo más de cuerpo (Bodoni a 400 quedaba demasiado fino) */
h1, h2, h3, h4, .h2, .h3 { font-weight: 500; }
.display, .hero__word { font-weight: 600; }
.dish__name, .menu-cat, .quote p, .signature, .story__body .stat b { font-weight: 500; }

/* Eyebrow en oliva (no en latón) para que respire la paleta */
.eyebrow { color: var(--olive); }
.eyebrow::before,
.eyebrow.center::after { background: var(--olive); }
.section--light .eyebrow { color: var(--gold-deep); }
.section--light .eyebrow::before,
.section--light .eyebrow.center::after { background: var(--gold-deep); }

/* Botones: bloque de latón nítido (2px) en Title Case — fuera píldoras y mayúsculas */
.btn { border-radius: 2px; text-transform: none; letter-spacing: 0.03em; }
.btn:hover { color: var(--gold-2); }

/* Navegación en Title Case editorial (no en mayúsculas de plantilla) */
.nav__links a { text-transform: none; letter-spacing: 0.015em; font-size: 0.78rem; }

/* Se retiran las píldoras del resto de controles */
.lang, .menu__tab, .newsletter input, .newsletter button,
.tag, .cookie-banner__btns button { border-radius: 2px; }

/* Rombo grabado de latón: sustituye la ✦ del listado de eventos */
.ev-list li::before { content: "\25C6"; font-size: 0.58em; top: 6px; color: var(--gold); }

/* Foco en latón claro */
:focus-visible { outline-color: var(--gold-2); }

/* Logo real del cliente sobre el hero (monograma Z + wordmark ZEÑORÍO) */
.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.9rem, 2.2vw, 1.5rem);
  margin-bottom: clamp(2rem, 5vw, 3.2rem);
}
.hero__z {
  width: clamp(56px, 7vw, 92px);
  height: auto;
  filter: drop-shadow(0 10px 34px rgba(0, 0, 0, 0.6));
}
.hero__wordmark {
  width: clamp(228px, 46vw, 460px);
  height: auto;
  filter: drop-shadow(0 6px 26px rgba(0, 0, 0, 0.55));
}

/* =====================================================================
   REFINAMIENTO — pilares y datos (lujo discreto, sin iconos de plantilla)
   ===================================================================== */
/* Pilares: fuera el recuadro y los iconos genéricos; numeral serif y aire */
.pillars {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  overflow: visible;
}
.pillar {
  padding: clamp(2.6rem, 4vw, 3.8rem) clamp(1.6rem, 3vw, 2.8rem);
  border-right: 1px solid var(--line);
}
.pillar:hover { background: transparent; }
.pillar__icon { display: none; }
.pillar__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1;
  color: var(--gold-2);
  opacity: 0.55;
  margin-bottom: 1.4rem;
}
.pillar h3 { margin-bottom: 1rem; }

/* Datos (100% / 45 días): discreto — filete, divisor y numerales suaves */
.story__body .stats {
  gap: 0;
  margin-top: 2.8rem;
  padding-top: 1.9rem;
  border-top: 1px solid var(--line);
}
.story__body .stat { padding-right: clamp(1.8rem, 4vw, 2.8rem); }
.story__body .stat + .stat {
  padding-left: clamp(1.8rem, 4vw, 2.8rem);
  border-left: 1px solid var(--line);
}
.story__body .stat b {
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  color: var(--gold-2);
}
.story__body .stat b .stat__u {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-left: 0.12em;
  text-transform: none;
}
.story__body .stat > span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: var(--muted-2);
  margin-top: 0.7rem;
}
/* Pantallas muy estrechas: los datos se apilan con filete horizontal
   (el divisor vertical queda huérfano si la fila llega a envolver) */
@media (max-width: 379px) {
  .story__body .stats { flex-direction: column; }
  .story__body .stat { padding-right: 0; }
  .story__body .stat + .stat {
    padding-left: 0;
    border-left: none;
    margin-top: 1.3rem;
    padding-top: 1.3rem;
    border-top: 1px solid var(--line);
  }
}

/* =====================================================================
   ORO FRÍO monocromo — el acento vuelve a ser claro, así que el texto
   sobre rellenos de acento vuelve a oscuro (tinta) para el contraste.
   ===================================================================== */
.btn { --fg: var(--ink); }
.btn--ghost:hover { color: var(--ink); }
.lang button.active,
.menu__tab.active,
.cookie-banner .ck-acc,
.socials a:hover { color: var(--ink); }

/* =====================================================================
   HERO CTA — botones bien visibles sobre la foto oscura del hero.
   El principal (Reservar) destaca en marfil sólido; el secundario
   recupera su texto claro (se perdía en oscuro-sobre-oscuro).
   ===================================================================== */
.hero__cta .btn { box-shadow: 0 14px 36px -12px rgba(0, 0, 0, 0.85); }
.hero__cta .btn:not(.btn--ghost) {
  --bg: var(--cream);
  --fg: #1E1712;
}
.hero__cta .btn--ghost {
  --fg: var(--cream);
  background: rgba(12, 9, 5, 0.5);
  border-color: rgba(237, 228, 211, 0.85);
}

/* =====================================================================
   WHITE GOLD — highlights de texto en dorado pálido (--gold-2).
   El vino oscuro (--gold) queda para rellenos, botones y bordes;
   los detalles finos sobre fondo oscuro van en white gold para leerse.
   ===================================================================== */
.signature,
.dish__price,
.quote__stars,
.quote footer b,
.rating-row .src b,
.loc__hours .row b,
.reserve__contacts .ic,
.story__media .badge,
.allergens__title,
.hero__scroll,
.hero__scroll i,
.marquee span::after,
.ev-list li::before,
.cookie-banner__txt a,
.form__msg a,
.footer__bottom a:hover,
.nav-mobile a:hover,
.fab--top { color: var(--gold-2); }

/* =====================================================================
   HERO SLIDESHOW — Ken Burns por CSS (GPU, subpíxel: sin vibración).
   5 planos × 6 s = ciclo de 30 s con fundidos encadenados.
   ===================================================================== */
.hero__slides { position: absolute; inset: 0; overflow: hidden; }
.hero .hero__slides .hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  will-change: opacity, transform;
  backface-visibility: hidden;
  animation: heroSlide 30s linear infinite;
}
.hero .hero__slides .hero__slide:nth-child(1) { animation-delay: 0s; }
.hero .hero__slides .hero__slide:nth-child(2) { animation-delay: 6s; }
.hero .hero__slides .hero__slide:nth-child(3) { animation-delay: 12s; }
.hero .hero__slides .hero__slide:nth-child(4) { animation-delay: 18s; }
.hero .hero__slides .hero__slide:nth-child(5) { animation-delay: 24s; }
/* Alternar el origen del zoom para que cada plano "viaje" distinto */
.hero .hero__slides .hero__slide:nth-child(odd)  { transform-origin: 38% 42%; }
.hero .hero__slides .hero__slide:nth-child(even) { transform-origin: 64% 58%; }

@keyframes heroSlide {
  0%   { opacity: 0; transform: scale(1.03); }
  4.5% { opacity: 1; }
  20%  { opacity: 1; }
  26%  { opacity: 0; transform: scale(1.13); }
  100% { opacity: 0; transform: scale(1.03); }
}

/* Reduced motion / respaldo: primer plano fijo, sin animación */
@media (prefers-reduced-motion: reduce) {
  .hero .hero__slides .hero__slide { animation: none; opacity: 0; transform: none; }
  .hero .hero__slides .hero__slide:first-child { opacity: 1; }
}

/* =====================================================================
   MULTIPÁGINA (2026-07-03) — fondo con reflejos, cabecera interna,
   cabecera de página, carrusel de reseñas y estado de nav.
   ===================================================================== */

/* Fondo negro con reflejos sutiles (da profundidad sin aclarar) */
body {
  background-color: var(--noir);
  background-image:
    radial-gradient(120% 72% at 50% -18%, rgba(198, 164, 115, 0.07), transparent 55%),
    radial-gradient(95% 60% at 100% 108%, rgba(126, 138, 107, 0.06), transparent 55%),
    radial-gradient(70% 55% at -5% 42%, rgba(176, 138, 84, 0.05), transparent 60%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}
/* Un velo de brillo muy tenue que cruza la página (reflejo) */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background: linear-gradient(115deg, transparent 42%, rgba(237, 228, 211, 0.028) 50%, transparent 58%);
  mix-blend-mode: screen;
}
body > * { position: relative; z-index: 1; }

/* Cabecera sólida y fija-pegajosa en páginas internas (sin hero).
   Arregla la "barra que se desconfigura" al entrar en la Carta. */
.page--sub .header {
  position: sticky;
  background: rgba(15, 12, 8, 0.92);
  backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 1px 0 var(--line-soft);
}

/* Enlace de navegación de la página actual */
.nav__links a.active,
.nav-mobile a.active { color: var(--gold); }

/* Cabecera de página (título de sección en su propia página) */
.page-head { text-align: center; padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.page-head .h2 { margin-top: 1rem; }
.page-head .lead { margin: 1.4rem auto 0; max-width: 48ch; }

/* Reseñas: carrusel horizontal deslizable con muchas tarjetas */
.reviews-rail {
  display: flex;
  gap: clamp(1rem, 2vw, 1.6rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem clamp(1.25rem, 5vw, 4rem) 1.6rem;
  scrollbar-width: none;
}
.reviews-rail::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: center;
  flex: 0 0 min(84%, 400px);
  background: var(--noir-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.review-card__stars { color: var(--gold-2); letter-spacing: 0.14em; font-size: 0.9rem; }
.review-card p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.5; color: var(--cream); margin: 0;
}
.review-card footer {
  margin-top: auto; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.review-card__src { color: var(--gold-deep); }
.reviews-hint {
  text-align: center; margin-top: 0.8rem;
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted-2);
}
