:root {
  --hero-overlay: rgba(12, 12, 12, 0.55);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease-in-out;
  animation: heroZoom 25s ease-in-out infinite;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.24) 0%, rgba(2, 6, 15, 0.82) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-copy .container-page {
  position: relative;
  z-index: 2;
}

.hero-pretitle,
.hero-title,
.hero-subtitle {
  color: #ffffff;
}

.hero-pretitle {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero-title {
  margin-bottom: 1rem;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

@keyframes heroZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@media (max-width: 768px) {
  .hero-copy {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: 80vh;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }
}
