/* ============================================================
   NUDO BEACH PEÑÍSCOLA — Hi-fi landing
   Mediterránea, editorial, negro · hueso · oro
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libertinus+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap");

:root {
  /* Color */
  --ink:        #0b0a08;
  --ink-soft:   #424242;
  --ink-bg:     #333333;
  --bone:       #f5f1ec;
  --bone-warm:  #f5f1ec;
  --paper:      #f5f1ec;
  --stone:      #7a6f60;
  --stone-soft: #b3a995;
  --gold:       #afa187;
  --gold-soft:  #afa187;
  --gold-deep:  #afa187;
  --sea:        #18324a;
  --line:       rgba(51, 51, 51, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);

  /* Type */
  --f-display: "Libertinus Sans", system-ui, sans-serif;
  --f-sans:    "Manrope", system-ui, sans-serif;

  /* Spacing */
  --gutter: clamp(20px, 4vw, 56px);
  --col-max: 100%;

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

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ============== CUSTOM CURSOR ============== */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: #fff;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              border-color 0.3s var(--ease), opacity 0.2s ease;
}
body.cursor-hover .cursor-ring {
  width: 72px; height: 72px;
  border-color: rgba(255, 255, 255, 0.9);
}
body.cursor-text .cursor-ring {
  width: 16px; height: 16px;
}
body.cursor-text .cursor-dot {
  width: 2px; height: 20px; border-radius: 0;
}
@media (hover: none), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============== PAGE TRANSITION OVERLAY ============== */
.page-veil {
  position: fixed; inset: 0;
  background: var(--ink-bg);
  z-index: 9000;
  transform: translateY(100%);
  pointer-events: none;
}
body.is-leaving .page-veil {
  transform: translateY(0);
  transition: transform 0.7s var(--ease);
}
body.is-entering .page-veil {
  transform: translateY(-100%);
  transition: transform 0.9s var(--ease) 0.05s;
}

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  color: #fff;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), padding 0.5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(51, 51, 51, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px var(--gutter);
}
.nav.theme-light {
  color: var(--ink);
}
.nav.theme-light.is-scrolled {
  background: rgba(248, 245, 238, 0.92);
  border-bottom: 1px solid var(--line);
}

.nav__wordmark {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__wordmark span {
  font-style: italic;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: 0;
  margin-left: 2px;
  opacity: 0.75;
}

/* Real Nudo logo (SVG) — swaps light/dark with nav theme + scroll */
.nav__logo { display: inline-block; line-height: 0; }
.nav__logo img { height: 176px; width: auto; transition: height 0.4s var(--ease), opacity 0.4s var(--ease); }
.nav__logo img.nav__logo-light { display: block; filter: invert(1); }
.nav__logo img.nav__logo-dark  { display: none; }
.nav.theme-light .nav__logo img.nav__logo-light,
.nav.theme-light.is-scrolled .nav__logo img.nav__logo-light { display: none; }
.nav.theme-light .nav__logo img.nav__logo-dark,
.nav.theme-light.is-scrolled .nav__logo img.nav__logo-dark  { display: block; }
.nav.is-scrolled .nav__logo img { height: 108px; }
@media (max-width: 700px) {
  .nav__logo img { height: 80px; }
  .nav.is-scrolled .nav__logo img { height: 56px; }
}

.footer__logo {
  height: 84px; width: auto;
  filter: invert(1);
  display: block;
  margin-bottom: 24px;
}

.nav__menu {
  display: none;
}
.nav__menu a {
  position: relative;
  padding: 8px 0;
  transition: opacity 0.3s var(--ease);
}
.nav__menu a::after {
  content: "";
  position: absolute; bottom: 4px; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.nav__menu a:hover::after,
.nav__menu a.is-active::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 28px; }

.lang {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.lang button {
  color: inherit;
  padding: 4px 2px;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease);
  font-size: 11px; letter-spacing: 0.16em;
}
.lang button.is-on { opacity: 1; }
.lang span { opacity: 0.4; }

/* Language toggle inside the drawer (primary on mobile, where the top-bar one is hidden) */
.nav-drawer__lang {
  display: flex; align-items: center; gap: 18px;
  margin-top: 30px; padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-drawer__lang-label {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.nav-drawer__lang .lang { gap: 10px; font-size: 14px; }
.nav-drawer__lang .lang button { font-size: 14px; padding: 6px 4px; letter-spacing: 0.18em; }
/* On wide screens the top-bar toggle is enough — keep the drawer tidy */
@media (min-width: 701px) { .nav-drawer__lang { display: none; } }
/* On mobile, move ES/EN into the drawer to declutter the top bar */
@media (max-width: 700px) { .nav__right .lang { display: none; } }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav__cta:hover {
  background: currentColor;
}
.nav__cta:hover span { color: var(--ink); }
.nav.theme-light .nav__cta:hover span { color: var(--bone); }

.nav__burger {
  display: flex; flex-direction: column; gap: 6px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: inherit;
}
.nav__burger i {
  display: block; width: 26px; height: 1px; background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
body.drawer-open .nav__burger i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.drawer-open .nav__burger i:nth-child(2) { opacity: 0; }
body.drawer-open .nav__burger i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav__menu { display: none; }
}

/* ============== NAV DRAWER (SLVJ-style overlay menu) ============== */
.nav-drawer {
  position: fixed; inset: 0;
  z-index: 700;
  background: var(--ink-bg);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 240px clamp(40px, 8vw, 120px) 80px clamp(120px, 14vw, 220px);
  transform: translateY(-100%);
  transition: transform 0.85s var(--ease);
  pointer-events: none;
  overflow-y: auto;
}
body.drawer-open .nav-drawer {
  transform: translateY(0);
  pointer-events: auto;
}
/* While the drawer is open, make the top bar an opaque ink strip so menu items
   scrolling up are masked cleanly behind the fixed logo instead of overlapping it.
   Higher specificity (body.drawer-open header.nav) beats .is-scrolled and the
   mobile nav veil regardless of source order. */
body.drawer-open header.nav { background: var(--ink-bg); }

.nav-drawer__menu {
  display: flex; flex-direction: column; gap: 8px;
  max-width: var(--col-max);
  width: 100%;
  margin: 0 auto;
}
.nav-drawer__menu a {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bone);
  position: relative;
  display: inline-flex; align-items: center; gap: 28px;
  overflow: hidden;
  transition: color 0.4s var(--ease), padding-left 0.5s var(--ease);
  opacity: 0;
  transform: translateY(40px);
  text-transform: uppercase;
}
@media (max-width: 560px) {
  .nav-drawer { padding: 150px 28px 60px 28px; }
  .nav-drawer__menu a { font-size: clamp(24px, 6.4vw, 34px); gap: 16px; }
}
body.drawer-open .nav-drawer__menu a em { font-style: normal; color: var(--gold-soft); }
body.drawer-open .nav-drawer__menu a {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), color 0.4s var(--ease), padding-left 0.5s var(--ease);
}
body.drawer-open .nav-drawer__menu a:nth-child(1) { transition-delay: 0.15s, 0.15s, 0s, 0s; }
body.drawer-open .nav-drawer__menu a:nth-child(2) { transition-delay: 0.22s, 0.22s, 0s, 0s; }
body.drawer-open .nav-drawer__menu a:nth-child(3) { transition-delay: 0.29s, 0.29s, 0s, 0s; }
body.drawer-open .nav-drawer__menu a:nth-child(4) { transition-delay: 0.36s, 0.36s, 0s, 0s; }
body.drawer-open .nav-drawer__menu a:nth-child(5) { transition-delay: 0.43s, 0.43s, 0s, 0s; }
body.drawer-open .nav-drawer__menu a:nth-child(6) { transition-delay: 0.5s, 0.5s, 0s, 0s; }
body.drawer-open .nav-drawer__menu a:nth-child(7) { transition-delay: 0.57s, 0.57s, 0s, 0s; }
body.drawer-open .nav-drawer__menu a:nth-child(8) { transition-delay: 0.64s, 0.64s, 0s, 0s; }
body.drawer-open .nav-drawer__menu a:nth-child(9) { transition-delay: 0.71s, 0.71s, 0s, 0s; }

.nav-drawer__menu a .num {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-soft);
  opacity: 0.6;
  font-style: normal;
  font-weight: 400;
  align-self: flex-start;
  margin-top: 24px;
}
.nav-drawer__menu a:hover { color: var(--gold-soft); padding-left: 24px; }
.nav-drawer__menu a em { font-style: italic; color: var(--gold-soft); }

