.footer {
    margin-top: 50px;
    padding: 46px 0 22px;
    background:
        radial-gradient(circle at top right, rgba(243,146,20,.08), transparent 24%),
        #060606;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-brand p {
    margin-top: 16px;
    max-width: 420px;
    color: var(--muted);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: var(--text);
    font-weight: 800;
    transition: .2s ease;
}

.footer-social a:hover {
    background: rgba(243,146,20,.12);
    border-color: rgba(243,146,20,.45);
    color: #ffca8c;
    transform: translateY(-2px);
}

.footer-column h3 {
    margin: 0 0 14px;
    font-size: 1rem;
    color: var(--text);
}

.footer-column a {
    display: block;
    color: var(--muted);
    margin: 10px 0;
    transition: .2s ease;
}

.footer-column a:hover {
    color: #ffca8c;
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: var(--muted);
    font-size: .9rem;
}

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

@media(max-width: 620px) {
    .footer {
        padding-top: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }
}