/**
 * hero.css — Hero banner block (BEM)
 */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(320px, 55dvh, 560px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 18, 0.35) 0%, rgba(20, 18, 18, 0.85) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(2rem, 4vw, 3.5rem);
  max-width: 46rem;
}

.hero .breadcrumb {
  color: rgba(245, 241, 234, 0.8);
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  margin-bottom: 0.75rem;
}

.hero__rating-stars {
  color: var(--color-heading-gold);
  letter-spacing: 2px;
}

.hero__title {
  margin-bottom: 1rem;
}

.hero__subtitle {
  color: var(--color-white);
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.hero__cta {
  margin-top: 0.25rem;
}
