/* =========================================================
   Meridian Padel — Styles (Premium one-page)
   Palette extracted from dossier:
   --mp-black #030203
   --mp-charcoal #1B1B1B
   --mp-dark #232323
   --mp-gray-200 #E8E8E8
   --mp-gray-300 #D7D7D7
   --mp-white-soft #F9F9F8
   --mp-white #FFFFFF
   --mp-gold #F2D081
   --mp-bronze #EBAF77
   --mp-red #E03E30
   --mp-steel #1B2427
========================================================= */

:root {
  --mp-black: #030203;
  --mp-charcoal: #1b1b1b;
  --mp-dark: #232323;

  --mp-gray-200: #e8e8e8;
  --mp-gray-300: #d7d7d7;
  --mp-white-soft: #f9f9f8;
  --mp-white: #ffffff;

  --mp-gold: #f2d081;
  --mp-bronze: #ebaf77;
  --mp-red: #e03e30;

  --mp-steel: #1b2427;

  --radius-xl: 22px;
  --radius-lg: 18px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.12);

  --container: 1120px;
  --pad: clamp(18px, 3vw, 28px);

  --header-offset: 60px;
}

* {
  box-sizing: border-box;
  text-align: justify;
}

/* ---------------------------------------------------------
   JUSTIFY TUNING (Home + Who We Are)
   Keep the editorial justify look, but prevent "rivers"
   (big white gaps) on short headings and compact UI.
--------------------------------------------------------- */

/* Never justify short headings/labels on these pages */
.page--home :where(.destinationsTitle, .kicker, .card__title),
.page--who :where(.kicker, .card__title) {
  text-align: left;
  text-wrap: balance;
}

/* Long-form copy: keep justify, improve line breaks */
.page--home
  :where(
    .destinationsSubtitle,
    .card__text,
    .heroCard__text,
    .sectionHead__subtitle
  ),
.page--who
  :where(
    .card__text,
    .heroCard__text,
    .hero__subtitle,
    .sectionHead__subtitle
  ) {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

/* ---------------------------------------------------------
   Global justification looks great for long paragraphs, but
   it creates ugly "rivers" (big white gaps) on headings and
   compact UI labels. We neutralize that where it matters.
--------------------------------------------------------- */

/* Headings / titles: avoid justification artifacts */
.hero__title,
.sectionHead__title,
.heroCard__title {
  text-align: left;
  /* Nicer line breaks on narrow screens (supported browsers) */
  text-wrap: balance;
}

p,
li {
  hyphens: auto;
  text-wrap: pretty;
}

.pill {
  text-align: center;
}

.stat__value,
.stat__label {
  text-align: left;
  text-wrap: balance;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--mp-white);
  background: var(--mp-black);
  overflow-x: hidden;
}

/* Background orbs */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      700px 500px at 20% 10%,
      rgba(242, 208, 129, 0.15),
      transparent 55%
    ),
    radial-gradient(
      800px 600px at 80% 20%,
      rgba(235, 175, 119, 0.1),
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 70% 90%,
      rgba(224, 62, 48, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, #030203 0%, #0b0b0b 45%, #030203 100%);
  filter: saturate(110%);
}

/* Container */
.container {
  width: min(var(--container), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 2, 3, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--mp-white);
}

.brand__logo {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

/* Make the MP mark visually larger without changing the square container */
.brand__logoImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.6);
  transform-origin: center;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 21px;
  text-transform: none;
  opacity: 0.98;
}

.brand__monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(242, 208, 129, 0.12);
  border: 1px solid rgba(242, 208, 129, 0.25);
  color: var(--mp-gold);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  box-shadow: 0 14px 30px rgba(242, 208, 129, 0.12);
  margin-right: 10px;
}

.brand__accent {
  color: var(--mp-gold);
}

.brand__tag {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: 0.18s ease;
  padding: 10px 8px;
  border-radius: 12px;
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--mp-white);
}

/* Active page */
.nav__link[aria-current='page'] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--mp-white);
}

.nav__cta {
  text-decoration: none;
  color: var(--mp-black);
  background: var(--mp-gold);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.18s ease;
  box-shadow: 0 14px 40px rgba(242, 208, 129, 0.2);
}
.nav__cta:hover {
  transform: translateY(-1px);
}

/* ✅ Botón hamburguesa (oculto en desktop) */
.navToggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  cursor: pointer;
  padding: 10px;
  transition: 0.18s ease;
  backdrop-filter: blur(12px);
}

.navToggle:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.navToggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navToggle span + span {
  margin-top: 6px;
}

/* Brand responsive */
@media (max-width: 520px) {
  .brand__tag {
    display: none;
  }

  .brand__logo {
    width: 56px;
    height: 56px;
  }

  .brand__logoImg {
    transform: scale(1.65);
  }

  .brand__name {
    font-size: 17px;
    letter-spacing: 0.07em;
  }
}

/* Who We Are: keep CTAs together and left-aligned */
.page--who .hero__actions {
  justify-content: flex-start;
}

/* Who We Are = hero secundario (más compacto) */
.page--who .header__inner {
  padding: 10px 0;
} /* opcional, recorta un poco más */
.page--who .hero {
  padding: clamp(18px, 3vw, 46px) 0;
}

.page--who .pill {
  padding: 8px 12px;
  font-size: 12px;
}

.page--who .hero__title {
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.06;
  margin: 10px 0 10px;
}

.page--who .hero__subtitle {
  font-size: 15px;
  margin: 0 0 16px;
  max-width: 52ch;
}

.page--who .hero__actions {
  margin-bottom: 18px;
}
.page--who .btn {
  padding: 11px 14px;
  font-size: 14px;
}

.page--who .heroCard__media {
  height: 360px;
} /* antes 420px */
.page--who .stat {
  min-width: 148px;
  padding: 10px 12px;
}

