/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colors from Tribuna Tours guidelines */
  --black:   #111111;
  --offwhite:#F2F2F2;
  --gold:    #BBA96A;
  --gold-dk: #9A8A52;
  --red:     #DB272D;
  --navy:    #001E2F;

  --dark2:   #1A1A1A;
  --grey:    #666;
  --grey-lt: #999;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--offwhite);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-bottom 0.3s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(17,17,17,0.97);
  border-bottom: 1px solid rgba(187,169,106,0.2);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-badge {
  width: 52px;
  height: 52px;
  color: var(--gold);
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(242,242,242,0.65);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--offwhite); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 9px 22px !important;
  letter-spacing: 1.5px !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dk) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--offwhite);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black);
  border-top: 1px solid rgba(187,169,106,0.15);
}
.mobile-menu.open { display: flex; }
.mob-link {
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(242,242,242,0.7);
}
.mob-cta {
  background: var(--gold);
  color: var(--black);
  margin: 12px 24px 16px;
  text-align: center;
  border-bottom: none;
  border-radius: 0;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-img-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('images/hinchada-bombonera.jpg');
  background-size: cover;
  background-position: center 35%;
}
/* Ken Burns cinematic slow zoom/pan */
.kenburns { animation: kenburns 24s ease-in-out infinite alternate; transform-origin: 50% 40%; }
@keyframes kenburns {
  0%   { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.22) translate(-1.5%, -2%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(17,17,17,0.94) 35%, rgba(17,17,17,0.55) 100%),
    linear-gradient(to top, rgba(17,17,17,0.92) 0%, transparent 55%);
  z-index: 1;
}

.noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* Watermark text */
#hero::before {
  content: "BOMBONERA";
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: clamp(100px, 16vw, 220px);
  color: rgba(187,169,106,0.05);
  letter-spacing: -4px;
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 100px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 160px);
  line-height: 0.88;
  letter-spacing: -1px;
  color: var(--offwhite);
  margin-bottom: 20px;
}

.hero-title-sub {
  font-size: clamp(28px, 4.5vw, 52px);
  color: var(--gold);
  letter-spacing: 5px;
  display: block;
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(242,242,242,0.65);
  max-width: 380px;
  margin: 32px 0 36px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 7px 16px;
  border: 1px solid rgba(187,169,106,0.4);
  color: var(--gold);
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--black);
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-dk); transform: translateY(-2px); }

.btn-ghost {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid rgba(242,242,242,0.25);
  color: var(--offwhite);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Ticker */
.hero-ticker {
  position: absolute;
  bottom: 56px;
  left: 0; right: 0;
  z-index: 3;
  background: var(--gold);
  padding: 11px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}
.ticker-inner span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--black);
  text-transform: uppercase;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.scroll-hint {
  position: absolute;
  bottom: 108px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: var(--offwhite);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.scroll-hint span {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

/* ── COUNTDOWN ── */
#countdown-bar {
  background: var(--navy);
  padding: 32px 24px;
  border-bottom: 1px solid rgba(187,169,106,0.15);
}
.countdown-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.countdown-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(242,242,242,0.5);
}
.countdown-digits {
  display: flex;
  align-items: center;
  gap: 20px;
}
.count-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.count-block span {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1;
  color: var(--gold);
}
.count-block label {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242,242,242,0.4);
}
.count-sep {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 22px;
}

/* ── SECTIONS COMMON ── */
.section-dark   { background: var(--black); padding: 100px 0; }
.section-gold   { background: var(--gold);  padding: 100px 0; }
.section-navy   { background: var(--navy);  padding: 100px 0; }

.section-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-tag.dark { color: rgba(17,17,17,0.45); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.93;
  margin-bottom: 56px;
  color: var(--offwhite);
}
.section-title em { font-style: normal; color: var(--gold); }
.section-title.dark { color: var(--black); }

