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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36,34,34,0.88) 50%, rgba(36,34,34,0.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding-block: 3rem;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
  font-weight: var(--fw-semibold);
  font-size: var(--font-size-sm);
}
.hero__rating-stars { letter-spacing: 2px; line-height: 1; }
.hero__rating-half {
  display: inline-block;
  width: 0.55em;
  overflow: hidden;
  vertical-align: top;
}

.hero__title {
  font-size: var(--font-size-h1);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.hero__subtitle {
  font-size: 1rem;
  color: rgba(245,241,234,0.8);
  margin-bottom: 1.75rem;
  max-width: 460px;
  line-height: 1.6;
}

.hero__breadcrumb {
  margin-bottom: 1rem;
}

.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

@media (max-width: 599px) {
  .hero { min-height: 380px; }
  .hero__bg::after {
    background: rgba(36,34,34,0.75);
  }
  .hero__actions .btn { width: 100%; }
}
