:root {
    --footer-bg: #eb7033;
    --footer-bg-alt: #d85f24;
    --footer-text: #fff7f2;
    --footer-muted: #ffe6d8;
    --footer-accent: #ffffff;
}

.site-footer {
    margin-top: 0;
    background: radial-gradient(circle at 12% 0%, #ff9f69 0%, var(--footer-bg) 44%, var(--footer-bg-alt) 100%);
    color: var(--footer-text);
    padding-top: 3rem;
    font-size: 0.95rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) repeat(4, minmax(0, 1fr));
    gap: 1.8rem;
}

.footer-column h3 {
    margin: 0 0 0.7rem;
    color: #ffffff;
    font-size: 1rem;
}

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

.footer-logo img {
    height: 58px;
    margin-bottom: 0.9rem;
}

.footer-tagline {
    margin: 0;
    color: var(--footer-muted);
    line-height: 1.65;
}

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

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

.footer-links a:hover {
    color: var(--footer-accent);
}

.footer-trust {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 1rem;
    border-top: 1px solid rgba(255, 233, 220, 0.35);
}

.footer-trust p {
    margin: 1rem 0 0;
    color: #fff2e8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem 1.6rem;
    color: var(--footer-muted);
}

.footer-bottom p {
    margin: 0;
}

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

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

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

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

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

    .footer-brand {
        max-width: none;
    }
}