/* ✅ Mobile dropdown */
@media (max-width: 860px) {
  :root {
    --header-offset: 30px;
  }

  .navToggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
  }

  /* El nav pasa a ser un desplegable */
  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 14px;
    right: 14px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    padding: 14px;
    border-radius: 18px;

    background: rgba(3, 2, 3, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(242, 208, 129, 0.05);

    /* cerrado */
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    pointer-events: none;

    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease;
    z-index: 999;
  }

  /* abierto */
  .nav.is-open {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Links más “tap friendly” */
  .nav__link {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__link:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  /* CTA full-width pro */
  .nav__cta {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
  }

  /* Animación hamburguesa -> X */
  .navToggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navToggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .navToggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero */
.hero {
  padding: clamp(52px, 7vw, 92px) 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.pill__dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--mp-red);
  box-shadow: 0 0 0 4px rgba(224, 62, 48, 0.22);
}

/* subtle pulse (Meridian style) */
.pill__dot::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(224, 62, 48, 0.55) 0%,
    rgba(224, 62, 48, 0) 62%
  );
  opacity: 0;
  transform: scale(0.75);
  animation: mpDotPulse 2.35s ease-in-out infinite;
}

@keyframes mpDotPulse {
  0%,
  32% {
    opacity: 0;
    transform: scale(0.7);
  }
  48% {
    opacity: 0.85;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

.pill__sep {
  opacity: 0.55;
}

.hero__title {
  margin: 16px 0 12px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.hero__titleAccent {
  color: rgba(242, 208, 129, 0.95);
}

.hero__subtitle {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.18s ease;
  cursor: pointer;
}

.btn__icon {
  opacity: 0.9;
}

.btn--primary {
  background: var(--mp-gold);
  color: var(--mp-black);
  border-color: transparent;
  box-shadow: 0 18px 52px rgba(242, 208, 129, 0.22);
  display: block;
  width: fit-content;
  margin: 24px auto 0 auto;
  margin-top: auto;
  align-self: center;
  text-align: center;
}
.btn--primary:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--mp-white);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--ghostLight {
  border-color: rgba(242, 208, 129, 0.22);
}

.btn--full {
  width: 100%;
  border-radius: 16px;
  padding: 14px 16px;
}

.hero__stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  min-width: 160px;
}
.stat__value {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}

.heroCard {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.heroCard__media {
  position: relative;
  height: 420px;
}
.heroCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.heroCard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 2, 3, 0) 0%,
    rgba(3, 2, 3, 0.72) 66%,
    rgba(3, 2, 3, 0.92) 100%
  );
}

.heroCard__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 18px 20px;
}

.heroCard__badge {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.badge--gold {
  background: var(--mp-gold);
  color: var(--mp-black);
}
.badge--dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--mp-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.heroCard__title {
  margin: 0;
  font-size: 18px;
}
.heroCard__text {
  margin: 6px 0 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  font-size: 14px;
}

.heroCard__mini {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.miniItem {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}
.miniItem__icon {
  opacity: 0.95;
}

.floatingNote {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}
.floatingNote__dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--mp-gold);
  box-shadow: 0 0 0 4px rgba(242, 208, 129, 0.18);
}

/* Sections */
.section {
  padding: clamp(56px, 6vw, 10px) 0;
}

.section--dark {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0)
  );
}

.section--soft {
  background: linear-gradient(
    180deg,
    rgba(232, 232, 232, 0.08),
    rgba(255, 255, 255, 0)
  );
}

.sectionHead {
  margin-bottom: 24px;
}
.sectionHead__title {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.01em;
  min-width: 10%;
}
.sectionHead__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
  max-width: 70ch;
}

.sectionHead--dark .sectionHead__subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.gold-highlight {
  font-weight: 500;
  color: var(--mp-gold, #c9a24a);
}

/* Video CTA section */
.videoCta {
  padding: clamp(56px, 6vw, 88px) 0;
}

.videoCta__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: clamp(560px, 78vh, 920px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.videoCta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
      900px 420px at 20% 0%,
      rgba(242, 208, 129, 0.22),
      transparent 55%
    ),
    radial-gradient(
      900px 420px at 85% 20%,
      rgba(235, 175, 119, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 520px at 70% 90%,
      rgba(224, 62, 48, 0.14),
      transparent 58%
    );
  opacity: 0.9;
  mix-blend-mode: screen;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.videoCta__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
  z-index: 0;
  transform: none;
  object-position: ce;
}

.videoCta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(3, 2, 3, 0.15) 0%,
      rgba(3, 2, 3, 0.55) 55%,
      rgba(3, 2, 3, 0.75) 100%
    ),
    radial-gradient(
      900px 520px at 50% 40%,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0.72) 100%
    );
  z-index: 1;
}

.videoCta__content {
  /* Fill the whole card so flex centering works even when the card uses min-height */
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Keep the block centered, but left-align subtitle with the title */
  text-align: left;
  padding: clamp(24px, 4vw, 62px);
}

.videoCta__title {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.06;
  max-width: 22ch;
}

