/* ================================================================
   zen-theme.css — Blue Ocean Tours
   DISEÑO COMPLETO desde cero — basado en mockups
   Paleta: arena · dorado · ink oscuro · Cormorant Garamond
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', system-ui, sans-serif;
  background: #F5EFE4;
  color: #2C1F0E;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 64px;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: rgba(196, 154, 90, 0.25);
}

/* ─── VARIABLES ─── */
:root {
  --sand-0: #FDFAF5;
  --sand-1: #F5EFE4;
  --sand-2: #EDE3D0;
  --sand-3: #DCCFB4;
  --gold: #C49A5A;
  --gold-l: #D4AD6E;
  --gold-d: #8A6230;
  --ink: #2C1F0E;
  --ink-mid: #4A3520;
  --ink-soft: #6B5235;
  --ink-ghost: #A08060;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --sans: 'Jost', system-ui, sans-serif;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 40px;
  --r-full: 100px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 4px 16px rgba(44, 31, 14, 0.08);
  --shadow-md: 0 8px 32px rgba(44, 31, 14, 0.12);
  --shadow-lg: 0 16px 60px rgba(44, 31, 14, 0.16);
}

/* ─── TEXTURA ARENA ─── */
.sand-texture {
  background-color: var(--sand-1);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400'%3E%3Cpath d='M0 200 Q150 170 300 200 Q450 230 600 200' stroke='rgba(196,154,90,0.07)' stroke-width='2' fill='none'/%3E%3Cpath d='M0 280 Q150 255 300 280 Q450 305 600 280' stroke='rgba(196,154,90,0.05)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M0 120 Q150 100 300 120 Q450 140 600 120' stroke='rgba(196,154,90,0.05)' stroke-width='1' fill='none'/%3E%3Cpath d='M0 340 Q150 320 300 340 Q450 360 600 340' stroke='rgba(196,154,90,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 600px 400px;
}

/* ─── LOADER ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--sand-0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.loader-text {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: rgba(253, 250, 245, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 154, 90, 0.15);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Header scroll state */
header.scrolled {
  box-shadow: 0 2px 24px rgba(44, 31, 14, 0.09);
  background: rgba(253, 250, 245, 0.98);
}


.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand h1 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.12em;
}

.brand h1 span {
  color: var(--gold-d);
}

/* Brand underline style from mockup */
.brand {
  border-bottom: none;
}

.brand-inner {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
}

#nav-placeholder {
  flex: 1;
  min-width: 0;
}

nav {
  display: flex;
  align-items: center;
  width: 100%;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 auto;
}

nav ul li a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  padding: 8px 14px;
  display: block;
  transition: color 0.2s ease;
  position: relative;
}

nav ul li a:hover {
  color: var(--ink);
}

nav ul li a.active {
  color: var(--ink);
  font-weight: 500;
}

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--gold);
  border-radius: var(--r-full);
}

/* Nav phone/CTA */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(196, 154, 90, 0.3);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink);
  white-space: nowrap;
  margin-left: 1rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.nav-phone:hover {
  background: var(--ink);
  color: var(--sand-0);
  border-color: var(--ink);
}

/* Hamburger */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: var(--r-full);
  transition: all 0.3s ease;
}

/* Social float */
.social-float {
  position: fixed;
  right: 20px;
  bottom: -70px;
  left: auto;
  top: auto;
  transform: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  z-index: 50;
  background: rgba(253, 250, 245, 0.9);
  border-radius: var(--r-full);
  padding: 10px;
  border: 1px solid rgba(196, 154, 90, 0.18);
  box-shadow: 0 18px 40px rgba(44, 37, 32, 0.14);
  backdrop-filter: blur(14px);
}

.social-float-link {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(196, 154, 90, 0.14);
  transition: color 0.2s, transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.social-float-link:hover {
  color: var(--gold-d);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 18px rgba(44, 37, 32, 0.12);
}

.social-float-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ════════════════════════════════════════════
   HERO — HOME
   ════════════════════════════════════════════ */
.xp-hero {
  position: relative;
  width: 100%;
  height: calc(80vh - 64px);
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.xp-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.88);
}

.xp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(20, 12, 4, 0.08) 0%,
      rgba(20, 12, 4, 0.28) 55%,
      rgba(20, 12, 4, 0.62) 100%);
}

.xp-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 680px;
}

.xp-hero__tagline {
  display: block;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.xp-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 2.25rem;
}

.xp-hero__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* Botón oscuro exacto del mockup */
.xp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--sand-0);
  border-radius: var(--r-full);
  border: none;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 20px rgba(44, 31, 14, 0.3);
}

.xp-btn-primary:hover {
  background: var(--ink-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(44, 31, 14, 0.4);
}

.xp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--r-full);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.xp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
}

.xp-hero__ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll cue */
.xp-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  animation: heroScrollAnim 2.5s ease-in-out infinite;
}

.xp-hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}

.xp-hero__scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

@keyframes heroScrollAnim {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ════════════════════════════════════════════
   TRUST BAR (barra oscura debajo del hero)
   ════════════════════════════════════════════ */
.xp-trust-bar {
  background: var(--ink);
  padding: 0.85rem 5%;
}

.xp-trust-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.xp-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.52);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.xp-trust-item a {
  color: rgba(245, 239, 228, 0.72);
  transition: color 0.2s;
}

.xp-trust-item a:hover {
  color: var(--gold-l);
}

.xp-trust-item__icon {
  width: 12px;
  height: 12px;
  color: var(--gold);
  flex-shrink: 0;
}

.xp-trust-sep {
  color: rgba(196, 154, 90, 0.2);
}

/* ════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════ */
.xp-stats {
  background: var(--ink);
  border-top: 1px solid rgba(196, 154, 90, 0.1);
  padding: 2.5rem 5%;
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.xp-stat {
  text-align: center;
}

.xp-stat__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-l);
  line-height: 1;
  display: block;
}

