.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero--subpage { min-height: 280px; }

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(36,34,34,0.92) 0%, rgba(36,34,34,0.6) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.hero--subpage .hero__content {
  padding: 2.5rem 1.25rem 2rem;
}
.hero__breadcrumb { margin-bottom: 0.5rem; }
.hero__rating { margin-bottom: 0; }
.hero__h1 {
  font-size: var(--font-size-h1);
  color: var(--color-white);
  font-weight: var(--font-weight-extrabold);
  max-width: 780px;
  line-height: 1.2;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(245,241,234,0.82);
  max-width: 600px;
  line-height: 1.65;
}
.hero__cta { margin-top: 0.5rem; }

@media (min-width: 768px) {
  .hero { min-height: 540px; }
  .hero--subpage { min-height: 320px; }
  .hero__content { padding: 5rem 2rem 4rem; }
  .hero--subpage .hero__content { padding: 3rem 2rem 2.5rem; }
}
@media (min-width: 1200px) {
  .hero { min-height: 600px; }
  .hero__content { padding: 6rem 3rem 5rem; }
}
