.landing-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.landing-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.landing-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(196, 132, 92, 0.06), transparent 50%),
    radial-gradient(circle at 50% 40%, rgba(11, 17, 32, 0.15), rgba(11, 17, 32, 0.65) 70%),
    linear-gradient(to bottom, rgba(11, 17, 32, 0) 0%, rgba(11, 17, 32, 0.55) 100%);
}

.landing-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: end;
  justify-items: center;
  text-align: center;
  gap: 0;
  padding-bottom: 20vh;
}

.landing-hero__marker {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--space-5);
}

.landing-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ffffff 30%, var(--color-copper-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-6);
}

.landing-hero__descriptor {
  max-width: 44ch;
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.7);
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero__video {
    display: none;
  }

  .landing-hero {
    background: url('../img/ocean-poster.jpg') center / cover no-repeat;
  }
}