.nav-drawer__foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
  max-width: var(--col-max);
  width: 100%;
  margin-inline: auto;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-drawer__foot a { color: var(--bone); opacity: 0.7; transition: opacity 0.3s var(--ease); }
.nav-drawer__foot a:hover { opacity: 1; }
.nav-drawer__foot .col h5 {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-soft);
  margin-bottom: 14px;
  opacity: 0.7;
}
.nav-drawer__foot .col--social {
  display: flex; flex-direction: column; align-items: flex-start;
}
.nav-drawer__foot .col--social .drawer-social {
  display: inline-flex; gap: 18px; margin-top: 4px;
}
.nav-drawer__foot .col--social .drawer-social a {
  display: inline-flex; width: 22px; height: 22px;
  opacity: 0.7; transition: opacity 0.3s var(--ease);
  margin-bottom: 0;
}
.nav-drawer__foot .col--social .drawer-social a:hover { opacity: 1; }
.nav-drawer__foot .col--social .drawer-social svg { width: 22px; height: 22px; }
.nav-drawer__foot .col p,
.nav-drawer__foot .col a {
  display: block; font-size: 13px; letter-spacing: 0.02em;
  text-transform: none; margin-bottom: 6px;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  height: 100svh; min-height: 640px;
  overflow: hidden;
  background: var(--ink-bg);
  color: #fff;
}
.hero__media {
  position: absolute; inset: 0;
  transition: opacity 0.6s var(--ease);
}
.hero.is-vibra .hero__media { opacity: 0; }

.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s var(--ease);
  z-index: 1;
}
.hero.is-vibra .hero__video { opacity: 1; }
.hero.is-vibra .hero__indicator { opacity: 0; transition: opacity 0.4s var(--ease); }

.hero__mode {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.hero__mode-btn {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  padding: 14px 28px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
@media (max-width: 700px) {
  .hero__mode-btn { padding: 9px 18px; font-size: 10.5px; }
}
.hero__mode-btn:hover { color: #fff; }
.hero__mode-btn.is-on {
  background: var(--gold-soft);
  color: var(--ink);
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: kenburns 14s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.15) translate(-1%, -1%); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.2) 35%,
    rgba(0,0,0,0.35) 70%,
    rgba(0,0,0,0.8) 100%);
}
/* Lighter scrim used when hero has no overlay text — just enough to keep edges legible */
.hero__scrim--light {
  background: linear-gradient(180deg,
    rgba(51,51,51,0.35) 0%,
    rgba(51,51,51,0.05) 30%,
    rgba(51,51,51,0.05) 70%,
    rgba(51,51,51,0.45) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  height: 100%;
  padding: 0 var(--gutter) 80px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
}

.hero__kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 28px;
}
.hero__kicker .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-soft); display: inline-block; }

.hero__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(56px, 10vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  max-width: 1300px;
  text-transform: uppercase;
}
.hero__title em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold-soft);
}
.hero__title .sm {
  display: block;
  font-size: 0.35em;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 24px;
  font-style: normal;
  font-family: var(--f-sans);
  font-weight: 300;
}

.hero__sub {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 540px;
  opacity: 0.88;
  margin-bottom: 36px;
  line-height: 1.55;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 30px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease);
  white-space: nowrap;
}
.btn--gold   { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover  { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn--nautico { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--nautico:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.btn--ghost  { color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--dark   { background: var(--ink-bg); color: var(--bone); border-color: var(--ink); }
.btn--dark:hover { background: #2a2520; }
.btn--outline { color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink-bg); color: var(--bone); }

.btn__arrow {
  display: inline-flex;
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
}
.btn__arrow::after {
  content: ""; position: absolute; right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.hero__meta {
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  bottom: 28px;
  display: flex; justify-content: space-between; align-items: end;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  color: #fff;
  z-index: 2;
}
.hero__meta span { display: block; }
.hero__indicator {
  display: flex; gap: 8px; align-items: center;
  font-size: 10.5px;
  letter-spacing: 0.3em;
}
.hero__indicator .bar {
  width: 22px; height: 1px; background: currentColor; opacity: 0.4;
  position: relative;
}
.hero__indicator .bar::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold-soft);
  transform-origin: left;
  animation: progress 5.5s linear infinite;
}
@keyframes progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.6;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============== ANNOUNCE / TITLE BAND ============== */
.announce {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(80px, 11vw, 140px) var(--gutter) clamp(40px, 6vw, 80px);
  text-align: left;
}
.announce .shell { max-width: var(--col-max); margin: 0 auto; }
.announce__title {
  margin: 24px 0 56px;
  max-width: 1400px;
}
.announce__title em { font-style: normal; font-weight: 800; color: var(--gold-deep); }
.announce__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--ink-bg);
  color: var(--bone);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee__track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee__track .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============== SECTION SHELL ============== */
.section {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  position: relative;
}
.section--bone { background: var(--bone); color: var(--ink); }
.section--paper { background: var(--paper); color: var(--ink); }
.section--ink { background: var(--ink-bg); color: var(--bone); }
.section--ink .stone-text { color: var(--stone-soft); }

.shell { max-width: var(--col-max); margin: 0 auto; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
  margin-bottom: 24px;
}
.section--ink .kicker { color: var(--gold-soft); }
.kicker .num { color: var(--gold); font-family: var(--f-display); font-weight: 800; letter-spacing: 0; font-size: 13px; }

.h-display {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 5.8vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.h-display em { font-style: normal; font-weight: 800; color: var(--gold-deep); }
.section--ink .h-display em { color: var(--gold-soft); }

.lede {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  max-width: 680px;
}

.body-l {
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
  color: var(--ink);
  opacity: 0.82;
}
.section--ink .body-l { color: var(--bone); opacity: 0.7; }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
}
.section--ink .rule { background: var(--line-light); }

/* ============== INTRO ============== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.intro__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.intro__media img { width: 100%; height: 100%; object-fit: cover; }
.intro__media .tag {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(51,51,51,0.65);
  backdrop-filter: blur(8px);
  color: var(--bone);
  padding: 10px 16px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
}

.intro__text { padding-top: 40px; }
.intro__lede { margin-bottom: 32px; }

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 3vw, 44px);
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.fact__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 44px);
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.fact__num em { color: var(--gold-deep); font-style: normal; font-weight: 800; }
.fact__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

@media (max-width: 860px) {
  .intro { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
}

/* ============== ESPACIOS (spaces grid) ============== */
.spaces-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; margin-bottom: 72px;
}
.spaces-head .body-l { padding-bottom: 12px; }

.spaces {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 18px;
}
.spaces--split {
  grid-template-columns: 5fr 3fr;
  grid-template-areas:
    "r m"
    "r ro"
    "p a"
    "p e";
  gap: 18px;
}
.space {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--bone);
  cursor: pointer;
  border-radius: 2px;
}
.space--tall { grid-row: span 2; aspect-ratio: 4/5; }
.space--wide { aspect-ratio: 16/10; }
.space--big { aspect-ratio: 16/10; }
.space--small { aspect-ratio: 16/9; }
.space--small .space__title { font-size: clamp(20px, 2vw, 30px); }
.space--small .space__body { padding: 24px; }
.space--small .space__num { top: 18px; left: 24px; }

