.urban-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #ffffff;
}

.urban-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.urban-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 20, 0.58);
  z-index: 1;
}

.urban-hero .container {
  position: relative;
  z-index: 2;
}

.urban-hero-height {
  min-height: 75vh;
}

.urban-hero-title {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.urban-hero-text {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.35;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .urban-hero {
    min-height: 560px;
  }
}

@media (max-width: 575.98px) {
  .urban-hero {
    min-height: 500px;
  }

  .urban-hero-text {
    font-size: 1.25rem;
  }
}