/* HERO */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
  scroll-margin-top: var(--header-h);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}
.hero-content {
  position: absolute;
  top: 26%;
  left: 7.8%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  z-index: 1;
}
.hero-title {
  margin: 0 0 24px;
  font:
    700 clamp(64px, 0.7vw + 59px, 72px) / 1.1 'Noto Sans KR',
    var(--font);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.hero-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}
.hero-subtitle {
  margin: 0;
  font:
    500 clamp(18px, 2.2vw, 28px) / 1.5 'Noto Sans KR',
    var(--font);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.hero-subtitle.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-scroll {
  position: absolute;
  left: 7.8%;
  bottom: 40px;
  z-index: 1;
  display: block;
  line-height: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-scroll.is-visible {
  opacity: 1;
}
.hero-scroll img {
  width: 96px;
  height: auto;
}

@media (max-width: 1100px) {
  .hero-content {
    top: 22%;
    left: 8%;
    right: 8%;
    max-width: none;
  }
  .hero-break {
    display: none;
  }
  .hero-title {
    font:
      700 clamp(46px, 2.5vw + 37px, 64px) / 1.15 'Noto Sans KR',
      var(--font);
  }
  .hero-subtitle {
    font:
      500 clamp(14px, 2.8vw, 17px) / 1.5 'Noto Sans KR',
      var(--font);
  }
  .hero-scroll {
    left: 8%;
    bottom: 32px;
  }
  .hero-scroll img {
    width: 72px;
  }
}