.space__img {
  position: absolute; inset: 0;
  transition: transform 1.2s var(--ease);
}
.space__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.88) saturate(0.95);
  transition: filter 0.6s var(--ease), transform 1.2s var(--ease);
}
.space:hover .space__img img { transform: scale(1.06); filter: brightness(0.74) saturate(1); }

.space__body {
  position: absolute; inset: 0;
  padding: 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
  z-index: 2;
}
.space__body::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,0.62) 100%);
  z-index: -1;
}
.space__num {
  position: absolute; top: 28px; left: 36px;
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
}
.space__tag {
  position: absolute; top: 28px; right: 36px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.space__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.space__title em { font-style: normal; font-weight: 800; color: var(--gold-soft); }
.space__title em { font-style: italic; color: var(--gold-soft); }
.space__desc {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.82;
  max-width: 460px;
  margin-bottom: 22px;
}
.space__cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.space__cta .line {
  width: 32px; height: 1px; background: var(--gold-soft);
  transition: width 0.4s var(--ease);
}
.space:hover .space__cta .line { width: 56px; }

/* Event-formats grid (eventos.html): 3 columns, the feature card spans 2 */
.fmt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fmt-grid .space--feature { grid-column: span 2; }

@media (max-width: 900px) {
  .spaces { grid-template-columns: 1fr; }
  .spaces--split { grid-template-columns: 1fr; grid-template-areas: "r" "p" "m" "ro" "a" "e"; }
  .fmt-grid { grid-template-columns: 1fr; }
  .fmt-grid .space--feature { grid-column: auto; }
  .space--tall { grid-row: auto; aspect-ratio: 4/5; }
  .space--wide { aspect-ratio: 4/5; }
  .space--big { aspect-ratio: 4/5; }
  .space--small { aspect-ratio: 16/10; }
  .spaces-head { flex-direction: column; align-items: flex-start; }
}

/* ============== PEOPLE SLIDER (Chef / Maître — SLVJ-style) ============== */
.people {
  position: relative;
  background: var(--ink-bg);
  color: var(--bone);
  overflow: hidden;
}
.people__slider {
  position: relative;
  min-height: 92svh;
}
.person {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s var(--ease);
}
.person.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.person__media {
  position: relative;
  overflow: hidden;
  background: var(--ink-bg);
}
.person__media image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.person__body {
  display: flex; align-items: center;
  padding: clamp(60px, 9vw, 140px) clamp(40px, 7vw, 120px);
}
.person__inner { max-width: 560px; }
.person__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 82px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-transform: none;
  margin-bottom: 40px;
  color: var(--bone);
}
.person__role {
  display: block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 1;
}
.person__quote {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--bone);
  max-width: 480px;
  margin-bottom: 28px;
}
.person__quote em { font-style: normal; color: var(--gold-soft); }
.person__lede {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--bone);
  opacity: 0.78;
  margin-bottom: 20px;
  max-width: 460px;
}
.person__lede:last-child { margin-bottom: 0; }

.people__controls {
  position: absolute;
  right: clamp(40px, 7vw, 120px);
  bottom: clamp(40px, 5vw, 64px);
  display: flex; align-items: center; gap: 32px;
  z-index: 5;
}
.people__counter {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--bone);
  display: inline-flex; align-items: center; gap: 6px;
}
.people__counter .sep { opacity: 0.4; }
.people__counter .total { opacity: 0.55; }
.people__nav { display: flex; gap: 8px; }
.people__btn {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  color: var(--bone);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.people__btn:hover {
  background: var(--bone);
  border-color: var(--bone);
  color: var(--ink);
}
.people__btn svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .people__slider { min-height: 0; }
  .person { grid-template-columns: 1fr; position: relative; inset: auto; display: none; }
  .person.is-active { display: grid; }
  .person__media { aspect-ratio: 4/5; }
  .people__controls { position: relative; right: auto; bottom: auto; padding: 24px 32px 40px; justify-content: space-between; }
}

/* ============== CHEF ============== */
.chef { position: relative; }
.chef__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
}
.chef__media {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  align-items: end;
}
.chef__media .main {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.chef__media .side {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 60px;
}
.chef__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}

.chef__quote {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 32px 0 28px;
  color: var(--gold-deep);
}
.chef__quote::before {
  content: "“";
  font-size: 1.2em;
  margin-right: 4px;
  opacity: 0.7;
}

.chef__sig {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-top: 24px;
}
.chef__sig .role {
  display: block;
  font-family: var(--f-sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .chef__inner { grid-template-columns: 1fr; }
  .chef__media .side { margin-bottom: 0; }
}

/* ============== AGENDA / EVENTOS ============== */
.agenda-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; margin-bottom: 64px;
}
@media (max-width: 700px) {
  .agenda-head { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 40px; }
  .agenda-head .btn { white-space: normal; }
}
.agenda {
  border-top: 1px solid var(--line-light);
}
.event {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-light);
  position: relative;
  transition: padding-left 0.4s var(--ease);
}
.event:hover { padding-left: 24px; }
.event::before {
  content: "";
  position: absolute; left: -4px; top: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width 0.4s var(--ease);
}
.event:hover::before { width: 14px; }

