:root {
  color-scheme: light;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #343434;
  background: #fff;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
body { margin: 0; }

.page {
  --frame: clamp(1rem, 2.8vw, 2.625rem);
  --caption-height: 6rem;
  min-height: 100vh;
  min-height: 100svh;
  padding: var(--frame);
  background: #fff;
}

.scene {
  position: relative;
  isolation: isolate;
  height: calc(100vh - var(--frame) * 2 - var(--caption-height));
  height: calc(100svh - var(--frame) * 2 - var(--caption-height));
  min-height: 22rem;
  overflow: hidden;
  background: #f5f4ef;
}

.scene__photo {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact {
  min-height: var(--caption-height);
  display: grid;
  place-items: center;
  padding-top: .65rem;
  text-align: center;
}

.contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: .5rem;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.contact__artwork {
  /* Display the supplied PNG's lettering without its transparent square margins. */
  position: relative;
  display: block;
  width: clamp(11.25rem, 17vw, 13.125rem);
  aspect-ratio: 460 / 64;
  overflow: hidden;
}

.contact__artwork img {
  position: absolute;
  width: 217.391305%;
  height: auto;
  max-width: none;
  left: -58.695653%;
  top: -728.125%;
}

.contact a:hover { opacity: .65; }
.contact a:focus-visible { outline: 2px solid #70624c; outline-offset: 4px; }

@media (max-width: 600px) {
  .page { --caption-height: 5.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .contact a { transition: none; }
}
