/* =========================================================
   Horizons Journeys
   /assets/css/styles.css
   ========================================================= */

:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-soft: #f7f5f1;
  --color-soft-blue: #f2f6f8;
  --color-ink: #263947;
  --color-ink-2: #344b5b;
  --color-muted: #69757d;
  --color-gold: #c8a45d;
  --color-gold-2: #d9bd7f;
  --color-gold-soft: #f2ead8;
  --color-line: rgba(38, 57, 71, .12);
  --color-dark: #162633;

  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;

  --container: 1180px;
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 70px rgba(22, 38, 51, .12);
  --shadow-card: 0 18px 45px rgba(22, 38, 51, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

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

button, input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
  position: relative;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-2));
}

/* Header */
.site-header {
  position: fixed;
  z-index: 2500;
  top: 0;
  left: 0;
  right: 0;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 10px 30px rgba(22, 38, 51, .04);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
}

.brand img {
  width: 172px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: var(--color-ink-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width .25s ease;
}

.desktop-nav a:hover::after { width: 100%; }

/* Dropdown de Destinations */
.desktop-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  padding: 10px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 60;
}

/* Puente invisible para que no se cierre al mover el cursor hacia el submenú */
.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(14px);
}

.submenu a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--color-ink-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.submenu a::after { display: none; }

.submenu a:hover {
  background: var(--color-soft);
  color: var(--color-ink);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--color-dark);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; }

/* Typography */
.eyebrow {
  margin: 0 0 18px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(58px, 7vw, 112px);
  line-height: .84;
}

h2 {
  font-size: clamp(42px, 5vw, 78px);
  line-height: .92;
}

h3 {
  margin: 0;
  color: var(--color-ink);
}

p {
  color: var(--color-muted);
  line-height: 1.78;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 124px;
  background:
    radial-gradient(circle at 6% 18%, rgba(200, 164, 93, .10), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(38, 57, 71, .08), transparent 26%),
    #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 62px;
  align-items: center;
}

.hero-copy { max-width: 610px; }

.hero-text {
  max-width: 580px;
  margin: 26px 0 34px;
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-dark);
  color: #fff;
  box-shadow: 0 16px 32px rgba(22, 38, 51, .18);
}

.btn-secondary {
  border: 1px solid var(--color-line);
  background: #fff;
  color: var(--color-ink);
}

.hero-media {
  position: relative;
  min-height: 650px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-soft);
  box-shadow: var(--shadow-soft);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(14, 25, 34, .54));
  pointer-events: none;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
}

.hero-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-ink);
  font-size: 20px;
}

.hero-card span { color: var(--color-muted); }

/* Strip */
.intro-strip {
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--color-line);
  background: #fff;
}

.intro-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.intro-track span {
  padding: 0 34px;
  color: var(--color-ink-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee { to { transform: translateX(-50%); } }

/* Section headings */
.section-heading { max-width: 660px; }

.section-heading.centered {
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading.centered p:not(.eyebrow) { margin-inline: auto; }

.section-heading p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 22px;
  font-size: 17px;
}

/* About */
.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.about-preview {
  background:
    linear-gradient(90deg, rgba(200, 164, 93, .10) 0 1px, transparent 1px) 0 0 / 56px 56px,
    #fff;
}

.about-content {
  padding: 34px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-card);
}

.about-content p {
  margin-top: 0;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--color-ink);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  color: var(--color-gold);
}

/* Experiences */
.soft-bg {
  background:
    linear-gradient(180deg, #fff 0%, var(--color-soft-blue) 100%);
}

.section-framed::before {
  content: "";
  position: absolute;
  inset: 38px 24px;
  border: 1px solid rgba(200, 164, 93, .22);
  border-radius: 46px;
  pointer-events: none;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}

.experience-card {
  overflow: hidden;
  border: 1px solid rgba(38, 57, 71, .10);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

/* Zones / destinations cards (home) */
.zones-section { background: var(--color-soft); }

.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.zone-card {
  position: relative;
  display: block;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  color: #fff;
  isolation: isolate;
}

.zone-card__media { position: absolute; inset: 0; z-index: 0; }

.zone-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.zone-card:not(.is-soon):hover .zone-card__media img { transform: scale(1.05); }

.zone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14, 25, 34, 0) 28%, rgba(14, 25, 34, .85) 100%);
  transition: background .4s ease;
}

