/* Credit + social (unchanged) */
.footer-text{ font-size:13px; line-height:1.4; opacity:.95; }
.credit-link{ border-bottom:1px solid rgba(255,255,255,0.35); }
.social{ display:inline-flex; align-items:center; gap:10px; }
.social-link{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:999px;
  color:#ffffff; background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.22);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.social-link svg{ width:20px; height:20px; display:block; }
.social-link:hover{
  transform:translateY(-1px);
  background:rgba(56,176,0,0.18);
  border-color:rgba(56,176,0,0.55);
  color:#eaffdb;
}

/* Small screens */
@media (max-width:480px){
  .site-footer .footer-inner{ padding:12px 12px; gap:10px; }
  .site-footer .footer-nav .nav-link{ padding:8px 11px; }
  .social-link{ width:36px; height:36px; }
}