:root {
  --paper: #f7f5ef;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--paper);
}

.landing {
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(18px, 4vmin, 44px);
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.96), transparent 44%),
    linear-gradient(145deg, #fbfaf7 0%, var(--paper) 60%, #f0eee7 100%);
}

.artwork {
  position: relative;
  width: min(82vmin, 860px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(21, 28, 50, 0.11),
    0 30px 90px rgba(35, 57, 102, 0.11);
}

.artwork::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 12px rgba(247, 245, 239, 0.26);
  pointer-events: none;
}

.artwork img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  transform: translate(4px, 4px) scale(1.025);
}

@media (prefers-reduced-motion: no-preference) {
  .artwork {
    animation: settle 900ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
  }

  @keyframes settle {
    from {
      opacity: 0;
      transform: scale(0.975);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}