.xp-stat__label {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(245, 239, 228, 0.32);
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

/* ════════════════════════════════════════════
   SECCIÓN BASE — arena con textura
   ════════════════════════════════════════════ */
.zen-section {
  padding: 5.5rem 5%;
  background: var(--sand-1);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400'%3E%3Cpath d='M0 200 Q150 170 300 200 Q450 230 600 200' stroke='rgba(196,154,90,0.06)' stroke-width='2' fill='none'/%3E%3Cpath d='M0 300 Q150 275 300 300 Q450 325 600 300' stroke='rgba(196,154,90,0.04)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M0 100 Q150 80 300 100 Q450 120 600 100' stroke='rgba(196,154,90,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 600px 400px;
}

.zen-section--white {
  background: var(--sand-0);
}

.zen-section--dark {
  background: var(--ink);
}

/* ════════════════════════════════════════════
   SECTION HEAD
   ════════════════════════════════════════════ */
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-head h2 span {
  color: var(--gold-d);
}

.section-head h2 .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-d);
}

.section-head .sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}

/* Italic gold subtitle — mockup style */
.section-sub-italic {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-d);
  display: block;
  margin-top: 0.25rem;
}

/* ════════════════════════════════════════════
   PROMOCIONES — CARRUSEL
   ════════════════════════════════════════════ */
.promociones-section {
  padding: 5.5rem 5%;
  background: var(--sand-1);
}

.promociones-header {
  text-align: center;
  margin-bottom: 3rem;
}

.promo-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.promociones-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
}

.promociones-header h2 span {
  color: var(--gold-d);
}

.promociones-header p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

.promociones-body {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .promociones-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.promo-carrusel-wrap {
  position: relative;
}

.promo-carrusel {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--sand-3);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.promo-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--gold);
  color: var(--sand-0);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
}

.promo-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.promo-slide.activo {
  display: block;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.promo-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 154, 90, 0.3);
  background: transparent;
  color: var(--ink-soft);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.promo-arrow:hover {
  background: var(--ink);
  color: var(--sand-0);
  border-color: var(--ink);
}

.promo-dots {
  display: flex;
  gap: 6px;
}

.promo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(196, 154, 90, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.promo-dot.activo {
  background: var(--gold);
  width: 18px;
  border-radius: var(--r-full);
}

.btn-promo-consultar {
  margin-top: 1.25rem;
  width: 100%;
  padding: 13px 24px;
  background: var(--ink);
  color: var(--sand-0);
  border-radius: var(--r-full);
  border: none;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-promo-consultar:hover {
  background: var(--ink-mid);
}

.promo-vigencia {
  font-size: 0.72rem;
  color: var(--ink-ghost);
  text-align: center;
  margin-top: 0.5rem;
}

/* Panel info de promos */
.promo-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.promo-panel-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
}

.promo-panel-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
}

.promo-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--sand-0);
  border-radius: var(--r-lg);
  border: 1px solid rgba(196, 154, 90, 0.15);
  box-shadow: var(--shadow-sm);
}

.promo-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.promo-card-body {
  flex: 1;
}

.promo-card-body strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.promo-card-body span {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.55;
}

.promo-card-badge {
  background: rgba(196, 154, 90, 0.12);
  color: var(--gold-d);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
  flex-shrink: 0;
  align-self: flex-start;
}



/* ════════════════════════════════════════════
   DESTINOS — MASONRY REAL (LIMPIO)
   ════════════════════════════════════════════ */

.xp-destinos {
  padding: 4.5rem 5%;
  background: var(--sand-1);
}

/* 🔥 CLAVE: columnas tipo masonry */
.xp-destinos__grid {
  column-count: 4;
  column-gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cards */
.xp-dest-card {
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  break-inside: avoid;
  /* evita cortes raros */
}

/* Featured ocupa más visualmente */
.xp-dest-card--featured {
  height: 260px;
}

/* Alturas naturales */
.xp-dest-card:not(.xp-dest-card--featured) {
  height: 200px;
}

/* Algunas más altas (variedad) */
.xp-dest-card.tall {
  height: 320px;
}

/* Imagen */
.xp-dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ════════════════════════════════════════════
   EXPERIENCIAS POR TIPO
   ════════════════════════════════════════════ */
.xp-experiences {
  padding: 5.5rem 5%;
  background: var(--sand-2);
}

.xp-exp__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  max-width: 1300px;
  margin: 0 auto;
}

.xp-exp-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.xp-exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.xp-exp-card__bg {
  position: absolute;
  inset: 0;
  background: var(--img, var(--sand-3)) center/cover;
  background-image: var(--card-img);
  transition: transform 0.55s ease;
}

.xp-exp-card:hover .xp-exp-card__bg {
  transform: scale(1.07);
}

.xp-exp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 12, 4, 0.85) 0%, rgba(20, 12, 4, 0.1) 60%, transparent 100%);
}

.xp-exp-card__body {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.25rem;
}

.xp-exp-card__icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.6rem;
}

.xp-exp-card__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.xp-exp-card__desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.xp-exp-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-l);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.xp-exp-card:hover .xp-exp-card__cta {
  opacity: 1;
  transform: translateY(0);
}

.xp-exp-card--cta {
  min-height: 200px;
}

.xp-exp__strip {
  max-width: 1300px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  background: var(--sand-0);
  border-radius: var(--r-lg);
  border: 1px solid rgba(196, 154, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.xp-exp__strip-label {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
}

.xp-exp__strip-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-d);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.xp-exp__strip-link:hover {
  color: var(--ink);
}

/* ════════════════════════════════════════════
   INTRO — No somos una agencia común
   ════════════════════════════════════════════ */
.xp-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--sand-0);
}

@media (max-width: 900px) {
  .xp-intro {
    grid-template-columns: 1fr;
  }
}

.xp-intro__text {
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.xp-intro__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0.75rem 0 1.5rem;
}

.xp-intro__body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 0.75rem;
}

.xp-intro__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 480px) {
  .xp-intro__pillars {
    grid-template-columns: 1fr;
  }
}

