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

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.holding-page {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #181a1c;
}

.hero-art {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-art { animation: reveal 650ms ease-out both; }
  @keyframes reveal { from { opacity: 0; } to { opacity: 1; } }
}
