/* ── Variables ───────────────────────────────────────────────── */
:root {
  --bg-0:         #080808;
  --bg-1:         #0f0f0f;
  --bg-2:         #141414;
  --bg-3:         #1c1c1c;

  --gold:         #C9A84C;
  --gold-light:   #E5C96A;
  --gold-dark:    #9A7A2E;
  --gold-rgb:     201, 168, 76;

  --white:        #ffffff;
  --off-white:    #f5f4f0;
  --text-main:    #ede9e0;
  --text-sub:     #8a8680;
  --text-muted:   #4a4643;

  --border-gold:  rgba(201,168,76,.25);
  --border-dim:   rgba(255,255,255,.07);

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Outfit', system-ui, sans-serif;

  --ease:      0.3s ease;
  --ease-slow: 0.65s cubic-bezier(0.22,1,0.36,1);

  --max-w: 1280px;
  --sp:    clamp(70px, 10vw, 110px);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }

body {
  background: var(--bg-0);
  color: var(--text-main);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ── Tipografía global ───────────────────────────────────────── */
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold-light); }

.label-tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.body-text {
  font-size: .95rem;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 18px;
}
.body-text.centered-text { text-align: center; }

/* ── Utilidades ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}
.section-pad { padding: var(--sp) 0; }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }

.gold-rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px 0;
}
.gold-rule.centered { margin: 20px auto; }

/* ── Botones ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.07);
  opacity: 0;
  transition: opacity var(--ease);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: #000;
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(var(--gold-rgb),.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: rgba(var(--gold-rgb),.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
}

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease-slow), transform .8s var(--ease-slow);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@keyframes fadeUp   { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes heroPan  { from{transform:scale(1.06)} to{transform:scale(1.13)} }
@keyframes scrollPulse { 0%,100%{opacity:.9;transform:scaleY(1)} 50%{opacity:.2;transform:scaleY(.5)} }
@keyframes marquee  { from{transform:translateX(0)} to{transform:translateX(-50%)} }


/* ════════════════════════════════════════════
   NAVEGACIÓN
   ════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  transition: background var(--ease-slow), border-color var(--ease-slow), padding var(--ease-slow);
}
.site-header.scrolled,
.site-header.menu-open {
  background: rgba(8,8,8,.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-gold);
}

.navbar { padding: 26px 0; transition: padding var(--ease-slow); }
.site-header.scrolled .navbar { padding: 16px 0; }

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo, .footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.logo-text {
  font-family: var(--ff-serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold);
  transition: color var(--ease);
}
.nav-logo:hover .logo-text, .footer-logo:hover .logo-text { color: var(--gold-light); }

.logo-tagline {
  font-family: var(--ff-sans);
  font-size: .5rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-link {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-sub);
  position: relative;
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Nav CTA */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-reserve { padding: 9px 22px; font-size: .68rem; }
.nav-delivery { padding: 9px 22px; font-size: .68rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }


/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Fondo :
   background-image: url('../../assets/images/hero/hero-bg.jpg'); */
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0a0d0a;
  background-image:
    radial-gradient(ellipse 80% 60% at 65% 55%, rgba(30,25,5,.7) 0%, transparent 70%),
    linear-gradient(160deg, #0a0d0a 0%, #12100a 50%, #0d0a05 100%);
  animation: heroPan 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
  z-index: 1;
}

/* Degradados suaves encima del fondo */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.45) 55%,
    rgba(0,0,0,.68) 100%
  );
}
.hero-vignette-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(8,8,8,.75), transparent);
}
.hero-vignette-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,.6) 60%, transparent 100%);
}

