/* Studio signature in the footer.
   Its own stylesheet because the application's Tailwind build only contains the
   utilities the site already used — arbitrary sizes invented here would resolve
   to nothing.

   Set small, in normal sentence case, with no tracking: uppercase and wide
   letter-spacing read as a label and take far more space than the words need.
   One typeface, one size, one weight across the whole line; the studio name is
   set apart by tone alone so it still reads as a link. */

.emence-signature {
  margin: 1.4rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(213, 205, 194, 0.3);
}

.emence-signature-name {
  font: inherit;
  letter-spacing: inherit;
  color: rgba(214, 195, 164, 0.72);
  text-decoration: none;
  transition: color 0.25s ease;
}
.emence-signature-name:hover,
.emence-signature-name:focus-visible {
  color: #ffffff;
}
.emence-signature-name:focus-visible {
  outline: 1px solid rgba(214, 195, 164, 0.5);
  outline-offset: 3px;
}

.emence-signature-sep {
  color: inherit;
  padding: 0 0.1em;
}

@media (max-width: 520px) {
  .emence-signature { font-size: 0.56rem; }
}
