.homehero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-980);
}

.homehero__video,
.homehero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.homehero__video {
  object-fit: cover;
  opacity: .48;
  filter: saturate(.85) contrast(1.05);
}

.homehero__overlay {
  background:
    linear-gradient(90deg, rgba(2,10,17,.95), rgba(2,10,17,.58) 54%, rgba(2,10,17,.84)),
    radial-gradient(circle at 22% 25%, rgba(216,189,131,.20), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(255,255,255,.08), transparent 24%);
}

.homehero__content {
  position: relative;
  z-index: 1;
  padding-top: 106px;
}

.homehero h1 {
  margin-bottom: 24px;
  font-size: 3rem;
}

.homehero p {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.76);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 300;
}

.homehero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.homehero__signature {
  position: absolute;
  right: 10vw;
  bottom: 42px;
  z-index: 1;
  color: rgba(216,189,131,.42);
  font-size: clamp(1.4rem, 3vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -.06em;
  pointer-events: none;
}

@media (max-width: 760px) {

  .homehero {
    min-height: 100svh;
    align-items: center;
    text-align: center;
  }

  .homehero__video {
    object-position: center;
    opacity: .36;
  }

  .homehero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2,10,17,.88),
        rgba(2,10,17,.72) 45%,
        rgba(2,10,17,.95)
      ),
      radial-gradient(
        circle at 50% 22%,
        rgba(216,189,131,.16),
        transparent 36%
      );
  }

  .homehero__content {
    width: 100%;
    padding-top: 92px;
    padding-bottom: 42px;

    display: grid;
    justify-items: center;
    gap: 6px;
  }

  .homehero h1 {
    max-width: 370px;
    margin-bottom: 24px;

    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.16;
    letter-spacing: -0.045em;
    font-weight: 500;
  }

  .homehero p {
    max-width: 350px;
    margin-bottom: 34px;

    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: .01em;

    color: rgba(255,255,255,.74);
    font-weight: 300;
  }

  .homehero__actions {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .homehero__actions .button {
    width: min(100%, 330px);
  }

  .homehero__signature {
    display: none;
  }
}