/* Footer */
footer {
    background: var(--brand-darkest);
    color: rgba(255,255,255,0.7);
    padding: 64px 36px 28px;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--gold) 50%, var(--brand) 100%);
}
.footer-inner { max-width: 1380px; margin: 0 auto; position: relative; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 44px;
}
.footer-brand .logo {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.94);
    border-radius: var(--r-md);
}
.footer-brand .brand-logo-img { width: 188px; }
.footer-brand p {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}
.footer-col h5 {
    font-size: 13px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; font-size: 12.5px; }
.footer-col a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact { font-size: 12.5px; line-height: 1.8; }
.footer-contact strong { color: var(--white); font-weight: 600; }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.45);
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a:hover { color: var(--gold); }
.float-cta {
    position: fixed;
    right: 22px;
    bottom: 28px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.float-btn {
    width: 52px;
    height: 52px;
    background: var(--moss);
    color: var(--white);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s;
}
.float-btn:hover {
    background: var(--gold);
    color: var(--moss-deep);
    transform: translateY(-4px);
}
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-brand {
        grid-column: auto;
    }
    .float-cta {
        right: 14px;
        bottom: 18px;
    }
    .float-btn {
        width: 46px;
        height: 46px;
    }
}