/* Contenido hero */
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 80px;
  padding-bottom: 160px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 56px);
  padding-right: clamp(20px, 5vw, 56px);
}
.hero-text-col {
  max-width: 56%;
  position: relative;
  z-index: 3;
  text-align: left;
}
.hero .hero-text-center {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero .hero-text-right {
  text-align: right !important;
  margin-left: auto !important;
}
.hero .hero-text-center .hero-eyebrow {
  justify-content: center !important;
  width: 100% !important;
}
.hero .hero-text-right .hero-eyebrow {
  justify-content: flex-end !important;
  width: 100% !important;
}
.hero .hero-text-center .eyebrow-line,
.hero .hero-text-right .eyebrow-line {
  margin-bottom: 8px !important;
}
.hero .hero-text-center .hero-desc {
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero .hero-text-right .hero-desc {
  margin-left: auto !important;
  margin-right: 0 !important;
}
.hero .hero-text-center .hero-actions {
  justify-content: center !important;
}
.hero .hero-text-right .hero-actions {
  justify-content: flex-end !important;
}
.hero-dish-col {
  position: absolute;
  right: 2%;
  top: 0;
  bottom: 80px;
  width: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: visible;
}
.hero-dish-left {
  right: auto !important;
  left: 2% !important;
}
.hero-dish-right {
  right: 2% !important;
  left: auto !important;
}
.hero-dish {
  width: clamp(360px, 50vw, 780px);
  object-fit: contain;
  object-position: center center;
  margin-bottom: 0;
  margin-right: 0;
  filter:
    drop-shadow(0 40px 80px rgba(0,0,0,.85))
    drop-shadow(0 12px 30px rgba(0,0,0,.7))
    drop-shadow(-8px 20px 40px rgba(0,0,0,.5));
  animation: dishEntrance 1s cubic-bezier(.22,.61,.36,1) .6s both;
  user-select: none;
  pointer-events: none;
}
@keyframes dishEntrance {
  from { opacity: 0; transform: translateX(50px) scale(.93); }
  to   { opacity: 1; transform: translateX(0)    scale(1);   }
}
@media (max-width: 900px) {
  .hero-text-col { max-width: 100%; }
  .hero-text-center { margin-left: auto !important; margin-right: auto !important; }
  .hero-text-right { margin-left: 0 !important; }
  .hero-dish-col {
    top: auto;
    bottom: 80px;
    width: 80%;
    right: -10%;
    height: 55%;
    align-items: flex-end;
  }
  .hero-dish-left {
    right: auto !important;
    left: -10% !important;
  }
  .hero-dish-right {
    right: -10% !important;
    left: auto !important;
  }
  .hero-dish {
    width: clamp(220px, 70vw, 420px);
    margin-bottom: 0;
    mix-blend-mode: luminosity;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .7s ease .3s forwards;
}
.eyebrow-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp .8s ease .5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-title-accent {
  display: inline-block;
  font-style: italic;
  color: var(--gold-light);
  position: relative;
}
.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  max-width: 500px;
  line-height: 1.95;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .8s ease .7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s ease .9s forwards;
}

.hero-services-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(8,8,8,.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  opacity: 0;
  animation: fadeIn .8s ease 1.2s forwards;
}
.hero-services-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 0;
  flex-wrap: wrap;
}
.hs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 30px;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-sub);
  transition: color var(--ease);
}
.hs-item:hover { color: var(--gold-light); }
.hs-item i { color: var(--gold); font-size: .75rem; }
.hs-divider {
  width: 1px;
  height: 22px;
  background: var(--border-dim);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 80px;
  right: clamp(20px, 5vw, 56px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.hero-scroll-hint span {
  font-size: .58rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-bar {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease infinite;
}


/* ════════════════════════════════════════════
   EVENTOS Y PROMOCIONES
   ════════════════════════════════════════════ */
.eventos {
  background: var(--bg-1);
  padding-top: clamp(46px, 7vw, 88px);
  padding-bottom: clamp(38px, 6vw, 70px);
}

.eventos-head {
  margin-bottom: 20px;
}

.eventos-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eventos-carousel-wrap {
  position: relative;
}

.eventos-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 24vw, 280px);
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 0;
  scrollbar-width: none;
}

.eventos-carousel::-webkit-scrollbar {
  display: none;
}

.evento-item {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border-dim);
  background: var(--bg-2);
  scroll-snap-align: start;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.evento-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .45s ease;
}

.evento-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 14px 38px rgba(0,0,0,.45);
}

.evento-item:hover img {
  transform: scale(1.04);
}

.eventos-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-dim);
  background: rgba(8,8,8,.78);
  color: var(--off-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all var(--ease);
}

.eventos-nav.prev {
  left: -14px;
}

