
.site-footer {

    position: relative;

    padding: 90px 0 25px;

    background:
        #040404;

    overflow: hidden;

    isolation: isolate;

}


/* =========================================================
   BACKGROUND
   ========================================================= */

.footer-background {

    position: absolute;

    inset: 0;

    z-index: -3;

    pointer-events: none;

}


.footer-grid {

    position: absolute;

    inset: 0;

    opacity: 0.12;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        );

    background-size:
        60px 60px;

}


.footer-red-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;

    top: -350px;

    transform:
        translateX(-50%);

    border-radius:
        50%;

    background:
        rgba(225,6,19,0.09);

    filter:
        blur(100px);

}


/* =========================================================
   CONTAINER
   ========================================================= */

.footer-container {

    width:
        min(
            1400px,
            calc(100% - 70px)
        );

    margin:
        0 auto;

}


/* =========================================================
   TOP
   ========================================================= */

.footer-top {

    display:
        grid;

    grid-template-columns:
        1.6fr
        0.75fr
        0.85fr
        1fr;

    gap:
        60px;

}


/* =========================================================
   BRAND
   ========================================================= */

.footer-brand {

    max-width:
        350px;

}


.footer-logo-link {

    display:
        inline-flex;

    text-decoration:
        none;

}


.footer-logo {

    position:
        relative;

    width:
        58px;

    height:
        58px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        50%;

    background:
        #0c0c0c;

    border:
        1px solid
        rgba(255,255,255,0.15);

}


.footer-logo::before {

    content:
        "";

    position:
        absolute;

    inset:
        -6px;

    border-radius:
        50%;

    border:
        1px solid
        rgba(225,6,19,0.5);

    border-right-color:
        transparent;

    border-bottom-color:
        transparent;

    animation:
        footerOrbit 4s linear infinite;

}


@keyframes footerOrbit {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}


.footer-logo img {

    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    border-radius:
        50%;

}


.footer-brand-text {

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

    margin-top:
        18px;

}


.footer-brand-name {

    color:
        #ffffff;

    font-family:
        var(--rr-display-font);

    font-size:
        0.95rem;

    font-weight:
        900;

    line-height:
        1.1;

    letter-spacing:
        0.08em;

}


.footer-brand-name strong {

    color:
        var(--rr-red-bright);

}


.footer-tagline {

    color:
        #555;

    font-family:
        var(--rr-body-font);

    font-size:
        0.58rem;

    font-weight:
        700;

    letter-spacing:
        0.17em;

}


.footer-description {

    margin:
        22px 0 0;

    color:
        #666;

    font-family:
        var(--rr-body-font);

    font-size:
        0.9rem;

    line-height:
        1.65;

}


/* =========================================================
   COLUMNS
   ========================================================= */

.footer-column {

    display:
        flex;

    flex-direction:
        column;

}


.footer-column-title {

    display:
        block;

    margin-bottom:
        18px;

    color:
        var(--rr-red-bright);

    font-family:
        var(--rr-display-font);

    font-size:
        0.52rem;

    font-weight:
        900;

    letter-spacing:
        0.17em;

}


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

.footer-links {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

    gap:
        10px;

}


.footer-links a {

    position:
        relative;

    color:
        #777;

    text-decoration:
        none;

    font-family:
        var(--rr-body-font);

    font-size:
        0.92rem;

    font-weight:
        600;

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}


.footer-links a::before {

    content:
        "";

    position:
        absolute;

    left:
        -13px;

    top:
        50%;

    width:
        0;

    height:
        1px;

    background:
        var(--rr-red-bright);

    transform:
        translateY(-50%);

    transition:
        width 0.3s ease;

}


.footer-links a:hover {

    color:
        #ffffff;

    transform:
        translateX(7px);

}


.footer-links a:hover::before {

    width:
        7px;

}


/* =========================================================
   CONTACT LINKS
   ========================================================= */

.footer-contact-link {

    display:
        flex;

    flex-direction:
        column;

    gap:
        3px;

    margin-bottom:
        15px;

    text-decoration:
        none;

}


