.hero {
  position: relative;
  min-height: clamp(560px, 78vw, 900px);
  isolation: isolate;
  overflow: clip;
  background: #111;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.26), rgba(8, 10, 12, 0.48)),
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.18), transparent 24%);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  padding-block: clamp(5rem, 12vw, 10rem);
  color: #fff;
}

.eyebrow {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.82rem, 1vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.7rem, 7vw, 5.1rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.36);
}

.hero__description {
  margin: 0;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.6rem;
  border: 0;
  border-radius: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--gold {
  background: #d1ac5c;
  color: #111;
  box-shadow: 0 10px 22px rgba(209, 172, 92, 0.26);
}

.button--gold:hover {
  background: #b89244;
}

@media (max-width: 640px) {
  .hero__content {
    align-items: center;
    text-align: center;
  }

  .hero .eyebrow,
  .hero h1,
  .hero__description {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero .button {
    align-self: center;
  }

  .hero h1 {
    max-width: 12ch;
  }
}