/* ── EXPERIENCIA / INTRO ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(242,242,242,0.6);
  margin-bottom: 16px;
}
.intro-text strong { color: var(--offwhite); font-weight: 600; }

.stadiums-list { display: flex; flex-direction: column; }
.stadium-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stadium-item:last-child { border-bottom: none; }
.stadium-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
  opacity: 0.2;
  min-width: 60px;
}
.stadium-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.stadium-item span {
  font-size: 12px;
  color: var(--grey-lt);
  letter-spacing: 1px;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  background: var(--black);
  overflow: hidden;
}
.photo-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 320px;
}
.photo-card {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.45);
  transition: background 0.3s;
}
.photo-card:hover::after { background: rgba(17,17,17,0.2); }
.photo-card span {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── PILLARS ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pillar {
  background: rgba(0,0,0,0.12);
  padding: 40px 32px;
  transition: background 0.2s;
}
.pillar:hover { background: rgba(0,0,0,0.22); }
.pillar-icon { font-size: 28px; margin-bottom: 18px; display: block; }
.pillar h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.pillar p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(17,17,17,0.6);
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 116px;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(187,169,106,0.12);
}

.tl-item {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 44px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: 111px;
  top: 44px;
  width: 10px; height: 10px;
  background: var(--black);
  border: 2px solid rgba(187,169,106,0.25);
  border-radius: 50%;
}
.tl-match::before   { border-color: var(--gold); background: var(--gold); }
.tl-supercla::before { width: 14px; height: 14px; left: 109px; border-color: var(--gold); background: var(--gold); }
.tl-special::before  { border-color: rgba(187,169,106,0.5); }

.tl-date { text-align: right; }
.tl-day {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tl-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
}

.tl-has-photo {
  display: flex;
  gap: 28px;
  align-items: stretch;
  justify-content: space-between;
}
.tl-text { flex: 1; min-width: 0; }
.tl-photo {
  width: 210px;
  flex-shrink: 0;
  min-height: 150px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(187,169,106,0.2);
  filter: saturate(1.05);
  transition: transform 0.3s;
}
.tl-item:hover .tl-photo { transform: scale(1.02); }

.tl-content h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.tl-venue {
  font-size: 12px;
  font-weight: 400;
  color: var(--grey-lt);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.tl-content ul { display: flex; flex-direction: column; gap: 7px; }
.tl-content li {
  font-size: 13px;
  font-weight: 300;
  color: rgba(242,242,242,0.55);
  padding-left: 16px;
  position: relative;
}
.tl-content li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.5;
}

.match-pill, .exp-pill, .super-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  margin-bottom: 10px;
}
.match-pill { background: var(--gold); color: var(--black); }
.exp-pill   { border: 1px solid rgba(187,169,106,0.35); color: var(--gold); }
.super-pill {
  background: var(--red);
  color: var(--offwhite);
  font-size: 11px;
  padding: 6px 18px;
  animation: superPulse 2.5s ease-in-out infinite;
}
@keyframes superPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(219,39,45,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(219,39,45,0); }
}

.tl-supercla .tl-content h3 {
  font-size: 24px;
  color: var(--gold);
}

/* ── FULL WIDTH PHOTO ── */
.fullwidth-photo { overflow: hidden; }
.fullwidth-photo-inner {
  height: 500px;
  background-size: cover;
  background-position: center 40%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fullwidth-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.fullwidth-overlay { z-index: 1; }
.fullwidth-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullwidth-quote {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.1;
  color: var(--offwhite);
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

/* ── INCLUDES ── */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.includes-box { padding: 52px 44px; }
.includes-yes {
  background: rgba(187,169,106,0.05);
  border: 1px solid rgba(187,169,106,0.12);
}
.includes-no {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
}
.includes-box h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--gold);
}
.includes-no h3 { color: var(--grey); }
.includes-box ul { display: flex; flex-direction: column; gap: 16px; }
.includes-box li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(242,242,242,0.7);
  padding-left: 22px;
  position: relative;
}
.includes-yes li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.includes-no li::before  { content: '✗'; position: absolute; left: 0; color: var(--grey); }
.includes-box li em { opacity: 0.55; font-style: normal; font-size: 12px; }

