:root {
  --sage: #c7c7b6;
  --cream: #f5efe5;
  --rose: #c7948b;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--sage);
}

body {
  margin: 0;
  background: radial-gradient(circle at 50% 12%, #e6e2d7 0, var(--sage) 46%, #b9bdab 100%);
}

.link-page {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  justify-content: center;
  align-items: center;
  padding: 12px;
}

.artwork {
  position: relative;
  display: inline-block;
  max-width: 100%;
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 24px 80px rgb(36 49 40 / 22%);
  line-height: 0;
}

.artwork > img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
  width: auto;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.link-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 10px;
  cursor: pointer;
  outline: 0 solid transparent;
  transition: background-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.link-hotspot:hover {
  background: rgb(255 255 255 / 12%);
  box-shadow: 0 7px 22px rgb(37 53 43 / 13%);
  transform: translateY(-1px);
}

.link-hotspot:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
}

.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;
}

@media (max-width: 560px) {
  body { background: var(--cream); }
  .artwork { box-shadow: none; }
  .link-hotspot { border-radius: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .link-hotspot { transition: none; }
}
