footer {
  text-align: center;
  padding: 32px 20px 28px;
  color: var(--text-muted);
  font-size: 12px;
  border-top: 1px solid rgba(139,115,85,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

footer a { color: var(--brown); text-decoration: none; }
footer p { margin: 0; }

.footer-social { width: 100%; display: flex; justify-content: center; }

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icon-item { display: block; }

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--bg);
  border-radius: 50%;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-btn);
  border: 1px solid rgba(212,181,160,0.4);
  color: var(--brown);
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(139,115,85,0.15);
  background: var(--cream);
  color: var(--accent);
}

.social-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: fill 0.25s ease;
  display: block;
}

@media (max-width: 768px) {
  .social-icon     { width: 38px; height: 38px; }
  .social-icon svg { width: 12px; height: 12px; }
  .social-icons    { gap: 10px; }
}
