/* ─── Footer ─── */

footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(250, 248, 245, 0.06);
  padding: 3rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(250, 248, 245, 0.3);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-links a {
  color: rgba(250, 248, 245, 0.4);
  text-decoration: none;
  transition:
    color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.social-links a:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