.videoCta__accent {
  color: var(--mp-gold);
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.videoCta__subtitle {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: clamp(14px, 1.35vw, 18px);
  /* Match the title width so it sits aligned on the left edge */
  max-width: 22ch;
}

.videoCta__btn {
  margin: 24px 0 0 !important;
  display: inline-flex !important;
  width: auto !important;
  align-self: center !important;
}

/* Slightly tighter on small screens */
@media (max-width: 640px) {
  .videoCta__card {
    min-height: unset;
    aspect-ratio: 9 / 16;
    width: 100%;
  }

  .videoCta__content {
    padding: 22px;
  }

  .videoCta__title {
    font-size: 38px;
    max-width: 20ch;
  }
}

/* Cards & grids */
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card {
  border-radius: var(--radius-xl);
  padding: 18px 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.card--glass {
  backdrop-filter: blur(12px);
}

.card__title {
  margin: 0 0 8px;
  font-size: 18px;
}
.card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.chipRow {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.chip--gold {
  border-color: rgba(242, 208, 129, 0.35);
}
.chip--bronze {
  border-color: rgba(235, 175, 119, 0.35);
}
.chip--red {
  border-color: rgba(224, 62, 48, 0.35);
}

/* Team */
.teamGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Team portrait cards (Who We Are) */
.personCard {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(8, 8, 10, 0.72); /* antes 0.05 */
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.personCard:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 208, 129, 0.22);
}

.personCard__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

/* Unified Meridian grade overlay (no extra DOM wrapper needed) */
.personCard__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      900px 420px at 18% 10%,
      rgba(242, 208, 129, 0.14),
      transparent 58%
    ),
    linear-gradient(
      180deg,
      rgba(3, 2, 3, 0) 0%,
      rgba(3, 2, 3, 0.12) 70%,
      rgba(3, 2, 3, 0.32) 100%
    );
  mix-blend-mode: soft-light;
  z-index: 2;
  opacity: var(--team-overlay-opacity, 1);
}

/* Soft dark tint to unify very bright backgrounds (e.g., studio/sky) */
.personCard__media::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      900px 500px at 50% 0%,
      rgba(3, 2, 3, 0.14),
      rgba(3, 2, 3, 0.36)
    ),
    linear-gradient(180deg, rgba(3, 2, 3, 0.06) 0%, rgba(3, 2, 3, 0.28) 100%);
  mix-blend-mode: multiply;
  z-index: 2;
  opacity: 0.28;
}

.personCard__top {
  padding: 18px 18px 14px;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 10, 0.92) 0%,
    rgba(8, 8, 10, 0.78) 100%
  );
  height: 214px;
  display: flex;
  flex-direction: column;
}

.personCard__divider {
  height: 1px;
  margin: 0 18px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 208, 129, 0.45),
    transparent
  );
  opacity: 0.75;
}

.personCard__media--bottom {
  aspect-ratio: auto;
  height: clamp(340px, 26vw, 460px);
}

.personCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% var(--team-focus-y, 30%);
  display: block;
  position: relative;
  z-index: 1;
  /* Optional per-card zoom (used on mobile to match framing across photos) */
  transform: scale(var(--team-scale, 1));
  transform-origin: 50% var(--team-focus-y, 30%);
  filter: var(--team-filter, saturate(1.02) contrast(1.02));
}

/* Per-photo alignment + subtle color matching */
.personCard--eduardo {
  --team-focus-y: 6%;
  /* Keep whites clean but less "washed" */
  --team-filter: saturate(0.98) contrast(1.05) brightness(0.99);
}

.personCard--alejandro {
  --team-focus-y: 34%;
  /* Deepen the black polo slightly for consistency */
  --team-filter: saturate(0.98) contrast(1.08) brightness(0.95);
}

.personCard--daniel {
  --team-focus-y: 82%;
  /* Match outdoor look: tame highlights, keep black polo deep */
  --team-filter: saturate(0.96) contrast(1.06) brightness(0.96);
}

.personCard__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  gap: 10px;
}

.personCard__body {
  padding: 16px 16px 18px;
}

.personCard__name {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.personCard__role {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--mp-gold);
}

.personCard__bio {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.person {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 18px 18px 20px;
}

.person__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: rgba(242, 208, 129, 0.18);
  border: 1px solid rgba(242, 208, 129, 0.35);
  color: var(--mp-white);
}
.avatar--alt {
  background: rgba(235, 175, 119, 0.16);
  border-color: rgba(235, 175, 119, 0.35);
}
.avatar--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.person__name {
  margin: 0;
  font-size: 16px;
}
.person__role {
  margin: 2px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.person__bio {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

/* Solutions */
.solutionsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature {
  border-radius: var(--radius-xl);
  padding: 18px 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.18s ease;
}
.feature:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 208, 129, 0.22);
}

.feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.feature__title {
  margin: 0 0 6px;
  font-size: 15px;
  text-align: left;
}
.feature__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

/* Cities */
.cityGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cityCard {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.cityCard__img {
  height: 160px;
  background: rgba(255, 255, 255, 0.06);
}
.cityCard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cityCard__body {
  padding: 16px 16px 18px;
}

.cityCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.cityCard__top h3 {
  margin: 0;
  font-size: 16px;
}

.cityCard__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
  font-size: 13.5px;
  text-align: justify;
}

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.tag--dark {
  background: rgba(255, 255, 255, 0.06);
}
.tag--gold {
  border-color: rgba(242, 208, 129, 0.35);
}
.tag--bronze {
  border-color: rgba(235, 175, 119, 0.35);
}

/* Note box */
.noteBox {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.noteBox__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 208, 129, 0.12);
  border: 1px solid rgba(242, 208, 129, 0.25);
}
.noteBox__title {
  margin: 0 0 3px;
}
.noteBox__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

/* =========================
   Sponsors — Taller + No transparency
========================= */

.sponsorsElegant {
  /* ⬆️ Más altura general */
  background: radial-gradient(
      900px 520px at 20% 0%,
      rgba(242, 208, 129, 0.08),
      transparent 55%
    ),
    radial-gradient(
      900px 520px at 85% 30%,
      rgba(235, 175, 119, 0.06),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  background-color: var(--mp-black);
  /* Slightly reduce the section height without moving its position */
  padding: 30px 0;
}

/* ✅ Contenedor */
.sponsorMarqueeElegant {
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, #ffffff, #9b9b9b);
}

.sponsorTrackElegant {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;

  /* ✅ iOS smoothness */
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  gap: 0;
  padding: 12px 0;
  margin: 0;

  animation: sponsorMarquee var(--marquee-duration, 24s) linear infinite;
}

/* ✅ Cada grupo debe ser "auto ancho" y NO encoger */
.sponsorGroup {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex: 0 0 auto;

  /* Keep a clean, consistent separation between logos */
  gap: 44px;
  padding: 0 !important;
  margin: 0 !important;
}

/* ✅ Animación EXACTA = mover 1 grupo completo (la mitad del total) */
@keyframes sponsorMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    /* ✅ 2 grupos idénticos (base + clon) ⇒ -50% = ancho exacto del grupo base */
    transform: translate3d(-50%, 0, 0);
  }
}