/* Al pasar el cursor se oscurece toda la tarjeta para que el texto
   (título + descripción que se despliega) sea legible sobre la foto */
.zone-card:not(.is-soon):hover::before,
.zone-card:not(.is-soon):focus-within::before {
  background: linear-gradient(180deg, rgba(14, 25, 34, .55) 0%, rgba(14, 25, 34, .72) 50%, rgba(14, 25, 34, .96) 100%);
}

.zone-card.is-soon::before {
  background: linear-gradient(180deg, rgba(14, 25, 34, .28) 0%, rgba(14, 25, 34, .82) 100%);
}

.zone-card__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 38px 30px;
  text-align: center;
}

.zone-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 18px rgba(14, 25, 34, .85), 0 0 2px rgba(14, 25, 34, .5);
}

.zone-card__title::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  margin: 16px auto 0;
  background: var(--color-gold);
}

.zone-card__desc {
  max-width: 320px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 10px rgba(14, 25, 34, .6);
  /* Oculta por defecto: aparece al pasar el cursor (hover/foco) */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height .45s ease, opacity .35s ease, transform .45s ease;
}

.zone-card:hover .zone-card__desc,
.zone-card:focus-within .zone-card__desc {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
}

.zone-card__cta,
.zone-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 26px;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.zone-card__cta {
  color: var(--color-gold-2);
  transition: background .25s ease, color .25s ease;
}

.zone-card:hover .zone-card__cta {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* Destino aún no disponible: blanco pero con aspecto deshabilitado
   (sin el dorado para que no parezca un botón activo) */
.zone-soon {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
  cursor: default;
  opacity: .75;
}

.zones-quote {
  max-width: 640px;
  margin: 64px auto 0;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  color: var(--color-ink-2);
}

.zones-quote::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 0 auto 28px;
  background: var(--color-line);
}

@media (max-width: 860px) {
  .zone-grid { grid-template-columns: 1fr; }
  .zone-card { min-height: 460px; }
  /* En mobile no hay hover: la descripción se muestra siempre */
  .zone-card__desc {
    max-height: 200px;
    opacity: 1;
    transform: none;
  }
}

.card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-soft);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body { padding: 30px; }

.card-body span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-gold);
  font-weight: 800;
  letter-spacing: .12em;
}

.card-body h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1;
}

.card-body p {
  min-height: 88px;
  margin: 18px 0 22px;
}

.card-body a {
  color: var(--color-ink);
  font-weight: 800;
}

.card-body a::after {
  content: " →";
  color: var(--color-gold);
}

/* Destinations */
.destinations-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(200, 164, 93, .10), transparent 28%),
    #fff;
}

.destinations-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.destination-list {
  display: grid;
  gap: 14px;
}

.destination-list a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 28px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: #fff;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 36px rgba(22, 38, 51, .05);
  transition: transform .25s ease, border-color .25s ease;
}

.destination-list a:hover {
  transform: translateX(8px);
  border-color: rgba(200, 164, 93, .55);
}

.destination-list span {
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

/* Dark section */
.dark-section {
  background:
    linear-gradient(135deg, rgba(200, 164, 93, .10), transparent 34%),
    var(--color-dark);
}

.dark-section h2,
.dark-section h3 { color: #fff; }

.dark-section p { color: rgba(255, 255, 255, .70); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .055);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-dark);
  font-weight: 900;
}

.step-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

/* FAQ */
.faq-section {
  background: var(--color-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.faq-item + .faq-item {
  border-top: 1px solid var(--color-line);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 28px;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  text-align: left;
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
}

.faq-item button b {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--color-gold-soft);
  color: var(--color-ink);
  font-size: 22px;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  color: var(--color-muted);
  line-height: 1.75;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
  padding: 0 28px 26px;
}

/* CTA */
.final-cta {
  padding: 124px 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(200, 164, 93, .13), transparent 32%),
    #fff;
}

