.site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.85);
    background:
        radial-gradient(circle at 10% 0%, rgba(109, 139, 87, 0.2) 0%, transparent 38%),
        radial-gradient(circle at 90% 100%, rgba(198, 167, 94, 0.14) 0%, transparent 42%),
        linear-gradient(180deg, #2a1218 0%, var(--burgundy-dark) 45%, #1f0e13 100%);
}

.site-footer__accent {
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 18%,
        var(--gold-light) 50%,
        var(--gold) 82%,
        transparent 100%
    );
}

.site-footer__glow {
    position: absolute;
    inset: auto -10% -45% -10%;
    height: 55%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.site-footer__main {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
    padding: 4rem 0 3rem;
}

@media (min-width: 1024px) {
    .site-footer__main {
        grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
        gap: 2rem 2.5rem;
        padding: 4.5rem 0 3.25rem;
    }
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.site-footer__logo-wrap {
    display: inline-flex;
    width: fit-content;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 36px -24px rgba(0, 0, 0, 0.65);
}

.site-footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.site-footer__logo img {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.45rem;
    object-fit: cover;
}

.site-footer__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.site-footer__logo-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.22em;
    color: var(--burgundy);
}

.site-footer__logo-name span {
    color: var(--gold);
}

.site-footer__logo-tagline {
    margin-top: 0.35rem;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.site-footer__about {
    max-width: 22rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.site-footer__social-link {
    display: grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none;
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.site-footer__social-link svg {
    width: 0.95rem;
    height: 0.95rem;
}

.site-footer__social-link:hover {
    transform: translateY(-2px);
    color: var(--burgundy-dark);
    background: var(--gold);
    border-color: var(--gold);
}

.site-footer__col-title {
    position: relative;
    margin-bottom: 1.15rem;
    padding-bottom: 0.65rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: #fff;
}

.site-footer__col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2rem;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 999px;
}

.site-footer__links {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer__link::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.site-footer__link:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.site-footer__link:hover::before {
    width: 0.65rem;
}

.site-footer__contact-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem 0.85rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.site-footer__contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(198, 167, 94, 0.28);
}

.site-footer__contact-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 0.55rem;
    color: var(--gold);
    background: rgba(198, 167, 94, 0.12);
}

.site-footer__contact-icon svg {
    width: 0.95rem;
    height: 0.95rem;
}

.site-footer__contact-text {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer__contact-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-footer__contact-text a:hover {
    color: var(--gold);
}

.site-footer__bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 0 1.35rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
    .site-footer__bottom-inner {
        flex-direction: row;
    }
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.15rem;
}

.site-footer__legal a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-footer__legal a:hover {
    color: var(--gold);
}

@media (max-width: 767px) {
    .site-footer .container-luxe {
        padding-inline: 2rem;
    }

    .site-footer__main {
        padding-top: 3.25rem;
        padding-bottom: 2.5rem;
    }

    .site-footer__bottom-inner {
        padding-bottom: 1.35rem;
        text-align: center;
    }

    .site-footer__legal {
        justify-content: center;
    }
}
