/* ─── Footer ────────────────────────────────────────── */
footer {
  padding: 0 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeUp 1s 1.3s ease both;
}

/* ─── Social Links Row ──────────────────────────────── */
.social-row {
  display: flex;
  gap: 32px;
}

.social-link {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200, 168, 75, 0.4);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

.social-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.social-link:hover {
  color: var(--gold);
}

.social-link:hover::after {
  transform: scaleX(1);
}

/* ─── Copyright ─────────────────────────────────────── */
.footer-copy {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(200, 168, 75, 0.2);
}