/* ======================================================
   🟦 ESTANDARIZAR TAMAÑO de logos aunque tengan tamaños distintos
====================================================== */

/* Caja fija (todos iguales) */
.sponsorLogoBox {
  /* Match logo size to the reduced strip height */
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Prevent any flexbox shrinking that could create uneven spacing */
  flex: 0 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

/* La imagen se adapta dentro de la caja */
.sponsorLogo {
  /* Make every logo occupy the exact same box (no random intrinsic sizing) */
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 560px) {
  .section.sponsorsElegant {
    padding: 10px 0;
  }

  .sponsorTrackElegant {
    /* Keep the strip size closer to the original mobile look */
    padding: 8px 0;
    animation: sponsorMarquee var(--marquee-duration, 50s) linear infinite;
  }

  .sponsorLogoBox {
    width: 105px;
    height: 56px;
  }

  .sponsorLogo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .sponsorGroup {
    gap: 10px;
    padding-right: 0;
  }
}

/* Tablet / small desktop tuning (avoid overriding the mobile rules below) */
@media (min-width: 561px) and (max-width: 860px) {
  .sponsorGroup {
    gap: 24px;
  }

  .sponsorLogoBox {
    width: 140px;
    height: 64px;
  }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .sponsorTrackElegant {
    animation: none !important;
  }
}

/* Contact */
.contactGrid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: start;
}

.contactCard,
.formCard {
  border-radius: var(--radius-xl);
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.contactLine {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
}
.contactLine a {
  color: rgba(242, 208, 129, 0.95);
  text-decoration: none;
}
.contactLine a:hover {
  text-decoration: underline;
}
.contactLine__icon {
  width: 22px;
  text-align: center;
  opacity: 0.95;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 12px 0;
}

.formRow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
input,
textarea,
select {
  width: 100%;
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--mp-white);
  outline: none;
  font-family: inherit;
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(242, 208, 129, 0.35);
}

/* =========================================================
   Custom select (Topic) — fixes native dropdown mis-position on mobile
========================================================= */
.mpSelect {
  position: relative;
}

.mpSelect__native {
  display: none;
}

.mpSelect__button {
  width: 100%;
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--mp-white);
  outline: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

.mpSelect__button:focus-visible {
  border-color: rgba(242, 208, 129, 0.35);
  box-shadow: 0 0 0 3px rgba(242, 208, 129, 0.18);
}

.mpSelect__value {
  color: rgba(255, 255, 255, 0.9);
}

.mpSelect__chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.65);
  border-bottom: 2px solid rgba(255, 255, 255, 0.65);
  transform: rotate(45deg);
  opacity: 0.85;
  flex: 0 0 auto;
}

.mpSelect.is-open .mpSelect__chev {
  transform: rotate(-135deg);
}

