html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  background: #000;
}

body {
  overflow: hidden;
}

.landing {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}

.landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/hero-v14.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(28px) brightness(0.72) saturate(1.05);
  transform: scale(1.08);
  transform-origin: center;
  z-index: 0;
}

.landing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
  pointer-events: none;
}

.hero-image {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100vw;
  max-height: 100vh;
  max-height: 100dvh;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  box-shadow: 0 0 48px rgba(0, 0, 0, 0.42);
}
