/**
 * Module: template_footer
 * Auto-extracted from style.css
 */

/* ============================================
   FOOTER
   ============================================ */

.t1-footer {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding: 4rem max(1.5rem, calc(50vw - var(--max-width) / 2 + 1.5rem)) 2rem;
    background: var(--ink);
    color: white;
}

@media (max-width: 900px) {
    .t1-footer { 
        grid-template-columns: 1fr 1fr; 
    }
    .t1-footer__brand { 
        grid-column: 1 / -1; 
    }
}

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

/* Brand Column */
.t1-footer__brand { 
    max-width: 300px; 
}

.t1-footer__brand .t1-logo {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: white;
}

.t1-footer__brand .t1-logo img {
    height: 32px;
    filter: brightness(0) invert(1);
}

.t1-footer__brand > p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}

/* Social Links */
.t1-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0;
}

.t1-footer__social a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.t1-footer__social a:hover { 
    color: var(--jade-bright); 
}

.t1-footer__social a:not(:last-child)::after {
    content: "·";
    margin: 0 0.5rem;
    color: rgba(255,255,255,0.3);
}

/* Nav Columns */
.t1-footer > nav {
    display: flex;
    flex-direction: column;
}

.t1-footer > nav h3 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 0 0 1.25rem;
}

.t1-footer > nav a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9375rem;
    padding: 0.375rem 0;
    transition: color 0.2s;
}

.t1-footer > nav a:hover { 
    color: var(--jade-bright); 
}

/* Footer Bottom */
.t1-footer__bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0 0;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
}

.t1-footer__bottom nav {
    display: flex;
    gap: 1.5rem;
}

.t1-footer__bottom a {
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.t1-footer__bottom a:hover { 
    color: white; 
}

@media (max-width: 480px) {
    .t1-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .t1-footer__bottom nav {
        justify-content: center;
    }
}

/* UTILITY */
.mt-4 { margin-top: 4rem; }
.mb-4 { margin-bottom: 4rem; }