.event__date {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.event__date .month {
  display: block;
  font-family: var(--f-sans);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.7;
}
.event__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.event__title em { font-style: normal; font-weight: 700; color: var(--gold-soft); }
.event__meta {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.5;
}
.event__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  color: var(--gold-soft);
}
.event__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.event__cta svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.event:hover .event__cta svg { transform: translateX(4px); }

@media (max-width: 1000px) {
  .event {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px 24px;
  }
  .event__date { grid-row: span 3; font-size: 36px; }
  .event__meta, .event__tag, .event__cta { grid-column: 2; }
}

/* ============== AGENDA POSTER GRID ============== */
.agenda-poster__head {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
/* kicker + title grouped in one column so their spacing stays natural (kicker margin)
   instead of being stretched by the description column's height via align-items:end. */
.agenda-poster__head-left { grid-column: 1; }
.agenda-poster__head .body-l { grid-column: 2; padding-bottom: 12px; }

.posters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.poster {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--bone);
  display: block;
  cursor: pointer;
}
.poster__media {
  position: absolute; inset: 0;
  transition: transform 1.2s var(--ease);
}
.poster__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
  transition: filter 0.6s var(--ease), transform 1.2s var(--ease);
}
.poster:hover .poster__media img {
  filter: brightness(0.72) saturate(1);
  transform: scale(1.06);
}
.poster__overlay {
  position: absolute; inset: 0;
  padding: 28px;
  display: flex; flex-direction: column;
  z-index: 2;
}
.poster__overlay::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%);
  z-index: -1;
}
.poster__tag {
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  color: var(--gold-soft);
  font-weight: 500;
}
.poster__date {
  margin-top: auto;
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 12px;
}
.poster__date .num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(56px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bone);
}
.poster__date .month {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
.poster__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 1.7vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  text-transform: uppercase;
  color: var(--bone);
}
.poster__meta {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--bone);
  opacity: 0.75;
  margin-bottom: 20px;
}
.poster__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-soft);
  transition: gap 0.4s var(--ease);
}
.poster__cta svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.poster:hover .poster__cta { gap: 16px; }
.poster:hover .poster__cta svg { transform: translateX(4px); }

@media (max-width: 1100px) {
  .posters { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .agenda-poster__head { grid-template-columns: 1fr; gap: 24px; }
  .agenda-poster__head-left, .agenda-poster__head .body-l { grid-column: 1; }
  .posters { grid-template-columns: 1fr; }
  .poster { aspect-ratio: 4/5; }
}

/* ============== PRENSA ============== */
.prensa__head { margin-bottom: 56px; }
.prensa__rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* ============== VIVE LA EXPERIENCIA (contained slider) ============== */
.vive {
  background: var(--bone);
  color: var(--ink);
}
.vive__slider {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.vive__track {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ink-bg);
}
.vive__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.vive__slide.is-active { opacity: 1; }
.vive__slide image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.vive__dots {
  display: flex; gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.vive__dot {
  width: 28px; height: 2px;
  background: var(--line);
  border: 0; padding: 0;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.vive__dot.is-on { background: var(--ink-bg); }
.vive__text {
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.82;
  max-width: 620px;
  margin: 56px auto 0;
}

/* Visual spacer between consecutive dark sections */
.section-spaced { margin-top: clamp(56px, 9vw, 120px); }
.section-spaced::before {
  content: "";
  display: block;
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 4px; height: 4px;
  background: var(--gold-soft);
  border-radius: 50%;
  opacity: 0.45;
  z-index: 5;
}

/* ============== ESTADO MENTAL (moody fullscreen banner) ============== */
.estado {
  position: relative;
  height: 80svh;
  min-height: 560px;
  background: #0a0908;
  color: #fff;
  overflow: hidden;
}
.estado__media {
  position: absolute; inset: 0;
}
.estado__media image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.estado__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 90%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.65) 100%);
}

/* Slider container */
.estado__slider {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
}
.estado__slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 60px var(--gutter) 120px;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
  pointer-events: none;
}
.estado__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.estado__kicker {
  display: inline-block;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-style: normal;
  margin-bottom: 28px;
  text-shadow: 0 1px 24px rgba(0,0,0,0.55);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease) 0.1s, transform 0.7s var(--ease) 0.1s;
}
.estado__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--bone);
  text-shadow: 0 2px 60px rgba(0,0,0,0.45);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease) 0.25s, transform 0.8s var(--ease) 0.25s;
}
.estado__sub {
  display: block;
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: 0.01em;
  color: var(--bone);
  opacity: 0;
  margin: 0;
  line-height: 1.6;
  text-shadow: 0 1px 30px rgba(0,0,0,0.6);
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease) 0.45s, transform 0.6s var(--ease) 0.45s;
}
.estado__slide .estado__sub:nth-of-type(2) {
  transition-delay: 0.55s;
}
.estado__sig {
  display: inline-block;
  margin-top: 36px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.01em;
  color: var(--gold-soft);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease) 0.7s, transform 0.6s var(--ease) 0.7s;
}
.estado__slide.is-active .estado__kicker,
.estado__slide.is-active .estado__title,
.estado__slide.is-active .estado__sub,
.estado__slide.is-active .estado__sig {
  opacity: 1;
  transform: translateY(0);
}

/* Dots */
.estado__controls {
  position: absolute;
  z-index: 4;
  left: 0; right: 0; bottom: clamp(30px, 5vw, 60px);
  display: flex; justify-content: center;
}
.estado__dots { display: inline-flex; gap: 10px; }
.estado__dot {
  width: 32px; height: 2px;
  background: rgba(255,255,255,0.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s var(--ease), width 0.4s var(--ease);
}
.estado__dot.is-on { background: var(--gold-soft); width: 48px; }
.estado__dot:hover { background: rgba(255,255,255,0.6); }
.prensa {
  padding: clamp(64px, 9vw, 120px) var(--gutter) clamp(36px, 4.5vw, 60px);
  background: var(--paper);
}
/* The Instagram block sits right after press — tighten the seam between them */
.prensa + .section { padding-top: clamp(40px, 5vw, 72px); }
.prensa__label {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 56px;
  opacity: 0.85;
}
.prensa__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(54px, 7vw, 108px);
  margin-bottom: 56px;
}
.prensa__row .prensa__logo {
  padding: 0;
  border: 0;
  min-height: 0;
  color: var(--ink);
  transition: opacity 0.3s var(--ease);
  opacity: 0.95;
}
.prensa__row .prensa__logo:hover { opacity: 1; }
.prensa__row .prensa__logo svg { height: 64px; width: auto; }
/* Real partner logos — black PNGs, optically balanced per logo via --logo-h */
.prensa__row .prensa__logo img {
  height: calc(var(--logo-h, 34px) * 1.4); width: auto; display: block;
  object-fit: contain;
}
.prensa__cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: opacity 0.3s var(--ease);
}
.prensa__cta:hover { opacity: 0.7; }
@media (max-width: 700px) {
  .prensa__row { gap: 32px 28px; }
  .prensa__row .prensa__logo svg { height: 44px; }
  .prensa__row .prensa__logo img { height: calc(var(--logo-h, 34px) * 0.83); }
}
@media (max-width: 1000px) {
  .prensa__rail { grid-template-columns: repeat(3, 1fr); }
  .prensa__logo:nth-child(3n) { border-right: 0; }
  .prensa__logo:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
}

