:root {
  --ink: #182320;
  --cream: #f1eee6;
  --lime: #ded9c9;
  --clay: #182320;
}

footer {
  background: var(--ink);
  color: var(--cream);
}

.contact-link {
  display: inline-block;
  border-bottom: 1px solid #ffffff99;
  padding: 8px 0;
  color: inherit;
  text-decoration: none;
  font: 16px "DM Mono", monospace;
}

.brand {
  display: block;
  width: min(235px, 45vw);
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-link span {
  margin-left: 12px;
}

.social {
  margin-top: 30px !important;
  font: 11px "DM Mono", monospace !important;
  text-transform: uppercase;
  letter-spacing: .04em;
}

footer .social a,
footer .social a:link,
footer .social a:visited,
footer .social a:hover,
footer .social a:active,
footer .social a:focus {
  color: #f1eee6 !important;
  text-decoration: none !important;
}

.product {
  border: 0;
  padding: 0;
  width: 100%;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.product img {
  transition: opacity .25s ease, transform .25s ease;
}

.product:hover img,
.product:focus-visible img {
  opacity: .76;
  transform: scale(.985);
}

.product.selected {
  outline: 1px solid var(--lime);
  outline-offset: 6px;
}

.product:focus-visible {
  outline: 1px solid var(--cream);
  outline-offset: 5px;
}

.gallery-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 40px 0;
  color: var(--cream);
  font: 12px "DM Mono", monospace;
  text-transform: uppercase;
}