/* section: hero — event-titled masthead, Reverend Meantooth featured,
   dual free/register strip above the fold */

.section--hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, calc(100svh - var(--nav-h)), 980px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  background: var(--coal);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 30%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12, 24, 48, 0.9) 0%, rgba(12, 24, 48, 0.45) 48%, rgba(11, 11, 13, 0.2) 100%),
    linear-gradient(to bottom, rgba(11, 11, 13, 0.15) 40%, rgba(22, 41, 79, 0.92) 96%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(70px, 12vh, 130px);
  padding-bottom: clamp(36px, 6vh, 70px);
}

.hero-h1 {
  font-weight: 400;
  line-height: 1;
  margin: 12px 0 14px;
}

/* the event owns the masthead */
.hero-event-line {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.6rem, 8.4vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0.015em;
  color: var(--gold);
  text-shadow: 0.045em 0.045em 0 rgba(0, 0, 0, 0.45);
}

.hero-event-and {
  display: block;
  margin: 3px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  color: var(--red);
}

.hero-featuring {
  display: block;
  margin: 16px 0 6px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  color: var(--paper-dim);
}

/* the headliner — still nearly masthead-sized */
.hero-headliner {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.25rem, 7.2vw, 4.3rem);
  line-height: 0.92;
  letter-spacing: 0.015em;
  color: var(--bone);
  text-shadow: 0.04em 0.04em 0 rgba(0, 0, 0, 0.45);
}

.hero-of {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 8px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--paper-dim);
}

.hero-band-logo {
  width: min(190px, 46vw);
  height: auto;
  transform: translateY(0.35em);
}

.hero-meta {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  letter-spacing: 0.09em;
  color: var(--paper);
  margin: 16px 0 18px;
}

/* dual info strip: free-to-attend vs register-a-team, deliberately parallel */
.hero-strip {
  display: grid;
  gap: 14px;
}

@media (min-width: 820px) {
  .hero-strip {
    grid-template-columns: 1fr 1fr;
    max-width: 880px;
  }
}

.hero-slot {
  padding: 16px 20px 18px;
  background: rgba(12, 24, 48, 0.72);
  border: 1px solid rgba(242, 193, 78, 0.35);
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.hero-slot-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 6px;
}

.hero-slot p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--paper-dim);
}

.hero-ftk {
  color: var(--gold-bright);
  font-weight: 700;
}

.hero-slot-btn {
  margin-top: 12px;
  padding: 9px 22px;
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  .hero-scrim {
    background:
      linear-gradient(to bottom, rgba(12, 24, 48, 0.35) 0%, rgba(12, 24, 48, 0.82) 45%, rgba(22, 41, 79, 0.96) 100%);
  }

  .hero-photo {
    object-position: 60% 12%;
  }

  .hero-slot {
    padding: 13px 16px 15px;
  }
}