.footer-contact-link small,
.footer-address small,
.footer-hours small {

    color:
        #555;

    font-family:
        var(--rr-display-font);

    font-size:
        0.43rem;

    font-weight:
        800;

    letter-spacing:
        0.12em;

}


.footer-contact-link strong {

    color:
        #ddd;

    font-family:
        var(--rr-body-font);

    font-size:
        0.92rem;

    font-weight:
        700;

    transition:
        color 0.3s ease;

}


.footer-contact-link:hover strong {

    color:
        var(--rr-red-bright);

}


/* =========================================================
   ADDRESS
   ========================================================= */

.footer-address {

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

    margin-bottom:
        18px;

    text-decoration:
        none;

}


.footer-address span {

    color:
        #777;

    font-family:
        var(--rr-body-font);

    font-size:
        0.82rem;

    line-height:
        1.45;

}


.footer-address:hover span {

    color:
        #ddd;

}


/* =========================================================
   HOURS
   ========================================================= */

.footer-hours {

    display:
        flex;

    flex-direction:
        column;

    gap:
        4px;

}


.footer-hours strong {

    color:
        #ddd;

    font-family:
        var(--rr-display-font);

    font-size:
        0.75rem;

    font-weight:
        800;

    letter-spacing:
        0.07em;

}


.footer-hours span {

    color:
        #555;

    font-family:
        var(--rr-body-font);

    font-size:
        0.7rem;

}


/* =========================================================
   DIVIDER
   ========================================================= */

.footer-divider {

    display:
        flex;

    align-items:
        center;

    gap:
        20px;

    margin:
        75px 0 45px;

}


.footer-divider > span {

    flex:
        1;

    height:
        1px;

    background:
        rgba(255,255,255,0.08);

}


.footer-divider-center {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    color:
        #555;

    font-family:
        var(--rr-display-font);

    font-size:
        0.43rem;

    font-weight:
        800;

    letter-spacing:
        0.15em;

    white-space:
        nowrap;

}


.footer-divider-dot {

    width:
        4px;

    height:
        4px;

    border-radius:
        50%;

    background:
        var(--rr-red-bright);

    box-shadow:
        0 0 7px
        rgba(225,6,19,0.8);

}


/* =========================================================
   CTA
   ========================================================= */

.footer-cta {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        35px;

    padding:
        30px;

    background:
        linear-gradient(
            120deg,
            rgba(225,6,19,0.08),
            rgba(255,255,255,0.02)
        );

    border:
        1px solid
        rgba(225,6,19,0.18);

}


.footer-cta-text {

    display:
        flex;

    flex-direction:
        column;

    gap:
        7px;

}


.footer-cta-text span {

    color:
        #666;

    font-family:
        var(--rr-display-font);

    font-size:
        0.48rem;

    font-weight:
        800;

    letter-spacing:
        0.15em;

}


.footer-cta-text strong {

    color:
        #ffffff;

    font-family:
        var(--rr-display-font);

    font-size:
        clamp(
            1rem,
            2vw,
            1.45rem
        );

    font-weight:
        900;

}


.footer-cta-actions {

    display:
        flex;

    gap:
        9px;

}


/* =========================================================
   BUTTONS
   ========================================================= */

