/* =========================================================
   FOOTER — DARK COFFEE & CREAM
   ========================================================= */

.site-footer {
    --coffee-dark: #1c120d;
    --coffee: #2b1a13;
    --coffee-light: #3a251b;

    --cream: #f5ead7;
    --cream-soft: #e8d8bd;

    --gold: #c89b5b;
    --gold-light: #dfbb7b;

    --border: rgba(245, 234, 215, 0.14);

    background:
        linear-gradient(
            135deg,
            var(--coffee-dark) 0%,
            var(--coffee) 55%,
            #21150f 100%
        );

    color: var(--cream);

    padding: 70px 0 0;

    position: relative;
    overflow: hidden;
}


/* =========================================================
   DECORATIVE COFFEE GLOW
   ========================================================= */

.site-footer::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -220px;
    right: -160px;

    background: rgba(200, 155, 91, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.site-footer__container {
    width: min(1200px, calc(100% - 40px));

    margin: 0 auto;

    position: relative;
    z-index: 1;
}


/* =========================================================
   MAIN GRID
   ========================================================= */

.site-footer__grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding-bottom: 55px;
}


/* =========================================================
   BRAND
   ========================================================= */

.site-footer__brand {
    max-width: 380px;
}


.site-footer__brand .logo,
.site-footer__logo {
    display: inline-block;

    margin-bottom: 22px;
}


.site-footer__brand .logo img,
.site-footer__logo img {
    display: block;

    width: 145px;
    height: auto;

    border-radius: 8px;
}


.site-footer__brand p {
    color: var(--cream-soft);

    font-size: 0.95rem;
    line-height: 1.8;

    margin: 0 0 14px;
}


/*
 * Business description / tagline
 */

.site-footer__brand p:first-of-type {
    color: var(--gold-light);

    font-size: 1.05rem;
    font-weight: 700;

    letter-spacing: 0.03em;
}


/* =========================================================
   SOCIAL MEDIA
   ========================================================= */

.site-footer__social {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
    margin-left: 120px;

    margin-top: 22px;
}


.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 42px;

    padding: 0 14px;

    color: var(--cream-soft);

    background: rgba(245, 234, 215, 0.035);

    border: 1px solid var(--border);
    border-radius: 6px;

    font-size: 0.84rem;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.site-footer__social-link svg {
    width: 19px;
    height: 19px;

    flex: 0 0 19px;

    color: var(--gold-light);
}


.site-footer__social-link:hover {
    color: var(--coffee-dark);

    background: var(--gold-light);

    border-color: var(--gold-light);

    transform: translateY(-2px);
}


.site-footer__social-link:hover svg {
    color: var(--coffee-dark);
}


/* =========================================================
   FOOTER SECTIONS
   ========================================================= */

.site-footer__section {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.site-footer__section h2,
.site-footer__map h2 {
    color: var(--cream);

    font-size: 1rem;
    font-weight: 700;

    margin: 0 0 20px;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}


.site-footer__section a {
    color: var(--cream-soft);

    text-decoration: none;

    font-size: 0.95rem;
    line-height: 1.7;

    margin-bottom: 10px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.site-footer__section a:hover {
    color: var(--gold-light);

    transform: translateX(4px);
}


.site-footer__section p {
    color: var(--cream-soft);

    line-height: 1.7;

    margin: 0 0 10px;
}


/* =========================================================
   CONTACT / INFORMATION ROWS
   ========================================================= */

.site-footer__contact,
.site-footer__info-item {
    display: flex;

    align-items: center;

    gap: 11px;

    width: 100%;

    color: var(--cream-soft);

    font-size: 0.95rem;
    line-height: 1.7;

    margin-bottom: 10px;
}


.site-footer__contact {
    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.site-footer__contact:hover {
    color: var(--gold-light);

    transform: translateX(4px);

    text-decoration: none;
}


/* Icon container */

.site-footer__icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 21px;
    height: 21px;

    flex: 0 0 21px;

    color: var(--gold-light);
}


.site-footer__icon svg {
    display: block;

    width: 20px;
    height: 20px;
}


/* =========================================================
   OPEN 24/7
   ========================================================= */

.site-footer__hours {
    display: flex;

    align-items: start;

    gap: 9px;

    color: var(--gold-light) !important;

    font-weight: 700;
}


/* =========================================================
   MAP SECTION
   ========================================================= */

.site-footer__map {
    display: grid;

    grid-template-columns: 1fr 1.4fr;

    gap: 35px;

    padding: 38px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}


/* =========================================================
   MAP HEADER / CONTENT
   ========================================================= */

.site-footer__map-content,
.site-footer__map-header {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;
}


.site-footer__map-content p,
.site-footer__map-header p {
    color: var(--cream-soft);

    max-width: 420px;

    line-height: 1.8;

    margin: 0 0 24px;
}


.site-footer__eyebrow {
    display: block;

    color: var(--gold-light);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.16em;

    margin-bottom: 10px;
}


.site-footer__map h2 {
    margin-bottom: 16px;
}


/* =========================================================
   DIRECTIONS BUTTON
   ========================================================= */

.site-footer__map-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 46px;

    padding: 0 24px;

    background: var(--gold);

    color: var(--coffee-dark);

    border: 1px solid var(--gold);

    border-radius: 6px;

    font-size: 0.9rem;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.site-footer__map-button svg {
    width: 18px;
    height: 18px;

    flex: 0 0 18px;
}


.site-footer__map-button:hover {
    background: var(--gold-light);

    border-color: var(--gold-light);

    color: var(--coffee-dark);

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   REAL GOOGLE MAP
   ========================================================= */

.site-footer__map-embed {
    width: 100%;

    min-height: 300px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #332118,
            #24160f
        );

    border: 1px solid var(--border);

    border-radius: 12px;

    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.2);
}


.site-footer__map-embed iframe {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 300px;

    border: 0;
}


/* =========================================================
   OLD MAP PLACEHOLDER SUPPORT
   =========================================================
   Kept only in case another template still uses it.
   ========================================================= */

.site-footer__map-placeholder {
    min-height: 230px;
}


.map-placeholder {
    height: 100%;

    min-height: 230px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #332118,
            #24160f
        );

    border: 1px solid var(--border);

    border-radius: 12px;

    color: var(--gold-light);

    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.2);
}