.mpSelect__menu {
  /* Portal menu (fixed to viewport) to avoid clipping inside glass cards */
  position: fixed;
  left: 0;
  top: 0;
  padding: 8px;
  border-radius: 16px;
  background: rgba(18, 18, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: none;
  max-height: 260px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Open state (works even when menu is portaled to <body>) */
.mpSelect__menu.is-open {
  display: block;
}

/* Back-compat if menu is not portaled */
.mpSelect.is-open .mpSelect__menu {
  display: block;
}
.mpSelect__option {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.2;
}

.mpSelect__option:hover {
  background: rgba(255, 255, 255, 0.07);
}

.mpSelect__option.is-selected::after {
  content: '✓';
  color: rgba(242, 208, 129, 0.95);
  font-weight: 600;
}

.mpSelect__option:disabled {
  opacity: 0.45;
  cursor: default;
}

.mpSelect__error {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(224, 62, 48, 0.95);
}

.mpSelect.is-error .mpSelect__button {
  border-color: rgba(224, 62, 48, 0.55);
  box-shadow: 0 0 0 3px rgba(224, 62, 48, 0.18);
}

/* Para que el footer se pegue abajo del todo */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* El contenido ocupa todo lo posible y empuja el footer */
.page__content {
  flex: 1;
}

/* Footer minimal, sin fondo */
.footer {
  width: 100%;
  position: relative;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* ✅ menos altura */
  margin-top: 28px; /* antes 40px */
  padding: 28px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.footer__copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.2px;
}

.footer__social {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer__link {
  position: relative;
  font-size: 13px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease;
  padding-bottom: 2px;
}

.footer__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--mp-bronze); /* naranja glow */
  border-radius: 20px;
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer__link:hover::after {
  width: 100%;
}

.footer__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .teamGrid {
    grid-template-columns: 1fr;
  }

  /* Team cards — prevent portrait cropping on responsive layouts */
  .personCard__media--bottom {
    height: auto;
    /* Images are 2:3 portrait — matching ratio prevents heads/legs from being cut */
    aspect-ratio: 2 / 3;
  }

  /* Eduardo: slightly tighter crop on mobile (avoid showing full legs) */
  .personCard--eduardo {
    --team-scale: 1.2;
    --team-focus-y: 10%;
  }

  /* Copy can grow; avoid forcing a fixed block height on smaller widths */
  .personCard__top {
    height: auto;
  }
  .solutionsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cityGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contactGrid {
    grid-template-columns: 1fr;
  }
  .partnerBlock {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
  /* Tighter + consistent vertical rhythm on mobile */
  .section {
    padding: 26px 0;
  }
  .videoCta {
    padding: 26px 0;
  }
  .sectionHead {
    margin-bottom: 14px;
  }
  .cityGrid {
    grid-template-columns: 1fr;
  }
  .stat {
    min-width: 100%;
  }

  /* Who We Are — keep the 3 chips in one row on mobile */
  .page--who .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .page--who .stat {
    min-width: 0;
    padding: 10px 10px;
  }

  .page--who .stat__value {
    font-size: 14px;
    line-height: 1.1;
  }

  .page--who .stat__label {
    font-size: 11px;
    margin-top: 3px;
  }

  .page--who .heroCard__mini {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  /* Who We Are — avoid awkward word hyphenation on the hero card copy */
  .page--who .heroCard__text {
    text-align: left;
    hyphens: none;
    -webkit-hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }
  .page--who .miniItem {
    justify-content: center;
    padding: 8px 6px;
    font-size: 12px;
    gap: 6px;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page--who .miniItem span:last-child {
    min-width: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.15;
  }
}

/* =========================================================
   FAQ
========================================================= */
.faqGrid {
  display: grid;
  gap: 14px;
}

.faqItem {
  padding: 0;
  overflow: hidden;
}

.faqQuestion {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  user-select: none;
}

.faqQuestion::-webkit-details-marker {
  display: none;
}

.faqQuestion::after {
  content: '+';
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(242, 208, 129, 0.35);
  background: rgba(242, 208, 129, 0.06);
  color: var(--mp-gold);
  transition: transform 220ms ease, background 220ms ease,
    border-color 220ms ease;
}

.faqItem[open] .faqQuestion::after {
  transform: rotate(45deg);
  background: rgba(242, 208, 129, 0.1);
  border-color: rgba(242, 208, 129, 0.55);
}

.faqItem:hover .faqQuestion::after {
  background: rgba(242, 208, 129, 0.12);
}

.faqAnswer {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faqAnswer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}
@media (min-width: 860px) {
  .faqGrid {
    gap: 16px;
  }
}

/* =========================================================
   Scroll reveal (FAQ)
========================================================= */
body.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition: opacity 650ms ease, transform 650ms ease, filter 650ms ease;
  will-change: opacity, transform, filter;
}

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

@media (prefers-reduced-motion: reduce) {
  body.js-reveal .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* =========================================================
   WOW & Conversion Dynamics (Hero + Sections)
========================================================= */

.muted {
  color: rgba(255, 255, 255, 0.72);
}

/* Hero micro-interactions */
.hero {
  position: relative;
}

.heroCard {
  transform: translateZ(0);
}

.heroCard::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(
      720px 420px at 15% 10%,
      rgba(242, 208, 129, 0.22),
      transparent 55%
    ),
    radial-gradient(
      720px 420px at 85% 15%,
      rgba(235, 175, 119, 0.16),
      transparent 55%
    ),
    radial-gradient(
      860px 520px at 60% 95%,
      rgba(224, 62, 48, 0.14),
      transparent 60%
    );
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  filter: blur(10px);
  animation: heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {
  0% {
    opacity: 0.6;
    transform: translateY(0);
  }
  50% {
    opacity: 0.85;
    transform: translateY(-8px);
  }
  100% {
    opacity: 0.6;
    transform: translateY(0);
  }
}

/* Button glow sweep */
.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  opacity: 0.35;
  pointer-events: none;
}

.btn--primary:hover::after {
  transform: translateX(120%);
  transition: transform 650ms ease;
}

/* Scroll cue */
.scrollCue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  opacity: 0.75;
  user-select: none;
}

.scrollCue__mouse {
  width: 22px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}

.scrollCue__wheel {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(242, 208, 129, 0.9);
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: wheel 1.25s ease-in-out infinite;
}

.scrollCue__text {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

@keyframes wheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}

@media (max-width: 860px) {
  .scrollCue {
    display: none;
  }
}

/* HOW IT WORKS (steps) */
.stepsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stepCard {
  border-radius: var(--radius-xl);
  padding: 18px 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease,
    box-shadow 220ms ease;
}

.stepCard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      520px 260px at 15% 0%,
      rgba(242, 208, 129, 0.16),
      transparent 58%
    ),
    radial-gradient(
      520px 260px at 85% 10%,
      rgba(235, 175, 119, 0.12),
      transparent 58%
    );
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.stepCard__num {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(242, 208, 129, 0.9);
  margin-bottom: 10px;
}

.stepCard__title {
  margin: 0 0 8px;
  font-size: 18px;
}

.stepCard__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.stepCard:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 208, 129, 0.22);
}

.stepCard.is-active {
  border-color: rgba(242, 208, 129, 0.45);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.35);
}

.stepCard.is-active::before {
  opacity: 1;
}

/* EXPERIENCES — media carousel (arrows outside the image) */
.tabsMedia--withArrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px;
  overflow: visible; /* keep button shadows */
}