.final-cta-inner {
  max-width: 850px;
  margin-inline: auto;
  padding: 64px;
  border: 1px solid rgba(200, 164, 93, .22);
  border-radius: 44px;
  background: linear-gradient(180deg, #fff, #fbfaf7);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.final-cta-inner p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px auto 32px;
  font-size: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
}

.contact-form input,
.contact-form button {
  min-height: 56px;
  border-radius: 999px;
}

.contact-form input {
  width: 100%;
  border: 1px solid var(--color-line);
  padding: 0 20px;
  background: #fff;
  color: var(--color-ink);
  outline: none;
}

.contact-form input:focus { border-color: var(--color-gold); }

.contact-form button {
  border: 0;
  padding: 0 28px;
  background: var(--color-dark);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

/* Footer */
.site-footer {
  padding: 76px 0 28px;
  background: #101a23;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 24px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .66);
}

.site-footer h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer a {
  display: table;
  margin-bottom: 10px;
}

.footer-label {
  display: table;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .66);
}

.footer-sublink {
  padding-left: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, .5) !important;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .66);
  transition: border-color .25s, background .25s, color .25s;
}

.footer-social a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .06);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
}

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2300;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* Responsive */
@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 170px 1fr auto; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 12px; }
  .header-cta { display: none; }
}

@media (max-width: 920px) {
  .section { padding: 84px 0; }

  .desktop-nav { display: none; }
  .menu-toggle { display: block; }

  .header-inner { grid-template-columns: 1fr auto; }

  .mobile-nav {
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border-top: 1px solid transparent;
    background: rgba(255, 255, 255, .98);
    transition: max-height .3s ease, padding .3s ease, border-color .3s ease;
  }

  .mobile-nav.is-open {
    max-height: 520px;
    padding: 18px 20px 28px;
    border-color: var(--color-line);
  }

  .mobile-nav a {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-line);
    font-family: var(--font-serif);
    color: var(--color-ink);
    font-size: 32px;
    font-weight: 700;
  }

  .mobile-nav span {
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 12px;
  }

  /* Sub-destinos dentro del menú mobile */
  .mobile-nav a.mobile-sublink {
    padding: 12px 0 12px 18px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-ink-2);
  }

  .mobile-nav a.mobile-sublink::before {
    content: "—";
    margin-right: 10px;
    color: var(--color-gold);
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-grid,
  .split-grid,
  .destinations-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-copy { max-width: none; }
  .hero-media { min-height: 520px; }

  .experience-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .card-body p { min-height: auto; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-form { grid-template-columns: 1fr; }
  .final-cta-inner { padding: 42px 24px; }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner { min-height: 78px; }

  .brand,
  .brand img {
    width: 145px;
  }

  h1 { font-size: 56px; }
  h2 { font-size: 42px; }

  .hero-media {
    min-height: 430px;
    border-radius: 26px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .section-framed::before {
    inset: 20px 10px;
    border-radius: 28px;
  }

  .destination-list a {
    padding: 22px;
    font-size: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-btn {
    width: 54px;
    height: 54px;
  }
}


/* =========================================================
   V3 adjustments: white site background + full horizontal video hero
   ========================================================= */

body,
.hero,
.about-preview,
.destinations-section,
.final-cta {
  background-color: #ffffff;
}

.hero-full {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 25, 35, .76) 0%, rgba(12, 25, 35, .50) 42%, rgba(12, 25, 35, .18) 100%),
    linear-gradient(180deg, rgba(12, 25, 35, .32) 0%, rgba(12, 25, 35, .08) 46%, rgba(12, 25, 35, .38) 100%);
  z-index: 1;
}

.hero-full-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding-top: 110px;
  padding-bottom: 60px;
}

.hero-full .hero-copy {
  max-width: 720px;
}

.hero-full h1,
.hero-full .hero-text {
  color: #ffffff;
}

.hero-full .hero-text {
  color: rgba(255, 255, 255, .84);
}

.hero-full .eyebrow {
  color: var(--color-gold-2);
}

.hero-full .btn-primary {
  background: #ffffff;
  color: var(--color-ink);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

.btn-glass {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.hero-info-card {
  align-self: flex-end;
  max-width: 360px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .30);
  border-radius: 24px;
  background: rgba(255, 255, 255, .14);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.hero-info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-info-card span {
  color: rgba(255, 255, 255, .76);
  line-height: 1.6;
}

.soft-bg {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fa 100%);
}

.faq-section {
  background: #ffffff;
}

.final-cta {
  background: #ffffff;
}

.final-cta-inner {
  background: linear-gradient(180deg, #ffffff, #fbfaf7);
}

@media (max-width: 920px) {
  .hero-full-content {
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    padding-top: 120px;
  }

  .hero-info-card {
    align-self: stretch;
    max-width: none;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(12, 25, 35, .36) 0%, rgba(12, 25, 35, .42) 38%, rgba(12, 25, 35, .82) 100%);
  }
}

@media (max-width: 560px) {
  .hero-full {
    min-height: 92vh;
  }

  .hero-full-content {
    min-height: 92vh;
    padding-bottom: 34px;
  }

  .hero-full h1 {
    font-size: 52px;
  }
}


/* =========================================================
   About Us page
   ========================================================= */

.desktop-nav a.is-active,
.mobile-nav a.is-active {
  color: var(--color-gold);
}

.desktop-nav a.is-active::after {
  width: 100%;
}

.page-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px 0 82px;
  background: #fff;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 25, 35, .78), rgba(12, 25, 35, .40), rgba(12, 25, 35, .10)),
    linear-gradient(180deg, rgba(12, 25, 35, .20), rgba(12, 25, 35, .74));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-inline: auto auto;
}

