/* Enhanced video hero styling */
.video-hero-wrapper {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 640px;
  max-height: 880px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFF5E1;
}

@media (max-width: 640px) {
  .video-hero-wrapper {
    height: 100vh;
    min-height: 720px;
    max-height: none;
  }
}

.hh-video,
.hh-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hh-video {
  transition: opacity 0.8s ease-in-out;
  opacity: 0;
}

.hh-video.loaded {
  opacity: 1;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hh-video {
    transition: none;
  }
}
