.hero {
  position: relative;
  min-height: 70vh;
  padding: 6rem 0;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(26, 42, 58, 0.6), rgba(26, 42, 58, 0.3));
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  padding-inline: 1rem;
}

.hero-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--white);
}

.hero-text {
  max-width: 42rem;
  margin-inline: auto;
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}