.splash {
  display: none !important;
}

.parallax-hero {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: 100svh !important;
  min-height: 680px !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
}

.parallax-hero::before,
.parallax-hero::after {
  display: none !important;
}

.parallax-stage {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent !important;
}

.parallax-layer,
.parallax-light,
.parallax-arcade,
.parallax-pedestal,
.parallax-cat,
.parallax-foreground,
.cat-glow {
  display: none !important;
}

.parallax-title {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0 7vw;
  text-align: center;
  pointer-events: none;
}

.parallax-title h1 {
  max-width: 11ch;
  margin: 0;
  color: rgba(22, 22, 22, .82);
  font: 400 clamp(4.2rem, 9vw, 9.5rem) / .84 Georgia, "Times New Roman", "Songti SC", serif;
  letter-spacing: -.07em;
  text-shadow: 0 2px 22px rgba(255, 255, 255, .45);
}

.parallax-enter {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 7vh;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: rgba(22, 22, 22, .68);
  font-size: .68rem;
  letter-spacing: .18em;
  text-decoration: none;
  transform: translateX(-50%);
}

.parallax-enter span {
  animation: enter-drift 2.3s ease-in-out infinite;
}

body > .nav nav,
body > .nav .menu {
  transition: opacity .35s ease, transform .35s ease;
}

@keyframes enter-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (max-width: 720px) {
  .parallax-hero {
    min-height: 700px !important;
  }

  .parallax-title h1 {
    font-size: clamp(4rem, 18vw, 6.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-enter span {
    animation: none !important;
  }
}
