/* Hero block */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 34, 34, 0.72) 0%, rgba(36, 34, 34, 0.88) 100%);
  z-index: -1;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-block: clamp(2.5rem, 8vw, 5rem);
  min-height: clamp(320px, 45vh, 460px);
  justify-content: center;
}
.hero__rating { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.hero__stars { color: var(--heading); letter-spacing: 2px; font-size: 1.1rem; }
.hero__rating-value {
  background: var(--accent-bg);
  color: var(--text-on-light);
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.hero__rating-text { color: var(--text); font-size: 0.9rem; }
.hero__title { color: var(--white); max-width: 20ch; }
.hero__sub { color: var(--text); max-width: 55ch; font-size: clamp(1rem, 1.6vw, 1.15rem); margin: 0; }
.hero__cta { margin-top: 0.5rem; }
.btn--lg { padding: 0.9rem 2rem; font-size: 1.05rem; }
