footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 60px 48px 0; }
.footer-main { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; padding-bottom: 40px; }
.footer-contact h4, .footer-social h4 { color: #fff; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; font-family: 'Lato', sans-serif; font-weight: 700; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 10px; text-decoration: none; transition: color 0.2s; }
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item svg { opacity: 0.6; flex-shrink: 0; }
.footer-logo-center { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo { width: 88px; height: 88px; background: rgba(255,255,255,1); border: 2px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; border-radius: 50%; }
.footer-brand { font-family: 'Playfair Display', serif; color: #fff; font-size: 0.95rem; text-align: center; letter-spacing: 0.05em; }
.footer-social { display: flex; justify-content: flex-end; flex-direction: column; align-items: flex-end; gap: 14px; }
.social-icons { display: flex; gap: 14px; }
.social-icon { width: 40px; height: 40px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); text-decoration: none; transition: all 0.2s; }
.social-icon:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,166,35,0.1); transform: translateY(-2px); }
.social-icon svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }
@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-contact-item { justify-content: center; }
  .footer-social { align-items: center; }
  .social-icons { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}