/* Home page — the entrance hero. */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) clamp(3rem, 8vw, 6rem);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(20%) brightness(0.55);
  transform: scale(1.06);
  z-index: 0;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(10, 9, 8, 0.96) 0%, rgba(10, 9, 8, 0.55) 40%, rgba(10, 9, 8, 0.35) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(10, 9, 8, 0) 0%, rgba(10, 9, 8, 0.45) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 1.1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--color-text);
}

.hero__subtitle {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--color-text-dim);
  max-width: 46ch;
}

.hero__dates {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--color-text-faint);
}

.hero__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
}

.hero__scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-cue span {
    animation: none;
    opacity: 1;
  }
}
