:root {
  --brand-teal: #0094B3;
  --text: #333333;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--brand-teal);
  color: var(--text);
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Arial Narrow", Arial, sans-serif;
}

.site {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(12px, 4vw, 56px);
}

.artwork-wrap {
  width: min(96vw, 1600px);
}

.artwork-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.artwork {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - clamp(24px, 8vw, 112px));
  object-fit: contain;
  margin-inline: auto;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 4px;
  outline-offset: 2px;
}

.hotspot:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.18);
}

/* Coordinates are relative to the 2048 x 1152 master artwork. */
.hotspot-phone-office { left: 68.2%; top: 64.5%; width: 12.5%; height: 3.0%; }
.hotspot-phone-mobile { left: 68.2%; top: 67.3%; width: 12.5%; height: 3.0%; }
.hotspot-email        { left: 63.6%; top: 70.2%; width: 19.0%; height: 3.0%; }
.hotspot-web          { left: 64.6%; top: 73.0%; width: 17.0%; height: 3.0%; }

.mobile-contact {
  display: none;
}

.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: 700px) {
  .site {
    min-height: auto;
    align-content: start;
    padding: 12px;
    gap: 16px;
  }

  .artwork-wrap { width: 100%; }

  .artwork {
    max-height: none;
  }

  .mobile-contact {
    display: block;
    width: 100%;
    max-width: 620px;
    margin: 0 auto 16px;
    padding: 16px 18px;
    background: var(--white);
    text-align: center;
    line-height: 1.35;
  }

  .mobile-contact h1 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    line-height: 1.1;
  }

  .mobile-contact p { margin: 0 0 10px; }
  .mobile-contact p:last-child { margin-bottom: 0; }

  .mobile-contact a {
    color: inherit;
    text-decoration: none;
  }
}
