footer {
    width: 100%;
    background: var(--prim-col);
}

.footer-accent {
    height: 3px;
    background: var(--red);
    width: 100%;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.footer-col h4 {
    color: var(--red);
    font-size: 0.85rem;
    font-family: var(--font-fam);
    font-weight: bold;
    margin: 0 0 1.2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-brand img {
    height: 3.5rem;
    display: block;
    margin-bottom: 1.4rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
    border-color: var(--red);
    background: rgba(227, 30, 36, 0.15);
}

.footer-social svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: white;
}

.footer-contact p,
.footer-contact a {
    display: block;
    margin: 0 0 0.55rem 0;
    font-size: 0.95rem;
    font-family: var(--font-fam);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-nav {
    display: flex;
    flex-direction: column;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: var(--font-fam);
    line-height: 1.5;
    margin-bottom: 0.4rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    font-family: var(--font-fam);
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: var(--font-fam);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem;
    }

    .footer-legal {
        gap: 1rem;
    }
}
