* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #ffffff;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #ffffff;
  color: #111111;
  font-family: Arial, Helvetica, sans-serif;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 16px;
}

.artwork-wrap {
  position: relative;
  width: min(100%, 1600px);
  aspect-ratio: 16 / 9;
}

.artwork {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Contact hotspot positions are percentages of the approved 2048 × 1152 artwork. */
.hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 4px;
  cursor: pointer;
}

.hotspot:focus-visible {
  outline: 3px solid #d4af37;
  outline-offset: 2px;
  background: rgb(212 175 55 / 12%);
}

.hotspot-office {
  left: 50.9%;
  top: 55.0%;
  width: 19.6%;
  height: 4.4%;
}

.hotspot-mobile {
  left: 50.9%;
  top: 58.6%;
  width: 19.6%;
  height: 4.4%;
}

.hotspot-email {
  left: 50.9%;
  top: 62.0%;
  width: 19.6%;
  height: 4.5%;
}

.mobile-actions {
  display: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 800px) {
  .page-shell {
    align-content: start;
    gap: 12px;
    padding: 8px 8px 18px;
  }

  .artwork-wrap {
    width: 100%;
  }

  /* The artwork keeps its 16:9 ratio; it is scaled, never squeezed or distorted. */
  .hotspot {
    display: none;
  }

  .mobile-actions {
    display: grid;
    width: min(100%, 520px);
    gap: 8px;
  }

  .mobile-actions a {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid #d4af37;
    border-radius: 4px;
    background: #ffffff;
    color: #111111;
    text-decoration: none;
  }

  .mobile-actions span {
    color: #8a6b16;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-actions strong {
    font-size: 0.95rem;
    font-weight: 500;
  }
}

@media (max-width: 460px) {
  .page-shell {
    padding-inline: 4px;
  }

  .mobile-actions a {
    grid-template-columns: 62px 1fr;
    padding-inline: 10px;
  }

  .mobile-actions strong {
    font-size: 0.88rem;
  }
}
