footer.site-footer {
    --footer-bg: #161616;
    --footer-surface: #1c1c1c;
    --footer-text: rgba(255,255,255,0.86);
    --footer-muted: rgba(255,255,255,0.62);
    --footer-border: rgba(255,255,255,0.10);
    background: radial-gradient(1200px 600px at 20% 0%, rgba(211,47,47,0.18), transparent 60%),
                radial-gradient(900px 520px at 85% 15%, rgba(255,255,255,0.08), transparent 55%),
                var(--footer-bg);
    color: var(--footer-text);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
    gap: 44px;
    align-items: start;
    padding-bottom: 70px;
}

.footer-brand__logo {
    width: 190px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

.footer-brand__desc {
    margin-top: 14px;
    color: var(--footer-muted);
    line-height: 1.6;
    font-size: 0.98rem;
}

.footer-brand__meta {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.footer-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--footer-text);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.18s ease, transform 0.18s ease;
}

.footer-meta__item i {
    color: var(--primary-color);
    width: 18px;
    text-align: center;
}

.footer-meta__item:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-admin {
    display: inline-flex;
    width: fit-content;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
}

.footer-admin:hover {
    border-color: rgba(211,47,47,0.55);
    background: rgba(211,47,47,0.10);
}

.footer-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-title i {
    font-size: 0.95rem;
    opacity: 0.95;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: var(--footer-muted);
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-bottom {
    background: rgba(0,0,0,0.12);
    border-top: 1px solid var(--footer-border);
    padding: 18px 0;
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.60);
    font-size: 0.9rem;
}

.footer-bottom__inner a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-weight: 800;
    transition: color 0.18s ease;
}

.footer-bottom__inner a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
        padding-bottom: 60px;
    }
}

@media (max-width: 640px) {
    footer.site-footer {
        padding-top: 70px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 46px;
    }
    .footer-bottom__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
