.footer {
    background: #000;
    color: #fff;
    padding: 30px 40px 80px;
}

.footer-top {
    max-width: 1800px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 10px 0;

    font-size: 12px;
    font-weight: 300;
    letter-spacing: 3px;
}

.footer-role {
    justify-self: center;
}

.footer-line {
    width: calc(100% + 80px);
    margin-left: -40px;
    height: 1px;
    background: #333;
    margin-top: 20px;
    margin-bottom: 40px;
}

.footer-main {
    max-width: 1800px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

.footer-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 0.9;

    margin-top: 20px;
    margin-bottom: 50px;
}

.contact-row {
    display: flex;
    gap: 70px;
    margin-bottom: 35px;
}

.contact-row a {
    color: #fff;
    text-decoration: none;

    font-size: 18px;
    font-weight: 500;

    background-image: linear-gradient(#fff, #fff);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;

    transition:
        background-size 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-row a:hover {
    background-size: 100% 1px;
    transform: translateY(-4px);
}



.footer-contact p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;

    margin-top: 20px;
}

.footer-socials {
    display: flex;
    gap: 120px;

    margin-top: 20px;
}

.social-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.social-group span {
    font-size: 10px;
    opacity: .6;
}

.social-group a {
    color: #fff;
    text-decoration: none;

    font-size: 18px;
    font-weight: 500;
}

.footer a {
    transition: .2s;
}

/* Credits */

.footer-credits {
    display: flex;
    gap: 40px;
    align-items: baseline;
}

.footer-photos {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    margin: 0 !important;
}

.footer-photos a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    background-image: linear-gradient(#fff, #fff);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-photos a:hover {
    background-size: 100% 1px;
}

/* ###########################################################################
   RESPONSIVE
########################################################################### */

/* ── 1024px ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {

    .footer-socials {
        gap: 60px;
    }

    .footer-main {
        gap: 60px;
    }
}

/* ── 768px ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

    .footer {
        padding: 24px 24px 60px;
    }

    .footer-line {
        width: calc(100% + 48px);
        margin-left: -24px;
    }

    /* Przebudowa footer-main na kolumnę */
    .footer-main {
        flex-direction: column;
        gap: 48px;
    }

    .footer-title {
        margin-bottom: 32px;
    }

    .contact-row {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .footer-socials {
        gap: 40px;
        flex-wrap: wrap;
    }

    .social-group {
        gap: 16px;
    }

        .footer-credits {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ── 480px ──────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {

    .footer {
        padding: 20px 16px 48px;
    }

    .footer-line {
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-top: 12px;
        margin-bottom: 24px;
    }

    /* Górny pasek — rok po lewej, rola po prawej */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        letter-spacing: 1px;
        font-size: 9px;
    }

    .footer-role {
        justify-self: end;
    }

    /* Główna część — kolumna */
    .footer-main {
        flex-direction: column;
        gap: 32px;
    }

    .footer-title {
        font-size: clamp(2.2rem, 11vw, 3rem);
        line-height: 1;
        margin-top: 0;
        margin-bottom: 16px;
    }

    .contact-row {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 14px;
    }

    .contact-row a {
        font-size: 15px;
    }

    .footer-credits {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .footer-photos {
        font-size: 12px;
    }

    /* Sociale — grid 2×2 */
    .footer-socials {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
        margin-top: 0;
        flex-wrap: unset;
    }

    .social-group {
        gap: 8px;
    }

    .social-group a {
        font-size: 14px;
    }

    .social-group span {
        font-size: 9px;
    }
}