/* ============== INSTAGRAM ============== */
.ig-head { text-align: center; margin-bottom: 64px; }
.ig-head .handle {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-soft);
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.ig-tile {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.ig-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease), filter 0.5s var(--ease);
}
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(51,51,51,0);
  transition: background 0.4s var(--ease);
}
.ig-tile:hover::after { background: rgba(51,51,51,0.25); }
@media (max-width: 800px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============== FINAL CTA ============== */
.final {
  background: var(--ink-bg);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.final__bg {
  position: absolute; inset: 0;
  opacity: 0.4;
}
.final__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) saturate(0.7);
}
.final::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(51,51,51,0.6), rgba(51,51,51,0.85));
}
.final .shell { position: relative; z-index: 2; text-align: center; padding: 60px 0; }
.final .h-display { margin-bottom: 36px; max-width: 1100px; margin-inline: auto; }
.final .body-l { margin: 0 auto 48px; opacity: 0.78; }

/* ============== FOOTER ============== */
.footer {
  background: var(--ink-bg);
  color: var(--bone);
  padding: 56px var(--gutter) 32px;
  position: relative;
}
.footer__brand {
  margin-bottom: 36px;
}

.footer__hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 56px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line-light);
}

.footer__hero-text { display: flex; flex-direction: column; }
.footer__hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.95;
  margin-bottom: 22px;
}
.footer__hero-kicker .num { opacity: 0.55; font-weight: 400; }
.footer__hero-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(52px, 6.2vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  text-transform: none;
}
.footer__hero-title em { font-style: normal; color: var(--gold-soft); }
.footer__hero-lede {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.78;
  max-width: 480px;
  margin-bottom: 30px;
}

.footer__transport {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 0 26px;
  margin: 0 0 28px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.footer__transport li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: baseline;
}
.footer__transport li span {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.9;
}
.footer__transport li p {
  font-size: 13.5px;
  line-height: 1.5;
  opacity: 0.78;
  margin: 0;
}
.footer__transport-coords {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--f-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
  border-bottom: 1px dotted rgba(216, 184, 120, 0.35);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer__transport-coords:hover { color: var(--bone); border-color: var(--bone); }

.footer__hero-cta {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 26px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: var(--gold-soft);
  border-radius: 999px;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.footer__hero-cta:hover { background: var(--bone); transform: translateX(2px); }
.footer__hero-cta .btn__arrow { background: currentColor; }
.footer__hero-cta .btn__arrow::after { border-color: currentColor; }

.footer__hero-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-left: auto;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(216, 184, 120, 0.18);
}
.footer__hero-map iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
  filter: grayscale(1) contrast(1.06) brightness(0.88) sepia(0.22);
}
.footer__map-tint {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(184, 148, 90, 0.22) 0%, rgba(51, 51, 51, 0.0) 45%, rgba(51, 51, 51, 0.45) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(216, 184, 120, 0.06), transparent 65%);
  mix-blend-mode: multiply;
}
.footer__map-pin {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(51, 51, 51, 0.78);
  border: 1px solid rgba(216, 184, 120, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  pointer-events: none;
}
.footer__map-pin-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(216, 184, 120, 0.18);
}

.footer__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-light);
}
.footer__col-soft { opacity: 0.55 !important; font-size: 12px !important; }
.footer__col h4 {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.6;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.78;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.footer__col a:hover { opacity: 1; color: var(--gold-soft); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  gap: 24px; flex-wrap: wrap;
}
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer__social a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--bone);
  opacity: 0.9;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer__social a:hover {
  background: var(--gold-soft);
  color: var(--ink);
  border-color: var(--gold-soft);
  opacity: 1;
  transform: translateY(-2px);
}
.footer__social svg {
  width: 22px; height: 22px;
  display: block;
}

@media (max-width: 1100px) {
  .footer__info { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .footer__hero { grid-template-columns: 1fr; gap: 48px; }
  .footer__hero-map { max-width: 100%; aspect-ratio: 16 / 11; }
}
@media (max-width: 560px) {
  .footer__info { grid-template-columns: 1fr; gap: 32px; }
  .footer__transport li { grid-template-columns: 60px 1fr; gap: 12px; }
}

/* ============== REVEAL UTILITIES ============== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal--lift { transform: translateY(60px); }
.reveal--soft { transform: translateY(20px); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* split text */
.split-line {
  display: block;
  overflow: hidden;
}
.split-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.reveal.is-in .split-line > span { transform: translateY(0); }
.split-line:nth-child(2) > span { transition-delay: 0.1s; }
.split-line:nth-child(3) > span { transition-delay: 0.2s; }
.split-line:nth-child(4) > span { transition-delay: 0.3s; }

/* ============== INNER PAGE HEADER ============== */
.page-hero {
  position: relative;
  height: 78svh; min-height: 680px;
  overflow: hidden;
  color: #fff;
  background: var(--ink-bg);
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(51,51,51,0.55) 0%, rgba(51,51,51,0.25) 40%, rgba(51,51,51,0.75) 100%);
}
.page-hero__inner {
  position: relative; height: 100%;
  padding: 240px var(--gutter) 72px;
  display: flex; flex-direction: column; justify-content: flex-end;
  max-width: var(--col-max); margin: 0 auto;
}
.page-hero__crumb {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 24px;
}
.page-hero__crumb a { opacity: 0.7; }
.page-hero__crumb .sep { margin: 0 12px; opacity: 0.4; }
.page-hero__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.page-hero__title em { font-style: normal; font-weight: 800; color: var(--gold-soft); }
.page-hero__sub {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 24px);
  max-width: 640px;
  opacity: 0.9;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

/* ============== UTILITY ============== */
.gold { color: var(--gold-deep); }
.italic { font-style: italic; }
.text-center { text-align: center; }
.flex { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }

/* ============== CARTA INTERACTIVA ============== */
.carta { position: relative; }
.carta__head {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.carta__head-text {}

/* QR card */
.carta__qr {
  display: flex; align-items: center; gap: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  max-width: 380px;
  justify-self: end;
}
.carta__qr-frame {
  flex-shrink: 0;
  width: 96px; height: 96px;
  background: var(--bone);
  padding: 6px;
  border-radius: 6px;
}
.carta__qr-img { width: 100%; height: 100%; display: block; }
.carta__qr-text h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--bone);
}
.carta__qr-text p {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--bone);
  opacity: 0.75;
}

