/* ─── SHARED FOOTER ─── */
footer {
  padding: 24px 56px;
  border-top: 1px solid var(--border, rgba(255, 255, 255, 0.07));
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
}

footer p,
footer .footer-link {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 0.72rem !important;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-sub, #888888);
  letter-spacing: 0.04em;
  margin: 0;
}

footer p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

footer .footer-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .footer-link:hover {
  color: var(--gold, #C9A84C);
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 32px 24px;
  }

  footer p {
    position: static;
    transform: none;
  }
}
