.dom1-film-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(237, 101, 8, 0.14), transparent 34rem),
    linear-gradient(135deg, var(--paper) 0%, var(--warm) 100%);
}

.dom1-film-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.45fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
}

.dom1-film-copy,
.dom1-film-stage {
  min-width: 0;
}

.dom1-film-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 4.6vw, 4.7rem);
  text-wrap: balance;
}

.dom1-film-copy .lead {
  max-width: 620px;
  margin-bottom: 0;
}

.dom1-film-card {
  overflow: hidden;
  padding: clamp(6px, 0.65vw, 10px);
  border: 1px solid rgba(36, 35, 31, 0.14);
  border-radius: clamp(20px, 2.4vw, 34px);
  background: #ffffff;
  box-shadow: 0 28px 72px rgba(68, 51, 30, 0.18);
}

.dom1-film-launch,
.dom1-film-video,
.dom1-film-noscript-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: clamp(14px, 1.9vw, 26px);
  background: #171613;
}

.dom1-film-launch {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  color: #ffffff;
  font: inherit;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  isolation: isolate;
  touch-action: manipulation;
}

.dom1-film-launch picture,
.dom1-film-launch img {
  display: block;
  width: 100%;
  height: 100%;
}

.dom1-film-launch img {
  object-fit: cover;
}

.dom1-film-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 17, 15, 0.04) 40%, rgba(18, 17, 15, 0.78) 100%);
  pointer-events: none;
}

.dom1-film-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(66px, 7vw, 92px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(237, 101, 8, 0.94);
  box-shadow: 0 16px 36px rgba(48, 27, 9, 0.3);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.dom1-film-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #ffffff;
  transform: translate(-40%, -50%);
}

.dom1-film-caption {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(16px, 2.6vw, 30px);
  left: clamp(18px, 3vw, 34px);
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  pointer-events: none;
}

.dom1-film-caption strong {
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  line-height: 1.15;
}

.dom1-film-caption small {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(18, 17, 15, 0.48);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.dom1-film-video,
.dom1-film-noscript-video {
  display: block;
  height: auto;
  border: 0;
  object-fit: contain;
}

.dom1-film-video[hidden],
.dom1-film-launch[hidden] {
  display: none;
}

.dom1-film-launch:focus-visible,
.dom1-film-video:focus-visible {
  outline: 4px solid rgba(237, 101, 8, 0.46);
  outline-offset: 4px;
}

.dom1-film-note {
  margin: 14px 8px 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

@media (hover: hover) and (pointer: fine) {
  .dom1-film-launch img,
  .dom1-film-play {
    transition: transform 220ms ease, filter 220ms ease;
  }

  .dom1-film-launch:hover img {
    filter: brightness(0.92);
    transform: scale(1.012);
  }

  .dom1-film-launch:hover .dom1-film-play {
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@media (max-width: 1100px) {
  .dom1-film-shell {
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(30px, 4vw, 56px);
  }
}

@media (max-width: 920px) {
  .dom1-film-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .dom1-film-copy {
    max-width: 760px;
  }

  .dom1-film-copy h2 {
    max-width: 15ch;
  }
}

@media (max-width: 680px) {
  .dom1-film-shell {
    gap: 30px;
  }

  .dom1-film-card {
    padding: 5px;
    border-radius: 20px;
  }

  .dom1-film-launch,
  .dom1-film-video,
  .dom1-film-noscript-video {
    border-radius: 15px;
  }

  .dom1-film-play {
    width: clamp(58px, 17vw, 72px);
  }

  .dom1-film-caption {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .dom1-film-note {
    margin-inline: 4px;
  }
}

@media (max-width: 420px) {
  .dom1-film-caption strong {
    max-width: 12ch;
    font-size: 1rem;
  }

  .dom1-film-caption small {
    padding: 6px 9px;
    font-size: 0.7rem;
  }

  .dom1-film-play::before {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 15px;
  }
}

@media (orientation: landscape) and (max-height: 600px) and (min-width: 560px) and (max-width: 920px) {
  .dom1-film-shell {
    grid-template-columns: minmax(180px, 0.58fr) minmax(0, 1.42fr);
    align-items: center;
    gap: clamp(18px, 3vw, 32px);
  }

  .dom1-film-copy .eyebrow {
    margin-bottom: 14px;
  }

  .dom1-film-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
  }

  .dom1-film-copy .lead {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dom1-film-launch img,
  .dom1-film-play {
    transition: none;
  }
}