/* =========================================================
   SRA — MODERN SIGNATURE FOOTER
   ========================================================= */

.sra-footer{
    position:relative;
    width:100%;
    overflow:hidden;
    box-sizing:border-box;

    padding:0 0 18px;

    background:
        linear-gradient(
            135deg,
            #24170f 0%,
            #352116 48%,
            #21150e 100%
        );

    color:#fff;
}


/* =========================================================
   TOP ACCENT
   ========================================================= */

.sra-footer-top-line{
    position:relative;

    width:100%;
    height:3px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            #d99132 18%,
            #f3d39a 50%,
            #d99132 82%,
            transparent 100%
        );
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.sra-footer-container{

    position:relative;
    z-index:2;

    width:min(1200px, calc(100% - 50px));

    margin:0 auto;

    padding:72px 0 48px;

    display:grid;

    grid-template-columns:1.35fr .8fr .9fr;

    gap:55px;

    align-items:center;
}


/* =========================================================
   BRAND
   ========================================================= */

.sra-footer-brand{

    display:flex;

    align-items:center;

    gap:24px;
}


.sra-footer-logo{

    width:88px;
    height:88px;

    flex:0 0 88px;

    object-fit:cover;

    padding:5px;

    box-sizing:border-box;

    background:#fff;

    border-radius:24px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.30);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.sra-footer-brand:hover .sra-footer-logo{

    transform:
        translateY(-5px)
        rotate(-3deg);

    box-shadow:
        0 20px 45px rgba(0,0,0,.38);
}


.sra-footer-brand h3{

    margin:0 0 8px;

    font-size:25px;

    line-height:1.2;

    font-weight:700;

    letter-spacing:-.6px;

    color:#fff;
}


.sra-footer-brand p{

    max-width:340px;

    margin:0;

    font-size:14px;

    line-height:1.7;

    color:rgba(255,255,255,.62);
}


/* =========================================================
   EXPLORE
   ========================================================= */

.sra-footer-nav{

    display:flex;

    flex-direction:column;

    align-items:flex-start;
}


.sra-footer-title{

    display:block;

    margin-bottom:15px;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#e7bb77;
}


.sra-footer-links{

    display:flex;

    flex-wrap:wrap;

    gap:8px;
}


.sra-footer-links a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-height:36px;

    padding:0 14px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.10);

    background:rgba(255,255,255,.055);

    color:rgba(255,255,255,.76);

    text-decoration:none;

    font-size:12px;

    font-weight:500;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}


.sra-footer-links a:hover{

    transform:translateY(-3px);

    color:#fff;

    background:rgba(217,145,50,.17);

    border-color:rgba(217,145,50,.40);
}


/* =========================================================
   CONTACT — FEATURE CARD
   ========================================================= */

.sra-footer-contact{

    position:relative;

    padding:22px 22px 20px;

    border-radius:22px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.085),
            rgba(255,255,255,.035)
        );

    border:1px solid rgba(255,255,255,.11);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.06),
        0 15px 35px rgba(0,0,0,.14);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);
}


.sra-footer-contact .sra-footer-title{

    margin-bottom:10px;
}


.sra-footer-phone{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-bottom:8px;

    color:#f5d39b !important;

    text-decoration:none !important;

    font-size:17px;

    font-weight:700;

    letter-spacing:.2px;

    transition:
        color .25s ease,
        transform .25s ease;
}


.sra-footer-phone::before{

    content:"☎";

    font-size:14px;
}


.sra-footer-phone:hover{

    color:#fff !important;

    transform:translateX(3px);
}


.sra-footer-contact p{

    margin:0;

    font-size:12px;

    line-height:1.7;

    color:rgba(255,255,255,.57);
}


/* =========================================================
   BOTTOM BAR
   ========================================================= */

.sra-footer-bottom{

    position:relative;
    z-index:2;

    width:min(1200px, calc(100% - 50px));

    margin:0 auto;

    padding:20px 0 4px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    border-top:
        1px solid
        rgba(255,255,255,.09);
}


.sra-footer-bottom p{

    margin:0;

    font-size:11px;

    color:rgba(255,255,255,.48);
}