.xp-pillar {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--r-md);
  background: var(--sand-1);
  border: 1px solid rgba(196, 154, 90, 0.12);
  transition: all 0.22s ease;
}

.xp-pillar:hover {
  background: var(--sand-2);
  border-color: rgba(196, 154, 90, 0.25);
}

.xp-pillar__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.xp-pillar__title {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 3px;
}

.xp-pillar__text {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.xp-intro__visual {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.xp-intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.xp-intro:hover .xp-intro__visual img {
  transform: scale(1.04);
}

.xp-intro__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 60%, var(--sand-0) 100%);
}

@media (max-width: 900px) {
  .xp-intro__visual-overlay {
    background: linear-gradient(to bottom, var(--sand-0) 0%, transparent 30%);
  }
}

.xp-intro__visual-card {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(253, 250, 245, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 154, 90, 0.2);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.xp-intro__visual-card-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.xp-intro__visual-card-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ════════════════════════════════════════════
   DESTINATION BRIDGE
   ════════════════════════════════════════════ */
.xp-dest-bridge {
  padding: 2rem 5%;
  text-align: center;
  background: var(--sand-2);
  border-top: 1px solid rgba(196, 154, 90, 0.1);
  border-bottom: 1px solid rgba(196, 154, 90, 0.1);
}

.xp-dest-bridge__label {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.xp-dest-bridge__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.xp-dest-chip {
  padding: 8px 18px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(196, 154, 90, 0.22);
  background: var(--sand-0);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.xp-dest-chip:hover {
  background: var(--ink);
  color: var(--sand-0);
  border-color: var(--ink);
}

.xp-dest-chip--more {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--sand-0);
  font-weight: 500;
}

.xp-dest-chip--more:hover {
  background: var(--gold-d);
  border-color: var(--gold-d);
}

/* ════════════════════════════════════════════
   FLOW GUIDE
   ════════════════════════════════════════════ */
.xp-flow-guide {
  padding: 5.5rem 5%;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.xp-flow-guide::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400'%3E%3Cpath d='M0 200 Q150 170 300 200 Q450 230 600 200' stroke='rgba(196,154,90,0.04)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 600px 400px;
}

.xp-flow-guide__head {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.xp-flow-guide__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 400;
  color: var(--sand-0);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0.75rem 0 1rem;
}

.xp-flow-guide__sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.42);
  max-width: 380px;
  margin: 0 auto;
}

.xp-flow-guide__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .xp-flow-guide__steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.xp-flow-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(196, 154, 90, 0.1);
  transition: all 0.3s ease;
}

.xp-flow-step:hover {
  background: rgba(196, 154, 90, 0.06);
  border-color: rgba(196, 154, 90, 0.2);
  transform: translateY(-4px);
}

.xp-flow-step__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(196, 154, 90, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.xp-flow-step__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(196, 154, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold-l);
  transition: background 0.25s ease;
}

.xp-flow-step:hover .xp-flow-step__icon {
  background: rgba(196, 154, 90, 0.18);
}

.xp-flow-step__title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--sand-0);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.xp-flow-step__text {
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.48);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.xp-flow-step__cta-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 154, 90, 0.55);
}

.xp-flow-connector {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  margin-top: 3.5rem;
  flex-shrink: 0;
}

.xp-flow-connector svg {
  width: 60px;
  height: 20px;
}

@media (max-width: 768px) {
  .xp-flow-connector {
    transform: rotate(90deg);
    margin: 0;
    padding: 0;
  }
}

.xp-flow-guide__cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════
   ABOUT SPLIT
   ════════════════════════════════════════════ */
.xp-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  min-height: 500px;
}

@media (max-width: 900px) {
  .xp-about {
    grid-template-columns: 1fr;
  }
}

.xp-about__text {
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.xp-about__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--sand-0);
  letter-spacing: 0.02em;
  margin: 0.75rem 0 1.5rem;
  line-height: 1.1;
}

.xp-about__body {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.52);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.xp-about__body strong {
  color: rgba(245, 239, 228, 0.85);
  font-weight: 400;
}

.xp-about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.xp-value {
  padding: 1rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 154, 90, 0.1);
  transition: all 0.22s ease;
}

.xp-value:hover {
  background: rgba(196, 154, 90, 0.07);
  border-color: rgba(196, 154, 90, 0.22);
}

.xp-value__icon {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.5rem;
}

.xp-value__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sand-1);
  display: block;
  margin-bottom: 3px;
}

.xp-value__text {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.42);
  line-height: 1.55;
}

.xp-about__visual {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.xp-about__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.8);
}

/* ════════════════════════════════════════════
   SERVICIOS
   ════════════════════════════════════════════ */
.xp-servicios {
  padding: 5.5rem 5%;
  background: var(--sand-1);
}

.xp-servicios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 1300px;
  margin: 0 auto;
}

.xp-srv-card {
  padding: 2rem 1.75rem;
  border-radius: var(--r-xl);
  background: var(--sand-0);
  border: 1px solid rgba(196, 154, 90, 0.12);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.xp-srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.xp-srv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.xp-srv-card:hover::before {
  opacity: 1;
}

.xp-srv-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1.25rem;
}

.xp-srv-card__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.xp-srv-card__text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ════════════════════════════════════════════
   COUNTERS — estilo mockup arena
   ════════════════════════════════════════════ */