.note-box {
  margin-top: 36px;
  padding: 18px;
  border-left: 3px solid rgba(187,169,106,0.3);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(242,242,242,0.4);
}
.note-box strong { color: var(--gold); }

/* ── PRECIO ── */
.price-section { border-top: 1px solid rgba(187,169,106,0.1); }
.price-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 20px 0 10px;
}
.price-usd {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}
.price-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 108px);
  color: var(--offwhite);
  line-height: 1;
}
.price-desc {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242,242,242,0.4);
  margin-bottom: 12px;
}
.price-single {
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,242,242,0.5);
}
.price-single strong { color: var(--offwhite); font-weight: 600; }

.cupos-box {
  border: 1px solid rgba(187,169,106,0.2);
  padding: 44px;
}
.cupos-title {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 28px;
}
.cupos-visual {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cupo {
  width: 38px; height: 38px;
  border: 2px solid rgba(187,169,106,0.3);
}
.cupo.filled { background: var(--gold); border-color: var(--gold); }
.cupos-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: 10px;
}
.cupos-detail {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(242,242,242,0.45);
}

/* ── ANFITRIÓN ── */
.host-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  margin-bottom: 80px;
  align-items: start;
}
.host-photo-wrap { position: relative; }
.host-photo {
  width: 100%;
  padding-bottom: 120%;
  background-size: cover;
  background-position: center top;
  position: relative;
}
.host-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(187,169,106,0.2);
}

.host-name {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 0.95;
  color: var(--gold);
  margin-bottom: 20px;
}
.host-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.host-tags span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid rgba(187,169,106,0.3);
  color: var(--gold);
}
.host-info p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(242,242,242,0.6);
  margin-bottom: 16px;
}
.host-info strong { color: var(--offwhite); font-weight: 600; }

.host-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
}
.host-pillar {
  background: rgba(187,169,106,0.06);
  border: 1px solid rgba(187,169,106,0.1);
  padding: 22px 20px;
  display: flex;
  align-items: flex-end;
}
.host-pillar span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(242,242,242,0.7);
}

.tribuna-about {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 64px;
}
.tribuna-about blockquote {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.2;
  color: var(--offwhite);
  max-width: 820px;
  position: relative;
  padding-left: 32px;
}
.tribuna-about blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px; bottom: 6px;
  width: 3px;
  background: var(--gold);
}

/* ── RESERVAR ── */
.reserve-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.reserve-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
}
.reserve-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.88);
}
.reserve-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.reserve-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(242,242,242,0.55);
  max-width: 480px;
  margin: 0 auto 48px;
}
.reserve-ctas { margin-bottom: 28px; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 18px 40px;
  background: var(--gold);
  color: var(--black);
  transition: background 0.2s, transform 0.2s;
}
.btn-wa:hover { background: var(--gold-dk); transform: translateY(-2px); }
.btn-wa svg { width: 20px; height: 20px; }

.reserve-phones {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 16px;
}
.reserve-phones a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(242,242,242,0.6);
  transition: color 0.2s;
}
.reserve-phones a:hover { color: var(--gold); }

