.site-footer{
    background: #121417;
    color: rgba(255,255,255,0.9);
}

.footer-title{
    font-weight: 800;
    letter-spacing: .12em;
    margin-bottom: 14px;
}

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin: 10px 0;
}

.footer-links a{
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
    display: inline-block;
}

.footer-links a:hover{
    color: #ff6a00;
    transform: translateY(-1px);
}

/* Social */
.footer-social{
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-btn{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.04);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.social-btn:hover{
    transform: translateY(-2px);
    background: rgba(255,106,0,0.14);
    border-color: rgba(255,106,0,0.45);
    color: #ff6a00;
}

/* Bottom line */
.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}