.xp-counters {
  padding: 5rem 5%;
  background: var(--sand-1);
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.xp-counter {
  text-align: center;
}

.xp-counter__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(196, 154, 90, 0.12);
  border: 1.5px solid rgba(196, 154, 90, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.xp-counter:hover .xp-counter__icon {
  background: rgba(196, 154, 90, 0.22);
}

.xp-counter__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  display: block;
}

.xp-counter__plus {
  color: var(--gold);
}

.xp-counter__label {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--ink-ghost);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ════════════════════════════════════════════
   QUOTE SECTION — "La confianza no se exige"
   ════════════════════════════════════════════ */
.xp-quote {
  padding: 5rem 5%;
  text-align: center;
  background: var(--sand-1);
  position: relative;
  overflow: hidden;
}

.xp-quote__text {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: 0.01em;
  max-width: 780px;
  margin: 0 auto 0.75rem;
}

.xp-quote__sub {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.xp-quote__ornament {
  width: 140px;
  height: 14px;
  margin: 1.5rem auto 0;
  opacity: 0.5;
}

/* ════════════════════════════════════════════
   TESTIMONIOS
   ════════════════════════════════════════════ */
.xp-testimonios {
  padding: 5.5rem 5%;
  background: var(--sand-0);
}

/* ════════════════════════════════════════════
   INSTAGRAM
   ════════════════════════════════════════════ */
.xp-instagram {
  padding: 5rem 5%;
  background: var(--ink);
  text-align: center;
}

.xp-instagram__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--sand-0);
  margin: 0.5rem 0 0.3rem;
  letter-spacing: 0.06em;
}

.xp-instagram__sub {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(245, 239, 228, 0.38);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.xp-instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 600px) {
  .xp-instagram__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.xp-insta-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.xp-insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.xp-insta-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.7) saturate(1.2);
}

.xp-insta-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 4, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.xp-insta-card:hover .xp-insta-card__overlay {
  opacity: 1;
}

.xp-insta-card__overlay svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* ════════════════════════════════════════════
   CTA STRIP
   ════════════════════════════════════════════ */
.xp-cta-strip {
  padding: 5rem 5%;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-d) 0%, var(--ink) 100%);
}

.xp-cta-strip h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--sand-0);
  margin: 0.75rem 0 1.25rem;
  letter-spacing: 0.02em;
}

.xp-cta-strip p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.6);
  margin-bottom: 2.5rem;
}

.xp-cta-strip__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */
.xp-faq {
  padding: 5.5rem 5%;
  background: var(--sand-0);
}

.xp-faq__list {
  max-width: 820px;
  margin: 0 auto;
}

.xp-faq__item {
  border-bottom: 1px solid rgba(196, 154, 90, 0.15);
}

.xp-faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: color 0.2s ease;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
}

.xp-faq__q:hover {
  color: var(--gold-d);
}

.xp-faq__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 154, 90, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  line-height: 1;
  transition: all 0.25s ease;
}

.xp-faq__item.open .xp-faq__icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--sand-0);
}

.xp-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.xp-faq__item.open .xp-faq__a {
  max-height: 400px;
}

.xp-faq__a-inner {
  padding: 0 0 1.25rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
}

/* ════════════════════════════════════════════
   GUÍA VIAJERO + MIGRATORIOS
   ════════════════════════════════════════════ */
.xp-legal-strip {
  padding: 5.5rem 5%;
  background: var(--sand-1);
}

.xp-legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1300px;
  margin: 0 auto;
}

.xp-legal-card {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
}

.xp-legal-card h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.7);
  margin-bottom: 1rem;
}

.xp-legal-card ul li {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.52);
  padding: 4px 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.55;
}

.xp-legal-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.xp-migra {
  padding: 5rem 5%;
  background: var(--sand-0);
}

.xp-migra__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.1rem;
  max-width: 1300px;
  margin: 0 auto;
}

.xp-migra-card {
  background: var(--sand-1);
  border: 1px solid rgba(196, 154, 90, 0.12);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: all 0.25s ease;
}

.xp-migra-card:hover {
  border-color: rgba(196, 154, 90, 0.28);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.xp-migra-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.xp-migra-card__flag {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
}

.xp-migra-card__country {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.xp-migra-card ul li {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-soft);
  padding: 3px 0 3px 1rem;
  position: relative;
  line-height: 1.5;
}

.xp-migra-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.xp-disclaimer {
  max-width: 1300px;
  margin: 2rem auto 0;
  padding: 1.1rem 1.25rem;
  background: rgba(196, 154, 90, 0.07);
  border: 1px solid rgba(196, 154, 90, 0.18);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.65;
}

.xp-disclaimer strong {
  color: var(--ink);
  font-weight: 500;
}

/* ════════════════════════════════════════════
   MAPA + CONTACTO
   ════════════════════════════════════════════ */
.xp-contact {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 480px;
}

@media (max-width: 768px) {
  .xp-contact {
    grid-template-columns: 1fr;
  }
}

.xp-contact__info {
  padding: 4rem 2.5rem;
  background: var(--sand-1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.xp-contact__info h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.xp-contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.xp-contact__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(196, 154, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.xp-contact__detail-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.65;
}

.xp-contact__detail-text strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}

.xp-contact__detail-text a {
  color: var(--gold-d);
  transition: color 0.2s;
}

.xp-contact__detail-text a:hover {
  color: var(--ink);
}

.xp-contact__map {
  background: var(--sand-2);
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.xp-contact__map #map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  position: relative;
}

/* Carto tiles look better with subtle filter */
.xp-contact__map .leaflet-tile-pane {
  filter: sepia(8%) saturate(0.92) brightness(1.02);
}

/* Overlay hint box */
#map-overlay {
  border-radius: 0;
}

/* ════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════ */
.zen-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.zen-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.zen-reveal-d1 {
  transition-delay: 0.1s;
}

.zen-reveal-d2 {
  transition-delay: 0.2s;
}

.zen-reveal-d3 {
  transition-delay: 0.3s;
}

.zen-reveal-d4 {
  transition-delay: 0.4s;
}

.zen-reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.zen-reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ════════════════════════════════════════════
   PÁGINA INTERIOR — header común
   ════════════════════════════════════════════ */
.in-header {
  background: var(--ink);
  padding: clamp(4rem, 9vw, 8rem) 5% clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.in-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.in-header__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.in-eyebrow {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(196, 154, 90, 0.8);
  margin-bottom: 0.75rem;
}

.in-header__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sand-0);
  line-height: 1.0;
  margin-bottom: 1.25rem;
}

.in-header__title-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 239, 228, 0.28);
  display: block;
}

