.site-footer{padding:58px 0 24px;color:rgba(255,255,255,.74);background:linear-gradient(90deg,rgba(15,45,55,.97),rgba(15,45,55,.88)),url("../images/footer/footer-panorama.webp") center 54%/cover no-repeat}.footer-main{display:grid;grid-template-columns:.9fr .7fr 1.4fr;gap:48px;align-items:center}.footer-brand img{display:block;width:min(100%,270px);height:auto;filter:brightness(0) invert(1)}.footer-contact{display:grid;gap:7px}.footer-contact a{text-decoration:none}.footer-contact a:hover,.footer-contact a:focus-visible{color:var(--sand)}.footer-signature{margin:0;color:var(--offwhite);font-family:var(--display);font-size:21px;line-height:1.45}.footer-bottom{display:grid;grid-template-columns:auto 1fr auto;gap:24px;align-items:center;margin-top:42px;padding-top:20px;border-top:1px solid rgba(255,255,255,.14);font-size:11px}.footer-bottom span:nth-child(2){text-align:center;color:var(--sage);letter-spacing:.07em;text-transform:uppercase}.footer-bottom a{text-decoration:none}
/* =========================================================
   COOKIE CONSENT
   ========================================================= */

.cookie-consent {
    position: fixed;
    z-index: 9999;

    right: 24px;
    bottom: 24px;

    width: min(620px, calc(100vw - 48px));

    color: var(--white);
    background: var(--petrol);

    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);

    box-shadow:
        0 20px 60px rgba(0,0,0,.22);

    overflow: hidden;
}


.cookie-consent__inner {
    padding: 28px;
}


.cookie-consent__content h2 {
    margin: 5px 0 12px;

    color: var(--white);

    font-family: var(--display);
    font-size: 26px;
    font-weight: 500;
}


.cookie-consent__content p {
    margin: 0;

    color: rgba(255,255,255,.78);

    font-size: 13px;
    line-height: 1.65;
}


.cookie-consent__eyebrow {
    margin: 0 0 6px;

    color: var(--sage);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .12em;
}


.cookie-consent__details-link {
    margin-top: 12px !important;
}


.cookie-consent__details-link a {
    color: var(--sage);

    text-decoration: none;

    border-bottom: 1px solid rgba(165,176,154,.45);
}


.cookie-consent__details-link a:hover {
    border-bottom-color: var(--sage);
}


.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 22px;
}


.cookie-button {
    min-height: 42px;

    padding: 10px 16px;

    border-radius: var(--radius-sm);

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: .05em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}


.cookie-button:hover {
    transform: translateY(-1px);
}


.cookie-button--primary {
    border: 1px solid var(--sage);

    color: var(--petrol);

    background: var(--sage);
}


.cookie-button--primary:hover {
    border-color: var(--white);

    background: var(--white);
}


.cookie-button--secondary {
    border: 1px solid rgba(255,255,255,.28);

    color: var(--white);

    background: transparent;
}


.cookie-button--secondary:hover {
    border-color: var(--sage);

    color: var(--sage);
}


/* =========================================================
   PANNEAU DE PRÉFÉRENCES
   ========================================================= */

.cookie-settings {
    padding: 28px;

    border-top: 1px solid rgba(255,255,255,.12);

    background: rgba(0,0,0,.08);
}


.cookie-settings__header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}


.cookie-settings__header h3 {
    margin: 3px 0 0;

    color: var(--white);

    font-family: var(--display);
    font-size: 24px;
    font-weight: 500;
}


.cookie-settings__close {
    width: 36px;
    height: 36px;

    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;

    color: var(--white);

    background: transparent;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;
}


.cookie-settings__close:hover {
    border-color: var(--sage);

    color: var(--sage);
}


.cookie-settings__row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 18px 0;

    border-top: 1px solid rgba(255,255,255,.1);
}


.cookie-settings__row > div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.cookie-settings__row strong {
    color: var(--white);

    font-size: 13px;
}


.cookie-settings__row span {
    color: rgba(255,255,255,.62);

    font-size: 11px;
}


.cookie-settings__required {
    white-space: nowrap;

    color: var(--sage) !important;

    font-size: 10px !important;
    font-weight: 700;

    letter-spacing: .05em;
    text-transform: uppercase;
}


.cookie-settings__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;
}


/* =========================================================
   SWITCH
   ========================================================= */

.cookie-consent .cookie-switch {
    position: relative;

    flex: 0 0 auto;

    width: 48px;
    height: 26px;
}


.cookie-consent .cookie-switch input {
    position: absolute;

    opacity: 0;
}


.cookie-consent .cookie-switch-slider {
    position: absolute;

    inset: 0;

    border-radius: 999px;

    background: rgba(255,255,255,.2);

    cursor: pointer;

    transition: .25s ease;
}


.cookie-consent .cookie-switch-slider::before {
    content: "";

    position: absolute;

    top: 4px;
    left: 4px;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: var(--white);

    transition: .25s ease;
}


.cookie-consent
.cookie-switch
input:checked
+
.cookie-switch-slider {
    background: var(--sage);
}


.cookie-consent
.cookie-switch
input:checked
+
.cookie-switch-slider::before {
    transform: translateX(22px);
}


.cookie-consent
.cookie-switch
input:focus-visible
+
.cookie-switch-slider {
    outline: 2px solid var(--white);
    outline-offset: 3px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 680px) {

    .cookie-consent {
        right: 12px;
        bottom: 12px;

        width: calc(100vw - 24px);
    }

    .cookie-consent__inner,
    .cookie-settings {
        padding: 22px;
    }

    .cookie-consent__actions,
    .cookie-settings__actions {
        display: grid;

        grid-template-columns: 1fr;
    }

    .cookie-button {
        width: 100%;
    }

}
.footer-cookie-settings{
    padding:0;
    border:0;
    background:transparent;
    color:inherit;
    font:inherit;
    cursor:pointer;
    text-decoration:none;
    opacity:.8;
    transition:
        color var(--transition),
        opacity var(--transition);
}

.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible{
    color:var(--sage);
    opacity:1;
}

.footer-cookie-settings:focus-visible{
    outline:1px solid var(--sage);
    outline-offset:4px;
}
.footer-separator{
    color:rgba(255,255,255,.35);
}
/* =========================================================
   NAVIGATION LÉGALE DU FOOTER
   ========================================================= */

.footer-legal{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;

    gap:10px;

    margin-top:5px;

    font-size:12px;
    line-height:1.5;
}

.footer-legal a{
    position:relative;

    color:rgba(255,255,255,.68);

    text-decoration:none;

    transition:
        color var(--transition),
        opacity var(--transition);
}

.footer-legal a:hover,
.footer-legal a:focus-visible{
    color:var(--white);
}

.footer-legal > span{
    color:var(--sage);
    opacity:.55;

    font-size:8px;
}

.footer-legal a:last-of-type{
    color:var(--sage);
}

.footer-legal a:last-of-type:hover{
    color:var(--white);
}


/* Mobile */

@media (max-width:680px){

    .footer-legal{
        gap:8px 10px;
        padding:0 15px;

        font-size:11px;
    }

}