.tabsMedia--withArrows .tabsMedia__viewport {
  flex: 1;
  min-width: 0;
  border-radius: calc(var(--radius-xl) - 10px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.tabsMedia__arrow {
  border-radius: 999px;
  backdrop-filter: blur(10px);
  flex: 0 0 auto;
}

.tabsMedia__arrow:hover {
  transform: scale(1.02);
}

.tabsMedia__arrow:active {
  transform: scale(0.96);
}

@media (max-width: 520px) {
  /* Experiences carousel: arrows below (like the Cities destination card) */
  .tabsMedia--withArrows {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 12px;
  }

  .tabsMedia--withArrows .tabsMedia__viewport {
    flex: 0 0 100%;
    order: 1;
  }

  .tabsMedia__arrow {
    order: 2;
    width: 46px;
    height: 46px;
  }
}

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

/* EXPERIENCES (tabs) */
.tabsCard {
  padding: 0;
  overflow: hidden;
}

.tabsNav {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

/* Transport label swaps to a shorter version on small screens */
.tabsLabel--short {
  display: none;
}

.tabsBtn {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 10px 12px;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 600;
  transition: 0.18s ease;
}

.tabsBtn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.tabsBtn.is-active {
  background: var(--mp-gold);
  color: var(--mp-black);
  border-color: transparent;
  box-shadow: 0 18px 52px rgba(242, 208, 129, 0.18);
}

@media (max-width: 520px) {
  /* Tabs: thinner pills, single row */
  .page--journey .tabsNav {
    gap: 8px;
    padding: 12px;
    flex-wrap: nowrap;
  }

  .page--journey .tabsBtn {
    padding: 8px 10px;
    font-size: 12px;
    letter-spacing: 0.01em;
  }

  .page--journey .tabsLabel--full {
    display: none;
  }

  .page--journey .tabsLabel--short {
    display: inline;
  }
}

.tabsPanels {
  padding: 16px;
}

.tabsPanel {
  display: none;
}

.tabsPanel.is-active {
  display: block;
  animation: tabsIn 260ms ease;
}

@keyframes tabsIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tabsGrid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 16px;
  align-items: center;
}

.tabsTitle {
  margin: 0 0 10px;
  font-size: 20px;
}

.tabsKicker {
  margin: -4px 0 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: left;
  text-wrap: balance;
}

.tabsKicker strong {
  color: var(--mp-gold);
}

.bulletList {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.bulletList li {
  margin: 6px 0;
}

.tabsMedia {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.tabsMedia:focus-visible {
  outline: none;
  border-color: rgba(242, 208, 129, 0.45);
  box-shadow: 0 0 0 3px rgba(242, 208, 129, 0.18), var(--shadow-soft);
}

.tabsMedia__img,
.tabsMedia img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  transition: opacity 180ms ease, transform 220ms ease;
}

.tabsMedia.is-switching .tabsMedia__img,
.tabsMedia.is-switching img {
  opacity: 0.72;
  transform: scale(1.01);
}

@media (max-width: 900px) {
  .tabsGrid {
    grid-template-columns: 1fr;
  }
  .tabsMedia img {
    height: 240px;
  }
  .tabsBtn {
    font-size: 14px;
  }
}

/* JOURNEY (timeline) */
.timeline {
  position: relative;
  padding-left: 10px;
}

.timeline__line {
  position: absolute;
  left: 24px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(242, 208, 129, 0),
    rgba(242, 208, 129, 0.25),
    rgba(235, 175, 119, 0.18),
    rgba(224, 62, 48, 0.18),
    rgba(242, 208, 129, 0)
  );
}

.timelineItem {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: start;
  margin: 14px 0;
}

.timelineItem__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04);
  margin: 18px 0 0 18px;
  transition: 0.22s ease;
}

.timelineItem.is-active .timelineItem__dot {
  background: var(--mp-gold);
  border-color: rgba(242, 208, 129, 0.6);
  box-shadow: 0 0 0 8px rgba(242, 208, 129, 0.12),
    0 22px 60px rgba(242, 208, 129, 0.18);
}

.timelineItem__card {
  padding: 16px 16px 18px;
}

.timelineItem__title {
  margin: 0 0 6px;
  font-size: 18px;
}

.timelineItem__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

/* SOCIAL PROOF */
.proofGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.proofLogos__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.proofTitle {
  margin: 0;
  font-size: 18px;
}

.testimonials__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonials__title {
  margin: 0;
  font-size: 18px;
}

.iconBtn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease, transform 180ms ease;
}

.iconBtn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.iconBtn:active {
  transform: scale(0.96);
}

.iconBtn:focus-visible {
  outline: none;
  border-color: rgba(242, 208, 129, 0.45);
  box-shadow: 0 0 0 3px rgba(242, 208, 129, 0.22),
    0 12px 34px rgba(0, 0, 0, 0.3);
}

.iconBtn--arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

/* Keep arrows locked in place (no vertical jump) */
.iconBtn--arrow:hover {
  transform: translateY(-50%) scale(1.02);
}

.iconBtn--arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.iconBtn--prev {
  left: 12px;
}
.iconBtn--next {
  right: 12px;
}
@media (max-width: 520px) {
  .iconBtn--prev {
    left: 8px;
  }
  .iconBtn--next {
    right: 8px;
  }
  .testimonial {
    padding: 16px 56px 18px;
  }
}

.testimonials__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.testimonials__track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.testimonial {
  flex: 0 0 100%;
  padding: 18px 64px 20px;
}

