/* Experience page hero — landing-like shell for Reading Room, Front Desk, Wrong Side of Town (Deck 3). */
.ep-hero {
  position: relative;
  min-height: min(100svh, 52rem);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.ep-hero--compact {
  min-height: min(52svh, 28rem);
}
.ep-hero--reading-room.ep-hero--compact {
  min-height: min(52svh, 28rem);
}
.ep-hero--reading-room .ep-hero__copy {
  padding-top: clamp(3.5rem, 10vh, 5.5rem);
  padding-bottom: 1.75rem;
}
.ep-hero__title--sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ep-hero--reading-room .ep-hero__veil {
  background: linear-gradient(
    180deg,
    rgba(6, 9, 18, 0.72) 0%,
    rgba(6, 9, 18, 0.62) 35%,
    rgba(6, 9, 18, 0.94) 100%
  );
}
.ep-hero__plane {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center center / cover no-repeat;
  transform: scale(1.04);
}
.ep-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #060912;
}
.ep-hero__video-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.ep-hero__video-embed--loading {
  opacity: 0;
}
.ep-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6, 9, 18, 0.35) 0%,
    rgba(6, 9, 18, 0.55) 42%,
    rgba(6, 9, 18, 0.92) 100%
  );
}
.ep-hero__copy {
  position: relative;
  z-index: 3;
  width: min(42rem, 92vw);
  margin: 0 auto 0;
  padding: clamp(4.5rem, 12vh, 7rem) 1.25rem 2.5rem;
  text-align: left;
  color: #f5efe6;
}
.ep-hero__brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(0.72rem, 1.8vw, 0.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0d78c;
  margin: 0 0 0.45rem;
  max-width: 36ch;
  line-height: 1.35;
}
.ep-hero__brand-note {
  margin: 0 0 1rem;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-style: italic;
  color: #c9bba3;
  max-width: 34ch;
  line-height: 1.45;
}
.ep-hero__title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #faf6ee;
  margin: 0 0 1rem;
  max-width: 12ch;
}
.ep-hero__lede {
  margin: 0 0 1.75rem;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  color: #c9bba3;
  max-width: 32ch;
  line-height: 1.55;
}
.ep-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.ep-hero__cta .btn {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.ep-hero__cta .btn:hover {
  transform: translateY(-2px);
}
.ep-hero__cta .btn--gold {
  background: #d4af37;
  color: #1a120c !important;
  border-color: #d4af37;
}
.ep-hero__cta .btn--ghost {
  background: transparent;
  color: #f0d78c !important;
  border: 1px solid rgba(212, 175, 55, 0.45);
}
.ep-hero__cta .btn--ghost:hover {
  border-color: #d4af37;
}
.ep-hero__score {
  margin-top: 1rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f0d78c;
  background: rgba(8, 12, 22, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.7rem 1.05rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.ep-hero__score:hover,
.ep-hero__score:focus-visible {
  border-color: rgba(212, 175, 55, 0.75);
  color: #fef3c7;
}
.ep-hero__score.is-playing:not(.qv-sound-mute) {
  border-color: rgba(212, 175, 55, 0.85);
}
.ep-hero__score[hidden] {
  display: none !important;
}
.ep-hero + .visit-golden-path {
  margin-top: 0.75rem;
}
.visit-golden-path__doors-note {
  max-width: 52rem;
  margin: 0.35rem auto 1.25rem;
  padding: 0 1rem;
  font-size: 0.88rem;
  color: rgba(212, 196, 168, 0.82);
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .ep-hero__plane {
    transform: none;
  }
  .ep-hero__video {
    display: none !important;
  }
}