.in-header__sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.44);
  max-width: 520px;
  line-height: 1.75;
  letter-spacing: 0.03em;
}

/* ════════════════════════════════════════════
   PÁGINA INNER — secciones
   ════════════════════════════════════════════ */
.in-main {
  background: var(--sand-1);
  padding: 3rem 5% 5rem;
}

.in-section {
  background: var(--sand-0);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(196, 154, 90, 0.1);
  box-shadow: var(--shadow-sm);
}

.in-section--dark {
  background: var(--ink);
}

.in-section__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(196, 154, 90, 0.1);
}

.in-section__head--light {
  border-bottom-color: rgba(196, 154, 90, 0.15);
}

.in-section__num {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--sand-3);
  letter-spacing: 0.12em;
  flex-shrink: 0;
}

.in-section__num--light {
  color: rgba(245, 239, 228, 0.22);
}

.in-section__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0;
}

.in-section__title--light {
  color: var(--sand-0);
}

/* ════════════════════════════════════════════
   CONTRATO
   ════════════════════════════════════════════ */
.ct-warning {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: var(--sand-0);
  border-radius: var(--r-xl);
  border: 1.5px solid rgba(196, 154, 90, 0.18);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.ct-warning__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.ct-warning strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.ct-warning p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.65;
}

.ct-warning>div:first-of-type {
  flex: 1;
}

.ct-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--sand-0);
  border-radius: var(--r-lg);
  border: 1px solid rgba(196, 154, 90, 0.1);
}

.ct-nav-item {
  padding: 7px 16px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(196, 154, 90, 0.15);
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.ct-nav-item:hover {
  border-color: rgba(196, 154, 90, 0.4);
  background: rgba(196, 154, 90, 0.06);
  color: var(--gold-d);
}

.ct-group {
  background: var(--sand-0);
  border-radius: var(--r-lg);
  border: 1px solid rgba(196, 154, 90, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ct-group-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: background 0.2s ease;
}

.ct-group-header:hover {
  background: rgba(196, 154, 90, 0.03);
}

.ct-group-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ct-group-num {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--sand-3);
  letter-spacing: 0.14em;
  flex-shrink: 0;
}

.ct-group-title {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0;
  flex: 1;
  text-align: left;
}

.ct-group-count {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--ink-ghost);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.ct-group-chevron {
  flex-shrink: 0;
  color: var(--sand-3);
}

.ct-group-chevron svg {
  transition: transform 0.35s ease;
  display: block;
}

.ct-group-header[aria-expanded="false"] .ct-group-chevron svg {
  transform: rotate(-90deg);
}

.ct-group-body {
  border-top: 1px solid rgba(196, 154, 90, 0.08);
  max-height: 9999px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.ct-faq-item {
  border-bottom: 1px solid rgba(196, 154, 90, 0.06);
}

.ct-faq-item:last-child {
  border-bottom: none;
}

.ct-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: background 0.2s ease;
}

.ct-faq-q:hover {
  background: rgba(196, 154, 90, 0.025);
}

.ct-faq-q span:first-child {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.ct-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 154, 90, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  transition: all 0.25s ease;
  line-height: 1;
}

.ct-faq-item.open .ct-faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--sand-0);
}

.ct-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ct-faq-item.open .ct-faq-a {
  max-height: 1200px;
}

.ct-faq-a-inner {
  padding: 0.25rem 1.75rem 1.5rem;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
}

.ct-faq-a-inner p {
  margin-bottom: 0.75rem;
}

.ct-faq-a-inner ul,
.ct-faq-a-inner ol {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.ct-faq-a-inner li {
  padding: 2px 0;
  line-height: 1.6;
}

.ct-faq-a-inner strong {
  color: var(--ink);
  font-weight: 500;
}

/* ════════════════════════════════════════════
   LEGAL / INNER PAGES
   ════════════════════════════════════════════ */
.in-prose {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 780px;
}

.in-prose p+p {
  margin-top: 1rem;
}

.in-prose strong {
  color: var(--ink);
  font-weight: 500;
}

.in-doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.in-doc-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 1.5rem;
  background: var(--sand-1);
  border-radius: var(--r-md);
  border: 1.5px solid rgba(196, 154, 90, 0.12);
  text-decoration: none;
  transition: all 0.25s ease;
}

.in-doc-card:hover {
  border-color: rgba(196, 154, 90, 0.35);
  background: rgba(196, 154, 90, 0.04);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.in-doc-card--featured {
  border-color: rgba(196, 154, 90, 0.25);
}

.in-doc-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: rgba(196, 154, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.in-doc-card__title {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}

.in-doc-card__sub {
  font-size: 0.74rem;
  font-weight: 300;
  color: var(--gold-d);
  letter-spacing: 0.04em;
}

.in-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 1.1rem 1.25rem;
  background: rgba(196, 154, 90, 0.08);
  border: 1px solid rgba(196, 154, 90, 0.2);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  margin-bottom: 2rem;
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.62);
  line-height: 1.7;
}

.in-notice svg {
  flex-shrink: 0;
  color: var(--gold-l);
  margin-top: 1px;
}

.in-notice strong {
  color: rgba(245, 239, 228, 0.88);
  font-weight: 500;
}

.in-banks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.in-bank-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 154, 90, 0.12);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.25s ease;
}

