/**
 * Site footer — compact single-band
 * Black bg · Pink accent · White text
 */

.site-footer {
    background: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ---- Main row: brand | centered nav | icons (equal side columns) ---- */
.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
    padding-right: clamp(0.65rem, 1.8vw, 1.1rem);
    padding-left: clamp(0.35rem, 1vw, 0.6rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(0.5rem, 1.5vw, 1rem);
    row-gap: 0.75rem;
}

/* LEFT: name + lines (stacked, left-aligned) */
.site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.35rem;
    justify-self: start;
    min-width: 0;
    max-width: min(100%, 20rem);
}

.site-footer__name {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.05rem, 2.1vw, 1.35rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.site-footer__name:hover {
    color: var(--primary-color, #E8006A);
}

.site-footer__line {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.88rem, 1.6vw, 1.02rem);
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.site-footer__line--accent {
    color: var(--primary-color, #E8006A);
}

.site-footer__line--meta {
    color: #a3a3a3;
    font-size: clamp(0.82rem, 1.5vw, 0.95rem);
}

/* CENTER: site map — centered in the row between brand and icon links */
.site-footer__nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    justify-content: center;
    justify-self: center;
}

.site-footer__nav a {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #b5b5b5;
    text-decoration: none;
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-footer__nav a:hover {
    color: #ffffff;
}

/* RIGHT: contact icons */
.site-footer__icons {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-shrink: 0;
    justify-self: end;
    min-width: 0;
}

.site-footer__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b5b5b5;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.site-footer__icon:hover {
    color: var(--primary-color, #E8006A);
}

/* Icon + visible label (home footer, etc.) */
.site-footer__icon--labeled {
    gap: 0.45rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.site-footer__icon--labeled i {
    font-size: 1.05rem;
    flex-shrink: 0;
}

.site-footer__icon-text {
    line-height: 1;
}

/* ---- Copyright bar ---- */
.site-footer__bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.55rem clamp(0.65rem, 1.8vw, 1.1rem) 0.55rem clamp(0.35rem, 1vw, 0.6rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer__copy {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    color: #8c8c8c;
    margin: 0;
}

.site-footer__copy a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__copy a:hover {
    color: var(--primary-color, #E8006A);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .site-footer__inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 1.15rem;
        padding-bottom: 1.15rem;
        padding-right: clamp(0.65rem, 3vw, 1rem);
        padding-left: clamp(0.35rem, 3vw, 0.75rem);
    }

    .site-footer__brand {
        max-width: 100%;
        justify-self: auto;
    }

    .site-footer__nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        justify-self: auto;
        gap: 1.1rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Keep DOM order: brand → nav → icons */
    .site-footer__icons {
        order: 4;
        width: 100%;
        justify-content: flex-start;
        justify-self: auto;
        padding-top: 0.35rem;
    }

    .site-footer__bar {
        justify-content: flex-start;
        padding: 0.55rem clamp(0.65rem, 3vw, 1rem) 0.55rem clamp(0.35rem, 3vw, 0.75rem);
    }
}

@media (max-width: 480px) {
    .site-footer__nav {
        gap: 0.9rem;
    }
}
