:root {
    --footer-bg: #15130f;
    --footer-muted: rgba(255, 245, 235, 0.68);
}

.site-footer {
    margin-top: 0;
    padding-top: clamp(3rem, 7vw, 5.5rem);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        radial-gradient(circle at 78% 12%, rgba(249, 115, 22, 0.34), transparent 30%),
        linear-gradient(180deg, #211d18 0%, var(--footer-bg) 74%);
    background-size: 74px 74px, auto, auto;
}

.footer-inner {
    max-width: var(--content-wide);
    margin: 0 auto;
    padding: 0 1.5rem clamp(2rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: minmax(260px, 1.8fr) repeat(4, minmax(0, 1fr));
    gap: clamp(1.4rem, 3vw, 2.5rem);
}

.footer-column h3 {
    margin: 0 0 0.65rem;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-brand {
    max-width: 370px;
}

.footer-logo {
    display: inline-flex;
    padding: 0.28rem 0.45rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
}

.footer-logo img {
    height: 54px;
}

.footer-tagline {
    margin-top: 1rem;
    color: var(--footer-muted);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: var(--footer-muted);
    text-decoration: none;
    transition: color 0.15s ease, transform 0.15s ease;
}

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

.footer-trust,
.footer-bottom {
    max-width: var(--content-wide);
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer-trust {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.15rem;
}

.footer-trust p,
.footer-bottom p {
    color: var(--footer-muted);
}

.footer-bottom {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}

@media (max-width: 1100px) {
    .footer-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 620px;
    }
}

@media (max-width: 760px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer-trust,
    .footer-bottom {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
