.home-hero {
  position: relative;
  min-height: clamp(620px, 52vw, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f0f0f;
  color: var(--cream);
}

.home-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.91) 0%, rgba(5, 6, 7, 0.72) 25%, rgba(5, 6, 7, 0.2) 54%, rgba(5, 6, 7, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 5, 5, 0.62), transparent 50%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 88px;
}

.home-hero-content .eyebrow {
  color: rgba(255, 250, 240, 0.9);
}

.home-hero-content h1 {
  max-width: 720px;
  margin-top: 18px;
  color: var(--cream);
  font-size: clamp(3.8rem, 7vw, 7rem);
  text-transform: uppercase;
}

.home-hero-content h1 span {
  color: var(--gold-2);
}

.home-hero-content p {
  max-width: 520px;
  margin: 24px 0 30px;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

@media (max-width: 780px) {
  .home-hero {
    min-height: 680px;
    align-items: end;
  }

  .home-hero-media {
    object-position: 57% center;
  }

  .home-hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 6, 7, 0.96) 0%, rgba(5, 6, 7, 0.74) 52%, rgba(5, 6, 7, 0.12) 100%),
      linear-gradient(90deg, rgba(5, 6, 7, 0.56), transparent 80%);
  }

  .home-hero-content {
    padding: 250px 0 52px;
  }

  .home-hero-content h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }
}
