.interior-journey {
  position: relative;
  min-height: 100vh;
  background: #050606;
}

.interior-stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 8vw;
  isolation: isolate;
  background: #070604;
}

.interior-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  filter: saturate(.98) contrast(1.08) brightness(.74);
}

.interior-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(ellipse at 66% 46%, rgba(255,206,132,.12), transparent 34%),
    linear-gradient(90deg, rgba(3,4,4,.9) 0%, rgba(3,4,4,.62) 48%, rgba(3,4,4,.24) 78%),
    linear-gradient(0deg, rgba(3,4,4,.78), rgba(3,4,4,.22) 45%, rgba(3,4,4,.36));
}

.interior-copy {
  max-width: 710px;
  position: relative;
  z-index: 1;
  text-shadow: 0 18px 55px rgba(0,0,0,.72);
}

.interior-copy h2 {
  font-size: clamp(56px,7.2vw,116px);
  line-height: .86;
  letter-spacing: -.07em;
  margin: 27px 0;
}

.interior-copy h2 em {
  color: var(--lime);
  font-style: normal;
}

.interior-copy > p:last-child {
  max-width: 570px;
  font-size: 17px;
  line-height: 1.7;
  color: #d8ded8;
}

@media (max-width:760px) {
  .interior-stage {
    min-height: 82vh;
    padding: 80px 24px;
  }

  .interior-background {
    object-position: 58% center;
  }

  .interior-copy {
    max-width: 92%;
  }

  .interior-copy h2 {
    font-size: 59px;
  }

  .interior-copy > p:last-child {
    font-size: 15px;
  }
}
