/* Premium promo-landing styles for individual route pages */

.route-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
}

.route-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, rgba(8, 10, 22, .96) 0%, rgba(8, 10, 22, .88) 52%, rgba(8, 10, 22, .52) 82%, rgba(8, 10, 22, .72) 100%);
  pointer-events: none;
}

.route-hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -150px 170px -70px rgba(8, 10, 22, .92);
}

.route-hero__inner {
  position: relative;
  max-width: 1312px;
  margin: 0 auto;
  width: 100%;
  padding: 180px clamp(24px, 4.4vw, 64px) 110px;
}

.route-hero__inner h1 {
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.1;
  letter-spacing: -.005em;
  color: var(--white);
  max-width: 20ch;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(8, 10, 22, .5);
}

.route-hero__lead {
  margin-top: 30px;
  max-width: 52ch;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 200;
  line-height: 1.75;
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 1px 16px rgba(8, 10, 22, .6);
}

.route-hero__path {
  margin-top: 34px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  max-width: 64ch;
  line-height: 1.9;
  text-wrap: pretty;
  text-shadow: 0 1px 14px rgba(8, 10, 22, .55);
}

.route-hero__path span {
  white-space: nowrap;
}

.route-hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 26px 48px;
  margin-top: 42px;
  max-width: 620px;
}

.route-hero__meta div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.route-hero__meta span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}

.route-hero__meta strong {
  font-family: "Prata", serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
}

.route-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 48px;
}

.route-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 1px;
  height: 56px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(196, 145, 40, 0), rgba(196, 145, 40, .95));
  animation: scrollcue 2.4s var(--ease) infinite;
  pointer-events: none;
}

@keyframes scrollcue {
  0% { transform: translate(-50%, -18px); opacity: 0; }
  45% { opacity: 1; }
  100% { transform: translate(-50%, 16px); opacity: 0; }
}

.route-section {
  padding: 128px clamp(24px, 4.4vw, 64px);
}

.route-section--light {
  background: var(--white);
}

.route-section--navy {
  background: var(--navy);
}

.route-section--mist {
  background: var(--mist);
}

.route-section h2 {
  margin-top: 22px;
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.15;
  color: var(--navy);
}

.route-section--navy h2 {
  color: var(--white);
}

.route-section__lede {
  margin-top: 22px;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

.route-section--navy .route-section__lede {
  color: rgba(255, 255, 255, .6);
}

/* Stops */

.route-stops {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 28px;
  margin-top: 64px;
}

.route-stop {
  position: relative;
  background: var(--mist);
  border: 1px solid var(--line);
  padding: 38px 34px 36px;
  transition: transform .5s var(--ease), border-color .45s ease, box-shadow .5s ease;
}

.route-stop:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 145, 40, .55);
  box-shadow: 0 34px 60px -40px rgba(18, 20, 43, .5);
}

.route-stop__num {
  display: block;
  font-family: "Prata", serif;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 22px;
}

.route-stop h3 {
  font-family: "Prata", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
}

.route-stop h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 18px 0;
}

.route-stop p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* Highlights */

.route-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 28px;
  margin-top: 64px;
}

.route-highlight {
  background: #171a35;
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 38px 34px 36px;
  transition: transform .5s var(--ease), border-color .45s ease;
}

.route-highlight:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 145, 40, .5);
}

.route-highlight__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(196, 145, 40, .55);
  color: var(--gold-soft);
  font-family: "Prata", serif;
  font-size: 18px;
  margin-bottom: 26px;
}

.route-highlight h3 {
  font-family: "Prata", serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
}

.route-highlight p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .6);
}

/* VIP perks */

.route-perks {
  list-style: none;
  margin: 60px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 0 56px;
}

.route-perks li {
  position: relative;
  padding: 22px 0 22px 34px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
}

.route-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}

.route-perks__note {
  margin-top: 34px;
  padding: 22px 26px;
  border-left: 1px solid var(--gold);
  background: rgba(196, 145, 40, .08);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

/* CTA band */

.route-cta {
  background: var(--ink);
  padding: 120px clamp(24px, 4.4vw, 64px);
}

.route-cta__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 48px 80px;
  align-items: center;
}

.route-cta h2 {
  margin-top: 22px;
  font-family: "Prata", serif;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.15;
  color: var(--white);
}

.route-cta p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .6);
  max-width: 46ch;
}

.route-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.route-btn--gold,
.route-btn--ghost {
  width: auto;
  min-width: 280px;
  margin-top: 0;
  text-align: center;
  padding: 19px 38px;
  border-radius: 999px;
}

.route-btn--gold {
  background: var(--gold);
  color: var(--ink);
}

.route-btn--gold:hover {
  background: var(--gold-soft);
  color: var(--ink);
  box-shadow: 0 18px 36px -14px rgba(196, 145, 40, .7);
}

.route-btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .35);
}

.route-btn--ghost:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
}

.route-cta .route-btn--ghost {
  color: var(--gold-soft);
  border-color: rgba(196, 145, 40, .5);
}

.route-cta .route-btn--ghost:hover {
  background: rgba(196, 145, 40, .1);
  border-color: var(--gold-soft);
}

/* Small gallery */

.route-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 64px;
}

.route-gallery img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: saturate(.92);
  transition: transform 1.2s var(--ease), filter .6s ease;
}

.route-gallery__item {
  overflow: hidden;
  background: var(--navy);
}

.route-gallery__item:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

@media (max-width: 980px) {
  .route-hero__inner {
    padding-top: 150px;
  }

  .route-gallery img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .route-section {
    padding: 88px 20px;
  }

  .route-cta {
    padding: 88px 20px;
  }

  .route-hero__inner {
    padding: 140px 20px 80px;
  }

  .route-hero__meta {
    gap: 26px;
  }

  .route-btn--gold,
  .route-btn--ghost {
    width: 100%;
    min-width: 0;
  }
}
