/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page background */
html, body {
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
}

/* Stage */
.stage {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Panel wrapper */
.panel-wrap {
  position: relative;
  height: 100vh;
  aspect-ratio: 3 / 4.5; /* elevator panel ratio */
}

/* Panel image */
.panel-img {
  height: 100%;
  width: auto;
  display: block;
}

/* Hotspots (invisible clickable zones) */
.hotspot {
  position: absolute;
  display: block;
  cursor: pointer;
}

/* CONTACT button hotspot */
.hotspot.contact {
  left: 12%;
  bottom: 16%;
  width: 76%;
  height: 8%;
}

/* Instagram icon hotspot */
.hotspot.ig {
  left: 46%;
  bottom: 6%;
  width: 8%;
  height: 6%;
}
