.elementor-11620 .elementor-element.elementor-element-8205d92{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-b229af6 *//* VARIABLES */
    :root {
        --sq-dark: #121212;
        --sq-line: rgba(255, 255, 255, 0.15);
        --sq-orange: #F39200;
        --sq-text: #E0E0E0;
    }

    /* CONTAINER PRINCIPAL */
    .footer-arch {
        background-color: var(--sq-dark);
        color: var(--sq-text);
        padding: 0;
        display: flex; flex-direction: column;
        width: 100%;
        font-family: 'Inter', sans-serif;
    }

    /* --- LIGNE 1 : LE GROS LIEN CONTACT --- */
    .arch-cta {
        border-top: 1px solid var(--sq-line);
        border-bottom: 1px solid var(--sq-line);
        position: relative; overflow: hidden;
    }

    .arch-cta a {
        display: block;
        padding: 80px 5%;
        font-family: 'Syne', sans-serif;
        /* J'ai ajusté ici à 4vw pour que ce soit plus gros sur PC,
           car 2vw c'était un peu petit pour un "gros" titre */
        font-size: 2.3vw; 
        font-weight: 800;
        text-transform: uppercase;
        color: white; text-decoration: none;
        text-align: center;
        transition: all 0.5s ease;
        position: relative; z-index: 2;
    }

    /* Effet Hover : Le fond se remplit */
    .arch-cta::before {
        content:''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
        background: var(--sq-orange); transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1;
    }
    .arch-cta:hover::before { width: 100%; }
    .arch-cta:hover a { color: black; letter-spacing: 5px; }


    /* --- LIGNE 2 : LE CONTENU (GRILLE) --- */
    .arch-grid {
        display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
        width: 100%;
    }

    .arch-col {
        padding: 40px;
        border-right: 1px solid var(--sq-line);
        display: flex; flex-direction: column;
    }
    .arch-col:last-child { border-right: none; }

    .arch-label {
        font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 25px;
    }

    .arch-list { list-style: none; padding: 0; margin: 0; }
    .arch-list li { margin-bottom: 12px; }
    .arch-list a {
        color: var(--sq-text); text-decoration: none; font-size: 1rem; transition: 0.3s;
        display: block;
    }
    .arch-list a:hover { color: var(--sq-orange); padding-left: 5px; }

    .arch-address { font-size: 1.1rem; line-height: 1.6; font-weight: 600; color: white; }


    /* --- LIGNE 3 : FOOTER BOTTOM --- */
    .arch-bottom {
        border-top: 1px solid var(--sq-line);
        padding: 20px 40px;
        display: flex; justify-content: space-between; align-items: center;
        font-size: 0.85rem; color: #888;
    }

    /* RESPONSIVE */
    @media(max-width: 1024px) {
        .arch-grid { grid-template-columns: 1fr 1fr; }
        .arch-col { border-bottom: 1px solid var(--sq-line); border-right: none; }
        .arch-col:nth-child(odd) { border-right: 1px solid var(--sq-line); } /* Bordure au milieu */
        .arch-cta a { font-size: 6vw; }
    }

    @media(max-width: 600px) {
        .arch-grid { grid-template-columns: 1fr; }
        .arch-col { border-right: none !important; }
        .arch-bottom { flex-direction: column; gap: 15px; text-align: center; }
        .arch-cta a { font-size: 11vw; padding: 50px 20px; }
    }/* End custom CSS */