.page-hero h1 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(58px, 7vw, 108px);
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
}

/* Mosaico de fotos (destinations.php): reutiliza la HeroImage de cada
   destino ya existente en la BD, sin necesitar fotografía nueva. El grid de
   4x2 (2x3 en mobile) asume 5 fotos; con menos, el auto-placement del grid
   deja celdas vacías (se ve el fondo navy) en vez de estirar las imágenes
   restantes. Por eso destinations.php agrega una clase .tiles-N con la
   cantidad real, y cada caso (1 a 5) se ajusta acá para llenar todo el
   espacio sin huecos. */
.page-hero-bg.is-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  background: linear-gradient(135deg, #0a1f34, #123252);
}

.page-hero-bg.is-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero-bg.is-mosaic img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.page-hero-bg.is-mosaic.tiles-1 img:first-child {
  grid-column: span 4;
}

.page-hero-bg.is-mosaic.tiles-2 img {
  grid-column: span 2;
  grid-row: span 2;
}

.page-hero-bg.is-mosaic.tiles-3 img:not(:first-child) {
  grid-row: span 2;
}

.page-hero-bg.is-mosaic.tiles-4 img:last-child {
  grid-column: span 2;
}

@media (max-width: 720px) {
  .page-hero-bg.is-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .page-hero-bg.is-mosaic img:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .page-hero-bg.is-mosaic.tiles-1 {
    grid-template-rows: 1fr;
  }

  .page-hero-bg.is-mosaic.tiles-2,
  .page-hero-bg.is-mosaic.tiles-3 {
    grid-template-rows: repeat(2, 1fr);
  }

  .page-hero-bg.is-mosaic.tiles-2 img {
    grid-column: span 2;
  }

  .page-hero-bg.is-mosaic.tiles-4 img:last-child {
    grid-column: span 2;
  }
}

.about-story-section {
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 86px;
  align-items: start;
}

.about-story-copy {
  padding: 42px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, #fff, #fbfaf7);
  box-shadow: var(--shadow-card);
}

.about-story-copy p {
  margin: 0 0 20px;
  font-size: 18px;
}

.about-story-copy p:last-child {
  margin-bottom: 0;
}

.about-story-copy .lead {
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1.08;
}

.about-image-band {
  background: #fff;
  padding-top: 0;
}

.about-image-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.about-image-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.about-image-card:first-child {
  transform: translateY(44px);
}

.about-image-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.about-image-card figcaption {
  padding: 20px 24px;
  color: var(--color-muted);
  font-size: 14px;
}

.about-purpose-section {
  background: #f6f8f9;
}

.about-purpose-inner {
  max-width: 820px;
  margin-inline: auto;
}

.about-purpose-copy {
  margin-top: 8px;
  text-align: center;
}

.about-purpose-copy .lead {
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-ink);
}

.about-purpose-copy p:not(.lead) {
  max-width: 680px;
  margin-inline: auto;
  margin-top: 20px;
  color: var(--color-muted);
}

.about-values-section {
  background:
    linear-gradient(180deg, #f6f8f9 0%, #f7f9fa 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  padding: 34px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.value-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--color-gold);
  font-weight: 900;
  letter-spacing: .12em;
}

.value-card span i {
  font-size: 44px;
  line-height: 1;
  font-weight: 400;
}

.value-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
}

.about-cta {
  background: #fff;
}

.about-cta-inner {
  max-width: 900px;
  margin-inline: auto;
  padding: 70px;
  border: 1px solid rgba(200, 164, 93, .25);
  border-radius: 46px;
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 164, 93, .16), transparent 32%),
    linear-gradient(180deg, #fff, #fbfaf7);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.about-cta-inner p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px auto 32px;
  font-size: 18px;
}