.eventos-nav.next {
  right: -14px;
}

.eventos-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(8,8,8,.96);
}


/* ════════════════════════════════════════════
   EXPERIENCIAS DESTACADAS
   ════════════════════════════════════════════ */
.signature {
  background: var(--bg-0);
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.sig-card {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  box-shadow: 0 14px 34px rgba(0,0,0,.4);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.sig-card-link {
  display: block;
  padding: 12px 12px 14px;
}

.sig-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 12px;
}

.sig-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.sig-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 5px;
}

.sig-desc {
  font-size: .83rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 10px;
}

.sig-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px) rotate(-.2deg);
  box-shadow: 0 22px 48px rgba(0,0,0,.56);
}

.sig-card:hover .sig-card-media img {
  transform: scale(1.04);
}

.sig-card-1 {
  transform: translateY(0) rotate(-.6deg);
}

.sig-card-2 {
  transform: translateY(30px) rotate(.8deg);
}

.sig-card-3 {
  transform: translateY(-18px) rotate(-.3deg);
}


/* ════════════════════════════════════════════
   ACTION LINK
   ════════════════════════════════════════════ */
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--ease), color var(--ease);
}
.sc-link i { font-size: .6rem; transition: transform var(--ease); }
.sc-link:hover { color: var(--gold-light); gap: 15px; }
.sc-link:hover i { transform: translateX(4px); }


/* ════════════════════════════════════════════
   GALERÍA PREVIEW
   ════════════════════════════════════════════ */
.novedades { background: var(--bg-1); }

.gallery-preview { background: var(--bg-0); }

.gallery-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}

/* Mosaico tipo editorial */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px 260px;
  gap: 3px;
}
.gm-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--border-dim);
  cursor: pointer;
}
.gm-item.gm-large { grid-column: span 5; grid-row: span 2; }
.gm-item:nth-child(2) { grid-column: span 4; }
.gm-item:nth-child(3) { grid-column: span 3; }
.gm-item:nth-child(4) { grid-column: span 3; }
.gm-item:nth-child(5) { grid-column: span 4; }

.gm-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(var(--gold-rgb),.25);
}
.gm-placeholder i { font-size: 1.8rem; }
.gm-placeholder span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
}
.gm-placeholder span small {
  display: block;
  font-size: .58rem;
  color: var(--text-muted);
  letter-spacing: .1em;
  margin-top: 4px;
}

/* Real images  */
.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.gm-item:hover img { transform: scale(1.06); }

.gm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .4s ease;
}
.gm-overlay i {
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(.6);
  transition: all .4s ease;
}
.gm-item:hover .gm-overlay { background: rgba(0,0,0,.45); }
.gm-item:hover .gm-overlay i { opacity: 1; transform: scale(1); }

/* Label bottom-left al hover */
.gm-item::before {
  content: attr(data-label);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all .4s ease;
}
.gm-item:hover::before { opacity: 1; transform: translateY(0); }


/* ════════════════════════════════════════════
   CTA RESERVACIONES
   ════════════════════════════════════════════ */
.cta-reserva {
  position: relative;
  padding: var(--sp) 0;
  text-align: center;
  overflow: hidden;
  background: var(--bg-1);
}
.cta-reserva-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(var(--gold-rgb),.055) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(var(--gold-rgb),.03) 0%, transparent 60%);
}
.cta-reserva-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-reserva-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}


/* ════════════════════════════════════════════
   SUCURSALES
   ════════════════════════════════════════════ */
.branches { background: var(--bg-0); }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 16px;
}
.branch-card {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  padding: 44px 36px;
  position: relative;
  transition: background var(--ease);
}
.branch-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height .45s ease;
}
.branch-card:hover { background: var(--bg-3); }
.branch-card:hover::before { height: 100%; }

.branch-tag {
  display: inline-block;
  padding: 3px 11px;
  border: 1px solid var(--border-gold);
  background: rgba(var(--gold-rgb),.06);
  color: var(--gold);
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.branch-name {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}

.branch-media-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border-dim);
  margin-bottom: 20px;
  background: var(--bg-3);
}

