.hero-content { padding-bottom: 160px; }
.film-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 88px;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 18px;
  pointer-events: none;
}
.film-tile {
  width: 170px;
  height: 166px;
  position: relative;
  flex: none;
  overflow: hidden;
  border: 1px solid #d6b88b80;
  background: #342c27;
  box-shadow: 0 16px 36px #0d0b0a50;
  pointer-events: auto;
  transition: transform .4s ease, border-color .4s ease;
}
.film-tile:nth-child(2) { width: 190px; }
.film-tile-wide { width: 235px; }
.film-tile:hover { transform: translateY(-6px); border-color: var(--gold); }
.film-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #171411ae 0%, transparent 48%);
  pointer-events: none;
}
.film-tile video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) sepia(.1);
}
.film-tile span {
  position: absolute;
  left: 13px;
  bottom: 12px;
  z-index: 1;
  color: #fff7ec;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}
.story { padding-top: 85px; }
@media (max-width: 1000px) {
  .film-tile { width: 145px; }
  .film-tile:nth-child(2) { width: 155px; }
  .film-tile-wide { width: 195px; }
}
@media (max-width: 700px) {
  .hero { min-height: 780px; }
  .hero-content { padding-bottom: 285px; }
  .film-strip {
    bottom: 75px;
    width: 100%;
    padding: 0 20px 6px;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 10px;
    pointer-events: auto;
  }
  .film-strip::-webkit-scrollbar { display: none; }
  .film-tile, .film-tile:nth-child(2), .film-tile-wide {
    width: 155px;
    height: 155px;
  }
  .story { padding-top: 75px; }
}
@media (max-width: 390px) {
  .hero-content { padding-bottom: 267px; }
  .film-tile, .film-tile:nth-child(2), .film-tile-wide {
    width: 136px;
    height: 136px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .film-tile:hover { transform: none; }
}