@media (max-width: 920px) {
  .about-story-grid,
  .about-image-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-image-card:first-child {
    transform: none;
  }

  .about-image-card img {
    height: 520px;
  }

  .about-cta-inner {
    padding: 42px 24px;
  }
}

@media (max-width: 560px) {
  .page-hero {
    min-height: 72vh;
    padding: 130px 0 48px;
  }

  .page-hero h1 {
    font-size: 52px;
  }

  .about-story-copy {
    padding: 28px;
  }

  .about-story-copy .lead {
    font-size: 30px;
  }

  .about-image-card img {
    height: 430px;
  }
}


/* =========================================================
   V5 header visibility over video hero
   ========================================================= */

.site-header {
  background: rgba(9, 20, 29, .30);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 20, 29, .48), rgba(9, 20, 29, .16));
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 2;
}

.brand {
  position: relative;
  min-height: 58px;
}

.brand .logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: 172px;
  height: auto;
  transform: translateY(-50%);
  transition: opacity .25s ease, filter .25s ease;
}

.brand .logo-dark {
  opacity: 0;
}

.brand .logo-light {
  opacity: 1;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .28));
}

.site-header:not(.is-scrolled) .desktop-nav a {
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
}

.site-header:not(.is-scrolled) .desktop-nav a:hover,
.site-header:not(.is-scrolled) .desktop-nav a.is-active {
  color: #ffffff;
}

.site-header:not(.is-scrolled) .desktop-nav a::after {
  background: var(--color-gold-2);
}

/* El submenú siempre va sobre fondo blanco: forzar texto oscuro */
.site-header:not(.is-scrolled) .submenu a,
.site-header:not(.is-scrolled) .submenu a:hover {
  color: var(--color-ink-2);
  text-shadow: none;
}

.site-header:not(.is-scrolled) .submenu a:hover {
  color: var(--color-ink);
}

.site-header:not(.is-scrolled) .header-cta {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .32);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.site-header:not(.is-scrolled) .menu-toggle {
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .26);
}

/* Scrolled state */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-line);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.site-header.is-scrolled .brand .logo-dark {
  opacity: 1;
}

.site-header.is-scrolled .brand .logo-light {
  opacity: 0;
}

.site-header.is-scrolled .desktop-nav a {
  color: var(--color-ink-2);
  text-shadow: none;
}

.site-header.is-scrolled .header-cta {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: #ffffff;
}

/* Stronger hero readability */
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 18, 28, .84) 0%, rgba(7, 18, 28, .56) 44%, rgba(7, 18, 28, .22) 100%),
    linear-gradient(180deg, rgba(7, 18, 28, .48) 0%, rgba(7, 18, 28, .12) 46%, rgba(7, 18, 28, .46) 100%);
}

@media (max-width: 920px) {
  .site-header {
    background: rgba(9, 20, 29, .42);
  }

  .mobile-nav {
    background: rgba(255, 255, 255, .98);
  }

  .site-header:not(.is-scrolled) .mobile-nav a {
    color: var(--color-ink);
    text-shadow: none;
  }
}

@media (max-width: 560px) {
  .brand,
  .brand .logo {
    width: 150px;
  }
}


/* =========================================================
   Destination page (destination.php)
   ========================================================= */

/* Hero centrado (vs. el de About que va alineado a la izquierda) */
.dest-hero {
  align-items: center;
  text-align: center;
}

.dest-hero .page-hero-content {
  margin-inline: auto;
}

.dest-hero p:not(.eyebrow) {
  margin-inline: auto;
}

.dest-hero .eyebrow {
  letter-spacing: .28em;
}

/* Cita de cierre */
.dest-closing { background: var(--color-soft); }

.dest-closing .zones-quote { margin-top: 0; }

/* "Our Service" → Transfers */
.transfer-section { background: var(--color-soft); }

.transfer-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.transfer-copy h2 {
  margin: 6px 0 18px;
}

.transfer-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.transfer-copy .btn {
  margin-top: 32px;
}

.transfer-feature svg {
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.transfer-feature h4 {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-ink);
}

.transfer-feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-muted);
}

.transfer-media img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center 62%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.transfer-media { margin: 0; }

@media (max-width: 920px) {
  .transfer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .transfer-media { order: -1; }
}