.map-placeholder span {
    font-size: 1.15rem;
    font-weight: 700;

    margin-bottom: 8px;
}


.map-placeholder small {
    color: var(--cream-soft);

    font-size: 0.85rem;
}


/* =========================================================
   BOTTOM FOOTER
   ========================================================= */

.site-footer__bottom {
    min-height: 75px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.site-footer__bottom p {
    color: rgba(245, 234, 215, 0.65);

    font-size: 0.85rem;

    margin: 0;
}


.site-footer__legal {
    display: flex;

    align-items: center;

    gap: 24px;
}


.site-footer__legal a {
    color: rgba(245, 234, 215, 0.7);

    font-size: 0.85rem;

    text-decoration: none;

    transition: color 0.2s ease;
}


.site-footer__legal a:hover {
    color: var(--gold-light);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px 30px;
    }


    .site-footer__brand {
        max-width: 100%;
    }


    .site-footer__map {
        grid-template-columns: 1fr;
    }


    .site-footer__map-embed {
        min-height: 300px;
    }


    .site-footer__map-embed iframe {
        min-height: 300px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .site-footer {
        padding-top: 50px;
    }


    .site-footer__container {
        width: min(100% - 30px, 1200px);
    }


    .site-footer__grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;
    }


    .site-footer__brand {
        max-width: 100%;
    }


    .site-footer__brand .logo img,
    .site-footer__logo img {
        width: 125px;
    }


    .site-footer__social {
        gap: 8px;
    }


    .site-footer__social-link {
        min-height: 44px;

        padding: 0 13px;
    }


    .site-footer__map {
        gap: 25px;

        padding: 35px 0;
    }


    .site-footer__map h2 {
        font-size: 0.95rem;
    }


    .site-footer__map-button {
        width: 100%;
    }


    .site-footer__map-embed {
        min-height: 260px;

        border-radius: 10px;
    }


    .site-footer__map-embed iframe {
        min-height: 260px;
    }


    .site-footer__map-placeholder,
    .map-placeholder {
        min-height: 200px;
    }


    .site-footer__bottom {
        flex-direction: column;

        align-items: flex-start;
        justify-content: center;

        padding: 25px 0;
    }


    .site-footer__legal {
        gap: 18px;

        flex-wrap: wrap;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.site-footer a:focus-visible {
    outline: 2px solid var(--gold-light);

    outline-offset: 4px;

    border-radius: 3px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .site-footer a,
    .site-footer__social-link,
    .site-footer__map-button {
        transition: none;
    }

}










.site-footer__services {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;

    width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;

    text-align: left;
}

.site-footer__services li {
    position: relative;

    width: 100%;

    padding-left: 16px;

    color: var(--cream-soft);

    font-size: 0.95rem;
    line-height: 1.6;

    text-align: left;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.site-footer__services li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.7em;

    width: 5px;
    height: 5px;

    background: var(--gold);

    border-radius: 50%;
}

.site-footer__services li:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