.footer-btn {

    min-height:
        48px;

    padding:
        0 19px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        20px;

    text-decoration:
        none;

    font-family:
        var(--rr-display-font);

    font-size:
        0.52rem;

    font-weight:
        900;

    letter-spacing:
        0.1em;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


.footer-btn-primary {

    color:
        #ffffff;

    background:
        var(--rr-red);

    border:
        1px solid
        var(--rr-red-bright);

}


.footer-btn-primary:hover {

    transform:
        translateY(-3px);

    background:
        var(--rr-red-bright);

    box-shadow:
        0 0 25px
        rgba(225,6,19,0.35);

}


.footer-btn-secondary {

    color:
        #aaa;

    border:
        1px solid
        rgba(255,255,255,0.15);

    background:
        transparent;

}


.footer-btn-secondary:hover {

    transform:
        translateY(-3px);

    color:
        #ffffff;

    border-color:
        rgba(255,255,255,0.4);

    background:
        rgba(255,255,255,0.05);

}


/* =========================================================
   BOTTOM
   ========================================================= */

.footer-bottom {

    display:
        grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items:
        center;

    gap:
        20px;

    padding-top:
        25px;

}


.footer-copyright {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        5px;

    color:
        #444;

    font-family:
        var(--rr-body-font);

    font-size:
        0.7rem;

}


.footer-copyright strong {

    color:
        #666;

}


.footer-socials {

    display:
        flex;

    gap:
        6px;

}


.footer-socials a {

    width:
        36px;

    height:
        36px;

    display:
        grid;

    place-items:
        center;

    color:
        #666;

    border:
        1px solid
        rgba(255,255,255,0.1);

    text-decoration:
        none;

    font-family:
        var(--rr-display-font);

    font-size:
        0.43rem;

    font-weight:
        800;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;

}


.footer-socials a:hover {

    color:
        #ffffff;

    border-color:
        var(--rr-red);

    background:
        rgba(225,6,19,0.08);

}


.footer-back-top {

    justify-self:
        end;

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    color:
        #555;

    text-decoration:
        none;

    font-family:
        var(--rr-display-font);

    font-size:
        0.44rem;

    font-weight:
        800;

    letter-spacing:
        0.1em;

    transition:
        color 0.3s ease;

}


.footer-back-top strong {

    color:
        var(--rr-red-bright);

    font-size:
        0.9rem;

}


.footer-back-top:hover {

    color:
        #ffffff;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .footer-container {

        width:
            calc(100% - 50px);

    }


    .footer-top {

        grid-template-columns:
            1.4fr 1fr 1fr;

        gap:
            45px;

    }


    .footer-contact-column {

        grid-column:
            1 / -1;

        padding-top:
            20px;

        border-top:
            1px solid
            rgba(255,255,255,0.08);

    }


    .footer-contact-column {

        display:
            grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap:
            25px;

    }


    .footer-contact-column
    .footer-column-title {

        grid-column:
            1 / -1;

    }


    .footer-hours {

        margin:
            0;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .site-footer {

        padding:
            70px 0 20px;

    }


    .footer-container {

        width:
            calc(100% - 28px);

    }


    .footer-top {

        grid-template-columns:
            1fr 1fr;

        gap:
            40px 25px;

    }


    .footer-brand {

        grid-column:
            1 / -1;

        max-width:
            450px;

    }


    .footer-contact-column {

        grid-column:
            1 / -1;

        display:
            flex;

    }


    .footer-contact-column
    .footer-column-title {

        grid-column:
            auto;

    }


    .footer-divider {

        margin:
            50px 0 35px;

    }


    .footer-cta {

        flex-direction:
            column;

        align-items:
            stretch;

    }


    .footer-cta-actions {

        display:
            grid;

        grid-template-columns:
            1fr 1fr;

    }


    .footer-btn {

        width:
            100%;

    }


    .footer-bottom {

        grid-template-columns:
            1fr;

        justify-items:
            center;

        text-align:
            center;

    }


    .footer-back-top {

        justify-self:
            center;

    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 450px) {

    .footer-top {

        grid-template-columns:
            1fr;

    }


    .footer-column {

        grid-column:
            auto;

    }


    .footer-cta-actions {

        grid-template-columns:
            1fr;

    }


    .footer-divider-center {

        font-size:
            0.38rem;

        letter-spacing:
            0.1em;

    }


    .footer-copyright {

        justify-content:
            center;

        font-size:
            0.65rem;

    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .footer-logo::before {

        animation:
            none;

    }


    .footer-btn,
    .footer-links a,
    .footer-socials a,
    .footer-back-top {

        transition:
            none !important;

    }

}