.legalito-footer {
    color: var(--lg-text);
    padding: 4.5rem 0 1.75rem;
}

.ft-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--lg-border);
}

.ft-tagline {
    color: var(--lg-muted);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    margin: 0 0 1.5rem;
    max-width: 360px;
}

.ft-col-title {
    color: var(--lg-gold);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.ft-col-title::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--lg-gold-tint-55);
}

.ft-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ft-contact li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 14px;
}
.ft-contact li:hover .ft-contact-icon {
    transform: translateY(-1px);
    border-color: var(--lg-gold-tint-55);
}
.ft-contact a {
    color: var(--lg-text);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 300;
    letter-spacing: 0.01em;
}
.ft-contact a:hover { color: var(--lg-gold); }

.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.ft-links a {
    color: var(--lg-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease, transform 0.2s ease;
}
.ft-links a::before {
    content: "›";
    color: var(--lg-gold-soft);
    font-size: 14px;
    transition: color 0.2s ease, transform 0.2s ease;
}
.ft-links a:hover { color: var(--lg-gold); }
.ft-links a:hover::before {
    color: var(--lg-gold);
    transform: translateX(2px);
}

.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.5rem;
    flex-wrap: wrap;
}
.ft-copy {
    color: var(--lg-muted);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.2s ease;
}
.ft-copy:hover { color: var(--lg-text); }
.ft-legal {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.ft-legal a {
    color: var(--lg-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    position: relative;
}
.ft-legal a:hover { color: var(--lg-gold); }
.ft-legal a + a::before {
    content: "";
    position: absolute;
    left: -0.8rem;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--lg-gold-tint-55);
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
    .legalito-footer { padding: 3rem 0 1.5rem; }
    .ft-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    .ft-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .ft-legal { gap: 1.25rem; }
}
