:root {
  --page-bg: #efe4d2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--page-bg); }
body { margin: 0; background: var(--page-bg); }

.mockup-page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-art {
  position: relative;
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  line-height: 0;
  box-shadow: 0 0 40px rgba(0,0,0,.08);
}

.page-art > img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  display: block;
  z-index: 5;
  background: transparent;
  border: 0;
  line-height: normal;
}

.hotspot:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px #063c2c;
}

/* Coordinates are percentages of the approved 1536px-wide artwork. */
.home        { left: 55.3%; top: 2.0%; width: 6.2%; height: 2.1%; }
.product     { left: 64.0%; top: 2.0%; width: 8.0%; height: 2.1%; }
.about       { left: 75.1%; top: 2.0%; width: 10.0%; height: 2.1%; }
.contact     { left: 88.0%; top: 2.0%; width: 8.0%; height: 2.1%; }

.hero-about  { left: 4.8%; top: 17.2%; width: 23.0%; height: 3.1%; }
.product-cta { left: 4.8%; top: 37.2%; width: 24.5%; height: 2.6%; }
.about-cta   { left: 69.5%; top: 65.4%; width: 22.0%; height: 2.6%; }
.contact-cta { left: 69.5%; top: 70.6%; width: 22.0%; height: 3.1%; }

.anchor {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
}
.anchor-top     { top: 0; }
.anchor-product { top: 27.5%; }
.anchor-about   { top: 60.5%; }

@media (max-width: 700px) {
  .page-art {
    width: 100%;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