.branch-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.branch-card:hover .branch-media {
  transform: scale(1.03);
}
.branch-details { margin-bottom: 28px; }
.branch-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .82rem;
  color: var(--text-sub);
  margin-bottom: 12px;
}
.branch-detail-row i {
  color: var(--gold);
  font-size: .72rem;
  margin-top: 4px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.sucursales-page {
  background: var(--bg-0);
}

.sucursales-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-dim);
}

.sucursales-count {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}

.sucursales-count-val {
  font-family: var(--ff-serif);
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: var(--gold);
}

.sucursales-count-lbl {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.sucursales-full-grid {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.branch-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
}

.branch-service-item {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-dim);
  background: rgba(255,255,255,.03);
  color: var(--text-sub);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-branch-action {
  padding: 10px 16px;
  font-size: .66rem;
  letter-spacing: .15em;
}

.sucursales-empty {
  border: 1px dashed var(--border-dim);
  padding: 80px 20px;
  text-align: center;
  color: var(--text-muted);
}

.sucursales-empty i {
  font-size: 2.6rem;
  color: rgba(var(--gold-rgb), .4);
  margin-bottom: 12px;
}


/* ════════════════════════════════════════════
   SLOGANS STRIP
   ════════════════════════════════════════════ */
.slogans-strip {
  background: var(--bg-1);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 16px 0;
  overflow: hidden;
}
.slogans-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.slogans-strip:hover .slogans-track { animation-play-state: paused; }
.slogan-sep { color: var(--gold); font-size: .8rem; flex-shrink: 0; }


/* ════════════════════════════════════════════
   COMING SOON PAGE
   ════════════════════════════════════════════ */
.coming-soon-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.coming-soon-inner {
  max-width: 600px;
}
.coming-soon-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}


/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-gold);
}
.footer-main { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
}

.footer-brand-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: .78rem;
  transition: all var(--ease);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb),.07);
}

.footer-heading {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .84rem;
  color: var(--text-muted);
  transition: color var(--ease), padding-left var(--ease);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }

.footer-contact { display: flex; flex-direction: column; gap: 0; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .84rem;
  color: var(--text-muted);
  margin-bottom: 13px;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: .72rem;
  margin-top: 4px;
  flex-shrink: 0;
  width: 13px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: var(--text-muted);
}
.footer-legal { font-style: italic; }


/* ════════════════════════════════════════════
   RESPONSIVE — Tablet
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .eventos-carousel {
    grid-auto-columns: minmax(210px, 34vw);
  }

  .eventos-nav.prev { left: -6px; }
  .eventos-nav.next { right: -6px; }

  .signature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .sig-card-1,
  .sig-card-2,
  .sig-card-3 {
    transform: none;
  }

  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 40px; }

  .gallery-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 260px 200px;
  }
  .gm-item.gm-large { grid-column: span 3; grid-row: span 2; }
  .gm-item:nth-child(2) { grid-column: span 3; }
  .gm-item:nth-child(3) { grid-column: span 2; }
  .gm-item:nth-child(4) { grid-column: span 2; }
  .gm-item:nth-child(5) { grid-column: span 2; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Mobile
   ════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav mobile */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    background: #080808;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    z-index: 9999;
    overflow-y: auto;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-link {
    font-size: 1.4rem;
    letter-spacing: .2em;
    color: var(--white) !important;
    display: block;
    padding: 10px;
  }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 10000;
  }
  .nav-reserve { display: none; }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.8rem); }
  .hero-desc   { font-size: .9rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-scroll-hint { display: none; }
  .hs-divider { display: none; }
  .hero-services-inner { justify-content: flex-start; gap: 0; overflow-x: auto; }

  /* Sections */
  .sucursales-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
  }
  .sucursales-count { align-items: flex-start; }
  .sucursales-full-grid { grid-template-columns: 1fr; }

  .eventos-head { margin-bottom: 14px; }
  .eventos-carousel {
    grid-auto-columns: minmax(210px, 72vw);
    gap: 10px;
  }
  .eventos-nav { display: none; }

  .signature-grid { grid-template-columns: 1fr; gap: 16px; }
  .sig-card-link { padding: 10px 10px 12px; }
  .sig-card-media { aspect-ratio: 16 / 10; margin-bottom: 10px; }

  .branches-grid   { grid-template-columns: 1fr; }

  .gallery-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gm-item.gm-large { grid-column: span 2; grid-row: span 1; }
  .gm-item:nth-child(n) { grid-column: span 1; }

  .gallery-preview-header { flex-direction: column; align-items: flex-start; gap: 18px; }

  .cta-reserva-btns { flex-direction: column; align-items: stretch; }
  .cta-reserva-btns .btn { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ════════════════════════════════════════════
   PAGE BANNER 
   ════════════════════════════════════════════ */
.page-banner {
  position: relative;
  height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 88px;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-color: #0d0a06;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
}
.page-banner:hover .page-banner-bg { transform: scale(1.03); }
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.15) 40%,
    rgba(0,0,0,.55) 70%,
    rgba(0,0,0,.92) 100%
  );
}
.page-banner-content {
  position: relative;
  z-index: 2;
  padding-bottom: 44px;
}
.page-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.page-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 10px;
}
.page-subtitle {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  max-width: 540px;
}