/* Sticky nav */
.carta__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px;
  background: rgba(51,51,51,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  position: sticky;
  top: 80px;
  z-index: 50;
  margin-bottom: 48px;
}
.carta__chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  color: var(--bone);
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.carta__chip:hover { background: rgba(255,255,255,0.08); }
.carta__chip.is-on {
  background: var(--gold);
  color: var(--ink);
}
.carta__search {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--bone);
}
.carta__search svg { width: 14px; height: 14px; opacity: 0.6; }
.carta__search input {
  border: 0;
  background: transparent;
  font-family: var(--f-sans);
  font-size: 13px;
  color: var(--bone);
  outline: none;
  width: 160px;
}
.carta__search input::placeholder { color: rgba(255,255,255,0.5); }

/* Floating dish preview */
.carta__preview {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 320px; height: 320px;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 200;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  background: var(--ink-bg);
}
.carta__preview.is-on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.carta__preview img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Sections */
.carta__sections { display: flex; flex-direction: column; gap: 80px; }
.carta__section {
  scroll-margin-top: 160px;
}
.carta__section-head {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
}
.carta__section-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
}
.carta__section-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  flex: 1;
  text-transform: uppercase;
}
.carta__section-title em { font-style: normal; color: var(--gold-soft); font-weight: 700; }
.carta__section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-soft);
  opacity: 0.85;
}

/* Dishes */
.carta__dishes { display: flex; flex-direction: column; gap: 4px; }
.carta__dishes--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 80px;
}
.dish-card {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: padding-left 0.4s var(--ease);
  position: relative;
}
.dish-card::before {
  content: "";
  position: absolute; left: 0; top: 50%; width: 0; height: 1px;
  background: var(--gold-soft);
  transform: translateY(-50%);
  transition: width 0.4s var(--ease);
}
.dish-card:hover { padding-left: 24px; }
.dish-card:hover::before { width: 14px; }
.dish-card.is-hidden { display: none; }
.dish-card__main { flex: 1; min-width: 0; }
.dish-card__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-bottom: 4px;
  color: var(--bone);
}
.dish-card__name .dot { color: var(--gold-soft); margin: 0 4px; font-weight: 400; }
.dish-card__desc {
  font-family: var(--f-sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--bone);
  opacity: 0.65;
  margin: 0 0 8px;
}
.dish-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.dish-card__tags > span {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.tag-sig { color: var(--gold-soft) !important; border-color: var(--gold-soft) !important; }
.tag-veg { color: #9fc78a !important; border-color: rgba(159,199,138,0.6) !important; }

.dish-card__side {
  flex-shrink: 0;
  display: flex; align-items: flex-start;
  padding-top: 2px;
}
.dish-card__price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--gold-soft);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.dish-card__price small {
  font-size: 11px;
  margin-left: 2px;
  opacity: 0.75;
  font-weight: 600;
}

/* Foot */
.carta__foot {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.carta__foot p {
  font-size: 12px;
  opacity: 0.55;
  max-width: 480px;
  font-style: italic;
  color: var(--bone);
}

@media (max-width: 900px) {
  .carta__head { grid-template-columns: 1fr; gap: 32px; }
  .carta__qr { justify-self: start; }
  .carta__nav { top: 60px; border-radius: 16px; }
  .carta__search { margin-left: 0; width: 100%; }
  .carta__search input { flex: 1; width: auto; }
  .carta__dishes--two { grid-template-columns: 1fr; gap: 0; }
  .carta__preview { width: 220px; height: 220px; }
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.menu-section h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.menu-section h3 em { font-style: normal; font-weight: 800; color: var(--gold-deep); }
.menu-section .label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 28px; display: block;
}
.dish {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.dish__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
}
.dish__desc {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
  font-family: var(--f-sans);
  font-weight: 300;
}
.dish__price {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: var(--gold-deep);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@media (max-width: 800px) { .menu-grid { grid-template-columns: 1fr; gap: 56px; } }

/* ============== RESERVA FORM ============== */
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.reserve-form {
  background: var(--paper);
  padding: 48px;
  border-radius: 6px;
}
.embed-wrap {
  margin-top: 20px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  min-height: 600px;
}
.embed-wrap iframe { display: block; width: 100%; min-height: 600px; border: 0; }
@media (max-width: 700px) {
  .embed-wrap, .embed-wrap iframe { min-height: 720px; }
}
.reserve-tabs {
  display: flex; gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reserve-tabs::-webkit-scrollbar { display: none; }
.reserve-tab { flex-shrink: 0; }
.reserve-tab {
  padding: 14px 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  color: var(--stone);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.reserve-tab.is-on { color: var(--ink); border-bottom-color: var(--gold); }
@media (max-width: 700px) {
  .reserve-tab { padding: 12px 14px; font-size: 12px; letter-spacing: 0.14em; }
}

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-sans);
  font-size: 16px;
  color: var(--ink);
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field select:focus { border-color: var(--ink); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* RGPD checkbox row — keeps box + text inside one tidy panel */
.rgpd-field { margin-top: 12px; }
.rgpd-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.95;
}
.rgpd-label input[type="checkbox"] {
  width: 18px; height: 18px;
  margin: 2px 0 0 0;
  padding: 0;
  flex: 0 0 18px;
  accent-color: var(--gold);
  border: 0;
}
.rgpd-label a { color: var(--gold-deep); border-bottom: 1px solid currentColor; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  background: transparent;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip.is-on {
  background: var(--ink-bg);
  color: var(--bone);
  border-color: var(--ink);
}

@media (max-width: 1000px) {
  .reserve-grid { grid-template-columns: 1fr; }
  .reserve-form { padding: 32px; }
}
.reserve-grid > * { min-width: 0; }
.reserve-form { min-width: 0; }
@media (max-width: 560px) {
  .reserve-form { padding: 20px; }
}

/* ============== IMAGE-SLOT INTEGRATION ============== */
/* Hero slot: fills the parent .hero__slide so the ken-burns and scrim still work. */
.hero__imgslot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
/* Slot in a media frame (intro, chef, etc.) */
.slot-fill {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.intro__media, .chef__media .main, .chef__media .side {
  position: relative;
  background: var(--paper);
}
/* Re-apply the ken-burns animation to the image-slot itself (its shadow img comes along). */
.hero__slide image-slot {
  animation: kenburns 14s ease-in-out infinite alternate;
  transform-origin: center;
}

/* ============== PLATFORM BADGE ============== */
.platform-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 12px;
  background: var(--ink-bg);
  color: var(--bone);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.platform-badge strong {
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: 0.12em;
}
.platform-badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Panels */
.reserve-form .panel { display: none; }
.reserve-form .panel.is-on { display: block; animation: panelIn 0.4s var(--ease); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Event mini-list inside reserve form */
.event-mini {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.event-mini__date {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}
.event-mini__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.event-mini__price {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  color: var(--gold-deep);
  white-space: nowrap;
  letter-spacing: -0.005em;
}

/* ============== GALLERY ============== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}
.gallery-grid .g {
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-bg);
}
.gallery-grid .g img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease), filter 0.5s var(--ease);
}
.gallery-grid .g:hover img { transform: scale(1.06); filter: brightness(1.08); }
.g--lg { grid-column: span 6; aspect-ratio: 4/5; }
.g--md { grid-column: span 4; aspect-ratio: 1; }
.g--sm { grid-column: span 3; aspect-ratio: 3/4; }
.g--w  { grid-column: span 8; aspect-ratio: 16/10; }
@media (max-width: 900px) {
  .g--lg, .g--md, .g--sm, .g--w { grid-column: span 6; aspect-ratio: 4/5; }
}

/* ============== MAP ============== */
.map-wrap {
  position: relative;
  aspect-ratio: 21/9;
  background: var(--paper);
  overflow: hidden;
  border-radius: 4px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.5) contrast(0.95); }

/* ============== EXPERIENCIAS GRID ============== */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.exp {
  display: block;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.exp:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(51, 51, 51, 0.12);
}
.exp__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink-soft);
}
.exp__media image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.exp:hover .exp__media image-slot {
  transform: scale(1.04);
  transition: transform 1s var(--ease);
}
.exp__body {
  padding: 32px 28px 28px;
  position: relative;
}
.exp__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 4px;
}
.exp__tag {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 14px;
}
.exp__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.exp__title em { font-style: italic; color: var(--gold-deep); }
.exp__desc {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.78;
  margin-bottom: 24px;
  min-height: 66px;
}
.exp__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.exp__price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-deep);
}
.exp__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.exp__cta .line {
  width: 24px; height: 1px; background: var(--ink-bg);
  transition: width 0.4s var(--ease);
}
.exp:hover .exp__cta .line { width: 48px; background: var(--gold-deep); }

@media (max-width: 1000px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp__desc { min-height: 0; }
}

/* ============== HOME · EXPERIENCIAS BAND ============== */
.exp-band {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.exp-band__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: 64px;
}
.exp-band__rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-bottom: 4px;
}
.exp-band__rail.is-grabbing { cursor: grabbing; }
.exp-band__rail::-webkit-scrollbar { display: none; }
.exp-band__card {
  position: relative;
  /* exactamente 4 visibles a tamaño original (3 huecos de 16px); el resto se
     revela arrastrando — al añadir más locales, scrollan solos. */
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
  aspect-ratio: 3/4;
  overflow: hidden;
  color: #fff;
  background: var(--ink-bg);
  border-radius: 0;
  user-select: none;
  -webkit-user-drag: none;
}
.exp-band__card img { -webkit-user-drag: none; user-select: none; }
.exp-band__card image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.exp-band__card image-slot img,
.exp-band__card image-slot::part(img) {
  filter: brightness(0.72) saturate(0.85) contrast(1.05);
  transition: filter 0.6s var(--ease), transform 1.2s var(--ease);
}
.exp-band__card:hover image-slot img {
  filter: brightness(0.58) saturate(1) contrast(1.05);
  transform: scale(1.05);
}
.exp-band__card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}
.exp-band__card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
  z-index: 2;
}
.exp-band__card-tag {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 10px;
  display: block;
}
.exp-band__card-body h4 + .exp-band__card-tag {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--gold-soft);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.exp-band__card:hover .exp-band__card-tag { opacity: 0.95; transform: translateY(0); }

