.sc-footer {
    background: var(--sc-black);
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.sc-footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 64px 0 48px;
}

.sc-footer-brand .sc-logo {
    display: inline-flex;
    margin-bottom: 18px;
}

.sc-footer-brand .sc-logo-img {
    height: 64px;
    width: auto;
    max-width: 240px;
    mix-blend-mode: normal;
}

.sc-footer-brand p {
    margin: 0 0 22px;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.7;
}

.sc-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sc-footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 50%;
    color: var(--sc-gold);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.sc-footer-social a svg {
    width: 18px;
    height: 18px;
}

.sc-footer-social a:hover {
    background: var(--sc-black-soft);
    border-color: var(--sc-gold);
    color: var(--sc-gold-light);
}

.sc-footer-links h4,
.sc-footer-contact h4 {
    margin: 0 0 18px;
    color: var(--sc-white);
    font-family: var(--sc-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.sc-footer-links ul,
.sc-footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sc-footer-links li + li,
.sc-footer-contact li + li {
    margin-top: 10px;
}

.sc-footer-links a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.sc-footer-links a:hover {
    color: var(--sc-gold-light);
}

.sc-footer-contact li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sc-footer-contact strong {
    color: var(--sc-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sc-footer-contact span,
.sc-footer-contact a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.sc-footer-contact a:hover {
    color: var(--sc-gold-light);
}

.sc-footer-bottom {
    background: #0d0d0d;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.sc-footer-bottom-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.sc-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

.sc-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.sc-footer-credit {
    margin: 0;
    text-align: right;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.4;
}

.sc-footer-credit a {
    color: rgba(255, 255, 255, 0.52);
    font-weight: 500;
    transition: color 0.2s ease;
}

.sc-footer-credit a:hover {
    color: var(--sc-gold-light);
}

.sc-footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.sc-footer-legal a {
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.sc-footer-legal a:hover {
    color: var(--sc-gold-light);
}

@media (max-width: 991px) {
    .sc-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .sc-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .sc-footer-main {
        grid-template-columns: 1fr;
        padding: 48px 0 32px;
    }

    .sc-footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sc-footer-right {
        align-items: center;
    }

    .sc-footer-credit {
        text-align: center;
    }

    .sc-footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}
