.home-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.home-hero__image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.10) 35%,
    rgba(0, 0, 0, 0.22) 65%,
    rgba(0, 0, 0, 0.38) 100%
  );
}

.home-hero__content {
  position: absolute;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  padding: 0 24px;
  text-align: center;
  z-index: 2;
}

.home-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: 68px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
}

.home-hero__subtitle {
  margin: 22px 0 0 0;
  color: #ffffff;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.overlay {
  display: none;
}

@media (max-width: 1400px) {
  .home-hero__title {
    font-size: 58px;
  }

  .home-hero__subtitle {
    font-size: 31px;
  }
}

@media (max-width: 1199px) {
  .home-hero {
    min-height: 620px;
  }

  .home-hero__content {
    bottom: 58px;
  }

  .home-hero__title {
    font-size: 48px;
  }

  .home-hero__subtitle {
    font-size: 27px;
    margin-top: 18px;
  }
}

@media (max-width: 991px) {
  .home-hero {
    height: 90vh;
    min-height: 560px;
  }

  .home-hero__content {
    bottom: 48px;
    padding: 0 20px;
  }

  .home-hero__title {
    font-size: 40px;
    line-height: 1.12;
  }

  .home-hero__subtitle {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .home-hero {
    height: 82vh;
    min-height: 480px;
  }

  .home-hero__content {
    bottom: 36px;
    padding: 0 16px;
  }

  .home-hero__title {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.4px;
  }

  .home-hero__subtitle {
    font-size: 18px;
    margin-top: 14px;
  }
}

@media (max-width: 575px) {
  .home-hero {
    min-height: 420px;
  }

  .home-hero__title {
    font-size: 24px;
  }

  .home-hero__subtitle {
    font-size: 16px;
  }
}