/* "Descubrir" con línea, igual que las cards de Espacios */
.exp-band__card-cta {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
}
.exp-band__card-cta .line {
  width: 32px; height: 1px; background: var(--gold-soft);
  transition: width 0.4s var(--ease);
}
.exp-band__card:hover .exp-band__card-cta .line { width: 56px; }
.exp-band__card h4 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.exp-band__card h4 em { font-style: normal; color: inherit; }
.exp-band__card-num {
  position: absolute; top: 18px; left: 24px; z-index: 2;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-soft);
}
@media (max-width: 1000px) {
  .exp-band__card { flex-basis: calc((100% - 16px) / 2); }
  .exp-band__head { grid-template-columns: 1fr; }
}

/* ============== SMALL TEXT ============== */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.section--ink .eyebrow { color: var(--gold-soft); }

/* ============== mobile gutters ============== */
@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  /* Subtle veil behind the white logo + hamburger before scrolling, so they stay
     legible over bright hero photos. Same footprint as the scrolled nav bar; very
     light — the solid is-scrolled background takes over once you scroll. */
  .nav:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(51,51,51,0.40) 0%, rgba(51,51,51,0.16) 62%, rgba(51,51,51,0) 100%);
  }
  .nav__cta { padding: 8px 16px; font-size: 10.5px; }
  .hero__inner { padding: 0 20px 40px; }
  .scroll-cue { display: none; }
  /* Subtle top + bottom darkening so the white logo, Reservar and Calma/Vibra
     stay legible over a bright hero photo before scrolling. Middle stays clear. */
  .hero__scrim--light {
    background: linear-gradient(180deg,
      rgba(51,51,51,0.64) 0%,
      rgba(51,51,51,0.36) 16%,
      rgba(51,51,51,0.06) 40%,
      rgba(51,51,51,0.04) 64%,
      rgba(51,51,51,0.52) 100%);
  }
  /* Keep the meta bar visible so the Calma/Vibra toggle stays reachable on
     mobile. The slide counter is hidden — it's editorial flourish that adds
     more noise than value at this width. */
  .hero__meta { display: flex; justify-content: center; bottom: 22px; }
  .hero__indicator { display: none; }
}

/* =============== LEGAL PAGES =============== */
.legal-hero {
  background: var(--ink-bg);
  color: var(--bone);
  padding: 260px var(--gutter) 80px;
  position: relative;
}
.legal-hero .shell { max-width: 1200px; margin: 0 auto; }
.legal-hero__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 18px 0 14px;
  text-transform: none;
}
.legal-hero__meta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.85;
}
.legal-hero .page-hero__crumb a { color: rgba(255,255,255,0.75); }
.legal-hero .page-hero__crumb a:hover { color: var(--gold-soft); }
.legal-hero .page-hero__crumb .sep { margin: 0 10px; opacity: 0.45; }

.legal {
  background: var(--bone);
  color: var(--ink);
  padding: 80px 0 120px;
}
.legal__shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.legal__block { margin-bottom: 56px; }
.legal__block:last-child { margin-bottom: 0; }
.legal__block h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  text-transform: none;
}
.legal__block h3 {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin: 28px 0 12px;
  color: var(--ink);
}
.legal__block p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
  color: #2a2520;
}
.legal__block p strong { font-weight: 600; color: var(--ink); }
.legal__block a {
  color: var(--gold-deep);
  border-bottom: 1px solid currentColor;
  transition: color 0.3s var(--ease);
}
.legal__block a:hover { color: var(--ink); }
.legal__block ul:not(.legal__data) {
  margin: 8px 0 18px 22px;
  padding: 0;
}
.legal__block ul:not(.legal__data) li {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 8px;
  color: #2a2520;
}

