/* ===== Full-screen image-led hero ===== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url("/assets/images/hero/hero.jpg") center 28% / cover no-repeat;
  transform: scale(1.06);
  transition: transform 2.4s var(--ease);
}
.hero.is-loaded .hero-image { transform: scale(1); }

/* Cinematic warm darkening, part of the image, not a panel */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(42, 33, 28, 0.55) 0%,
      rgba(42, 33, 28, 0.12) 18%,
      rgba(42, 33, 28, 0.10) 38%,
      rgba(42, 33, 28, 0.60) 72%,
      rgba(42, 33, 28, 0.88) 100%);
}

/* Type sits in the image */
.hero-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--container);
  padding-inline: var(--gutter);
  padding-bottom: clamp(3rem, 11vh, 5.5rem);
  color: var(--cream);
}

/* Rating - tight to the headline, part of the introduction */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.55em;
  margin-bottom: var(--space-s);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: rgba(247, 242, 234, 0.85);
}
.hero-rating .stars { color: var(--gold); }
.hero-rating-text strong { color: var(--cream); font-weight: 700; }

.hero-title {
  font-size: clamp(3rem, 1.9rem + 5.2vw, 5.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: var(--space-s);
  text-shadow: 0 1px 30px rgba(42, 33, 28, 0.3);
}
.hero-title em { display: block; font-style: italic; }

.hero-sub {
  font-size: var(--step-1);
  line-height: 1.5;
  color: rgba(247, 242, 234, 0.9);
  max-width: 44ch;
  margin-bottom: var(--space-m);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-bottom: var(--space-l);
}

.hero-themes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45em 1em;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.86);
}
.hero-themes span { position: relative; padding-right: 1em; }
.hero-themes span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 1px; height: 12px;
  background: rgba(247, 242, 234, 0.4);
  transform: translateY(-50%);
}

/* Reveal */
.hero-content > * { opacity: 0; transform: translateY(20px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.hero.is-loaded .hero-content > * { opacity: 1; transform: none; }
.hero.is-loaded .hero-content > *:nth-child(1) { transition-delay: 0.35s; }
.hero.is-loaded .hero-content > *:nth-child(2) { transition-delay: 0.47s; }
.hero.is-loaded .hero-content > *:nth-child(3) { transition-delay: 0.59s; }
.hero.is-loaded .hero-content > *:nth-child(4) { transition-delay: 0.71s; }
.hero.is-loaded .hero-content > *:nth-child(5) { transition-delay: 0.83s; }

/* ===== Desktop: shift the group up and toward the left ===== */
@media (min-width: 1024px) {
  .hero-content {
    left: 0;
    transform: translate(60px, -70px);
    max-width: none;
    width: 100%;
    padding-left: clamp(2.5rem, 5.5vw, 7rem);
    padding-right: var(--gutter);
    padding-bottom: clamp(4rem, 12vh, 7rem);
  }
  .hero-rating { margin-bottom: 0.35rem; font-size: 1rem; }
  .hero-title { font-size: clamp(3.8rem, 2rem + 4.2vw, 6.4rem); }
  .hero-sub { max-width: 42ch; }
  .hero-themes { font-size: 0.78rem; }
}