.hero {
  position: relative;
  background-color: var(--color-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 80px 0 80px;
  isolation: isolate;
}

.hero__inner {
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero__content {
  z-index: 9;
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 86px;
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.hero__description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
}

.hero__character {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

@media (max-width: 1024px) {
  .hero__title {
    font-size: 56px;
  }
  .hero__character {
    max-height: 380px;
    opacity: 0.45;
  }
  .hero__inner {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 56px 0 64px;
  }
  .hero__inner {
    text-align: center;
    justify-content: center;
  }
  .hero__content {
    max-width: none;
    margin: 0 auto;
    width: 100%;
  }
  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__title {
    font-size: 44px;
  }
  .hero__eyebrow {
    font-size: 20px;
  }
  .hero__visual {
    right: -20%;
    bottom: 0;
    pointer-events: none;
  }
  .hero__character {
    max-height: 280px;
    opacity: 0.25;
  }
}