.reserve-note {
  font-size: 12px;
  font-weight: 300;
  color: rgba(242,242,242,0.3);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(187,169,106,0.1);
  padding: 56px 24px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-badge {
  width: 84px;
  height: 84px;
  color: var(--gold);
  object-fit: contain;
  opacity: 0.85;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(242,242,242,0.35);
}
.footer-contact {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-contact a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(242,242,242,0.4);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact span { color: rgba(242,242,242,0.15); }
.footer-copy {
  font-size: 11px;
  color: rgba(242,242,242,0.15);
  letter-spacing: 1px;
}

/* ── ITINERARIO FLIP GRID ── */
.itin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.flip-card {
  height: 340px;
  perspective: 1400px;
  cursor: pointer;
  outline: none;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-inner,
.flip-card:focus-visible .flip-inner,
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }

/* Refuerzo cross-browser (móvil): ocultar la cara que no corresponde,
   por si backface-visibility falla y se ve el texto del frente al revés */
.flip-front, .flip-back { transition: opacity 0.25s ease 0.15s; }
.flip-back { opacity: 0; }
.flip-card:hover .flip-front,
.flip-card:focus-visible .flip-front,
.flip-card.flipped .flip-front { opacity: 0; }
.flip-card:hover .flip-back,
.flip-card:focus-visible .flip-back,
.flip-card.flipped .flip-back { opacity: 1; }

.flip-front, .flip-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid rgba(187,169,106,0.15);
  overflow: hidden;
}
.flip-front {
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}
.ff-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ff-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.94) 0%, rgba(17,17,17,0.1) 55%, rgba(17,17,17,0.6) 100%);
}
.ff-head, .ff-foot { position: relative; z-index: 1; }
.ff-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.ff-date {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold);
  background: rgba(17,17,17,0.55);
  padding: 5px 9px;
  backdrop-filter: blur(2px);
}
.ff-pill {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  padding: 5px 9px;
  background: rgba(17,17,17,0.65);
  color: #fff;
  text-align: right;
}
.ff-pill-match { background: var(--red); color: #fff; }
.ff-pill-super { background: var(--gold); color: var(--black); }
.ff-title {
  font-family: var(--font-display);
  font-size: 30px; line-height: 0.95; letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 8px;
}
.ff-hint {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,245,240,0.55);
}
.flip-back {
  transform: rotateY(180deg);
  background: var(--dark2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
}
.fb-date {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 10px;
}
.fb-title {
  font-family: var(--font-body);
  font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.1;
}
.fb-venue { font-size: 12px; color: var(--grey-lt); margin-bottom: 14px; letter-spacing: 0.5px; }
.flip-back ul { display: flex; flex-direction: column; gap: 8px; }
.flip-back li {
  font-size: 12.5px; font-weight: 300; line-height: 1.4;
  color: rgba(245,245,240,0.72);
  padding-left: 15px; position: relative;
}
.flip-back li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: 0.6; }

.flip-super .flip-front, .flip-super .flip-back { border-color: var(--gold); box-shadow: inset 0 0 0 1px rgba(187,169,106,0.4); }
.flip-super .ff-title { color: var(--gold); }

