#footer {
    position: relative;
    padding: 50px 0 20px 0;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.02),
            rgba(255,255,255,0.01)
        );
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

#footer::before {
    content: "";
    position: absolute;
    top: -260px;
    right: -260px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(184,147,74,0.08),
            transparent 70%
        );
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-brand h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.footer-brand h2 span {
    color: var(--gold);
}

.footer-brand p {
    max-width: 420px;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.02)
        );
    color: var(--white);
    text-decoration: none;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    border-color: rgba(184,147,74,0.22);
    background:
        linear-gradient(
            180deg,
            rgba(184,147,74,0.16),
            rgba(184,147,74,0.06)
        );
    color: var(--gold-lt);
}

.footer-social i {
    font-size: 1.2rem;
}

.footer-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer-column ul {
    display: flex;
    gap: 14px;
    list-style: none;
}

.column-contact ul {
    flex-direction: column;
}

.footer-column li {
    color: var(--gray);
    font-size: 0.96rem;
    line-height: 1.8;
}

.footer-column a {
    color: var(--gray);
    text-decoration: none;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footer-column a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-map {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    margin-bottom: 20px;
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.12),
            transparent
        );
    margin-bottom: 28px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.55);
    font-size: 0.6rem;
    line-height: 1.7;
}

.footer-bottom a {
    color: var(--gold-lt);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

@media (min-width: 768px) {
    .footer-menu {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
        align-items: start;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-map iframe {
        height: 300px;
    }
}