.footer {
    background: #121212;
    color: #f4f1eb;
    padding: 42px 28px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
}

.footer h3,
.footer h4 {
    margin: 0 0 12px;
}

.footer p {
    margin: 10px 0;
    line-height: 1.5;
    color: #d8cfc4;
}

.footer a {
    color: #eddac0;
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

.footer-brand {
    max-width: 500px;
}

.footer-brand p {
    white-space: nowrap;
}

.footer-logo {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    display: block;
    margin-bottom: 14px;
}

@media (max-width: 800px) {
    .footer {
        grid-template-columns: 1fr;
        padding: 34px 22px;
    }
}

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

.footer .social-icons a {
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 50%;
    color: #ffffff;
    transition: all .25s ease;
}

.footer .social-icons a:hover {
    transform: translateY(-3px) scale(1.08);
    border-color: transparent;
}

.footer .social-icons svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

/* Facebook */
.footer .social-icons a.facebook:hover {
    background: #1877f2;
    box-shadow: 0 0 15px rgba(24,119,242,.6);
}

/* Instagram */
.footer .social-icons a.instagram:hover {
    background: linear-gradient(
        45deg,
        #f58529,
        #feda77,
        #dd2a7b,
        #8134af,
        #515bd4
    );
    box-shadow: 0 0 15px rgba(221,42,123,.6);
}

/* TikTok */
.footer .social-icons a.tiktok:hover {
    background: linear-gradient(
        45deg,
        #25f4ee,
        #fe2c55
    );
    box-shadow: 0 0 15px rgba(37,244,238,.6);
}

/* YouTube */
.footer .social-icons a.youtube:hover {
    background: #ff0000;
    box-shadow: 0 0 15px rgba(255,0,0,.6);
}

.site-credit {
    margin-top: 12px;
    font-size: 0.68rem;
    opacity: 0.72;
}

.site-credit a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
}

.site-credit a:hover,
.site-credit a:focus {
    text-decoration: underline;
}