/* ── QUIÉNES SOMOS ── */
.quienes-section { position: relative; padding: 110px 0; overflow: hidden; }
.quienes-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(0.35) contrast(1.05);
}
.quienes-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(17,17,17,0.97) 28%, rgba(17,17,17,0.82) 100%);
}
.quienes-content { position: relative; z-index: 1; }
.quienes-logo {
  position: absolute;
  top: 0;
  right: 24px;
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0.9;
}
.quienes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.quienes-text p { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(245,245,240,0.7); margin-bottom: 16px; }
.quienes-text strong { color: #fff; font-weight: 600; }
.quienes-lema {
  font-family: var(--font-display) !important;
  font-size: clamp(28px,4vw,40px) !important;
  color: var(--gold) !important;
  letter-spacing: 1px; line-height: 1.05; margin-top: 12px !important;
}
.quienes-values { display: flex; flex-direction: column; }
.qv-item { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.qv-item:last-child { border-bottom: none; }
.qv-item > span { font-family: var(--font-display); font-size: 26px; color: var(--gold); opacity: 0.4; min-width: 32px; }
.qv-item strong { display: block; font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 5px; color: #fff; }
.qv-item div p { font-size: 13px; font-weight: 300; color: rgba(245,245,240,0.55); line-height: 1.5; margin: 0; }

/* ── FAQ ── */
.faq-list { max-width: 860px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 48px 24px 0;
  position: relative;
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--white);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item p {
  padding: 0 48px 26px 0;
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,245,240,0.65);
}

/* ── CREDIBILITY STRIP ── */
.cred-strip {
  background: var(--black);
  border-bottom: 1px solid rgba(187,169,106,0.1);
  padding: 56px 0;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cred-item {
  text-align: center;
  border-left: 1px solid rgba(187,169,106,0.15);
  padding: 0 16px;
}
.cred-item:first-child { border-left: none; }
.cred-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.cred-flag {
  font-size: clamp(38px, 5.5vw, 58px);
  line-height: 1.15;
}
.cred-item p {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(242,242,242,0.5);
  line-height: 1.4;
}

/* ── GALLERY ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 4px;
  margin-top: 8px;
  padding: 0 4px;
}
.g-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, transparent 45%);
  transition: background 0.3s;
}
.g-item:hover::after { background: linear-gradient(to top, rgba(17,17,17,0.6) 0%, transparent 60%); }
.g-item:hover { z-index: 2; }
.g-item figcaption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ── HOST PLACEHOLDER ── */
.host-placeholder {
  padding-bottom: 0;
  min-height: 440px;
  background: linear-gradient(135deg, #1a1a1a, #0e0e0e);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(187,169,106,0.3);
}
.host-placeholder span {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: rgba(187,169,106,0.4);
  text-align: center;
  line-height: 1.2;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: transform 0.2s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cred-grid    { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .cred-item:nth-child(3) { border-left: none; }
  .gallery      { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .g-wide       { grid-column: span 1; }
  .g-tall       { grid-row: span 1; }
  .itin-grid    { grid-template-columns: repeat(2, 1fr); }
  .quienes-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-grid       { grid-template-columns: 1fr; gap: 48px; }
  .pillars-grid     { grid-template-columns: repeat(2, 1fr); }
  .includes-grid    { grid-template-columns: 1fr; }
  .price-wrapper    { grid-template-columns: 1fr; gap: 48px; }
  .host-grid        { grid-template-columns: 1fr; gap: 40px; }
  .host-photo       { padding-bottom: 60%; }
  .photo-strip-inner{ grid-template-columns: repeat(2, 1fr); height: 400px; }
  .timeline::before { left: 84px; }
  .tl-item          { grid-template-columns: 84px 1fr; gap: 24px; }
  .tl-item::before  { left: 79px; }
  .tl-supercla::before { left: 77px; }
}

@media (max-width: 640px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; }
  .photo-strip-inner { grid-template-columns: repeat(2, 1fr); height: 280px; }
  .hero-title { font-size: clamp(56px, 18vw, 100px); }
  .scroll-hint { display: none; }
  .timeline::before { display: none; }
  .tl-item  { grid-template-columns: 1fr; gap: 8px; }
  .tl-item::before { display: none; }
  .tl-date  { display: flex; gap: 12px; align-items: center; }
  .includes-box { padding: 32px 24px; }
  .cupos-box { padding: 28px 20px; }
  .reserve-phones { flex-direction: column; gap: 12px; }
  .section-dark, .section-gold, .section-navy { padding: 72px 0; }
  .host-pillars { grid-template-columns: 1fr; }
  .fullwidth-photo-inner { height: 320px; }
  .cred-grid { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-wide, .g-tall { grid-column: span 2; grid-row: span 1; }
  .wa-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
  .tl-has-photo { flex-direction: column; gap: 0; }
  .tl-photo { display: none; }
  .itin-grid { grid-template-columns: 1fr; gap: 12px; }
  .flip-card { height: 300px; }
  .quienes-overlay { background: rgba(17,17,17,0.92); }
  .quienes-logo { width: 64px; height: 64px; right: 16px; top: -6px; opacity: 0.7; }
}
