
.home-video-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.home-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.home-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}
.banner-text-wrap {
  position: absolute;
  inset: 0;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.35);
}
.banner-title {
  font-size: clamp(24px,5vw,52px);
  font-weight: 700;
  margin: 0 0 12px;
}
.banner-sub {
  font-size: clamp(14px,2vw,20px);
  margin: 0 0 28px;
  max-width: 800px;
}
.banner-btn {
  display: inline-block;
  padding: 13px 34px;
  background: rgba(255,255,255,0.7);
  color: #111;
  font-size: clamp(14px,1.6vw,18px);
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.28s ease;
  pointer-events: auto !important;
}
.banner-btn:hover {
  background: rgba(255,255,255,0.95);
  color: #e66000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  text-decoration: none;
}
.poster-loaded .home-video-poster {
  opacity: 0;
  pointer-events: none;
}
.poster-loaded .home-banner-video {
  opacity: 1;
}