.legal__data {
  list-style: none;
  margin: 12px 0 0;
  padding: 24px 28px;
  background: #f6f3ed;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}
.legal__data li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  font-size: 14.5px;
}
.legal__data li:last-child { border-bottom: 0; }
.legal__data li span {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  align-self: center;
}
.legal__data li strong { font-weight: 500; color: var(--ink); }
.legal__data li a {
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.legal__data li a:hover { color: var(--gold-deep); }

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 13.5px;
}
.legal__table thead th {
  text-align: left;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  padding: 12px 14px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.18);
}
.legal__table tbody td {
  padding: 14px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.08);
  vertical-align: top;
  line-height: 1.55;
}
.legal__table tbody tr:last-child td { border-bottom: 0; }
.legal__table tbody td:first-child {
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .legal-hero { padding: 140px var(--gutter) 56px; }
  .legal__data li { grid-template-columns: 1fr; gap: 2px; padding: 8px 0; }
  .legal__data li span { margin-bottom: 2px; }
  .legal__table { font-size: 12.5px; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .legal__table thead th, .legal__table tbody td { padding: 10px 8px; }
}

/* =============== COOKIE BANNER =============== */
.cookie-banner {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  display: none;
  background: var(--ink-bg);
  color: var(--bone);
  border: 1px solid rgba(216, 184, 120, 0.25);
  border-radius: 4px;
  padding: 22px 26px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.55);
  width: 380px;
  max-width: calc(100vw - 48px);
  font-family: var(--f-sans);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.cookie-banner.is-visible {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.cookie-banner__text {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.78;
  margin-bottom: 16px;
}
.cookie-banner__text a {
  color: var(--gold-soft);
  border-bottom: 1px solid currentColor;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner__btn {
  appearance: none;
  border: 0;
  padding: 11px 22px;
  font-family: inherit;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cookie-banner__btn--accept {
  background: var(--gold-soft);
  color: var(--ink);
}
.cookie-banner__btn--accept:hover { background: var(--bone); }
.cookie-banner__btn--reject {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(255,255,255,0.32);
}
.cookie-banner__btn--reject:hover { border-color: var(--bone); background: rgba(255,255,255,0.06); }
.cookie-banner__btn--config {
  background: transparent;
  color: rgba(255,255,255,0.6);
  padding: 11px 12px;
  text-decoration: none;
}
.cookie-banner__btn--config:hover { color: var(--bone); }

@media (max-width: 640px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; width: auto; padding: 18px 18px; }
  .cookie-banner__actions { gap: 8px; }
  .cookie-banner__btn { padding: 10px 16px; font-size: 10px; }
}

/* Map placeholder when cookies rejected */
.footer__hero-map.is-blocked iframe { display: none; }
.footer__hero-map.is-blocked .footer__map-tint { display: none; }
.footer__map-placeholder {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: var(--ink-soft);
  color: var(--bone);
}
.footer__hero-map.is-blocked .footer__map-placeholder { display: flex; }
.footer__map-placeholder p {
  font-size: 13px; line-height: 1.55;
  opacity: 0.7;
  max-width: 260px;
  margin: 0;
}
.footer__map-placeholder button {
  appearance: none; border: 0;
  background: var(--gold-soft);
  color: var(--ink);
  padding: 10px 20px;
  font-family: inherit;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.footer__map-placeholder button:hover { background: var(--bone); }


/* ============================================================
   REBRAND GLOBAL (aprobado en home de prueba)
   Crema #F5F1EC · Taupe #AFA187 · negro 80% en fondos · Libertinus
   ============================================================ */
/* Ledes y kickers/antetítulos se quedan en Manrope (no son títulos) */
.lede, .kicker, .kicker .num { font-family: var(--f-sans); }
/* Titulares en Regular 400 (la fuente de marca) */
.h-display, .h-display em,
.announce__title, .announce__title em,
.space__title, .space__title em,
.poster__title, .poster__date .num,
.estado__title, .estado__sig,
.footer__hero-title, .footer__hero-title em,
.fact__num, .fact__num em,
.page-hero__title, .page-hero__title em,
.legal-hero__title, .legal__block h2,
.menu-section h3, .menu-section h3 em,
.carta__section-title, .carta__section-title em,
.exp__title, .exp__title em, .exp__num,
.event__title, .event__date, .event-mini__title,
.exp-band__card h4, .exp-band__card-num,
.dish-card__name, .dish__name { font-weight: 400; }
/* Fixes de legibilidad sobre fondos oscuros */
.final .body-l { color: var(--bone); }
.space[style*="grid-area: p"] .space__title em { color: var(--bone); }

/* Sección chef/equipo (home + restauración): títulos con la política del
   rebrand — Libertinus Regular 400 (igual que el resto de titulares). */
.person__title { font-family: var(--f-display); font-weight: 400; }
.person__quote { font-family: var(--f-display); font-weight: 400; }

/* CTA final: oscuro cálido original (no el gris 80%) — la foto pide negro profundo */
.final { background: var(--ink); }
.final::after { background: linear-gradient(180deg, rgba(11,10,8,0.6), rgba(11,10,8,0.85)); }

/* Sección chef/maître (.people): fondo negro original, no el gris 80% */
.people { background: var(--ink); }

/* Secciones claras consecutivas (mismo tono crema): reducir el doble hueco
   crema, igual que el espaciado aplicado tras la franja de prensa. */
.section--bone + .section--paper, .section--paper + .section--bone,
.section--bone + .section--bone, .section--paper + .section--paper {
  padding-top: clamp(40px, 5vw, 72px);
}
.section--bone:has(+ .section--paper), .section--paper:has(+ .section--bone),
.section--bone:has(+ .section--bone), .section--paper:has(+ .section--paper) {
  padding-bottom: clamp(40px, 5vw, 72px);
}

/* Hero slots 3 y 5 (fotos NUDO x BERLIN): el logo va abajo-derecha; anclamos el
   recorte y el zoom kenburns a esa esquina para que NUNCA se corte. */
.hero__media .hero__slide:nth-child(3) img,
.hero__media .hero__slide:nth-child(5) img {
  object-position: right bottom;
  transform-origin: right bottom;
  animation-name: kenburns-br;
}
@keyframes kenburns-br {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.12); }
}

/* QA-320: móviles muy estrechos (≤360px, iPhone SE) — evitar overflow horizontal
   de la pestaña larga de reservas y de botones con texto largo. */
@media (max-width: 360px) {
  .reserve-tab { font-size: 11px; padding: 12px 9px; letter-spacing: 0.04em; }
  .btn, .btn--ghost, .btn--outline, .btn--dark { font-size: 12px; max-width: 100%; }
}

/* MASALLA-MOBILE: nombres de hotel más largos — en móvil reducimos título y
   padding del card para que quepan en ≤2 líneas sin apilarse palabra a palabra. */
@media (max-width: 700px) {
  .exp-band__card-body { padding: 16px; }
  .exp-band__card-body h4 { font-size: 16px; line-height: 1.12; }
}
