/* =========================================================
   FOOTER — CLEAN RESPONSIVE VERSION
========================================================= */

.site-footer {
    width: 100%;
    background: #1b0d07;
    color: #ead7b6;
    padding: 50px 6% 30px;
    box-sizing: border-box;
    overflow: hidden;
}


/* =========================================================
   FOOTER TOP
   LOGO LEFT | CONTACT RIGHT
========================================================= */

.footer-top {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* =========================================================
   LOGO
========================================================= */

.footer-author {
    flex: 0 1 auto;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    min-width: 0;
}

.footer-author a {
    display: block;
    text-decoration: none;
}

.footer-author img {
    display: block;

    width: 180px;
    height: auto;
    max-width: 100%;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.footer-author a:hover img {
    transform: scale(1.03);
}


/* =========================================================
   CONTACT
   ALWAYS ON THE RIGHT
========================================================= */

.footer-contact {
    flex: 0 1 auto;

    display: flex;
    flex-direction: column;

    align-items: flex-end;
    justify-content: center;

    gap: 12px;

    min-width: 0;
    margin: 0;
    padding: 0;

    /* IMPORTANT:
       Do NOT use translateX here.
    */
    transform: none;
}

.footer-contact a {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 10px;

    color: #ead7b6;
    text-decoration: none;

    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    line-height: 1.3;

    white-space: nowrap;

    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #e7bf6a;
}

.contact-icon {
    width: 20px;
    min-width: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #e7bf6a;

    font-size: 16px;
}


/* =========================================================
   DIVIDER
========================================================= */

.footer-line {
    width: 100%;
    max-width: 1400px;

    height: 1px;

    margin: 35px auto 25px;

    background: rgba(231, 191, 106, 0.25);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    gap: 15px;
}

.footer-bottom p {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 15px;
    line-height: 1.5;

    color: #cdbb9d;
}

.footer-bottom a {
    color: #e7bf6a;

    text-decoration: none;

    letter-spacing: 0.08em;

    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .site-footer {
        padding-left: 8%;
        padding-right: 8%;
    }

    .footer-author img {
        width: 180px;
    }

    .footer-contact a {
        font-size: 18px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .site-footer {
        padding: 45px 5% 28px;
    }

    .footer-top {
        gap: 30px;
    }

    .footer-author img {
        width: 160px;
    }

    .footer-contact {
        gap: 10px;
    }

    .footer-contact a {
        font-size: 16px;
    }

    .footer-line {
        margin-top: 30px;
    }
}


/* =========================================================
   SMALL TABLETS
========================================================= */

@media (max-width: 768px) {

    .site-footer {
        padding: 40px 25px 25px;
    }

    .footer-top {
        gap: 25px;
    }

    /* LOGO LEFT */

    .footer-author {
        flex: 0 1 45%;
    }

    .footer-author img {
        width: 145px;
    }

    /* CONTACT RIGHT */

    .footer-contact {
        flex: 0 1 55%;

        align-items: flex-end;

        gap: 10px;
    }

    .footer-contact a {
        font-size: 15px;

        white-space: normal;

        text-align: right;

        justify-content: flex-end;

        max-width: 100%;
    }

    .contact-icon {
        width: 18px;
        min-width: 18px;

        font-size: 15px;
    }

    .footer-line {
        margin: 28px auto 22px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}


/* =========================================================
   MOBILE
   LOGO LEFT | CONTACT RIGHT
========================================================= */

@media (max-width: 600px) {

    .site-footer {
        padding: 35px 18px 22px;
    }

    .footer-top {
        width: 100%;

        display: flex;
        flex-direction: row;

        align-items: center;
        justify-content: space-between;

        gap: 15px;
    }


    /* -------------------------
       LOGO — LEFT
    ------------------------- */

    .footer-author {
        flex: 0 1 42%;

        width: auto;
        min-width: 0;

        justify-content: flex-start;
    }

    .footer-author img {
        width: 125px;
        max-width: 100%;
        height: auto;
    }


    /* -------------------------
       CONTACT — RIGHT
    ------------------------- */

    .footer-contact {
        flex: 0 1 58%;

        width: auto;
        min-width: 0;

        align-items: flex-end;
        justify-content: center;

        gap: 8px;

        margin-left: auto;
    }

    .footer-contact a {
        width: auto;
        max-width: 100%;

        display: flex;

        align-items: center;
        justify-content: flex-end;

        gap: 7px;

        font-size: 13px;

        line-height: 1.3;

        text-align: right;

        white-space: normal;

        overflow-wrap: anywhere;
    }

    .contact-icon {
        flex-shrink: 0;

        width: 17px;
        min-width: 17px;

        font-size: 13px;
    }


    /* -------------------------
       DIVIDER
    ------------------------- */

    .footer-line {
        margin: 25px auto 20px;
    }


    /* -------------------------
       BOTTOM
    ------------------------- */

    .footer-bottom {
        gap: 10px;
    }

    .footer-bottom p {
        font-size: 12px;

        line-height: 1.5;
    }

    .footer-bottom a {
        letter-spacing: 0.04em;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .site-footer {
        padding: 30px 14px 20px;
    }

    .footer-top {
        gap: 10px;
    }


    /* LOGO */

    .footer-author {
        flex-basis: 40%;
    }

    .footer-author img {
        width: 105px;
    }


    /* CONTACT */

    .footer-contact {
        flex-basis: 60%;

        gap: 7px;
    }

    .footer-contact a {
        font-size: 11px;

        gap: 5px;

        line-height: 1.25;
    }

    .contact-icon {
        width: 15px;
        min-width: 15px;

        font-size: 11px;
    }


    /* DIVIDER */

    .footer-line {
        margin: 22px auto 17px;
    }


    /* BOTTOM */

    .footer-bottom {
        gap: 8px;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .footer-bottom a {
        font-size: 11px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .site-footer {
        padding: 28px 10px 18px;
    }

    .footer-top {
        gap: 6px;
    }


    /* LOGO */

    .footer-author {
        flex-basis: 38%;
    }

    .footer-author img {
        width: 90px;
    }


    /* CONTACT */

    .footer-contact {
        flex-basis: 62%;

        gap: 6px;
    }

    .footer-contact a {
        font-size: 10px;

        gap: 4px;
    }

    .contact-icon {
        width: 13px;
        min-width: 13px;

        font-size: 10px;
    }


    /* BOTTOM */

    .footer-bottom p {
        font-size: 9px;
    }

    .footer-bottom a {
        font-size: 10px;
    }
}


/* =========================================================
   LANDSCAPE PHONES
========================================================= */

@media (max-height: 500px) and (orientation: landscape) {

    .site-footer {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .footer-author img {
        width: 110px;
    }

    .footer-contact {
        gap: 7px;
    }

    .footer-contact a {
        font-size: 12px;
    }

    .footer-line {
        margin-top: 22px;
    }
}


































.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: #d6a54a;
}

.location-icon svg {
    width: 18px;
    height:18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}