.hero-content {
  width: min(100% - 64px, 1240px);
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(120px, 18vw, 300px);
}

.hero h1 {
  max-width: 680px;
  text-wrap: balance;
}

.hero-photo {
  background-size: 108% auto;
  background-position: 50% 52%;
}

.hero-photo:nth-child(1) {
  background-position: 54% 57%;
}

.hero-photo:nth-child(2) {
  background-size: 101% auto;
  background-position: 59% 48%;
  opacity: 0;
}

.hero-photo:nth-child(2).is-active {
  opacity: .68;
}

.hero-photo:nth-child(3) {
  background-position: 57% 55%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .58) 32%, rgba(0, 0, 0, .14) 66%, rgba(0, 0, 0, .04) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .62), transparent 48%);
}

@media (min-width: 801px) {
  .hero-content {
    transform: translateY(-2vh);
  }
}

@media (max-width: 800px) {
  .hero-content {
    width: calc(100% - 40px);
    padding-right: 0;
  }

  .hero h1 {
    max-width: 92vw;
  }

  .hero-photo {
    background-size: auto 108%;
    background-position: 55% center;
  }

  .hero-photo:nth-child(1) {
    background-position: 58% 54%;
  }

  .hero-photo:nth-child(2) {
    background-size: auto 102%;
    background-position: 60% center;
    opacity: 0;
  }

  .hero-photo:nth-child(2).is-active {
    opacity: .74;
  }

  .hero-photo:nth-child(3) {
    background-position: 60% 54%;
  }
}
