/* ============================================
   FOOTER
============================================ */
footer {
    background: var(--black-soft);
    border-top: 1px solid rgba(244,240,235,0.06);
    padding: 3rem 2.5rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(244,240,235,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1rem;
    color: var(--white);
}

.footer-logo-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.footer-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.6;
    max-width: 240px;
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(244,240,235,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(244,240,235,0.2);
    text-transform: uppercase;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-legal a {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(244,240,235,0.2);
    text-decoration: none;
    transition: color 0.2s;
}

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