.asr-home-footer {
    padding: 50px 60px 30px;
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    background: #0a0a0a;
    color: #f5f3ee;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1240px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    height: 36px;
    width: 36px;
    object-fit: contain;
}

.footer-brand span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #c9a84c;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: #8c8c8c;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: #c9a84c;
}

.footer-copy {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #8c8c8c;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 880px) {
    .asr-home-footer {
        padding: 40px 24px 24px;
    }

    .footer-inner {
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 16px;
    }
}