/* ════════════════════════════════════════════
   MENU NAV — barra de categorías 
   ════════════════════════════════════════════ */
.menu-nav {
  position: sticky;
  top: var(--site-header-height, 64px);
  z-index: 910;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border-dim);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.menu-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-nav-inner::-webkit-scrollbar { display: none; }
.menu-nav-item {
  flex-shrink: 0;
  padding: 14px 20px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-sub);
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.menu-nav-item:hover,
.menu-nav-item.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}


/* ════════════════════════════════════════════
   MENU PAGE — secciones y cards
   ════════════════════════════════════════════ */
.menu-page { padding-bottom: var(--sp); }
.menu-page .container { padding-top: 60px; }

.menu-section { margin-bottom: 72px; scroll-margin-top: calc(var(--site-header-height, 64px) + 16px); }

/* ====== MENU CARD  ====== */
.menu-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.02));
  flex-shrink: 0;
  margin-bottom: 12px;
}
.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .45s ease;
}
.menu-card:hover .menu-card-image img { transform: scale(1.03); }

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.menu-section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--gold-light);
  white-space: nowrap;
}
.menu-section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border-gold), transparent);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.menu-card {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: border-color var(--ease), transform var(--ease);
}
.menu-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.menu-card-name {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.3;
  margin-bottom: 6px;
}
.menu-card-desc {
  font-size: .8rem;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.6;
}
.menu-card-footer {
  border-top: 1px solid var(--border-dim);
  padding-top: 12px;
}
.menu-card-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
}
.menu-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}
.menu-price--alt { color: var(--text-sub); font-size: .95rem; }
.menu-price-label {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.menu-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-sub);
}
.menu-empty i { font-size: 3rem; margin-bottom: 16px; opacity: .3; }

.menu-cta {
  text-align: center;
  padding: 60px 20px 20px;
  border-top: 1px solid var(--border-dim);
  margin-top: 40px;
}
.menu-cta p {
  font-size: 1.1rem;
  color: var(--text-sub);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .page-banner { height: 320px; }
  .menu-nav { top: var(--site-header-height, 56px); }
  .menu-nav-item { padding: 12px 14px; font-size: .65rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-section { margin-bottom: 48px; }
}

/* ================================================================
   NOVEDADES
   ================================================================ */
.novedades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.novedad-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.novedad-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  transition: transform .3s ease, box-shadow .3s ease;
}
.novedad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.55);
}

.novedad-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Imagen */
.novedad-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 16/9;
  background: #0d0d0d;
}
.novedad-featured .novedad-img-wrap {
  aspect-ratio: 4/3;
}
.novedad-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.novedad-card:hover .novedad-img-wrap img {
  transform: scale(1.05);
}
.novedad-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#1a1610,#0d0d0d);
  color: var(--border);
  font-size: 2.5rem;
}
.novedad-featured .novedad-img-placeholder { font-size: 3.5rem; }

.novedad-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  pointer-events: none;
}

/* Badge */
.novedad-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #000;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.novedad-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.novedad-featured .novedad-body { padding: 22px 24px 26px; }

