/* Tavisa Life Sciences — Shared Footer
   One consistent footer UI across every page. */
.site-footer{
    background:#06162f;
    color:#fff;
}
.site-footer .footer-grid{
    display:grid !important;
    grid-template-columns:minmax(280px,1.55fr) minmax(130px,.75fr) minmax(170px,.9fr) !important;
    gap:48px !important;
    align-items:start;
}
.site-footer .footer-brand .brand-logo{
    width:45px !important;
    height:45px !important;
    object-fit:contain;
    flex:0 0 45px;
}
.site-footer .footer-brand .brand-text strong{
    color:#fff !important;
    font-size:13px !important;
    font-weight:800 !important;
    letter-spacing:.02em;
}
.site-footer .footer-brand .brand-text small{
    display:block;
    color:rgba(255,255,255,.52) !important;
    font-size:7.5px !important;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-top:3px;
}
.site-footer .footer-brand>p{
    max-width:390px !important;
    color:rgba(255,255,255,.54) !important;
    font-size:.70rem !important;
    line-height:1.75 !important;
    margin:18px 0 12px !important;
}
.site-footer .footer-tagline{
    color:rgba(255,255,255,.72);
    font-size:.67rem;
    font-weight:700;
}
.site-footer .footer-links h4{
    color:#fff !important;
    font-size:.68rem !important;
    margin:0 0 16px !important;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.site-footer .footer-links a{
    display:block;
    width:max-content;
    max-width:100%;
    color:rgba(255,255,255,.55) !important;
    font-size:.66rem !important;
    line-height:1.5;
    margin:0 0 10px;
    transition:color .2s ease,transform .2s ease;
}
.site-footer .footer-links a:hover{
    color:#fff !important;
    transform:translateX(3px);
}
.site-footer .footer-bottom{
    display:flex !important;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-top:42px !important;
    padding-top:20px !important;
    border-top:1px solid rgba(255,255,255,.09) !important;
}
.site-footer .footer-bottom p{
    margin:0 !important;
    color:rgba(255,255,255,.38) !important;
    font-size:.60rem !important;
}
@media (max-width:900px){
    .site-footer .footer-grid{
        grid-template-columns:minmax(240px,1.35fr) 1fr 1fr !important;
        gap:30px !important;
    }
}
@media (max-width:680px){
    .site-footer .footer-grid{
        grid-template-columns:1fr 1fr !important;
        gap:30px 24px !important;
    }
    .site-footer .footer-brand{
        grid-column:1 / -1 !important;
    }
    .site-footer .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }
}
@media (max-width:420px){
    .site-footer .footer-grid{
        grid-template-columns:1fr !important;
    }
    .site-footer .footer-brand,
    .site-footer .footer-links{
        grid-column:auto !important;
    }
}
