/* hero.css */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(33, 7, 40, 0.72) 0%, rgba(23, 5, 29, 0.9) 100%);
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  padding-block: clamp(3rem, 8vw, 6rem);
  min-height: clamp(320px, 45vw, 460px);
  justify-content: center;
}
.hero__rating { background: rgba(0, 0, 0, 0.3); padding: 0.4rem 0.85rem; border-radius: 999px; }
.hero__title {
  font-size: var(--fs-h1);
  color: var(--white);
  font-weight: var(--fw-extrabold);
  max-width: 20ch;
}
.hero__subtitle { color: var(--text); max-width: 60ch; font-size: clamp(1rem, 1.6vw, 1.15rem); }
.hero__cta { margin-top: 0.5rem; }
