/* =========================================================
   CALCULAXY — FOOTER STYLESHEET
   Site footer and the AdSense/GDPR cookie consent banner
   ========================================================= */

.site-footer{background:var(--ink);color:#b9c6d1;padding-top:56px;}
.footer-inner{display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:40px;padding-bottom:40px;}
.footer-logo{color:var(--white);font-size:20px;}
.footer-logo-img{height:26px;width:auto;max-width:140px;object-fit:contain;display:block;margin-bottom:14px;}
.footer-about p{color:#93a4b3;font-size:14px;max-width:40ch;margin-top:14px;}
.footer-col h4{color:var(--white);font-size:14px;margin-bottom:14px;}
.footer-col li{margin-bottom:10px;}
.footer-col a{color:#93a4b3;font-size:14px;}
.footer-col a:hover{color:var(--primary);}
.footer-bottom{border-top:1px solid #223140;padding:18px 0;}
.footer-bottom p{margin:0;font-size:13px;color:#7c8b9a;}

/* ============ COOKIE BANNER ============ */
.cookie-banner{
  position:fixed;left:0;right:0;bottom:0;background:var(--ink);color:#dbe4ec;padding:16px 0;
  z-index:100;transform:translateY(100%);transition:transform .3s ease;
}
.cookie-banner.show{transform:translateY(0);}
.cookie-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;}
.cookie-inner p{margin:0;font-size:13.5px;color:#dbe4ec;max-width:640px;}
.cookie-inner a{color:var(--primary);text-decoration:underline;}
.cookie-btn{border:none;font-family:inherit;font-weight:700;font-size:14px;padding:10px 22px;border-radius:8px;cursor:pointer;background:var(--primary);color:var(--ink);}
.cookie-btn:hover{background:var(--primary-dark);color:var(--white);}

/* ============ RESPONSIVE ============ */
@media (max-width:960px){
  .footer-inner{grid-template-columns:1fr 1fr;}
  .footer-about{grid-column:1 / -1;}
}
@media (max-width:720px){
  .footer-inner{grid-template-columns:1fr;gap:28px;padding-bottom:28px;}
  .footer-logo-img{height:23px;max-width:125px;margin-bottom:12px;}
  .footer-about p{font-size:13.5px;max-width:100%;}
  .footer-col h4{margin-bottom:12px;}
  .footer-bottom{padding:15px 0;}
  .footer-bottom p{font-size:12.5px;}
}