.fat-footer {
    background: #FAFAF8;
    border-top: 1px solid rgba(43, 43, 43, 0.06);
    padding: 3rem 2rem 1.5rem;
    margin-top: 3rem;
}

.fat-footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.fat-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(43, 43, 43, 0.06);
}

.fat-footer-brand h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2B2B2B;
    margin: 0 0 0.5rem;
}

.fat-footer-brand p {
    color: #777;
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
    max-width: 320px;
}

.fat-footer-social {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.fat-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid rgba(43, 43, 43, 0.08);
    border-radius: 8px;
    color: #777;
    text-decoration: none;
    transition: all 0.2s;
}

.fat-footer-social a:hover {
    background: #FF8A73;
    border-color: #FF8A73;
    color: white;
}

.fat-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.fat-footer-section h4 {
    font-family: 'Fraunces', serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2B2B2B;
    margin: 0 0 0.75rem;
}

.fat-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fat-footer-links li {
    margin-bottom: 0.375rem;
}

.fat-footer-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s;
}

.fat-footer-links a:hover {
    color: #FF8A73;
}

.fat-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(43, 43, 43, 0.06);
}

.fat-footer-copyright {
    color: #aaa;
    font-size: 0.75rem;
}

.fat-footer-legal {
    display: flex;
    gap: 1.25rem;
}

.fat-footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s;
}

.fat-footer-legal a:hover {
    color: #FF8A73;
}

@media (max-width: 768px) {
    .fat-footer-top {
        flex-direction: column;
        gap: 1rem;
    }

    .fat-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fat-footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .fat-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .fat-footer-grid {
        grid-template-columns: 1fr;
    }

    .fat-footer {
        padding: 2rem 1.25rem 1.25rem;
    }
}
