/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 14, 10, 0.94) 0%,
    rgba(10, 14, 10, 0.86) 22%,
    rgba(10, 14, 10, 0.55) 44%,
    rgba(10, 14, 10, 0.18) 62%,
    rgba(10, 14, 10, 0) 74%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-block: var(--space-2xl);
}

.hero__eyebrow {
  color: var(--color-gold);
}

.hero__eyebrow::after { display: none; }

.hero h1 {
  font-size: var(--fs-h1);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.hero h1 em {
  color: var(--color-gold-light);
  font-style: italic;
}

.hero__sub {
  color: var(--color-white);
  opacity: 0.92;
  max-width: 46ch;
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

.hero__trust {
  color: var(--color-white);
  opacity: 0.75;
  font-size: var(--fs-small);
  margin-top: var(--space-sm);
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px;
  }
  .hero__gradient {
    background: linear-gradient(
      170deg,
      rgba(10, 14, 10, 0.94) 0%,
      rgba(10, 14, 10, 0.9) 40%,
      rgba(10, 14, 10, 0.55) 70%,
      rgba(10, 14, 10, 0.35) 100%
    );
  }
  .hero__image {
    object-position: 68% center;
  }
  .hero__content {
    max-width: 100%;
    padding-block: var(--space-xl);
  }
}
