/* Gentle-Monster-style Photon hero: immediate muted video, explicit sound choice. */
.hero .hero-frame .hero-autoplay-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(1.06) contrast(1.04) brightness(.88);
}

.hero .hero-video-controls {
  position: absolute;
  z-index: 6;
  right: clamp(18px, 4vw, 62px);
  bottom: clamp(20px, 4vw, 54px);
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero .hero-video-controls button {
  min-height: 42px;
  border: 1px solid rgba(244, 255, 47, .85);
  border-radius: 999px;
  padding: 0 17px;
  color: #f4ff2f;
  background: rgba(7, 2, 14, .72);
  box-shadow: 0 0 20px rgba(244, 255, 47, .17);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.hero .hero-video-controls [data-hero-video-sound-toggle] {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #f4ff2f;
  color: #150525;
  box-shadow: 0 0 0 7px rgba(244, 255, 47, .12), 0 0 28px rgba(244, 255, 47, .5);
}

.hero .hero-video-controls button:hover,
.hero .hero-video-controls button:focus-visible {
  transform: translateY(-2px);
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (min-width: 761px) {
  .hero > .hero-copy {
    opacity: .84;
    transition: opacity .18s ease;
  }
  .hero > .hero-copy:hover,
  .hero > .hero-copy:focus-within { opacity: 1; }
}

@media (max-width: 760px) {
  .hero .hero-frame .hero-autoplay-video { object-position: 57% 50%; }
  .hero .hero-video-controls {
    z-index: 12;
    top: 27%;
    right: 7%;
    bottom: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .hero .hero-video-controls button {
    min-height: 46px;
    padding: 0 15px;
    font-size: 14px;
  }
  .hero > .hero-copy { z-index: 8 !important; opacity: .79; }
}

@media (prefers-reduced-motion: reduce) {
  .hero .hero-video-controls button { transition: none; }
}
