/**
 * Section 01 — Landing / entry (§9)
 * Cinematic dark screen, massive display type, single scroll trigger.
 * Final entry sound / red-door tie-in are open decisions (§15).
 */

.landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: none;
  overflow: hidden;
}

/* ── Background media (§ new) ──────────────────────────────────────────
   Space reserved for a Sidhu Moose Wala image behind the title. Idea:
   a B&W image that gains colour on title hover. When the asset lands, set
   --landing-img to its url() and drop the .placeholder child. */
.landing__media {
  --landing-img: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--landing-img);
  background-size: cover;
  background-position: center;
  /* Default: desaturated + dimmed so the title reads over it. */
  filter: grayscale(1) contrast(1.1) brightness(0.5);
  transition: filter 0.6s var(--ease);
}

/* Hovering the title brings the image to life (colour + lift). */
.landing:has(.landing__title:hover) .landing__media {
  filter: grayscale(0) contrast(1.05) brightness(0.72);
}

/* Placeholder shown until the real image exists. */
.landing__media-ph {
  position: absolute;
  inset: 0;
  border-style: dashed;
  opacity: 0.25;
}

.landing__content {
  position: relative;
  z-index: 1;
}

.landing__title {
  font-size: var(--fs-hero);
  color: var(--text);
  line-height: 0.9;
  cursor: default;
}

/* "The" as a superscript to "Legend". */
.landing__the {
  font-size: 0.26em;
  vertical-align: top;
  margin-right: 0.15em;
  color: var(--accent);
  letter-spacing: 0.02em;
  position: relative;
  top: 0.15em;
}

.landing__sub {
  margin-top: var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Scroll cue — the single trigger to enter. Static for now. */
.landing__scroll {
  position: absolute;
  z-index: 1;
  bottom: var(--space-lg);
  left: var(--section-pad-x);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-micro);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.landing__scroll::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--accent);
}
