.designer-credit {
  display: inline-block;
  color: var(--gold-pale);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  animation: designerPulse 2.4s ease-in-out infinite;
  transition: color 0.2s ease;
}

.designer-credit:hover {
  color: #fff;
}

@keyframes designerPulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(1);
    text-shadow: 0 0 0 rgba(212, 168, 67, 0);
  }

  50% {
    opacity: 1;
    transform: scale(1.035);
    text-shadow: 0 0 12px rgba(212, 168, 67, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .designer-credit {
    animation: none;
  }
}