.novedad-fecha {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.novedad-titulo {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0;
}
.novedad-featured .novedad-titulo { font-size: 1.3rem; }

.novedad-desc {
  font-size: .82rem;
  color: var(--text-sub);
  line-height: 1.55;
  margin: 0;
  flex: 1;
  /* Limitar a 3 líneas */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.novedad-featured .novedad-desc { -webkit-line-clamp: 5; }

.novedad-link {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 10px;
  transition: gap .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.novedad-card:hover .novedad-link { gap: 10px; }

/* Responsive */
@media (max-width: 1200px) {
  .novedades-grid { grid-template-columns: repeat(3, 1fr); }
  .novedad-featured { grid-column: span 2; }
}
@media (max-width: 768px) {
  .novedades-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .novedad-featured { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 520px) {
  .novedades-grid { grid-template-columns: 1fr; }
  .novedad-featured { grid-column: span 1; }
}

.checkout-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 35px 20px 50px;
  display: grid;
  grid-template-columns: 1fr;
}

.checkout-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

.page-banner { height: 440px; }
.page-banner .page-banner-content { padding-top: 80px; padding-bottom: 40px; }

.checkout-container > .container { padding-top: 28px; padding-bottom: 60px; }

.checkout-content .checkout-form-section { max-width: 740px; }

.checkout-form-section h2 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 1.6rem;
  color: var(--text);
  font-family: var(--ff-serif);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.form-section {
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-radius: 6px;
  padding: 18px;
  margin-bottom: 18px;
}

.form-section legend {
   font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  width: 100%;
  margin-bottom: 12px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card-bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.2s;
}

.radio-label:hover {
  background: rgba(201, 168, 76, 0.1);
}

.radio-label input[type="radio"] {
  cursor: pointer;
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}

.radio-label span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-resumen {
  background: var(--card-bg);
  border: 1px solid var(--border-dim);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 18px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.checkout-resumen h3 {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--gold);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.resumen-items {
  margin-bottom: 15px;
  max-height: 300px;
  overflow-y: auto;
}

.resumen-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.resumen-item:last-child {
  border-bottom: none;
}

.item-nombre {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.item-cantidad {
  display: block;
  font-size: 0.85rem;
  color: var(--dim);
}

.item-monto {
  font-weight: 700;
  color: var(--gold);
}

.resumen-separador {
  height: 1px;
  background: rgba(201,168,76,0.06);
  margin: 12px 0;
}

.resumen-totales {
  margin-bottom: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.total-row.total-final {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 10px;
  border-top: 1px solid rgba(201,168,76,0.08);
}

.btn-block {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--dim);
  padding: 12px;
  background: rgba(201, 168, 76, 0.05);
  border-radius: 4px;
  margin: 0;
  line-height: 1.4;
}

.disclaimer i {
  color: var(--gold);
  margin-right: 6px;
}

.form-error {
  color: #cc0000;
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

.form-error.show {
  display: block;
}

@media (max-width: 900px) {
  .checkout-content {
    grid-template-columns: 1fr;
  }

  .checkout-resumen {
    position: relative;
    top: 0;
  }
}

/* ================================================================
   NOVEDADES 
   ================================================================ */
.novedades-page-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.novedad-page-card {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dim);
}
.novedad-page-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.novedad-page-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #0d0d0d;
}
.novedad-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.novedad-page-img .novedad-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--border);
}

.novedad-page-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.novedad-page-titulo {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

.novedad-page-desc {
  font-size: .95rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
}

/* ─── GALERÍA ────────────────────────────── */
.galeria-section { padding-top: 56px; padding-bottom: 80px; }

.galeria-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 40px;
}
.galeria-filter-sep {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.15);
  margin: 0 6px;
}
.gal-filter-btn,
.gal-filter-tipo {
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: var(--text-muted);
  border-radius: 20px;
  font-size: .75rem;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--ff-sans);
  text-transform: uppercase;
}
.gal-filter-btn:hover,
.gal-filter-tipo:hover { border-color: var(--gold); color: var(--gold); }
.gal-filter-btn.active,
.gal-filter-tipo.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.1); }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}
.gal-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: #111;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gal-no-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1209;
  color: var(--text-muted);
  font-size: 2.5rem;
}
.gal-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
}
.gal-item:hover .gal-item-overlay { opacity: 1; }
.gal-item:hover img { transform: scale(1.06); }
.gal-play-icon {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding-left: 4px;
}
.gal-item-title {
  font-size: .8rem;
  text-align: center;
  max-width: 80%;
  opacity: .9;
  font-family: var(--ff-sans);
}
.gal-empty-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: var(--text-muted);
  text-align: center;
  gap: 14px;
  font-size: 1rem;
}

