/* ===== Первый экран ===== */
.hero {
  position: relative;
  height: 108rem;
  background: var(--c-sky);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__clouds {
  position: absolute;
  width: 73.6rem;
  height: 73.6rem;
  object-fit: contain;
  opacity: 0.41;
  pointer-events: none;
}

.hero__clouds--left { left: 30.4rem; top: -13.8rem; }
.hero__clouds--right { left: 90.6rem; top: 4.5rem; }

.hero__title,
.hero__subtitle,
.hero__btn {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero__title {
  top: 17.3rem;
  width: 102.8rem;
  font-weight: 400;
}

.hero__pre {
  display: block;
  font-family: var(--font-body);
  font-size: 9.6rem;
  line-height: 1.2;
}

.hero__name {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 12.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero__subtitle {
  top: 43.6rem;
  width: 61.3rem;
  font-size: 4.8rem;
  font-weight: 300;
  line-height: normal;
}

.hero__btn { top: 73.6rem; }

/* ===== Мобильная версия ===== */
@media (max-width: 768px) {
  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero__clouds { width: 320px; height: 320px; }
  .hero__clouds--left { left: -60px; top: -40px; }
  .hero__clouds--right { left: auto; right: -80px; top: 60px; }

  .hero__title {
    top: 96px;
    width: 92%;
  }

  .hero__pre { font-size: 32px; }

  .hero__name {
    margin-top: 8px;
    font-size: 40px;
  }

  .hero__subtitle {
    top: 240px;
    width: 86%;
    font-size: 18px;
  }

  .hero__btn {
    top: auto;
    bottom: 64px;
  }
}
