.cinema-hero {
  isolation: isolate;
}

.hero-reel {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-reel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hero-cut 18s infinite;
}

.hero-reel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,10,14,.92), rgba(8,10,14,.45) 60%, rgba(8,10,14,.16));
}

.hero-reel .reel-a { animation-delay: 0s; }
.hero-reel .reel-b { animation-delay: 6s; }
.hero-reel .reel-c { animation-delay: 12s; }

.reel-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 38px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.reel-status i {
  width: 28px;
  height: 2px;
  background: #f95702;
}

.immersive {
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
  background: #17191e;
}

.immersive .section-head > p {
  color: #b4b6bc;
}

.photo-reel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 55px;
}

.photo-reel figure {
  min-height: 420px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #111419;
}

.photo-reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.photo-reel figure:hover img {
  transform: scale(1.04);
}

.photo-reel figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 48%, rgba(8,10,14,.86));
}

.photo-reel figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
}

.photo-reel span,
.photo-reel strong {
  display: block;
}

.photo-reel span {
  font-size: 11px;
  color: #d19340;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.photo-reel strong {
  font-size: 17px;
}

@keyframes hero-cut {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  5%,
  28% {
    opacity: 1;
  }
  33%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@media (max-width: 800px) {
  .photo-reel {
    grid-template-columns: 1fr;
  }

  .photo-reel figure {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-reel img {
    animation: none;
  }

  .hero-reel img:first-child {
    opacity: 1;
  }

  .photo-reel img {
    transition: none;
  }
}
