.azimut-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: -65px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 767px) {
  .azimut-hero {
    height: 95vh;
  }
}

.azimut-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.azimut-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  display: block !important;
  visibility: visible !important;
}

.azimut-hero--no-video .azimut-hero__video {
  display: none;
}

.azimut-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(10, 10, 10, 0.45) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
}

.azimut-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.azimut-hero__eyebrow {
  margin-bottom: var(--space-2);
}

.azimut-hero__title {
  font-size: var(--text-5xl);
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.azimut-hero__title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.azimut-hero__subtitle {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.7;
}

.azimut-hero__ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-4);
}

.azimut-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.azimut-hero__scroll-line {
  width: 1px;
  height: 60px;
  background: var(--color-gold);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0) translateY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(0) translateY(100%);
    transform-origin: bottom;
  }
}

.azimut-hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .azimut-hero__content {
    padding: 0 var(--space-8);
  }
}

