/* FOOTER MODULE - V90 (EDITORIAL DARK SIGNATURE) */
.site-footer {
    padding: 0 var(--inner-px) 40px;
    background: #fff;
}

.footer-master-card {
    background: #000;
    border-radius: clamp(30px, 4vw, 45px);
    padding: clamp(60px, 8vw, 120px);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Technical Overlay */
.footer-master-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.footer-col-head {
    font-size: 9px;
    font-weight: 950;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.footer-link-list { list-style: none; padding: 0; margin: 0; }
.footer-link-list li { margin-bottom: 20px; }
.footer-link-list a {
    color: #fff;
    opacity: 0.5;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
}
.footer-link-list a:hover { opacity: 1; color: var(--accent); padding-left: 10px; }

.f-contact-item { margin-bottom: 35px; }
.f-contact-item span { font-size: 8px; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.f-contact-item p { font-size: 15px; font-weight: 800; color: #fff; }

.footer-big-brand {
    padding: 100px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.big-brand-text {
    font-family: 'Oswald', sans-serif;
    font-size: 15vw;
    line-height: 0.8;
    color: rgba(255,255,255,0.03);
    text-transform: uppercase;
    letter-spacing: -5px;
    user-select: none;
    margin-bottom: -0.2em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.f-copyright { font-size: 9px; color: rgba(255,255,255,0.2); letter-spacing: 2px; }
.f-socials { display: flex; gap: 40px; }
.f-socials a { color: #fff; opacity: 0.3; font-size: 9px; letter-spacing: 3px; font-weight: 900; text-decoration: none; transition: 0.3s; }
.f-socials a:hover { opacity: 1; color: var(--accent); }

/* MOBILE FIX */
@media (max-width: 1024px) {
    .site-footer { padding: 0 15px 30px; }
    .footer-master-card { padding: 60px 30px; }
    .footer-main-grid { grid-template-columns: 1fr; gap: 60px; }
    .big-brand-text { font-size: 14vw; letter-spacing: -2px; }
    .footer-bottom { flex-direction: column; gap: 30px; text-align: center; }
}