.testimonial__quote {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.testimonial__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.testimonial__name {
  font-weight: 700;
  color: rgba(242, 208, 129, 0.95);
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: 0.18s ease;
}

.dot.is-active {
  background: var(--mp-gold);
  border-color: rgba(242, 208, 129, 0.6);
}

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

@media (prefers-reduced-motion: reduce) {
  .heroCard::before {
    animation: none;
  }
  .scrollCue__wheel {
    animation: none;
  }
}
/* Anchor offset for sticky header */
:where(section[id]) {
  scroll-margin-top: 96px;
}

/* Fixed Email Us button (Packages) */
.floatingEmailBtn {
  position: fixed;
  right: clamp(14px, 3vw, 26px);
  bottom: clamp(14px, 3vw, 26px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 999px;

  background: var(--mp-gold);
  color: var(--mp-black);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;

  box-shadow: 0 18px 52px rgba(242, 208, 129, 0.22),
    0 14px 34px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.floatingEmailBtn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.floatingEmailBtn:focus-visible {
  outline: 2px solid rgba(242, 208, 129, 0.9);
  outline-offset: 3px;
}

.floatingEmailBtn__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

@media (max-width: 520px) {
  .floatingEmailBtn {
    padding: 12px 14px;
    gap: 8px;
  }
}

/* =========================================================
   DESTINATION CITIES (Home)
========================================================= */

.destinationsCard {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: clamp(22px, 3.2vw, 34px);
  isolation: isolate;
}

.destinationsCard::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      900px 520px at 18% 0%,
      rgba(242, 208, 129, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 520px at 88% 25%,
      rgba(235, 175, 119, 0.12),
      transparent 55%
    ),
    radial-gradient(
      900px 520px at 70% 92%,
      rgba(224, 62, 48, 0.1),
      transparent 58%
    );
  opacity: 0.95;
  mix-blend-mode: screen;
  z-index: 0;
}

.destinationsHead {
  position: relative;
  z-index: 1;
  max-width: 78ch;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.kicker__line {
  width: 44px;
  height: 2px;
  border-radius: 99px;
  background: rgba(242, 208, 129, 0.85);
}

.destinationsTitle {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.destinationsTitle span {
  color: var(--mp-gold);
}

.destinationsSubtitle {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.destinationsGrid {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.destinationsMap__canvas {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  background: radial-gradient(
    800px 520px at 40% 25%,
    rgba(255, 255, 255, 0.06),
    transparent 60%
  );
}

.destinationsMap__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.55;
  filter: saturate(1.05) contrast(1.03);
  transform: translateY(2px);
  pointer-events: none;
}

/* Subtle dot field (kept ultra-light so the SVG map stays crisp) */
.destinationsMap__canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 12px 12px;
  opacity: 0.12;
  pointer-events: none;
}

.destinationsPoint {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(242, 208, 129, 0.55);
  background: rgba(242, 208, 129, 0.85);
  cursor: pointer;
  opacity: 0.55;
  transition: transform 160ms ease, opacity 160ms ease, box-shadow 200ms ease;
  -webkit-tap-highlight-color: transparent;
}

.destinationsPoint::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 1px solid rgba(242, 208, 129, 0.22);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 220ms ease, transform 220ms ease;
}

.destinationsPoint:hover {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 8px rgba(242, 208, 129, 0.12),
    0 14px 42px rgba(0, 0, 0, 0.35);
}

.destinationsPoint:focus-visible {
  outline: none;
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(242, 208, 129, 0.22),
    0 16px 52px rgba(0, 0, 0, 0.38);
}

.destinationsPoint.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 0 10px rgba(242, 208, 129, 0.14),
    0 22px 70px rgba(242, 208, 129, 0.14);
}

.destinationsPoint.is-active::after {
  opacity: 1;
  transform: scale(1);
}

.destinationsHint {
  margin: 12px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.destinationsCityCard {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.destinationsCityCard.is-switching {
  opacity: 0.7;
  transform: translateY(2px);
}

.destinationsCityMedia {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.destinationsCityMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.destinationsCityOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 2, 3, 0.1) 0%,
    rgba(3, 2, 3, 0.55) 70%,
    rgba(3, 2, 3, 0.7) 100%
  );
}

.destinationsCityBody {
  padding: 18px 18px 20px;
}

.destinationsCityTop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.destinationsFlag {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#destCityName {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.01em;
}

#destCityDesc {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.destinationsNav {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.destinationsNav__btn {
  border-radius: 999px;
  width: 44px;
  height: 44px;
}

@media (max-width: 980px) {
  .destinationsGrid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .destinationsMap__canvas {
    max-width: 620px;
  }
}

@media (max-width: 520px) {
  .destinationsCityMedia {
    height: 200px;
  }

  .destinationsNav__btn {
    width: 46px;
    height: 46px;
  }
}

/* =========================
   Cities ticker (thin scroll)
========================= */

.citiesTicker {
  padding: 0 0 56px;
}

.citiesTicker__bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.citiesTicker__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mp-gold);
  box-shadow: 0 0 0 4px rgba(242, 208, 129, 0.16);
  flex: 0 0 auto;
}

.citiesTicker__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  white-space: nowrap;
  flex: 0 0 auto;
}

.citiesTicker__marquee {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.citiesTicker__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: citiesTickerMove var(--ticker-duration, 22s) linear infinite;
}

.citiesTicker__group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 22px;
  flex: 0 0 auto;
}

.citiesTicker__item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}

.citiesTicker__sep {
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
}

@keyframes citiesTickerMove {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    /* JS sets --ticker-shift (in px) to prevent gaps; fallback keeps legacy behavior */
    transform: translate3d(calc(-1 * var(--ticker-shift, 50%)), 0, 0);
  }
}

@media (max-width: 560px) {
  .citiesTicker {
    padding: 0 0 26px;
  }

  .citiesTicker__bar {
    height: 42px;
    padding: 0 14px;
  }

  .citiesTicker__label {
    display: none;
  }

  .citiesTicker__track {
    --ticker-duration: 28s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .citiesTicker__track {
    animation: none !important;
  }
}

/* =========================
   Who We Are hero
========================= */

/* Keep CTAs together and left-aligned (override global .btn--primary centering) */
.page--who .hero__actions {
  justify-content: flex-start;
}

.page--who .hero__actions .btn--primary,
.page--who .hero__actions .btn--ghost {
  margin: 0 !important;
  width: auto;
  display: inline-flex;
  align-self: flex-start;
}

/* =========================================================
   WOW Add-ons (Progress bar + Online pill + Builder + Spotlight)
========================================================= */

/* Scroll progress (top subtle gold line) */
.scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 10000;
  background: linear-gradient(90deg, var(--mp-gold), var(--mp-bronze));
  box-shadow: 0 0 16px rgba(242, 208, 129, 0.22);
}

/* Online time pill in nav */
.onlineTimePill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(242, 208, 129, 0.16);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  white-space: nowrap;
}

.onlineTimePill .onlineDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(78, 220, 160, 0.95);
  box-shadow: 0 0 0 6px rgba(78, 220, 160, 0.12);
  position: relative;
  flex: 0 0 auto;
  animation: mpOnlinePulse 1.6s ease-in-out infinite;
}

/* Pulse ring */
.onlineTimePill .onlineDot::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(78, 220, 160, 0.28);
  opacity: 0;
  transform: scale(0.75);
  animation: mpOnlineRing 1.6s ease-out infinite;
  pointer-events: none;
}

