/* ======================================================
   footer.css
====================================================== */

.site-footer {

    margin-top: 7rem;

    background:
        linear-gradient(
            180deg,
            #efe4d3 0%,
            #eadfce 100%
        );

    border-top:
        1px solid rgba(31,31,29,.08);
}

/* =========================================
   LAYOUT
========================================= */

.footer-top {

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1.2fr;

    gap: clamp(2rem, 5vw, 4rem);

    padding:
        clamp(3rem, 6vw, 5rem)
        0;
}

.footer-column {
    min-width: 0;
}

/* =========================================
   HEADINGS
========================================= */

.footer-column h3 {

    margin: 0 0 1.25rem;

    font-family:
        "Inter",
        system-ui,
        sans-serif;

    font-size: .78rem;

    font-weight: 800;

    line-height: 1;

    letter-spacing: .16em;

    text-transform: uppercase;

    color: var(--navy);
}

/* =========================================
   LINKS
========================================= */

.footer-column ul {

    display: grid;

    gap: .78rem;
}

.footer-column li {
    line-height: 1.3;
}

.footer-column a {

    color: var(--ink-soft);

    font-weight: 500;

    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-column a:hover {

    color: var(--navy);

    transform: translateX(2px);
}

/* =========================================
   BRAND
========================================= */

.footer-brand-row {
    margin-bottom: 1.8rem;
}

.footer-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-title {

    display: block;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(2rem, 2.5vw, 2.6rem);

    font-weight: 600;

    line-height: .92;

    letter-spacing: -.04em;

    color: var(--ink);

    white-space: nowrap;
}

.footer-subtitle {

    display: block;

    margin-top: .45rem;

    font-family:
        "Inter",
        system-ui,
        sans-serif;

    font-size: .64rem;

    font-weight: 700;

    line-height: 1;

    letter-spacing: .30em;

    text-transform: uppercase;

    color: #60766f;

    white-space: nowrap;
}

/* =========================================
   CONTACT
========================================= */

.footer-contact {

    display: grid;

    gap: 1.2rem;
}

.footer-contact p {

    margin: 0;

    color: var(--muted);

    line-height: 1.7;
}

.footer-contact a {

    color: var(--navy);

    font-weight: 600;
}

/* =========================================
   LEGAL
========================================= */

.footer-legal {

    display: flex;

    flex-wrap: wrap;

    gap: 1.5rem;

    margin-top: 2rem;
}

.footer-legal a {

    font-size: .95rem;

    font-weight: 600;

    color: var(--ink-soft);

    transition:
        color .2s ease;
}

.footer-legal a:hover {
    color: var(--navy);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 1040px) {

    .footer-top {

        grid-template-columns: 1fr;

        gap: 3rem;
    }

}

@media (max-width: 760px) {

    .site-footer {
        margin-top: 5rem;
    }

    .footer-title {

        font-size: 1.7rem;
    }

    .footer-subtitle {

        font-size: .56rem;

        letter-spacing: .22em;
    }

    .footer-column ul {
        gap: .68rem;
    }

    .footer-legal {
        gap: 1rem;
    }

}