@media (max-width: 560px) {
  .transfer-features {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ===================== Detalle de experiencia ===================== */
.exp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-line);
}
.exp-breadcrumb a,
.exp-breadcrumb span { display: inline-flex; align-items: center; }
.exp-breadcrumb a {
  color: var(--color-ink-2);
  text-decoration: none;
  transition: color .2s ease;
}
.exp-breadcrumb a:hover { color: var(--color-gold); }
/* Separador en chevron entre ítems (no antes del primero). */
.exp-breadcrumb a + a::before,
.exp-breadcrumb a + span::before {
  content: "\203A"; /* › */
  margin: 0 10px;
  color: rgba(38, 57, 71, .38);
  font-size: 14px;
}
/* Página actual: más peso, color tinta. */
.exp-breadcrumb span[aria-current] {
  color: var(--color-ink);
  font-weight: 600;
}

.exp-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
.exp-body { line-height: 1.85; color: var(--color-ink-2); white-space: pre-line; }
/* Lead: primer párrafo de la descripción, más grande y en tinta, para crear
   jerarquía entre el h1 del hero y el cuerpo. */
.exp-body > p:first-child {
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--color-ink);
  margin-bottom: 1.4rem;
}

.exp-aside {
  position: sticky;
  top: 100px;
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: 28px 26px;
}
.exp-price-label {
  margin: 0;
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.exp-price-value {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--color-ink);
  line-height: 1.05;
  margin: 8px 0 0;
}
.exp-price-unit { font-size: 13px; color: var(--color-muted); margin-top: 2px; }
.exp-price-cta { margin-top: 22px; width: 100%; }
/* Micro-lista de garantías de marca (ancla el card y da confianza). */
.exp-price-notes {
  list-style: none;
  margin: 22px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--color-line);
  display: grid;
  gap: 11px;
}
.exp-price-notes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--color-ink-2);
}
.exp-price-notes li::before {
  content: "\2713"; /* ✓ */
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold);
  background: var(--color-gold-soft);
  border-radius: 50%;
}

/* ===================== Carrusel de experiencia ===================== */
.exp-gallery-head {
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--color-line, #e3e7e4);
}
.exp-gallery-head .eyebrow { margin-bottom: 8px; }
.exp-gallery-head h2 { margin: 0; }
/* Mosaico tipo collage/bento: teselas de distintos tamaños que se entrelazan.
   El JS fija las columnas, el alto de unidad (grid-auto-rows) y el tamaño de
   cada tesela (grid-column/row span) según la orientación de cada foto. Cubre
   la celda con object-fit: cover (recorte leve, propio de este estilo). */
.exp-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: row dense;
  gap: 10px;
  margin-top: clamp(20px, 3vw, 28px);
}
.exp-gallery-head + .exp-mosaic { margin-top: clamp(20px, 3vw, 28px); }
/* Respaldo con pocas fotos (<4): fila justificada de teselas parejas, sin huecos
   ni recorte. El JS conmuta a este modo y fija ancho/alto por foto. */
.exp-mosaic--few {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.exp-mosaic-item {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--color-line, #e3e7e4);
  color: inherit;
  font: inherit;
  cursor: zoom-in;
  overflow: hidden;
}
.exp-mosaic-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.exp-mosaic-item:hover img,
.exp-mosaic-item:focus-visible img { transform: scale(1.04); }
.exp-mosaic-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 34px 14px 12px;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  background: linear-gradient(to top, rgba(15, 23, 20, .78), rgba(15, 23, 20, 0));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
  /* Tope a 2 líneas: un alt largo no debe poder crecer hasta tapar la foto entera. */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.exp-mosaic-item:hover .exp-mosaic-caption,
.exp-mosaic-item:focus-visible .exp-mosaic-caption { opacity: 1; }
@media (hover: none) {
  /* En táctil no hay hover: el pie de foto se muestra siempre. */
  .exp-mosaic-caption { opacity: 1; }
}

/* ---- Lightbox (pantalla completa) ---- */
.exp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(8, 12, 11, .93);
  opacity: 0;
  transition: opacity .25s ease;
}
.exp-lightbox.is-open { opacity: 1; }
.exp-lightbox[hidden] { display: none; }
.exp-lightbox-img {
  max-width: min(1100px, 100%);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .8);
}
.exp-lightbox-caption {
  margin: 0;
  max-width: 70ch;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.exp-lightbox-caption[hidden] { display: none; }
.exp-lightbox-close,
.exp-lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease;
}
.exp-lightbox-close:hover,
.exp-lightbox-nav:hover { background: rgba(255, 255, 255, .24); }
.exp-lightbox-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
}
.exp-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}
.exp-lightbox-prev { left: clamp(12px, 3vw, 32px); }
.exp-lightbox-next { right: clamp(12px, 3vw, 32px); }

