/* ============================================================
   Julep 2026 refresh — shared footer + consistency tokens
   Included by index.php, includes/layout.php, blog, and
   standalone pages so the whole site shares one visual system.
   ============================================================ */

:root {
    --julep: #6bbe4a;
    --julep-dark: #5aa63f;
    --julep-bright: #25bb03;
    --navy: #001F3F;
    --navy-2: #003366;
    --ink: #0f172a;
    --slate: #475467;
    --mist-a: #f1faf1;
    --mist-b: #E8F4EF;
}

/* ===== Site footer (navy, grown-up clinic) ===== */
.jfooter {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
    color: rgba(255, 255, 255, .85);
    margin-top: 4rem;
    padding: 3.5rem 0 0;
    font-size: .95rem;
}

.jfooter a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    transition: color .2s ease;
}

.jfooter a:hover {
    color: #9be07f;
}

.jfooter .jfooter-brand img {
    height: 42px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, .25));
}

.jfooter .jfooter-tagline {
    max-width: 34ch;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
}

.jfooter h4 {
    color: #fff;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.jfooter ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jfooter ul li {
    margin-bottom: .6rem;
    line-height: 1.5;
}

.jfooter .jfooter-contact li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
}

.jfooter .jfooter-contact i {
    color: var(--julep);
    margin-top: .25rem;
    width: 16px;
    text-align: center;
    flex: 0 0 auto;
}

.jfooter .jfooter-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, .75);
}

.jfooter .jfooter-hours li span:last-child {
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
    white-space: nowrap;
}

.jfooter .jfooter-social {
    display: flex;
    gap: .75rem;
    margin-top: 1.25rem;
}

.jfooter .jfooter-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    transition: all .25s ease;
}

.jfooter .jfooter-social a:hover {
    background: var(--julep);
    border-color: var(--julep);
    color: #fff;
    transform: translateY(-2px);
}

.jfooter .jfooter-bottom {
    margin-top: 2.75rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    text-align: center;
}

.jfooter .jfooter-bottom a {
    color: rgba(255, 255, 255, .8);
    text-decoration: underline;
}

.jfooter .jfooter-bottom a:hover {
    color: #9be07f;
}

@media (max-width: 767.98px) {
    .jfooter {
        padding-top: 2.5rem;
        text-align: left;
    }

    .jfooter .row > [class*="col-"] {
        margin-bottom: 1.75rem;
    }
}
