/* ==================================================
   SITE FOOTER
   Black background, Terracotta accents, Clean design
   ================================================== */

.site-footer {
    background: #000000;
    padding: 60px 40px 40px;
    color: #FFFFFF;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================================================
   FOOTER BRANDING
   ================================================== */

.footer-branding {
    margin-bottom: 40px;
}

.footer-site-name {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.5rem; /* Increased from 1.3rem (+15%) */
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}

.footer-tagline {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.1rem; /* Increased from 0.95rem (+15%) */
    color: #707070;
    margin: 0;
}

/* ==================================================
   FOOTER LINKS GRID
   ================================================== */

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section-title {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.04rem; /* Increased from 0.9rem (+15%) */
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 16px 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 1.04rem; /* Increased from 0.9rem (+15%) */
    color: #A0A0A0;
    text-decoration: none;
    line-height: 2;
    transition: color 0.2s ease;
    width: fit-content;
}

.footer-link:hover {
    color: #95472d; /* Terracotta */
}

/* Social links with icons */
.footer-social .footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social .footer-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ==================================================
   FOOTER DIVIDER
   ================================================== */

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

/* ==================================================
   FOOTER BOTTOM (COPYRIGHT & LEGAL)
   ================================================== */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 0.98rem; /* Increased from 0.85rem (+15%) */
    color: #707070;
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-email {
    color: #A0A0A0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-email:hover {
    color: #95472d; /* Terracotta */
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal-link {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 0.98rem; /* Increased from 0.85rem (+15%) */
    color: #707070;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: #FFFFFF;
}

.footer-separator {
    color: #707070;
    user-select: none;
}

/* ==================================================
   RESPONSIVE - TABLET
   ================================================== */

@media (max-width: 1024px) {
    .footer-links-grid {
        gap: 40px;
    }
}

/* ==================================================
   RESPONSIVE - MOBILE
   ================================================== */

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px;
    }

    .footer-branding {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
        align-items: center;
    }

    .footer-nav {
        align-items: center;
        gap: 12px;
    }

    .footer-divider {
        margin: 30px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 8px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==================================================
   SMALL MOBILE
   ================================================== */

@media (max-width: 480px) {
    .footer-site-name {
        font-size: 1.3rem;
    }

    .footer-tagline {
        font-size: 0.95rem;
    }

    .footer-section-title {
        font-size: 0.95rem;
    }

    .footer-link {
        font-size: 0.95rem;
    }

    .footer-copyright,
    .footer-legal-link {
        font-size: 0.85rem;
    }
}
