/* Match the reference inspiration tab's 39px capsule and 200ms arrow reveal. */
.studio-contact {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  gap: 0;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: background .12s, color .2s;
}
.studio-contact .studio-contact-arrow {
  display: block;
  width: 0;
  height: 16px;
  opacity: 0;
  flex-shrink: 0;
  overflow: visible;
  margin-right: 0;
  transition: width .2s, opacity .2s, margin-right .2s;
}
.studio-contact:hover .studio-contact-arrow,
.studio-contact:focus-visible .studio-contact-arrow {
  width: 16px;
  opacity: 1;
  margin-right: 6px;
}
@media (hover: none) {
  .studio-contact { min-height: 44px; }
  .studio-contact .studio-contact-arrow { width: 16px; opacity: 1; margin-right: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  .studio-contact, .studio-contact .studio-contact-arrow { transition: none; }
}
