.exp-meta {
  display: flex; flex-direction: column; gap: 4px;
  margin: 8px 0 0; font-size: 12px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--blue);
}
.exp-meta span { line-height: 1.45; }
.exp-link {
  display: inline-block; margin-top: 12px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); font-weight: 500;
}
.exp-link--light { color: var(--sky); }
.card__actions, .tile__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px;
}
.card__actions .exp-link, .tile__actions .exp-link { margin-top: 0; }
.btn--book {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; background: var(--navy); color: #fff;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500; border: none; line-height: 1;
}
.btn--book:hover { background: var(--blue); color: #fff; }
.btn--book-light { background: #fff; color: var(--navy); }
.btn--book-light:hover { background: var(--sky); color: var(--navy); }
.exp-map {
  width: 100%; min-height: 360px; aspect-ratio: 16 / 10;
  border-radius: 4px; overflow: hidden; background: #0A2240;
}
.exp-map .leaflet-container,
.route__map .leaflet-container { height: 100%; width: 100%; font-family: var(--sans); }
.exp-popup { font-size: 13px; line-height: 1.45; }
.exp-popup strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 400; margin-bottom: 4px; }

.route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 46%);
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.route__story {
  padding: 120px var(--gutter) 100px;
  display: flex; flex-direction: column; gap: 8px;
}
.route__intro { max-width: 38em; display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.route__meta-line {
  margin: 0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-soft);
}
.route__step {
  padding: 40px 0 48px;
  border-top: 1px solid var(--line);
  opacity: .42;
  transition: opacity .35s ease;
}
.route__step.is-on { opacity: 1; }
.route__step-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 12px; }
.route__n {
  font-family: var(--display); font-weight: 500; font-size: 13px;
  letter-spacing: .18em; color: var(--blue);
}
.route__time { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-soft); }
.route__title {
  margin: 0 0 14px; font-family: var(--display); font-weight: 600;
  font-size: clamp(26px, 3vw, 40px); line-height: 1.15; color: var(--navy);
}
.route__inc {
  margin: 18px 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.route__inc li {
  position: relative; padding-left: 18px;
  font-size: 15px; line-height: 1.55; color: var(--grey);
}
.route__inc li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue);
}
.route__facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; padding: 48px 0 16px; border-top: 1px solid var(--line);
}
.route__facts h3 {
  margin: 0 0 14px; font-family: var(--display); font-weight: 600;
  font-size: 18px; color: var(--navy);
}
.route__facts ul { margin: 0; padding: 0 0 0 18px; color: var(--grey); font-size: 15px; line-height: 1.65; }
.route__facts li + li { margin-top: 6px; }
.route__terms {
  padding: 36px 0 8px; max-width: 46em;
  border-top: 1px solid var(--line);
}
.route__terms h3 {
  margin: 0 0 14px; font-family: var(--display); font-weight: 600;
  font-size: 18px; color: var(--navy);
}
.route__terms .body { margin: 0 0 14px; }
.route__terms a {
  color: var(--blue); font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
}
.route__terms a:hover { color: var(--navy); }
.route__map-wrap {
  position: sticky; top: 0; height: 100vh;
  background: var(--night);
}
.route__map { width: 100%; height: 100%; }
.route__map .leaflet-tile { filter: grayscale(.35) contrast(1.05) saturate(.85); }
.route-pin { background: none; border: 0; }
.route-pin span {
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  border: 2px solid #8FD8F2;
  box-shadow: 0 6px 16px rgba(6, 22, 39, .28);
}
.route-pin.is-on span {
  background: #1FA5DE; border-color: #fff; transform: scale(1.12);
}

@media (max-width: 860px) {
  .route { grid-template-columns: 1fr; }
  .route__map-wrap {
    order: -1; top: 72px; height: 42vh; z-index: 4;
    border-bottom: 1px solid var(--line);
  }
  .route__story { padding: 36px var(--gutter) 80px; }
}
