.rtk-hero-video {
  position: relative;
  min-height: var(--rtk-hero-height, 80vh);
  overflow: hidden;
  background: #000;
  color: #fff;
}

.rtk-hero-media,
.rtk-hero-video__media,
.rtk-hero-video__poster,
.rtk-hero-video__overlay,
.rtk-hero-content {
  position: absolute;
  inset: 0;
}

.rtk-hero-video__media,
.rtk-hero-video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rtk-hero-video__media {
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.rtk-video-ready .rtk-hero-video__media {
  opacity: 1;
}

.rtk-hero-video__poster {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.rtk-video-ready .rtk-hero-video__poster {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.rtk-video-fallback .rtk-hero-video__poster {
  opacity: 1;
}

.rtk-hero-video__overlay {
  z-index: 2;
}

.rtk-overlay-dark .rtk-hero-video__overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.rtk-overlay-light .rtk-hero-video__overlay {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.rtk-hero-content {
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 7rem 6vw 5rem;
}

.rtk-align-left .rtk-hero-content {
  justify-content: flex-start;
  text-align: left;
}

.rtk-align-center .rtk-hero-content {
  justify-content: center;
  text-align: center;
}

.rtk-hero-content__inner {
  max-width: 760px;
}

.rtk-hero-title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.rtk-hero-subtitle {
  margin: 0 0 1.75rem;
  max-width: 42rem;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.rtk-hero-button {
  display: inline-block;
  padding: 0.95rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.rtk-hero-button:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 1024px) {
  .rtk-hero-video {
    min-height: 72vh;
  }

  .rtk-hero-content {
    padding: 6rem 1.5rem 3rem;
    align-items: flex-end;
  }

  .rtk-hero-title {
    font-size: clamp(2rem, 9vw, 3.25rem);
  }

  .rtk-hero-subtitle {
    font-size: 1rem;
  }
}