.hero {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.hero .hero-foot {
  left: -2px;
  right: -2px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.2s ease, transform 1.8s var(--ease);
}
.hero-video.is-visible { opacity: 1; transform: scale(1); }
.hero .discover[hidden], .hero .hero-caption[hidden] { display: none; }
.hero .discover { gap: 10px; padding: 15px 21px; width: max-content; max-width: calc(100% - 40px); white-space: nowrap; }
.hero .discover:hover span { transform: translateY(2px); }
.hero-media-controls {
  position: absolute;
  right: 4.2%;
  bottom: 160px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-media-controls[hidden] { display: none; }
.hero-media-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #ffffff65;
  border-radius: 24px;
  color: white;
  background: #17130e70;
  backdrop-filter: blur(12px);
  font-size: 12px;
  transition: background .2s, opacity .2s;
}
.hero-media-controls button:hover:not(:disabled) { background: #17130eb3; }
.hero-media-controls button:disabled { opacity: .45; cursor: default; }
.hero-media-controls button:focus-visible { outline: 2px solid white; outline-offset: 4px; }
.hero-media-controls svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.hero-audio-toggle .audio-waves, .hero-video-toggle .media-photo-icon { display: none; }
.hero-audio-toggle[aria-pressed=true] .audio-waves, .hero-video-toggle[aria-pressed=true] .media-photo-icon { display: block; }
.hero-audio-toggle[aria-pressed=true] .audio-muted, .hero-video-toggle[aria-pressed=true] .media-play-icon { display: none; }
@media (max-width: 760px) {
  .hero-media-controls { right: 22px; bottom: 170px; }
  .hero:has(.nav-links.is-open) .hero-media-controls { visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { transition: none; transform: none; }
}
