.site-footer{
  background-color: var(--navy-deep);
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
}
.site-footer h2{ font-size:.85rem; font-weight:700; color:#fff; text-transform:uppercase; letter-spacing:1px; margin-bottom:1rem; }
.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin-bottom:.55rem; }
.footer-links a{ color: var(--text-muted); font-size:.88rem; }
.footer-links a:hover{ color: var(--gold); }
.social-icon{
  width:34px; height:34px; border-radius:50%; border:1px solid var(--border-soft);
  display:inline-flex; align-items:center; justify-content:center; color:#fff; margin-right:.5rem;
}
.social-icon:hover{ background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.newsletter-input{
  background: var(--navy-card); border:1px solid var(--border-soft); color:#fff;
  border-radius: 8px 0 0 8px;
}
.newsletter-input::placeholder{ color: var(--text-faint); }
.newsletter-btn{
  background: var(--gold); color: var(--navy-deep); border:none; border-radius: 0 8px 8px 0; padding: 0 1rem;
}
.footer-bottom{ border-top:1px solid var(--border-soft); font-size:.8rem; }

/* Responsive footer adjustments */
@media (max-width: 991.98px) and (min-width: 768px){
  /* Tablet: two-column layout */
  .site-footer .container{ display:flex; gap:2rem; flex-wrap:wrap; }
  .site-footer .footer-column{ flex:1 1 50%; min-width:220px; }
  .site-footer .logo-wrap{ order:1; }
  .site-footer .links-wrap{ order:2; }
  .site-footer .newsletter-wrap{ order:3; }
}

@media (max-width: 767.98px){
  /* Mobile: single column, centered */
  .site-footer .container{ display:block; text-align:center; }
  .site-footer .footer-column{ width:100%; margin-bottom:1.25rem; }
  .site-footer .logo-wrap{ text-align:center; margin-bottom: .75rem; }
  .site-footer .footer-links{ display:block; text-align:center; }
  .site-footer .footer-links li{ display:block; }
  .site-footer .newsletter-wrap .newsletter-input{ width:100%; border-radius:8px; margin-bottom:.5rem; }
  .site-footer .newsletter-wrap .newsletter-btn{ width:100%; display:block; }
  .site-footer .social-icons{ text-align:center; margin-top:.5rem; }
  .site-footer .footer-bottom{ text-align:center; }
  html, body{ overflow-x:hidden; }
}
