/* TITLE BETWEEN SERVICES AND VIDEO */
.home-video-title {
  padding: 5vw 4%;
  text-align: center;
  background: var(--bg);
}

.home-video-title h2 {
  margin: 0;
  color: #C7C8CC;
  font-family: var(--font-primary);
  font-size: clamp(2rem, 10vw, 7rem);
  font-weight: 800;
  line-height: .85;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .home-video-title {
    padding: 10vw 4%;
  }

  .home-video-title h2 {
    font-size: clamp(2rem, 9vw, 3.8rem);
  }
}

/* =============================================
   VIDEO SECTION
============================================= */
.video-section {
  position: relative;
  height: 220vh;
  background: var(--bg);
}

.video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-wrap {
  width: 60vw;
  height: 70vh;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  will-change: transform;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .45));
  z-index: 2;
}

/* =============================================
   RESPONSIVE — TABLET (≤991px)
============================================= */
@media (max-width: 991px) {
  .video-section {
    height: auto;
    padding: clamp(14px, 2.5vh, 24px) 0 clamp(36px, 6vh, 64px);
    overflow: hidden;
  }

  .video-sticky {
    position: relative;
    top: auto;
    height: auto;
    align-items: center;
    padding: 0;
    overflow: visible;
  }

  .video-wrap {
    width: min(82vw, 720px);
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: clamp(12px, 3vw, 24px);
  }

  .video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}