/* Hero visual — scales via the --u variable from .detail-content
   (see detail.css) so it shrinks with everything else, never crops. */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 668 / 831;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: calc(50 * var(--u)) calc(95 * var(--u));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 70%, #000000 100%);
}

.hero-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(2 * var(--u));
  width: 100%;
  max-width: calc(477 * var(--u));
  color: #ffffff;
  text-align: center;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: calc(18 * var(--u));
  letter-spacing: calc(15.48 * var(--u));
}

.hero-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: calc(64 * var(--u));
  letter-spacing: calc(9.6 * var(--u));
}

.hero-sub {
  font-size: calc(16 * var(--u));
  letter-spacing: calc(16 * var(--u));
  font-weight: 300;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: calc(100 * var(--u));
  height: calc(26 * var(--u));
  object-fit: contain;
}

.highlight-word {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.montserrat-medium {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

/* City photo collage (per-city section images, stacked with no gap) */
.city {
  width: 100%;
}

.city-image {
  width: 100%;
  display: block;
}
/* .tour-frame / .video-embed / .play-button now live in detail.css (shared with the Just Makeup page) */
