footer {

    background: #050505;

    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 40px 24px;

}

.footer-inner {

    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

}

.footer-links {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.footer-links a {

    color: rgba(255,255,255,0.7);

    text-decoration: none;

    font-size: 15px;

    transition: 0.25s;

}

.footer-links a:hover {

    color: #d4af37;

}

.footer-copy {

    color: rgba(255,255,255,0.45);

    font-size: 14px;

    white-space: nowrap;

}

/* MOBILE */

@media (max-width: 768px) {

    .footer-inner {

        flex-direction: column;

        text-align: center;

        gap: 18px;

    }

    .footer-links {

        justify-content: center;

        gap: 16px;

    }

}