:root {
  color-scheme: light;
  --page-background: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

html {
  background: var(--page-background);
}

body {
  margin: 0;
  background: var(--page-background);
  color: #301407;
  font-family: Arial, Helvetica, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

.landing-page {
  display: grid;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
}

.landing-hero {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  padding: clamp(0.75rem, 2vw, 2rem);
}

.artwork-frame {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  animation: reveal 700ms ease-out both;
}

.landing-artwork {
  width: auto;
  height: auto;
  max-width: min(100%, 104.5rem);
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

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

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 40rem) {
  .landing-hero {
    padding: 0.5rem;
  }

  .landing-artwork {
    width: 100%;
    max-width: none;
    transform: scale(1.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .artwork-frame {
    animation: none;
  }
}