.in-bank-card:hover {
  border-color: rgba(196, 154, 90, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.in-bank-card__header {
  padding: 1.1rem 1.25rem 0.9rem;
  border-bottom: 1px solid rgba(196, 154, 90, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.in-bank-card__logo {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.in-bank-card__name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--sand-0);
  margin: 0;
  letter-spacing: 0.04em;
}

.in-bank-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.in-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.in-bank-label {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.38);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.in-bank-val {
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(245, 239, 228, 0.82);
  letter-spacing: 0.06em;
  text-align: right;
}

.in-bank-divider {
  height: 1px;
  background: rgba(196, 154, 90, 0.12);
  margin: 0.4rem 0;
}

.in-bank-owner {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.28);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(196, 154, 90, 0.08);
}

.in-bank-owner strong {
  color: rgba(245, 239, 228, 0.5);
  font-weight: 500;
}

.in-bank-desc {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.52);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.in-bank-cta {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gold-l);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.in-bank-cta:hover {
  color: var(--gold);
}

.in-warning-box {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(196, 154, 90, 0.06), rgba(196, 154, 90, 0.1));
  border: 1px solid rgba(196, 154, 90, 0.18);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
}

.in-warning-box__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.in-warning-box__text p {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
}

.in-warning-box__text p+p {
  margin-top: 0.75rem;
}

.in-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--r-full);
  background: var(--gold);
  color: var(--sand-0);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 4px 16px rgba(196, 154, 90, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.in-btn-primary:hover {
  background: var(--gold-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 154, 90, 0.4);
}

/* ════════════════════════════════════════════
   SALIDAS — HERO ASIMÉTRICO (mockup 2)
   ════════════════════════════════════════════ */
.sl-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--sand-1);
}

.sl-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  filter: brightness(0.55) saturate(0.82);
}

/* Photo only on right half — mockup style */
.sl-hero__img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  overflow: hidden;
}

.sl-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.9);
}

.sl-hero__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, var(--sand-1) 0%, rgba(245, 239, 228, 0.4) 40%, transparent 70%);
}

.sl-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 7vw, 6rem) 5% clamp(3rem, 5vw, 4rem);
  max-width: 600px;
}

.sl-eyebrow {
  display: block;
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.sl-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.sl-hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold-d);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.sl-hero__ornament {
  margin-top: 0.5rem;
}

.sl-hero__ornament svg {
  width: 120px;
  height: 16px;
}

/* TABS de salidas */
.sl-tabs-wrap {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(253, 250, 245, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 154, 90, 0.14);
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 16px rgba(44, 31, 14, 0.05);
}

.sl-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.sl-tabs::-webkit-scrollbar {
  display: none;
}

.sl-tab {
  flex-shrink: 0;
  padding: 8px 20px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(196, 154, 90, 0.2);
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.sl-tab:hover {
  border-color: rgba(196, 154, 90, 0.4);
  color: var(--ink);
}

.sl-tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--sand-0);
  font-weight: 500;
}

.sl-updated {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--ink-ghost);
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Main salidas */
.sl-main {
  background: var(--sand-1);
  padding: 2.5rem 5% 5rem;
}

/* Loading */
.sl-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 5rem 0;
  color: var(--ink-ghost);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.sl-loading__wave {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(196, 154, 90, 0.2);
  border-top-color: var(--gold);
  animation: slSpin 0.9s linear infinite;
}

@keyframes slSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Empty state */
.sl-empty {
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem;
  text-align: center;
  gap: 0.75rem;
}

.sl-empty__icon {
  font-size: 3rem;
}

.sl-empty__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink);
}

.sl-empty__text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Sección por destino colapsable */
.sl-dest-section {
  background: var(--sand-0);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(196, 154, 90, 0.1);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.sl-dest-section:hover {
  box-shadow: var(--shadow-md);
}

.sl-dest-header {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0;
  text-align: left;
  transition: background 0.2s ease;
}

.sl-dest-header:hover {
  background: rgba(196, 154, 90, 0.02);
}

.sl-dest-header__img {
  width: 100px;
  min-width: 100px;
  height: 90px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .sl-dest-header__img {
    width: 130px;
    min-width: 130px;
    height: 100px;
  }
}

.sl-dest-header__info {
  flex: 1;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sl-dest-header__label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.sl-dest-header__name {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.1;
}

.sl-dest-header__count {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--ink-ghost);
  letter-spacing: 0.06em;
}

.sl-dest-header__chevron {
  padding: 1.25rem 1.5rem;
  color: var(--sand-3);
  flex-shrink: 0;
}

.sl-dest-header__chevron svg {
  transition: transform 0.35s ease;
}

.sl-dest-header[aria-expanded="false"] .sl-dest-header__chevron svg {
  transform: rotate(-90deg);
}

.sl-dest-body {
  border-top: 1px solid rgba(196, 154, 90, 0.08);
  max-height: 4000px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.sl-dest-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--sand-1);
  border-bottom: 1px solid rgba(196, 154, 90, 0.08);
}

@media (max-width: 560px) {
  .sl-dest-includes {
    grid-template-columns: 1fr;
  }
}

.sl-includes-col {
  padding: 1.1rem 1.5rem;
}

.sl-includes-col--yes {
  border-right: 1px solid rgba(196, 154, 90, 0.08);
}

@media (max-width: 560px) {
  .sl-includes-col--yes {
    border-right: none;
    border-bottom: 1px solid rgba(196, 154, 90, 0.08);
  }
}

.sl-includes-title {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.sl-includes-col--yes .sl-includes-title {
  color: #5A8A5A;
}

.sl-includes-col--no .sl-includes-title {
  color: #A05050;
}

.sl-includes-col ul li {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-soft);
  padding: 3px 0 3px 1rem;
  position: relative;
  line-height: 1.5;
}

.sl-includes-col--yes ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5A8A5A;
  font-weight: 600;
  font-size: 0.68rem;
}

.sl-includes-col--no ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #A05050;
  font-weight: 600;
  font-size: 0.68rem;
}

/* Card de salida — estilo horizontal exacto del mockup */
.sl-cards-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sl-card {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: stretch;
  border-bottom: 1px solid rgba(196, 154, 90, 0.07);
  transition: background 0.22s ease;
  background: var(--sand-0);
  position: relative;
}

.sl-card:last-child {
  border-bottom: none;
}

.sl-card:hover {
  background: rgba(196, 154, 90, 0.02);
}

@media (max-width: 680px) {
  .sl-card {
    grid-template-columns: 100px 1fr;
  }
}

@media (max-width: 420px) {
  .sl-card {
    grid-template-columns: 80px 1fr;
  }
}

