.site-footer {
  display: flex;
  justify-content: center;
  padding: 56px 18px 40px;
}

.footer__signature {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(162, 132, 151, 0.35);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.footer__signature:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.footer__badge {
  border-radius: 4px;
}

.footer__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer__built {
  font-size: 11px;
  color: var(--muted);
}

.footer__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.footer__role {
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.4px;
  opacity: 0.75;
}
