/* =========================================================
   TECH HYBR — FOOTER
   DARK PREMIUM DESIGN
   ========================================================= */

.site-footer {
    width: 100%;
    background: #0b0e13;
    color: #f4f0e8;

    font-family: "Inter", sans-serif;

    position: relative;
    overflow: hidden;
}


/* =========================================================
   FOOTER CONTAINER
   ========================================================= */

.footer-container {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================================
   FOOTER TOP
   ========================================================= */

.footer-top {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.8fr)
        1fr
        1fr
        1.2fr;

    gap: 60px;

    padding: 75px 0 65px;
}


/* =========================================================
   BRAND
   ========================================================= */

.footer-brand {
    max-width: 370px;
}


.footer-logo {
    display: inline-block;

    color: #f4f0e8;

    text-decoration: none;

    font-family: "Space Grotesk", sans-serif;

    font-size: 34px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: -1.5px;
}


.footer-logo span {
    color: #eda72f;
}


.footer-tagline {
    margin: 18px 0 0;

    color: #eda72f;

    font-family: "JetBrains Mono", monospace;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.footer-description {
    max-width: 350px;

    margin: 18px 0 0;

    color: #8e97a6;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h3 {
    margin: 0 0 22px;

    color: #f4f0e8;

    font-family: "Space Grotesk", sans-serif;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.2px;
}


.footer-column a {
    display: inline-block;

    width: fit-content;

    margin-bottom: 13px;

    color: #8e97a6;

    text-decoration: none;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.5;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-column a:hover {
    color: #eda72f;

    transform: translateX(4px);
}


/* =========================================================
   CONTACT COLUMN
   ========================================================= */

.footer-contact p {
    max-width: 250px;

    margin: 0 0 20px;

    color: #8e97a6;

    font-size: 13px;

    line-height: 1.7;
}


.footer-contact-link {
    display: flex !important;

    align-items: center;

    gap: 16px;

    margin: 0 !important;

    color: #eda72f !important;

    font-family: "JetBrains Mono", monospace;

    font-size: 12px !important;

    letter-spacing: 0.3px;
}


.footer-contact-link span {
    font-size: 17px;

    transition: transform 0.25s ease;
}


.footer-contact-link:hover {
    transform: none !important;
}


.footer-contact-link:hover span {
    transform: translateX(6px);
}


/* =========================================================
   DIVIDER
   ========================================================= */

.footer-divider {
    width: 100%;

    height: 1px;

    background: rgba(255, 255, 255, 0.10);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    min-height: 78px;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 30px;
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.footer-copy {
    margin: 0;

    color: #69717f;

    font-family: "JetBrains Mono", monospace;

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   BOTTOM LINKS
   ========================================================= */

.footer-bottom-links {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;
}


.footer-bottom-links a {
    color: #69717f;

    text-decoration: none;

    font-size: 10px;

    transition: color 0.25s ease;
}


.footer-bottom-links a:hover {
    color: #eda72f;
}


/* =========================================================
   CREDIT
   ========================================================= */

.footer-credit {
    margin: 0;

    color: #69717f;

    font-family: "JetBrains Mono", monospace;

    font-size: 10px;

    text-align: right;
}


/* =========================================================
   SUBTLE TOP GLOW
   ========================================================= */

.site-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 420px;
    height: 1px;

    transform: translateX(-50%);

    background: #eda72f;

    opacity: 0.65;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .footer-container {
        width: min(92%, 900px);
    }


    .footer-top {
        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 45px;

        padding: 60px 0 50px;
    }


    .footer-brand {
        grid-row: span 2;
    }


    .footer-contact {
        grid-column: 2 / 4;
    }


    .footer-bottom {
        min-height: 70px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .footer-container {
        width: calc(100% - 40px);
    }


    .footer-top {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;

        padding: 50px 0 45px;
    }


    .footer-brand {
        grid-column: 1 / -1;

        max-width: 100%;
    }


    .footer-description {
        max-width: 500px;

        font-size: 13px;
    }


    .footer-column h3 {
        margin-bottom: 18px;
    }


    .footer-column a {
        font-size: 12px;

        margin-bottom: 11px;
    }


    .footer-contact {
        grid-column: 1 / -1;
    }


    .footer-contact p {
        max-width: 100%;
    }


    .footer-bottom {
        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 14px;

        padding: 22px 0 25px;
    }


    .footer-copy {
        text-align: center;
    }


    .footer-bottom-links {
        gap: 22px;
    }


    .footer-credit {
        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .footer-container {
        width: calc(100% - 30px);
    }


    .footer-top {
        grid-template-columns: 1fr;

        gap: 32px;

        padding: 42px 0 38px;
    }


    .footer-brand {
        grid-column: auto;
    }


    .footer-logo {
        font-size: 29px;
    }


    .footer-tagline {
        font-size: 9px;

        letter-spacing: 1.7px;
    }


    .footer-description {
        font-size: 12px;

        line-height: 1.7;
    }


    .footer-column {
        width: 100%;
    }


    .footer-column h3 {
        font-size: 13px;
    }


    .footer-column a {
        font-size: 12px;
    }


    .footer-contact {
        grid-column: auto;
    }


    .footer-bottom {
        gap: 13px;

        padding: 20px 0 23px;
    }


    .footer-copy,
    .footer-bottom-links a,
    .footer-credit {
        font-size: 9px;
    }
}