/* F&K — Site Footer */

.fk-site-footer {
    color:#fff;
    border-top:1px solid rgba(255,255,255,.12);
    background:
        linear-gradient(
            135deg,
            #3f3f3f 0%,
            #8b8b8b 45%,
            #4a4a4a 100%
        );
}

.fk-footer-container {
    max-width:1250px;
    margin:0 auto;
    padding:46px 22px 42px;
    display:grid;
    grid-template-columns:1.05fr .8fr 1.25fr;
    gap:58px;
    align-items:start;
}

.fk-footer-block {
    min-width:0;
}

.fk-footer-block-header {
    display:flex;
    align-items:flex-start;
    gap:22px;
    min-height:56px;
    margin-bottom:20px;
}

.fk-footer-block-icon {
    flex:0 0 52px;
    width:52px;
    height:52px;
    box-sizing:border-box;
    padding:11px;
    fill:none;
    stroke:var(--fk-red);
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
    border:1.5px solid var(--fk-red);
    border-radius:50%;
    background:rgba(255,255,255,.92);
}

.fk-footer-heading {
    margin:0;
    color:#fff;
    font-size:20px;
    line-height:1.25;
    font-weight:800;
}

.fk-footer-heading-accent {
    display:block;
    width:34px;
    height:2px;
    margin-top:10px;
    background:var(--fk-red);
}

/* Navigation */

.fk-footer-navigation-links {
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    column-gap:28px;
    row-gap:8px;
    padding-left:51px;
}

.fk-footer-navigation-links a {
    display:flex;
    align-items:center;
    gap:7px;
    color:#ededed;
    font-size:14px;
    line-height:1.4;
    text-decoration:none;
    transition:color .2s ease;
}

.fk-footer-navigation-links a span {
    color:var(--fk-red);
    font-size:18px;
    line-height:1;
    font-weight:800;
}

.fk-footer-navigation-links a:hover {
    color:#fff;
}

/* Contact */

.fk-footer-contact-links {
    display:flex;
    flex-direction:column;
    gap:12px;
    padding-left:51px;
}

.fk-footer-contact-links a {
    display:flex;
    align-items:center;
    gap:10px;
    color:#ededed;
    font-size:14px;
    line-height:1.4;
    text-decoration:none;
    transition:color .2s ease;
}

.fk-footer-contact-links a:hover {
    color:#fff;
}

.fk-footer-contact-links svg {
    flex:0 0 17px;
    width:17px;
    height:17px;
    fill:none;
    stroke:var(--fk-red);
    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}

/* Recherche */

.fk-footer-search-form {
    display:flex;
    width:100%;
    max-width:440px;
    margin-left:51px;
}

.fk-footer-search-form input {
    min-width:0;
    width:100%;
    height:46px;
    box-sizing:border-box;
    padding:0 16px;
    border:1px solid rgba(255,255,255,.28);
    border-right:0;
    background:rgba(255,255,255,.94);
    color:#181818;
    font-size:13px;
    outline:none;
}

.fk-footer-search-form input::placeholder {
    color:#666;
}

.fk-footer-search-form input:focus {
    border-color:#fff;
}

.fk-footer-search-form button {
    flex:0 0 48px;
    width:48px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    border:0;
    background:var(--fk-red);
    color:#fff;
    cursor:pointer;
}

.fk-footer-search-form button svg {
    width:20px;
    height:20px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
}

/* Barre légale */

.fk-footer-bottom {
    border-top:1px solid rgba(255,255,255,.16);
    background:rgba(0,0,0,.12);
}

.fk-footer-bottom-inner {
    max-width:1250px;
    margin:0 auto;
    padding:17px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.fk-footer-bottom p {
    margin:0;
    color:#d7d7d7;
    font-size:12px;
}

.fk-footer-legal {
    display:flex;
    align-items:center;
    gap:24px;
}

.fk-footer-legal a {
    color:#d7d7d7;
    font-size:12px;
    text-decoration:none;
    transition:color .2s ease;
}

.fk-footer-legal a:hover {
    color:#fff;
}

/* Responsive */

@media(max-width:1000px) {

    .fk-footer-container {
        grid-template-columns:1fr 1fr;
        gap:40px 48px;
    }

    .fk-footer-search {
        grid-column:1 / -1;
    }

    .fk-footer-search-form {
        max-width:520px;
    }

}

@media(max-width:700px) {

    .fk-footer-container {
        grid-template-columns:1fr;
        padding-top:38px;
        padding-bottom:36px;
    }

    .fk-footer-search {
        grid-column:auto;
    }

    .fk-footer-navigation-links {
        padding-left:0;
    }

    .fk-footer-contact-links {
        padding-left:0;
    }

    .fk-footer-search-form {
        margin-left:0;
    }

    .fk-footer-bottom-inner {
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
        gap:12px;
    }

    .fk-footer-legal {
        gap:12px;
    }

}

@media(max-width:520px) {

    .fk-footer-navigation-links {
        grid-template-columns:1fr;
    }

}

/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 700px) {

    .fk-footer-container {
        gap: 20px;
        padding: 24px 20px 22px;
    }

    .fk-footer-block-header {
        gap: 16px;
        min-height: 46px;
        margin-bottom: 10px;
    }

    .fk-footer-block-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        padding: 10px;
    }

    .fk-footer-heading {
        font-size: 19px;
    }

    .fk-footer-heading-accent {
        width: 30px;
        margin-top: 8px;
    }

    .fk-footer-navigation-links {
        row-gap: 4px;
    }

    .fk-footer-navigation-links a {
        font-size: 14px;
        line-height: 1.3;
    }

    .fk-footer-contact-links {
        gap: 7px;
    }

    .fk-footer-search-form {
        max-width: 100%;
    }

    .fk-footer-bottom-inner {
        padding: 14px 20px;
    }
}

@media (max-width: 420px) {

    .fk-footer-search .fk-footer-heading {
        font-size: 18px;
        line-height: 1.2;
    }
}
