/* ============================================
   10 - FOOTER (avec drip top)
   ============================================ */

.jm-footer {
    background: var(--jm-black);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Décoration en arrière-plan */
.jm-footer .jm-footer__grid {
    position: relative;
    z-index: 2;
}

.jm-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.jm-footer h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
}
.jm-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--jm-red);
    border-radius: 2px;
}

.jm-footer ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.jm-footer ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all var(--jm-transition);
    display: inline-block;
}
.jm-footer ul a:hover {
    color: var(--jm-yellow);
    transform: translateX(6px);
}

/* Brand */
.jm-footer__brand img {
    width: 90px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.jm-footer__brand p {
    font-size: 0.93rem;
    line-height: 1.7;
}
.jm-footer__brand em {
    color: var(--jm-yellow);
    font-weight: 600;
    font-style: italic;
    font-family: var(--jm-font-hand);
    font-size: 1.3rem;
}

.jm-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}
.jm-footer__contact i {
    color: var(--jm-red);
    margin-top: 5px;
    width: 14px;
}

/* Bas du footer */
.jm-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}
.jm-footer__bottom .jm-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.jm-footer__bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}
.jm-footer__bottom a {
    color: rgba(255, 255, 255, 0.85);
}
.jm-footer__bottom a:hover {
    color: var(--jm-yellow);
}