.gal-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gal-lightbox.active { display: flex; }
.gal-lb-content {
  max-width: 92vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-lb-content img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
}
.gal-lb-content video {
  max-width: 100%;
  max-height: 80vh;
  outline: none;
}
.gal-lb-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 2.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
  z-index: 1;
}
.gal-lb-close:hover { color: #fff; }
.gal-lb-prev,
.gal-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 2.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 10px 16px;
  border-radius: 4px;
  transition: all .2s;
}
.gal-lb-prev:hover,
.gal-lb-next:hover { background: rgba(255,255,255,.18); color: #fff; }
.gal-lb-prev { left: 12px; }
.gal-lb-next { right: 12px; }
.gal-lb-caption {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  margin-top: 16px;
  font-family: var(--ff-sans);
  text-align: center;
  max-width: 600px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .galeria-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .galeria-filter { gap: 6px; }
  .gal-filter-btn, .gal-filter-tipo { font-size: .7rem; padding: 5px 12px; }
  .gal-lb-prev { left: 4px; }
  .gal-lb-next { right: 4px; }
}

@media (max-width: 900px) {
  .novedad-page-card { grid-template-columns: 1fr; gap: 24px; }
  .novedad-page-img { aspect-ratio: 16/9; }
}


/* ════════════════════════════════════════════
   CLUB — Secciones y Estilos
   ════════════════════════════════════════════ */

/* ─── SECCIÓN 1 ─── */
.club-galeria { background: rgba(0,0,0,0.3); }

.club-galeria .section-header {
  margin-bottom: 48px;
  text-align: center;
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-top: 16px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  grid-auto-rows: auto;
}

.masonry-grid > :nth-child(1) { grid-column: span 1; grid-row: span 2; }
.masonry-grid > :nth-child(2) { grid-column: span 1; grid-row: span 1; }
.masonry-grid > :nth-child(3) { grid-column: span 1; grid-row: span 2; }
.masonry-grid > :nth-child(4) { grid-column: span 1; grid-row: span 1; }
.masonry-grid > :nth-child(5) { grid-column: span 1; grid-row: span 1; }
.masonry-grid > :nth-child(6) { grid-column: span 1; grid-row: span 1; }

.masonry-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.masonry-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid rgba(213,160,84,0);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.masonry-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.masonry-item:hover .masonry-image-wrapper {
  border-color: rgba(213,160,84,0.8);
  box-shadow: 0 12px 40px rgba(213,160,84,0.3);
}

.masonry-item:hover .masonry-image {
  transform: scale(1.08);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.8));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-title {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--ff-serif);
}

/* ─── SECCIÓN 2 ─── */
.club-pilares { background: rgba(0,0,0,0.5); border-top: 1px solid rgba(213,160,84,0.2); }

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.pilar-card {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid rgba(213,160,84,0.3);
  border-radius: 12px;
  background: rgba(213,160,84,0.05);
  transition: all 0.4s ease;
}

.pilar-card:hover {
  background: rgba(213,160,84,0.12);
  border-color: rgba(213,160,84,0.6);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(213,160,84,0.2);
}

.pilar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(213,160,84,0.25), rgba(213,160,84,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(213,160,84,0.4);
  transition: all 0.4s ease;
}

.pilar-card:hover .pilar-icon {
  background: linear-gradient(135deg, rgba(213,160,84,0.4), rgba(213,160,84,0.2));
  border-color: rgba(213,160,84,0.8);
  transform: scale(1.1) rotate(5deg);
}

.pilar-icon i {
  font-size: 1.8rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.pilar-card:hover .pilar-icon i {
  transform: scale(1.2);
}

.pilar-title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 500;
}

