.hero {
  position: relative;
  padding-top: 8px;
  isolation: isolate;
  overflow: hidden;
}

/* ---- flyer photo as the full-bleed hero background ---- */
.hero__wall {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: image-set(
    url("../../assets/images/flyer-full.webp") type("image/webp") 1x,
    url("../../assets/images/flyer-full.jpg") type("image/jpeg") 1x
  );
  background-size: cover;
  background-position: top center;
}
.hero__wall::before {
  /* legibility scrim: darkest low (behind copy + band), lighter toward the top */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17,16,14,.55) 0%, rgba(17,16,14,.72) 46%, rgba(17,16,14,.93) 100%);
}

.hero__inner { display: flex; flex-direction: column; justify-content: center; min-height: min(86svh, 720px); gap: 28px; padding-bottom: 38px; }

.hero__eyebrow {
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__title {
  margin-top: 14px;
  font-size: var(--display);
  line-height: 0.82;
  letter-spacing: -0.005em;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}
.hero__title-line { display: block; }
.hero__title-line--wa { color: var(--orange); }
.hero__title-line--night { color: var(--red); margin-left: 0.06em; margin-top: 0.12em; }

.hero__lede {
  margin-top: 20px;
  max-width: 46ch;
  font-size: var(--step-0);
  color: rgba(248, 232, 203, 0.88);
}

.hero__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* the ghost button assumes a light background elsewhere on the page —
   flip it to light-on-photo here so it stays visible over the flyer */
.hero__actions .btn--ghost {
  --btn-fg: var(--text-dark-bg);
  border-color: var(--text-dark-bg);
}
.hero__actions .btn--ghost:hover { --btn-bg: var(--text-dark-bg); --btn-fg: var(--ink); }

/* ---- black information band ---- */
.hero__band {
  margin-top: 0;
  background: var(--ink);
  color: var(--text-dark-bg);
  border-top: 4px solid var(--orange);
}
.hero__band-inner { padding-block: 22px; }

.factbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}
.factbar__item { min-width: 0; }
.factbar dt {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.factbar dd {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.factbar__item--price dd { color: var(--orange); }

@media (min-width: 640px) {
  .factbar { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .hero { display: flex; flex-direction: column; min-height: 100svh; padding-top: 0; }
  .hero__inner {
    flex: 1;
    min-height: 0;
    justify-content: center;
    padding-block: clamp(32px, 5vh, 72px);
  }
  .hero__copy { max-width: 640px; }
  .hero__band-inner { padding-block: 26px; }
  .factbar { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px; }
  .factbar__item + .factbar__item { padding-left: 24px; border-left: 1px solid var(--rule-dark); }
}
