.hero-home {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-home__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--bisbat-color-overlay);
}

.hero-home__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--bisbat-container));
  margin-inline: auto;
  color: var(--bisbat-color-white);
  text-align: center;
}

.hero-home__title,
.hero-home h1 {
  margin: 0;
  color: var(--bisbat-color-white);
  font-family: var(--bisbat-font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-home__subtitle {
  margin-top: var(--bisbat-space-4);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

@media (max-width: 900px) {
  .hero-home {
    min-height: 420px;
  }

  .hero-home__title,
  .hero-home h1 {
    letter-spacing: 0.12em;
  }
}