.sra-footer-bottom span{

    display:inline-flex;

    align-items:center;

    gap:7px;

    font-size:11px;

    font-weight:600;

    color:#d9ad68;
}


.sra-footer-bottom span::before{

    content:"";

    width:5px;
    height:5px;

    border-radius:50%;

    background:#d99132;

    box-shadow:
        0 0 10px rgba(217,145,50,.7);
}


/* =========================================================
   AMBIENT LIGHT
   ========================================================= */

.sra-footer::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    left:-260px;
    top:-230px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(217,145,50,.13),
            transparent 68%
        );

    filter:blur(20px);

    pointer-events:none;
}


.sra-footer::after{

    content:"";

    position:absolute;

    width:380px;
    height:380px;

    right:-250px;
    bottom:-240px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(207,192,250,.09),
            transparent 68%
        );

    filter:blur(25px);

    pointer-events:none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:992px) and (min-width:577px){

    .sra-footer-container{

        width:calc(100% - 40px);

        grid-template-columns:
            1.2fr
            .9fr;

        gap:35px;

        padding:60px 0 42px;
    }


    .sra-footer-brand{

        grid-column:1 / -1;

        justify-content:center;

        text-align:center;
    }


    .sra-footer-brand p{

        margin-left:auto;
        margin-right:auto;
    }


    .sra-footer-nav{

        align-items:center;
    }


    .sra-footer-links{

        justify-content:center;
    }


    .sra-footer-contact{

        width:100%;

        box-sizing:border-box;
    }


    .sra-footer-bottom{

        width:calc(100% - 40px);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:576px){

    .sra-footer{

        padding-bottom:10px;
    }


    .sra-footer-container{

        width:calc(100% - 28px);

        padding:48px 0 34px;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:30px;
    }


    /* BRAND */

    .sra-footer-brand{

        width:100%;

        flex-direction:column;

        align-items:center;

        text-align:center;

        gap:15px;
    }


    .sra-footer-logo{

        width:76px;
        height:76px;

        flex-basis:76px;

        border-radius:21px;
    }


    .sra-footer-brand h3{

        margin-bottom:7px;

        font-size:21px;

        letter-spacing:-.4px;
    }


    .sra-footer-brand p{

        max-width:300px;

        margin:auto;

        font-size:13px;

        line-height:1.65;
    }


    /* NAV */

    .sra-footer-nav{

        width:100%;

        align-items:center;
    }


    .sra-footer-title{

        margin-bottom:13px;

        font-size:10px;

        letter-spacing:1.8px;
    }


    .sra-footer-links{

        justify-content:center;

        gap:7px;
    }


    .sra-footer-links a{

        min-height:34px;

        padding:0 12px;

        font-size:11px;

        border-radius:50px;
    }


    /* CONTACT */

    .sra-footer-contact{

        width:100%;

        box-sizing:border-box;

        padding:20px 18px;

        border-radius:20px;

        text-align:center;
    }


    .sra-footer-contact .sra-footer-title{

        margin-bottom:9px;
    }


    .sra-footer-phone{

        font-size:16px;

        justify-content:center;

        margin-bottom:7px;
    }


    .sra-footer-contact p{

        font-size:12px;

        line-height:1.65;
    }


    /* BOTTOM */

    .sra-footer-bottom{

        width:calc(100% - 28px);

        padding:17px 0 4px;

        flex-direction:column;

        justify-content:center;

        text-align:center;

        gap:7px;
    }


    .sra-footer-bottom p,
    .sra-footer-bottom span{

        font-size:10.5px;
    }

}


/* =========================================================
   EXTRA SMALL
   ========================================================= */

@media (max-width:380px){

    .sra-footer-container{

        width:calc(100% - 22px);

        padding-top:42px;
    }


    .sra-footer-brand h3{

        font-size:19px;
    }


    .sra-footer-logo{

        width:70px;
        height:70px;

        flex-basis:70px;
    }


    .sra-footer-links a{

        min-height:32px;

        padding:0 10px;

        font-size:10.5px;
    }


    .sra-footer-contact{

        padding:18px 14px;
    }

}