@media (prefers-reduced-motion: reduce) {
  .exp-carousel-track { scroll-behavior: auto; }
  .exp-lightbox { transition: none; }
}

/* ===================== Experiencias relacionadas (carrusel) ===================== */
.exp-related {
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--color-line, #e3e7e4);
}
.exp-related-head { margin-bottom: clamp(16px, 2.4vw, 24px); }
.exp-related-head .eyebrow { margin-bottom: 8px; }
.exp-related-head h2 { margin: 0; }

.exp-related-viewport { position: relative; }

.exp-related-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.exp-related-track::-webkit-scrollbar { display: none; }

.exp-related-card {
  position: relative;
  flex: 0 0 auto;
  /* 3 tarjetas visibles por vista (2 huecos de 18px entre ellas). */
  width: calc((100% - 36px) / 3);
  scroll-snap-align: start;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 760px) {
  .exp-related-card { width: calc((100% - 18px) / 2); }
}
@media (max-width: 560px) {
  /* Una tarjeta casi completa + "peek" de la siguiente, invita a deslizar. */
  .exp-related-card { width: 78%; }
}
.exp-related-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-line, #e3e7e4);
}
.exp-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.exp-related-card:hover .exp-related-media img,
.exp-related-card:focus-visible .exp-related-media img { transform: scale(1.05); }

/* Título: siempre visible, debajo de la foto (desktop y mobile). */
.exp-related-title {
  margin: 12px 2px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.35;
}

/* Subtítulo (ShortDesc): en desktop es un pie de foto superpuesto a la imagen,
   oculto hasta pasar el mouse (mismo criterio que el pie de foto de la
   galería). En touch no hay hover, así que se muestra fijo debajo del título
   (ver @media hover:none más abajo), igual que ya hacíamos en la galería. */
.exp-related-sub {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 30px 12px 12px;
  border-radius: 0 0 14px 14px;
  font-size: 13px;
  line-height: 1.45;
  color: #fff;
  background: linear-gradient(to top, rgba(15, 23, 20, .78), rgba(15, 23, 20, 0));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.exp-related-card:hover .exp-related-sub,
.exp-related-card:focus-visible .exp-related-sub { opacity: 1; }
@media (hover: none) {
  .exp-related-sub {
    position: static;
    margin: 4px 2px 0;
    padding: 0;
    border-radius: 0;
    color: var(--color-ink-2);
    background: none;
    opacity: 1;
    font-size: 13.5px;
    -webkit-line-clamp: 2;
  }
}

/* Flechas: solo para navegación con mouse/trackpad (desktop). En touch, el
   scroll-snap nativo con "peek" de la siguiente tarjeta ya invita a deslizar. */
.exp-related-nav {
  display: none;
  position: absolute;
  /* El título vuelve a ocupar espacio propio debajo de la foto: centrar
     un poco más arriba del medio de la tarjeta para quedar a la altura
     de la imagen (no de la imagen + título). */
  top: 38%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line, #e3e7e4);
  border-radius: 50%;
  background: #fff;
  color: var(--color-ink);
  cursor: pointer;
  box-shadow: 0 10px 24px -14px rgba(0, 0, 0, .3);
  transition: opacity .2s ease, background .2s ease;
}
.exp-related-nav:hover { background: var(--color-soft); }
.exp-related-nav[disabled] { opacity: .3; pointer-events: none; }
.exp-related-prev { left: -8px; }
.exp-related-next { right: -8px; }
.exp-related.has-overflow .exp-related-nav { display: inline-flex; }
@media (hover: none) {
  .exp-related-nav { display: none !important; }
}

/* Refuerza el CTA de cotización justo después de mostrar alternativas, para
   que no quede "perdido" más abajo si el usuario decide seguir con esta. */
.exp-related-cta {
  margin-top: clamp(28px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}
.exp-related-cta p {
  margin: 0;
  color: var(--color-ink-2);
  font-size: 15px;
}

@media (max-width: 860px) {
  .exp-layout { grid-template-columns: 1fr; gap: 28px; }
  .exp-aside { position: static; }
}

/* ===================== Cotizador ===================== */
.hp { position: absolute !important; left: -9999px !important; height: 0; overflow: hidden; }

.quote-form { max-width: 960px; margin: 0 auto; }

/* Grilla fluida: las columnas se acomodan al ancho del navegador. */
.qf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px 20px;
  margin-bottom: 22px;
}
.qf-grid-trip { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); margin-bottom: 18px; }
.qf-full { grid-column: 1 / -1; }

