/* =========================================================
   SARI PREMIUM FOOTER
   ========================================================= */

.sari-footer {
    position: relative;
    overflow: hidden;

    padding: 110px 0 0;

    background: #0b0b0b;
    color: #f7f5ef;

    border-top: 1px solid rgba(255,255,255,.08);
}


/* -----------------------------------------
   BACKGROUND GLOW
----------------------------------------- */

.sari-footer__glow {
    position: absolute;

    width: 500px;
    height: 500px;

    top: -300px;
    right: -150px;

    border-radius: 50%;

    background: rgba(201,191,175,.08);

    filter: blur(80px);

    pointer-events: none;
}


/* -----------------------------------------
   FOOTER HERO
----------------------------------------- */

.sari-footer__hero {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, .9fr);

    gap: 100px;

    padding-bottom: 90px;

    border-bottom: 1px solid rgba(255,255,255,.1);
}


/* -----------------------------------------
   BRAND
----------------------------------------- */

.sari-footer__brand {
    max-width: 520px;
}

.sari-footer__logo-link {
    display: inline-flex;
    align-items: center;

    margin-bottom: 28px;
}

.sari-footer__logo {
    display: block;

    width: 145px;
    height: auto;

    object-fit: contain;
}


.sari-footer__description {
    max-width: 470px;

    margin: 0;

    color: rgba(255,255,255,.58);

    font-size: 15px;
    line-height: 1.8;
}


.sari-footer__location {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 30px;

    color: rgba(255,255,255,.42);

    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}


.sari-footer__location-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c99722;

    box-shadow:
        0 0 0 5px rgba(201,151,34,.1);
}


/* -----------------------------------------
   NEWSLETTER
----------------------------------------- */

.sari-footer__newsletter {
    max-width: 500px;
}

.sari-footer__eyebrow {
    display: block;

    margin-bottom: 18px;

    color: #c99722;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .18em;
}


.sari-footer__newsletter h2 {
    margin: 0 0 18px;

    font-size: clamp(34px, 4vw, 52px);
    line-height: .98;

    letter-spacing: -.035em;

    font-weight: 600;
}


.sari-footer__newsletter h2 em {
    color: #c99722;

    font-style: italic;
    font-weight: 500;

    letter-spacing: 0;
}


.sari-footer__newsletter > p {
    max-width: 430px;

    margin: 0 0 26px;

    color: rgba(255,255,255,.52);

    font-size: 14px;
    line-height: 1.7;
}


/* -----------------------------------------
   SUBSCRIBE FORM
----------------------------------------- */

.sari-footer__subscribe {
    display: flex;

    width: 100%;
    min-height: 56px;

    padding: 5px;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 4px;

    transition:
        border-color .3s ease,
        background .3s ease;
}


.sari-footer__subscribe:focus-within {
    border-color: rgba(201,151,34,.65);

    background: rgba(255,255,255,.08);
}


.sari-footer__subscribe input {
    flex: 1;

    min-width: 0;

    padding: 0 16px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #fff;

    font-family: inherit;
    font-size: 13px;
}


.sari-footer__subscribe input::placeholder {
    color: rgba(255,255,255,.35);
}


.sari-footer__subscribe button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    padding: 0 20px;

    border: 0;
    border-radius: 2px;

    background: #c99722;
    color: #111;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform .25s ease,
        background .25s ease;
}


.sari-footer__subscribe button:hover {
    transform: translateY(-2px);

    background: #d9a936;
}


.sari-footer__newsletter > small {
    display: block;

    margin-top: 12px;

    color: rgba(255,255,255,.28);

    font-size: 10px;
}


/* -----------------------------------------
   NAVIGATION
----------------------------------------- */

.sari-footer__navigation {
    display: grid;

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

    gap: 50px;

    padding: 70px 0;
}


.sari-footer__column h3 {
    margin: 0 0 24px;

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}


.sari-footer__column nav {
    display: flex;
    flex-direction: column;

    gap: 14px;
}


.sari-footer__column nav a {
    position: relative;

    width: fit-content;

    color: rgba(255,255,255,.48);

    font-size: 13px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}


.sari-footer__column nav a:hover {
    color: #fff;

    transform: translateX(4px);
}


/* -----------------------------------------
   CONTACT
----------------------------------------- */

.sari-footer__contact-item {
    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-bottom: 20px;
}


.sari-footer__contact-item span {
    color: rgba(255,255,255,.28);

    font-size: 10px;

    letter-spacing: .1em;
    text-transform: uppercase;
}