.pilar-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ─── SECCIÓN 3 ─── */
.club-rompe-esquema {
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(213,160,84,0.05));
  border-top: 1px solid rgba(213,160,84,0.2);
  border-bottom: 1px solid rgba(213,160,84,0.2);
}

.rompe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rompe-content {
  z-index: 2;
}

.rompe-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 32px;
}

.club-slogan {
  background: rgba(213,160,84,0.15);
  border-left: 3px solid var(--gold);
  padding: 24px 24px;
  border-radius: 8px;
  margin-top: 24px;
}

.club-slogan p {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

/* Imágenes superpuestas */
.rompe-media {
  position: relative;
  height: 450px;
}

.rompe-images-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.rompe-image {
  position: absolute;
  width: 100%;
  max-width: 380px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(213,160,84,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.rompe-image-1 {
  top: 0;
  left: 0;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.rompe-image-2 {
  bottom: 0;
  right: 0;
  z-index: 1;
  animation: float 3.5s ease-in-out infinite reverse;
}

/* ════════════════════════════════════════════
   DELIVERY CHECKOUT: Select Zona Visibility 
   ════════════════════════════════════════════ */
#zona_id {
  color: var(--text);
  background-color: var(--card-bg);
}

#zona_id option {
  background-color: var(--bg-2);
  color: var(--text);
  padding: 8px;
}

#zona_id option:checked {
  background: linear-gradient(var(--gold), var(--gold));
  background-color: var(--gold) !important;
  color: #000 !important;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* ─── CIERRE ─── */
.club-cierre { text-align: center; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .masonry-grid > :nth-child(n) { grid-column: span auto; grid-row: span auto; }
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }
  .rompe-grid { grid-template-columns: 1fr; gap: 40px; }
  .rompe-media { height: 350px; }
  .rompe-image { max-width: 100%; height: 280px; }
}

@media (max-width: 768px) {
  .masonry-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pilares-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .pilar-card { padding: 20px 16px; }
  .pilar-icon { width: 50px; height: 50px; }
  .pilar-icon i { font-size: 1.4rem; }
  .rompe-grid { grid-template-columns: 1fr; }
  .rompe-media { height: 280px; }
  .rompe-image { max-width: 90%; height: 220px; }
}

@media (max-width: 480px) {
  .masonry-grid { grid-template-columns: 1fr; gap: 8px; }
  .pilares-grid { grid-template-columns: 1fr; gap: 16px; }
  .pilar-card { padding: 16px 12px; }
  .pilar-title { font-size: 1.1rem; }
  .pilar-desc { font-size: 0.85rem; }
  .club-slogan { font-size: 0.95rem; padding: 16px; }
  .rompe-media { height: 220px; }
  .rompe-image { max-width: 100%; height: 180px; }
}

.club-hero {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.club-experience {
  background: var(--bg-0);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-content h2 {
  margin-top: 20px;
  margin-bottom: 16px;
}

.experience-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-main);
  margin-bottom: 32px;
}

.experience-media {
  position: relative;
}

.experience-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.club-features {
  background: var(--bg-1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.feature-card {
  aspect-ratio: 1/1.2;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-gold);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease-slow);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.85) 100%
  );
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.4s var(--ease);
}

.feature-card:hover::before { opacity: 0.95; }

.feature-card-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.feature-title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

.club-impact {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.impact-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.impact-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.impact-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.club-closing {
  background: var(--bg-1);
  text-align: center;
}

.closing-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.closing-subtitle {
  font-size: 1.1rem;
  color: var(--text-sub);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.closing-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  min-width: 220px;
  padding: 16px 32px !important;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 300px;
  }

  .club-impact {
    min-height: 400px;
  }

  .impact-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }

  .closing-actions {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    min-width: auto;
  }
}


/* ════════════════════════════════════════════
   ANIMACIONES REVEAL
   ════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s var(--ease-slow) forwards;
}

.sig-card-1 { animation-delay: 0.1s; }
.sig-card-2 { animation-delay: 0.3s; }
.sig-card-3 { animation-delay: 0.5s; }

.feature-card {
  animation: revealUp 0.6s var(--ease-slow) forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

