.cinematic-section {
  --film-ink: #f5f4ef;
  --film-muted: rgba(245, 244, 239, 0.72);
}

.cinematic-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #171714;
  color: var(--film-ink);
  isolation: isolate;
}

.cinematic-poster,
.cinematic-poster img,
.cinematic-video,
.cinematic-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cinematic-poster img,
.cinematic-video {
  object-fit: cover;
}

.cinematic-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 700ms ease;
}

.cinematic-video.is-ready {
  opacity: 1;
}

.cinematic-shade {
  z-index: 2;
  background: rgba(10, 10, 9, 0.28);
  pointer-events: none;
}

.cinematic-copy {
  position: absolute;
  z-index: 3;
  right: 42px;
  bottom: 38px;
  left: 42px;
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: 10px 28px;
  align-items: end;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.cinematic-copy::before {
  grid-column: 1 / -1;
  height: 1px;
  margin-bottom: 12px;
  background: rgba(245, 244, 239, 0.56);
  content: "";
}

.cinematic-copy > span {
  align-self: start;
  padding-top: 5px;
  color: var(--film-muted);
  font-size: 10px;
  font-weight: 600;
}

.cinematic-copy strong {
  grid-column: 2;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.35;
}

.cinematic-copy p {
  grid-column: 2;
  max-width: 600px;
  margin: 0;
  color: var(--film-muted);
  font-size: 13px;
  line-height: 1.75;
}

.cinematic-disclosure {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  margin: 0;
  padding: 22px 0 0;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.8;
}

.cinematic-disclosure span {
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .cinematic-stage {
    aspect-ratio: 4 / 3;
  }

  .cinematic-copy {
    right: 28px;
    bottom: 28px;
    left: 28px;
    grid-template-columns: 1fr;
  }

  .cinematic-copy > span,
  .cinematic-copy strong,
  .cinematic-copy p {
    grid-column: 1;
  }

  .cinematic-copy strong {
    font-size: 25px;
  }

  .cinematic-disclosure {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .cinematic-stage {
    aspect-ratio: 3 / 4;
  }

  .cinematic-poster img,
  .cinematic-video {
    object-position: center;
  }

  .cinematic-copy {
    right: 20px;
    bottom: 20px;
    left: 20px;
    gap: 8px;
  }

  .cinematic-copy::before {
    margin-bottom: 6px;
  }

  .cinematic-copy strong {
    font-size: 22px;
  }

  .cinematic-copy p {
    font-size: 12px;
    line-height: 1.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-video {
    display: none;
  }
}
