:root {
  --brand-blush: #f6cec9;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--brand-blush);
}

body {
  overflow-x: hidden;
}

.page-shell {
  width: 100%;
  min-height: 100svh;
  display: grid;
  place-items: start center;
  background: var(--brand-blush);
}

.hero {
  position: relative;
  width: 100%;
  max-width: 1675px;
  line-height: 0;
  overflow: hidden;
  background: var(--brand-blush);
}

.hero-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1675 / 939;
  object-fit: contain;
  object-position: center top;
  user-select: none;
  -webkit-user-drag: none;
}

/* Hotspots are positioned proportionally against the fixed artwork.
   They do not affect layout or image geometry, so nothing can stretch or warp. */
.cta-hotspot,
.instagram-hotspot,
.site-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 12px;
  line-height: normal;
}

.cta-hotspot {
  left: 2.9%;
  top: 79.0%;
  width: 20.2%;
  height: 6.0%;
}

.instagram-hotspot {
  left: 75.3%;
  top: 89.6%;
  width: 18.7%;
  height: 4.4%;
}

.site-hotspot {
  left: 75.3%;
  top: 94.1%;
  width: 17.5%;
  height: 4.4%;
}

.cta-hotspot:focus-visible,
.instagram-hotspot:focus-visible,
.site-hotspot:focus-visible {
  outline: 3px solid #111;
  outline-offset: -4px;
}

@media (min-width: 1675px) {
  body {
    display: grid;
    place-items: start center;
  }

  .hero {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.015);
  }
}

@media (max-width: 700px) {
  .page-shell {
    min-height: auto;
  }

  .hero {
    width: 100vw;
  }

  .hero-art {
    width: 100vw;
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