.sl-card__img-wrap {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 140px;
}

.sl-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.sl-card:hover .sl-card__img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.85) saturate(1.1);
}

.sl-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(253, 250, 245, 0.06));
}

.sl-card__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
}

.sl-card__title {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.sl-card__phrase {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-ghost);
  margin: 0;
  line-height: 1.4;
}

.sl-card__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sl-card__detail {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-soft);
}

.sl-card__detail svg {
  flex-shrink: 0;
  color: var(--gold);
  width: 12px;
  height: 12px;
}

.sl-card__detail--airline {
  color: var(--gold-d);
  font-size: 0.73rem;
}

.sl-card__flights {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(196, 154, 90, 0.06);
  border: 1px solid rgba(196, 154, 90, 0.12);
  border-radius: var(--r-sm);
  padding: 5px 10px;
  margin-top: 4px;
}

.sl-card__flight {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.sl-card__flight svg {
  color: var(--gold);
}

.sl-card__flight-sep {
  color: rgba(196, 154, 90, 0.25);
  font-size: 0.7rem;
}

.sl-card__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  border-left: 1px solid rgba(196, 154, 90, 0.08);
  min-width: 150px;
  gap: 0.75rem;
}

@media (max-width: 680px) {
  .sl-card__action {
    display: none;
  }
}

.sl-card__price {
  text-align: center;
}

.sl-card__price-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 300;
  color: var(--ink-ghost);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.sl-card__price-val {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}

.sl-card__price-sub {
  display: block;
  font-size: 0.66rem;
  font-weight: 300;
  color: var(--ink-ghost);
  margin-top: 2px;
}

/* Botón "Ver detalles →" — exacto del mockup */
.sl-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--r-full);
  background: var(--ink);
  color: var(--sand-0);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.sl-card__btn:hover {
  background: var(--gold-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 31, 14, 0.25);
}

.sl-card__flyer-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--ink-ghost);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.sl-card__flyer-link:hover {
  color: var(--gold-d);
}

/* Circuito badge */
.sl-card__circuit-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--sand-0);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.sl-card--circuit {
  background: rgba(196, 154, 90, 0.01);
}

.sl-dest-cta {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid rgba(196, 154, 90, 0.07);
  background: var(--sand-1);
  text-align: center;
}

/* CTA fecha que buscas — exacto mockup */
.sl-cta-dates {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--sand-0);
  border-radius: var(--r-xl);
  border: 1px solid rgba(196, 154, 90, 0.12);
  margin: 2rem 0;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.sl-cta-dates__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(196, 154, 90, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.sl-cta-dates>div:nth-child(2) {
  flex: 1;
}

.sl-cta-dates strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.sl-cta-dates p {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin: 0;
}

/* Circuits section */
.sl-section-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0 1.5rem;
}

.sl-section-divider::before,
.sl-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196, 154, 90, 0.3), transparent);
}

.sl-section-divider__label {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--ink);
  white-space: nowrap;
}

.sl-circuits-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 1rem 1.25rem;
  background: rgba(196, 154, 90, 0.06);
  border: 1px solid rgba(196, 154, 90, 0.14);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.65;
}

.sl-circuits-note svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.sl-circuits-note strong {
  color: var(--ink);
  font-weight: 500;
}

/* Frase inspiracional — exacta del mockup */
.sl-phrase {
  text-align: center;
  padding: 4rem 5%;
  background: var(--sand-1);
}

.sl-phrase__main {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
}

.sl-phrase__italic {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--gold-d);
  margin-bottom: 1.25rem;
}

.sl-phrase__ornament {
  width: 140px;
  height: 14px;
  margin: 0 auto;
}

/* Features strip del mockup salidas */
.sl-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3.5rem 5%;
  background: var(--sand-1);
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sl-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sl-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.sl-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(196, 154, 90, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.sl-feature strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.sl-feature span {
  font-size: 0.74rem;
  font-weight: 300;
  color: var(--ink-ghost);
}

/* Buttons shared */
.sl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-full);
  background: var(--ink);
  color: var(--sand-0);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.22s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.sl-btn-primary:hover {
  background: var(--ink-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.sl-btn-primary--gold {
  background: var(--gold);
  box-shadow: 0 4px 16px rgba(196, 154, 90, 0.3);
}

.sl-btn-primary--gold:hover {
  background: var(--gold-d);
  box-shadow: 0 8px 28px rgba(196, 154, 90, 0.45);
}

.sl-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(196, 154, 90, 0.28);
  background: transparent;
  color: var(--gold-d);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.sl-btn-ghost:hover {
  background: rgba(196, 154, 90, 0.08);
  border-color: rgba(196, 154, 90, 0.5);
  color: var(--gold-d);
  transform: translateY(-1px);
}

/* PÁGINA DESTINOS */
.xd-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.xd-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.8);
  transform: scale(1.03);
  transition: transform 14s ease;
}

.xd-hero:hover .xd-hero__bg {
  transform: scale(1.0);
}

.xd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 12, 4, 0.95) 0%, rgba(20, 12, 4, 0.48) 55%, rgba(20, 12, 4, 0.12) 100%);
}

.xd-hero__content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 5%;
  max-width: 800px;
}

.xd-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(196, 154, 90, 0.82);
  margin-bottom: 1rem;
}

.xd-hero__title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--sand-0);
  line-height: 0.9;
  margin: 0.75rem 0 1.5rem;
}

.xd-hero__title-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 239, 228, 0.3);
}

.xd-hero__sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.46);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.xd-hero__search {
  position: relative;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.xd-hero__search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(245, 239, 228, 0.32);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.xd-hero__search input {
  width: 100%;
  padding: 14px 48px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(245, 239, 228, 0.12);
  background: rgba(245, 239, 228, 0.06);
  color: var(--sand-0);
  font-size: 0.9rem;
  outline: none;
  font-family: var(--sans);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}

.xd-hero__search input::placeholder {
  color: rgba(245, 239, 228, 0.3);
}

.xd-hero__search input:focus {
  border-color: rgba(196, 154, 90, 0.5);
  background: rgba(245, 239, 228, 0.09);
}

.xd-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(245, 239, 228, 0.35);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--sans);
  transition: color 0.2s;
}

