/* ==========================================================================
   Hero block (BEM: hero)
   ========================================================================== */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: clamp(380px, 60dvh, 640px);
  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(23, 5, 29, 0.55) 0%, rgba(23, 5, 29, 0.92) 100%);
  z-index: -1;
}

.hero__inner {
  padding-block: clamp(2.5rem, 8vw, 4rem);
  max-width: 760px;
}

.hero__rating {
  color: var(--color-heading-gold);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.hero__title {
  margin-bottom: 1rem;
}

.hero__subtitle {
  color: var(--color-white);
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: 1.75rem;
  max-width: 620px;
}

.hero__cta {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  padding-inline: clamp(1.5rem, 3vw, 2.25rem);
}
