/* ===== Footer CTA banner ===== */
.footer-cta{background:var(--primary);color:#fff;text-align:center;padding:70px 0;}
.footer-cta h2{color:#fff;font-size:32px;margin-bottom:14px;}
.footer-cta p{color:rgba(255,255,255,.8);margin-bottom:28px;font-weight:600;}
.footer-cta-buttons{display:flex;justify-content:center;gap:16px;flex-wrap:wrap;}

/* ===== Footer component ===== */
.site-footer{background:var(--ink);color:#cbd5e1;padding:70px 0 0;}
.footer-grid{display:grid;grid-template-columns:1.8fr 1fr 1fr 1fr 1fr;gap:32px;padding-bottom:50px;align-items:center;}

.footer-brand .logo{color:#fff;font-size:24px;display:inline-block;margin-bottom:16px;}
.footer-brand .logo span{color:var(--accent);}
.footer-brand p{color:#9fb0be;font-size:14px;line-height:1.7;margin-bottom:20px;max-width:320px;}

.footer-social{display:flex;gap:10px;perspective:500px;}
.footer-social a{width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;color:#fff;transition:transform .3s cubic-bezier(.16,1,.3,1),background .3s ease,border-color .3s ease,box-shadow .3s ease;transform-style:preserve-3d;}
.footer-social a:hover{background:var(--accent);border-color:var(--accent);transform:translateY(-5px) rotateX(18deg) rotateY(-14deg) scale(1.08);box-shadow:0 14px 24px rgba(0,0,0,.35),0 0 18px rgba(212,175,55,.35);}

.footer-col h4{color:#fff;font-size:16px;margin-bottom:20px;font-family:'Playfair Display',Georgia,serif;}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px;}
.footer-col ul li a{color:#9fb0be;font-size:14px;transition:color .2s ease,padding-left .2s ease;}
.footer-col ul li a:hover{color:var(--accent);padding-left:4px;}
.footer-contact li{color:#9fb0be;font-size:14px;}

.footer-bottom{border-top:1px solid rgba(255,255,255,.08);}
.footer-bottom-inner{padding:22px 0;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:14px;font-size:13px;color:#8a99a6;}
.footer-legal{list-style:none;display:flex;gap:18px;flex-wrap:wrap;}
.footer-legal a{color:#8a99a6;transition:color .2s ease;}
.footer-legal a:hover{color:var(--accent);}
.footer-credit{color:#8a99a6;}

@media (max-width:1000px){
  .footer-grid{grid-template-columns:repeat(2,1fr);}
  .footer-brand{grid-column:1 / -1;}
}
@media (max-width:600px){
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom-inner{flex-direction:column;align-items:flex-start;}
  .footer-social a{width:44px;height:44px;}
  .footer-legal{gap:16px;}
  .footer-legal a{display:inline-block;padding:6px 0;min-height:32px;}
}