.xd-search-clear:hover {
  color: var(--sand-0);
}

.xd-hero__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.xd-filter {
  flex-shrink: 0;
  padding: 8px 20px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(245, 239, 228, 0.14);
  background: rgba(245, 239, 228, 0.05);
  color: rgba(245, 239, 228, 0.58);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.xd-filter:hover {
  border-color: rgba(245, 239, 228, 0.35);
  color: var(--sand-0);
}

.xd-filter.active {
  background: var(--ink);
  border-color: var(--gold);
  color: var(--sand-0);
  box-shadow: 0 4px 16px rgba(196, 154, 90, 0.25);
}

.xd-hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 5%;
  z-index: 2;
  animation: heroScrollAnim 2.5s ease-in-out infinite;
}

.xd-hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(245, 239, 228, 0.5), transparent);
}

/* ════════════════════════════════════════════
   CONTACTO — TEAM CARDS
   ════════════════════════════════════════════ */
.contact-team {
  padding: 5.5rem 5%;
  background: var(--sand-0);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 1300px;
  margin: 0 auto;
}

.team-card {
  background: var(--sand-1);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(196, 154, 90, 0.1);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 154, 90, 0.22);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
}

.team-card__body {
  padding: 1.25rem 1.1rem 1.5rem;
}

.team-card__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.team-card__role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-d);
  display: block;
  margin-bottom: 0.75rem;
}

.team-card__contact {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.team-card__contact a {
  color: var(--gold-d);
  transition: color 0.2s;
}

.team-card__contact a:hover {
  color: var(--ink);
}

.team-card__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 0;
  border-radius: var(--r-full);
  background: #25d366;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.2s ease;
}

.team-card__wa:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.team-section-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-ghost);
  margin: 3rem 0 1.5rem;
  display: block;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.contact-quick {
  padding: 2.5rem 5%;
  background: var(--ink);
  border-top: 1px solid rgba(196, 154, 90, 0.1);
}

.contact-quick__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-quick-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(196, 154, 90, 0.1);
  border: 1px solid rgba(196, 154, 90, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-quick-item__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.28);
  display: block;
  margin-bottom: 4px;
}

.contact-quick-item__value {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245, 239, 228, 0.7);
}

.contact-quick-item__value a {
  color: var(--gold-l);
  transition: color 0.2s;
}

.contact-quick-item__value a:hover {
  color: var(--gold);
}

.contact-info {
  padding: 4rem 5%;
  background: var(--sand-1);
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--sand-0);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid rgba(196, 154, 90, 0.1);
  box-shadow: var(--shadow-sm);
}

.contact-info-card__icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.contact-info-card__title {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.75rem;
  display: block;
}

.contact-info-card__text {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
}

.contact-info-card__text a {
  color: var(--gold-d);
  transition: color 0.2s;
}

.contact-info-card__text a:hover {
  color: var(--ink);
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .xp-destinos__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .xp-dest-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 56px;
  }

  header {
    height: 56px;
  }

  .xp-destinos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .xp-dest-card--featured {
    grid-column: span 2;
  }

  .sl-hero__img-wrap {
    display: none;
  }

  .sl-hero__content {
    max-width: 100%;
  }

  .xp-about {
    grid-template-columns: 1fr;
  }

  .xp-contact {
    grid-template-columns: 1fr;
  }

  .xp-stats {
    gap: 2.5rem;
  }

  .xp-counters {
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .xp-destinos__grid {
    grid-template-columns: 1fr 1fr;
  }

  .xp-exp__grid {
    grid-template-columns: 1fr;
  }

  .sl-tabs-wrap {
    padding: 0.75rem 4%;
  }

  .sl-main {
    padding: 2rem 4% 4rem;
  }

  nav {
    position: relative;
    justify-content: flex-end;
    gap: 0.55rem;
    align-items: center;
  }

  nav ul {
    display: none;
  }

  nav.menu-open ul {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    width: min(350px, calc(100vw - 24px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 0;
    padding: 18px 14px 14px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 244, 236, 0.98) 100%);
    border: 1px solid rgba(196, 154, 90, 0.2);
    border-radius: 28px;
    box-shadow: 0 26px 55px rgba(20, 18, 14, 0.2);
    backdrop-filter: blur(18px);
    z-index: 120;
  }

  nav.menu-open ul::before {
    content: "";
    width: 46px;
    height: 4px;
    margin: 0 auto 4px;
    border-radius: 999px;
    background: rgba(196, 154, 90, 0.3);
  }

  nav.menu-open ul li {
    width: 100%;
  }

  nav.menu-open ul li a {
    width: 100%;
    padding: 13px 16px;
    border-radius: 16px;
    text-align: left;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(196, 154, 90, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  nav.menu-open ul li a.active {
    background: rgba(196, 154, 90, 0.16);
    color: var(--ink);
  }

  nav.menu-open ul li a.active::after {
    display: none;
  }

  .social-float {
    order: 1;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    flex-direction: column;
    bottom: -140px;
  }

  .social-float-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 22px rgba(44, 37, 32, 0.12);
    backdrop-filter: blur(10px);
  }

  .hamburger-menu {
    display: flex;
    order: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: 0;
    border-radius: 50%;
    border: 1px solid rgba(196, 154, 90, 0.16);
    background: rgba(253, 250, 245, 0.88);
    box-shadow: 0 14px 28px rgba(44, 37, 32, 0.14);
    backdrop-filter: blur(10px);
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  }

  .hamburger-menu:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(44, 37, 32, 0.16);
  }

  .hamburger-menu.active {
    background: rgba(196, 154, 90, 0.12);
    box-shadow: 0 16px 32px rgba(44, 37, 32, 0.18);
  }

  .hamburger-line {
    width: 18px;
    height: 2px;
  }

  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}