.sari-footer__contact-item a,
.sari-footer__contact-item strong {
    color: rgba(255,255,255,.65);

    font-size: 13px;

    font-weight: 500;

    text-decoration: none;
}


.sari-footer__contact-item a:hover {
    color: #c99722;
}


/* -----------------------------------------
   TRUST STRIP
----------------------------------------- */

.sari-footer__trust {
    display: grid;

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

    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}


.sari-footer__trust-item {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 25px 20px;

    border-right: 1px solid rgba(255,255,255,.08);
}


.sari-footer__trust-item:last-child {
    border-right: 0;
}


.sari-footer__trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border: 1px solid rgba(201,151,34,.5);
    border-radius: 50%;

    color: #c99722;

    font-size: 13px;
}


.sari-footer__trust-item strong {
    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,.75);

    font-size: 11px;

    font-weight: 600;
}


.sari-footer__trust-item small {
    display: block;

    color: rgba(255,255,255,.32);

    font-size: 10px;
}


/* -----------------------------------------
   FOOTER BOTTOM
----------------------------------------- */

.sari-footer__bottom {
    display: grid;

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

    align-items: center;

    gap: 30px;

    min-height: 85px;
}


.sari-footer__copyright {
    color: rgba(255,255,255,.3);

    font-size: 10px;

    letter-spacing: .02em;
}


.sari-footer__socials {
    display: flex;
    align-items: center;

    gap: 8px;
}


.sari-footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;

    color: rgba(255,255,255,.55);

    font-size: 9px;
    font-weight: 600;

    text-decoration: none;

    transition:
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}


.sari-footer__socials a:hover {
    border-color: #c99722;

    color: #c99722;

    transform: translateY(-2px);
}


.sari-footer__motto {
    justify-self: end;

    color: rgba(255,255,255,.45);

    font-size: 10px;

    letter-spacing: .14em;
    text-transform: uppercase;
}


.sari-footer__motto span {
    margin-left: 8px;

    color: #c99722;
}


/* -----------------------------------------
   ACCESSIBILITY
----------------------------------------- */

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* -----------------------------------------
   LIGHT MODE
----------------------------------------- */

html.light-mode .sari-footer {
    background: #151515;

    color: #f7f5ef;
}


/* -----------------------------------------
   RESPONSIVE — TABLET
----------------------------------------- */

@media (max-width: 900px) {

    .sari-footer {
        padding-top: 80px;
    }

    .sari-footer__hero {
        grid-template-columns: 1fr;

        gap: 60px;

        padding-bottom: 70px;
    }

    .sari-footer__newsletter {
        max-width: 650px;
    }

    .sari-footer__navigation {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 55px;
    }

    .sari-footer__trust {
        grid-template-columns: 1fr;
    }

    .sari-footer__trust-item {
        border-right: 0;

        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .sari-footer__trust-item:last-child {
        border-bottom: 0;
    }

    .sari-footer__bottom {
        grid-template-columns: 1fr auto;
    }

    .sari-footer__socials {
        justify-self: end;
    }

    .sari-footer__motto {
        display: none;
    }

}


/* -----------------------------------------
   RESPONSIVE — MOBILE
----------------------------------------- */

@media (max-width: 600px) {

    .sari-footer {
        padding-top: 65px;
    }

    .sari-footer__hero {
        gap: 50px;

        padding-bottom: 55px;
    }

    .sari-footer__logo {
        width: 125px;
    }

    .sari-footer__description {
        font-size: 13px;
    }

    .sari-footer__newsletter h2 {
        font-size: 38px;
    }

    .sari-footer__subscribe {
        flex-direction: column;

        gap: 5px;

        padding: 5px;
    }

    .sari-footer__subscribe input {
        min-height: 50px;
    }

    .sari-footer__subscribe button {
        min-height: 48px;
    }

    .sari-footer__navigation {
        grid-template-columns: 1fr 1fr;

        gap: 45px 25px;

        padding: 55px 0;
    }

    .sari-footer__column h3 {
        margin-bottom: 18px;
    }

    .sari-footer__column nav {
        gap: 11px;
    }

    .sari-footer__column nav a {
        font-size: 12px;
    }

    .sari-footer__contact {
        grid-column: 1 / -1;
    }

    .sari-footer__trust-item {
        padding: 20px 0;
    }

    .sari-footer__bottom {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 25px 0;
    }

    .sari-footer__socials {
        justify-self: start;
    }

}