.onlineTimePill.is-offline .onlineDot {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06);
  animation: none;
}
.onlineTimePill.is-offline .onlineDot::before,
.onlineTimePill.is-offline .onlineDot::after {
  display: none;
}

@keyframes mpOnlinePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@keyframes mpOnlineRing {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  18% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .onlineTimePill .onlineDot,
  .onlineTimePill .onlineDot::before,
  .onlineTimePill .onlineDot::after {
    animation: none !important;
  }
}

.onlineTimePill .onlineSep {
  opacity: 0.5;
}

.onlineTimePill .onlineClocks {
  color: rgba(255, 255, 255, 0.72);
}

/* Mobile dock (below header) */
.onlineDock {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 2, 3, 0.55);
  backdrop-filter: blur(14px);
}

.onlineDock__inner {
  padding: 8px 0;
  display: flex;
  justify-content: center;
}

@media (max-width: 560px) {
  .onlineDock {
    display: block;
  }

  /* Mobile: keep it below the header, but NOT sticky (it will scroll away) */
  .nav .onlineTimePill {
    display: none;
  }

  .onlineDock__inner {
    justify-content: center;
    padding: 8px 0;
  }

  /* Mobile: wider pill, single line, right aligned */
  .onlineDock .onlineTimePill {
    width: fit-content;
    max-width: min(520px, 92vw);
    padding: 7px 12px;
    font-size: 11px;

    /* Keep everything on one line (no weird wraps) */
    white-space: nowrap;
    flex-wrap: nowrap;

    /* Safety: if a super-small device can't fit it, trim gracefully */
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .onlineDock .onlineTimePill .onlineClocks {
    flex: 0 0 auto;
    min-width: 0;
  }
}

@media (max-width: 360px) {
  .onlineTimePill .onlineClocks {
    display: none;
  }
}

/* Premium card spotlight (cursor light) */
.card--glass {
  position: relative;
  overflow: hidden;
}

.card--glass::before {
  content: '';
  position: absolute;
  inset: -2px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(242, 208, 129, 0.18),
    transparent 60%
  );
}

.card--glass:hover::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .card--glass::before {
    transition: none;
  }
}

/* Experience Builder */
.eb {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.eb__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.eb__addons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.ebAddOn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.18s ease;
  font-weight: 600;
  font-size: 13px;
}

.ebAddOn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(242, 208, 129, 0.18);
}

.ebAddOn.is-on {
  background: rgba(242, 208, 129, 0.14);
  border-color: rgba(242, 208, 129, 0.28);
  color: var(--mp-white);
}

.eb__hint {
  margin-top: 14px;
  font-size: 12px;
}

.ebSummary__items {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.ebSummary__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ebSummary__addons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.ebSummary__actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.ebSummary__actions .btn {
  flex: 1;
  justify-content: center;
}

/* Itinerary */
.itinerary__tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.itTab {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.18s ease;
  font-weight: 700;
  font-size: 13px;
}

.itTab:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(242, 208, 129, 0.18);
}

.itTab.is-active {
  background: rgba(242, 208, 129, 0.16);
  border-color: rgba(242, 208, 129, 0.32);
  color: var(--mp-white);
}

.itinerary__body {
  display: grid;
  gap: 12px;
}

.itDay {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.itDay__title {
  margin: 0 0 10px 0;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.itList {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

/* Academy Spotlight rail */
.spotlightRail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-x;
  padding: 4px 4px 12px 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
@media (hover: none) and (pointer: coarse) {
  .spotlightRail {
    cursor: auto;
  }
}

.spotlightRail.is-dragging {
  cursor: grabbing;
}

.spotlightRail::-webkit-scrollbar {
  height: 10px;
}
.spotlightRail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}
.spotlightRail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.spotlightCard {
  min-width: 280px;
  max-width: 340px;
  scroll-snap-align: start;
  cursor: default;
}

.spotlightCard__img img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.spotlightCard__body {
  margin-top: 12px;
}

.spotlightCard__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 6px;
}

.spotlightCard__title {
  margin: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: 1.15;
}

.spotlightCard__city {
  padding: 6px 10px;
  font-size: 12px;
}

.spotlightCard__text {
  text-align: justify;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.spotlightHint {
  margin-top: 10px;
  font-size: 12px;
}

/* Packages (mobile): keep add-ons in one row */
@media (max-width: 560px) {
  .page--packages .eb__addons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .page--packages .ebAddOn {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
  }
}

/* Responsive adjustments */
@media (max-width: 860px) {
  .onlineTimePill {
    width: fit-content;
    max-width: min(520px, 92vw);
    justify-content: center;
    margin: 0 auto;
  }

  .eb {
    grid-template-columns: 1fr;
  }

  .ebSummary__actions {
    flex-direction: column;
  }
}

/* Thanks page */
.page--thanks .page__content {
  display: flex;
}

/* Center the Thanks content vertically + horizontally while keeping the same Meridian side-width */
.page--thanks .page__content > .section {
  flex: 1;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Keep the global .container side margins (don’t force full width) */
.page--thanks .page__content > .section > .container {
  padding: 48px 0;
}

.page--thanks .sectionHead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.page--thanks .sectionHead__title {
  margin-bottom: 12px;
}

.page--thanks .sectionHead__subtitle {
  margin-inline: auto;
  max-width: 760px;
}

.thanksWrap {
  max-width: 760px;
  margin: 0 auto;
}

.thanksCard {
  text-align: center;
  padding: 22px;
}

.page--thanks .thanksCard p {
  margin: 0;
}

.page--thanks .thanksLead {
  margin-bottom: 6px;
}

.page--thanks .thanksCard .divider {
  margin: 16px 0;
}

.page--thanks .thanksNote {
  margin-top: 2px;
}

.thanksCard a:not(.btn) {
  color: rgba(242, 208, 129, 0.95);
  text-decoration: none;
}

.thanksCard a:not(.btn):hover {
  text-decoration: underline;
}

.thanksActions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.thanksActions .btn--primary {
  margin: 0;
}