.qf-field { display: flex; flex-direction: column; min-width: 0; }
.qf-field label {
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--color-muted); margin-bottom: 8px;
}
.qf-opt { font-weight: 500; text-transform: none; letter-spacing: 0; opacity: .8; }

.qf-field input,
.qf-field select,
.qf-field textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 13px 15px;
  font: inherit;
  font-size: 15px;
  color: var(--color-ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.qf-field input::placeholder,
.qf-field textarea::placeholder { color: #9aa4ab; }
.qf-field input:hover,
.qf-field select:hover,
.qf-field textarea:hover { border-color: rgba(38, 57, 71, .26); }
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-soft);
}
.qf-field textarea { resize: vertical; min-height: 112px; }

/* Select con flecha propia (combo de selección estilizado). */
.qf-select { position: relative; display: flex; }
.qf-select select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 42px; cursor: pointer;
}
.qf-select::after {
  content: ""; position: absolute; right: 17px; top: 50%; margin-top: -7px;
  width: 9px; height: 9px;
  border-right: 2px solid var(--color-muted);
  border-bottom: 2px solid var(--color-muted);
  transform: rotate(45deg);
  pointer-events: none;
}

/* Panel "configura tu viaje": travelers + moneda + precio estimado. */
.qf-panel {
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 22px 22px 24px;
  margin-bottom: 28px;
}

.qf-price {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 4px 18px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  padding: 16px 20px;
}
.qf-price-label {
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--color-muted);
}
.qf-price-value { font-family: var(--font-serif); font-size: 34px; color: var(--color-ink); line-height: 1; }
.qf-price-detail { width: 100%; font-size: 13px; color: var(--color-muted); }

.qf-section-label {
  font-family: var(--font-serif); font-size: 24px; color: var(--color-ink);
  margin: 0 0 16px;
}
.qf-note { font-size: 13px; color: var(--color-muted); margin: 4px 0 20px; }
.qf-turnstile { margin-bottom: 18px; }
.qf-submit { width: 100%; }

/* Consentimiento (privacidad obligatorio + marketing opcional). */
.qf-consent { display: flex; flex-direction: column; gap: 12px; margin: 0 0 20px; }
.qf-check {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; line-height: 1.55; color: var(--color-ink-2);
  cursor: pointer;
}
.qf-check input[type="checkbox"] {
  flex: 0 0 auto;
  width: 20px; height: 20px; margin: 1px 0 0;
  accent-color: var(--color-gold);
  cursor: pointer;
}
.qf-check a { color: var(--color-ink); text-decoration: underline; text-underline-offset: 2px; }
.qf-check a:hover { color: var(--color-gold); }
.qf-req { color: var(--color-gold); font-weight: 600; }

.quote-alert { max-width: 960px; margin: 0 auto 22px; padding: 14px 18px; border-radius: 10px; }
.quote-ok { background: #e8f5ec; color: #1f7a43; border: 1px solid #bfe3cb; }
.quote-err { background: #fdeced; color: #b3261e; border: 1px solid #f5c2c0; }

/* Error pages (404 / 403) */
.error-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 168px 0 112px;
  background:
    radial-gradient(circle at 6% 18%, rgba(200, 164, 93, .10), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(38, 57, 71, .08), transparent 26%),
    #fff;
}

.error-hero-inner {
  max-width: 720px;
  text-align: center;
  margin-inline: auto;
}

.error-code {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(96px, 16vw, 220px);
  line-height: .84;
  letter-spacing: -.035em;
  background: linear-gradient(180deg, var(--color-ink), var(--color-ink-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.error-hero h2 {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 44px);
}

.error-text {
  max-width: 520px;
  margin: 22px auto 0;
  font-size: 17px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

@media (max-width: 560px) {
  .qf-panel { padding: 18px; }
  .qf-price-value { font-size: 30px; }
}
