/* /Layout/MainLayout.razor.rz.scp.css */
.main-layout[b-dc8iaoozjb] {
    --jlh-black: #161616;
    --jlh-orange: #f28c00;
    --jlh-background: #f6f5f2;
    --jlh-background-light: #ffffff;
    --jlh-background-dark: #e8e6e1;
    --jlh-grid-major: rgba(22, 22, 22, 0.075);
    --jlh-grid-minor: rgba(22, 22, 22, 0.026);
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    color: var(--jlh-black);
    background: radial-gradient( circle at 50% 38%, var(--jlh-background-light) 0%, var(--jlh-background) 52%, var(--jlh-background-dark) 100% );
}


/* Fond quadrillé identique au loader */

.main-layout__background[b-dc8iaoozjb] {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient( var(--jlh-grid-major) 1px, transparent 1px ), linear-gradient( 90deg, var(--jlh-grid-major) 1px, transparent 1px ), linear-gradient( var(--jlh-grid-minor) 1px, transparent 1px ), linear-gradient( 90deg, var(--jlh-grid-minor) 1px, transparent 1px );
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
}


    /* Cercles décoratifs */

    .main-layout__background[b-dc8iaoozjb]::before {
        position: absolute;
        top: -220px;
        right: -160px;
        width: 560px;
        height: 560px;
        content: "";
        border: 1px solid rgba(242, 140, 0, 0.13);
        border-radius: 50%;
    }

    .main-layout__background[b-dc8iaoozjb]::after {
        position: absolute;
        bottom: -280px;
        left: -210px;
        width: 640px;
        height: 640px;
        content: "";
        border: 1px solid rgba(22, 22, 22, 0.08);
        border-radius: 50%;
    }


/* Le contenu passe au-dessus du fond */

.main-layout__content[b-dc8iaoozjb] {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
}

/* /Pages/Home.razor.rz.scp.css */
/* =========================================================
   En-tête principal
   ========================================================= */

html[b-cjczvdh7hb] {
    scroll-behavior: smooth;
}

.home-header[b-cjczvdh7hb] {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
    padding: 18px 60px;
    border-bottom: 1px solid rgba(22, 22, 22, 0.1);
    box-shadow: 0 10px 35px rgba(22, 22, 22, 0.1);
    background: rgba(246, 245, 242, 0.88);
    backdrop-filter: blur(12px) saturate(125%);
    -webkit-backdrop-filter: blur(12px) saturate(125%);
    isolation: isolate;
}

.home-content[b-cjczvdh7hb] {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 135px 60px 50px;
}

.home-header__brand[b-cjczvdh7hb] {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 20px;
}

.home-header__logo[b-cjczvdh7hb] {
    display: block;
    flex: 0 0 auto;
    width: auto;
    height: 72px;
    max-width: 150px;
    object-fit: contain;
}

.home-header__identity[b-cjczvdh7hb] {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .home-header__identity h1[b-cjczvdh7hb] {
        margin: 0;
        color: var(--jlh-black);
        font-size: clamp(1.7rem, 2.7vw, 2.5rem);
        font-weight: 500;
        line-height: 1;
        letter-spacing: -0.02em;
        white-space: nowrap;
    }

    .home-header__identity span[b-cjczvdh7hb] {
        color: var(--jlh-orange);
        font-size: clamp(0.58rem, 0.9vw, 0.72rem);
        font-weight: 500;
        line-height: 1.4;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        white-space: nowrap;
    }

.home-header__right[b-cjczvdh7hb] {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.home-nav[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 34px);
    width: 100%;
}

.home-nav__link[b-cjczvdh7hb] {
    position: relative;
    z-index: 1;
    padding: 7px 0;
    color: rgba(22, 22, 22, 0.72);
    font-size: clamp(0.78rem, 1vw, 1rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.2em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 180ms ease, transform 180ms ease;
}

    .home-nav__link[b-cjczvdh7hb]::after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 2px;
        content: "";
        background: var(--jlh-orange);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 180ms ease;
    }

    .home-nav__link:hover[b-cjczvdh7hb] {
        color: var(--jlh-orange);
        transform: translateY(-1px);
    }

        .home-nav__link:hover[b-cjczvdh7hb]::after,
        .home-nav__link--active[b-cjczvdh7hb]::after {
            transform: scaleX(1);
            transform-origin: left;
        }

.home-nav__link--active[b-cjczvdh7hb] {
    color: var(--jlh-black);
}

.home-header__line[b-cjczvdh7hb] {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(22, 22, 22, 0.16) 75px, transparent 75px);
}

/* =========================================================
   Section Accueil
   ========================================================= */

.home-section[b-cjczvdh7hb] {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: center;
    gap: clamp(45px, 7vw, 110px);
    width: min(100%, 1300px);
    min-height: calc(100vh - 180px);
    margin: 65px auto 0;
    padding: 65px 0 100px;
}

.home-section__content[b-cjczvdh7hb] {
    max-width: 700px;
}

.home-section__label[b-cjczvdh7hb],
.jobs-section__label[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
    color: var(--jlh-orange);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

    .home-section__label[b-cjczvdh7hb]::before,
    .jobs-section__label[b-cjczvdh7hb]::before {
        width: 42px;
        height: 2px;
        content: "";
        background: var(--jlh-orange);
    }

.home-section__title[b-cjczvdh7hb] {
    margin: 0;
    color: var(--jlh-black);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

    .home-section__title span[b-cjczvdh7hb] {
        display: block;
        color: var(--jlh-orange);
        font-weight: 400;
    }

.home-section__description[b-cjczvdh7hb] {
    max-width: 630px;
    margin: 26px 0 0;
    color: rgba(22, 22, 22, 0.63);
    font-size: clamp(0.94rem, 1.3vw, 1.07rem);
    line-height: 1.75;
}

.home-section__button[b-cjczvdh7hb] {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    min-height: 52px;
    margin-top: 34px;
    padding: 0 24px;
    color: #ffffff;
    background: var(--jlh-orange);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

    .home-section__button:hover[b-cjczvdh7hb] {
        color: #ffffff;
        background: var(--jlh-black);
        box-shadow: 0 14px 30px rgba(22, 22, 22, 0.15);
        transform: translateY(-2px);
    }

    .home-section__button span[b-cjczvdh7hb] {
        font-size: 1.1rem;
    }

.home-section__visual[b-cjczvdh7hb] {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(22, 22, 22, 0.13);
    box-shadow: 0 26px 60px rgba(22, 22, 22, 0.1);
}

    .home-section__visual[b-cjczvdh7hb]::before,
    .home-section__visual[b-cjczvdh7hb]::after {
        position: absolute;
        z-index: 2;
        width: 40px;
        height: 40px;
        content: "";
    }

    .home-section__visual[b-cjczvdh7hb]::before {
        top: 18px;
        right: 18px;
        border-top: 2px solid var(--jlh-orange);
        border-right: 2px solid var(--jlh-orange);
    }

    .home-section__visual[b-cjczvdh7hb]::after {
        bottom: 18px;
        left: 18px;
        border-bottom: 2px solid var(--jlh-orange);
        border-left: 2px solid var(--jlh-orange);
    }

    .home-section__visual img[b-cjczvdh7hb] {
        display: block;
        width: 100%;
        height: 480px;
        object-fit: cover;
        filter: saturate(0.82) contrast(0.96);
    }

.home-section__visual-caption[b-cjczvdh7hb] {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 12px 18px;
    color: #ffffff;
    background: var(--jlh-orange);
    font-size: 0.63rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* =========================================================
   Section Nos métiers
   ========================================================= */

.jobs-section[b-cjczvdh7hb] {
    position: relative;
    width: min(100%, 1300px);
    margin: 0 auto;
    padding: 110px 0;
    border-top: 1px solid rgba(22, 22, 22, 0.12);
}

.jobs-section__header[b-cjczvdh7hb] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
    align-items: end;
    gap: clamp(35px, 6vw, 90px);
    margin-bottom: 60px;
}

.jobs-section__title[b-cjczvdh7hb] {
    max-width: 800px;
    margin: 0;
    color: var(--jlh-black);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

    .jobs-section__title span[b-cjczvdh7hb] {
        display: block;
        color: var(--jlh-orange);
        font-weight: 300;
    }

.jobs-section__introduction[b-cjczvdh7hb] {
    margin: 0;
    color: rgba(22, 22, 22, 0.62);
    font-size: 1rem;
    line-height: 1.75;
}

.jobs-section__grid[b-cjczvdh7hb] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
}

.job-card[b-cjczvdh7hb] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 510px;
    padding: 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(22, 22, 22, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

    .job-card[b-cjczvdh7hb]::before {
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 4px;
        content: "";
        background: var(--jlh-orange);
        transition: width 220ms ease;
    }

    .job-card:hover[b-cjczvdh7hb] {
        border-color: rgba(242, 140, 0, 0.38);
        box-shadow: 0 24px 55px rgba(22, 22, 22, 0.09);
        transform: translateY(-8px);
    }

        .job-card:hover[b-cjczvdh7hb]::before {
            width: 100%;
        }

.job-card--featured[b-cjczvdh7hb] {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(242, 140, 0, 0.07));
    border-color: rgba(242, 140, 0, 0.28);
}

.job-card__top[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.job-card__number[b-cjczvdh7hb] {
    color: rgba(22, 22, 22, 0.3);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
}

.job-card__code[b-cjczvdh7hb] {
    padding: 6px 10px;
    color: var(--jlh-orange);
    background: rgba(242, 140, 0, 0.09);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.job-card__icon[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 46px 0 30px;
    color: var(--jlh-orange);
    border: 1px solid rgba(242, 140, 0, 0.28);
}

    .job-card__icon svg[b-cjczvdh7hb] {
        width: 42px;
        height: 42px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.job-card h3[b-cjczvdh7hb] {
    margin: 0;
    color: var(--jlh-black);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 400;
    line-height: 1.25;
}

.job-card > p[b-cjczvdh7hb] {
    margin: 18px 0 0;
    color: rgba(22, 22, 22, 0.6);
    font-size: 0.92rem;
    line-height: 1.7;
}

.job-card__list[b-cjczvdh7hb] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: auto 0 0;
    padding: 28px 0 0;
    list-style: none;
    border-top: 1px solid rgba(22, 22, 22, 0.11);
}

    .job-card__list li[b-cjczvdh7hb] {
        position: relative;
        padding-left: 18px;
        color: rgba(22, 22, 22, 0.68);
        font-size: 0.82rem;
        line-height: 1.5;
    }

        .job-card__list li[b-cjczvdh7hb]::before {
            position: absolute;
            top: 0.65em;
            left: 0;
            width: 6px;
            height: 6px;
            content: "";
            background: var(--jlh-orange);
            transform: rotate(45deg);
        }

.jobs-section__footer[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid rgba(22, 22, 22, 0.12);
}

    .jobs-section__footer > span[b-cjczvdh7hb] {
        color: rgba(22, 22, 22, 0.46);
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

.jobs-section__commitments[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--jlh-black);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

    .jobs-section__commitments span[b-cjczvdh7hb] {
        width: 28px;
        height: 1px;
        background: var(--jlh-orange);
    }



/* =========================================================
   Section Nos réalisations
   ========================================================= */

.realisations-section[b-cjczvdh7hb] {
    position: relative;
    width: min(100%, 1300px);
    margin: 0 auto;
    padding: 110px 0 125px;
    border-top: 1px solid rgba(22, 22, 22, 0.12);
}

.realisations-section__header[b-cjczvdh7hb] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    align-items: end;
    gap: clamp(35px, 6vw, 90px);
    margin-bottom: 52px;
}

.realisations-section__label[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
    color: var(--jlh-orange);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

    .realisations-section__label[b-cjczvdh7hb]::before {
        width: 42px;
        height: 2px;
        content: "";
        background: var(--jlh-orange);
    }

.realisations-section__title[b-cjczvdh7hb] {
    max-width: 850px;
    margin: 0;
    color: var(--jlh-black);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

    .realisations-section__title span[b-cjczvdh7hb] {
        display: block;
        color: var(--jlh-orange);
        font-weight: 300;
    }

.realisations-section__introduction[b-cjczvdh7hb] {
    margin: 0;
    color: rgba(22, 22, 22, 0.62);
    font-size: 1rem;
    line-height: 1.75;
}

.realisations-carousel[b-cjczvdh7hb] {
    position: relative;
    min-width: 0;
}

.realisations-carousel__viewport[b-cjczvdh7hb] {
    overflow: hidden;
    background: #171717;
    border: 1px solid rgba(22, 22, 22, 0.14);
    box-shadow: 0 28px 70px rgba(22, 22, 22, 0.12);
    touch-action: pan-y;
}

.realisations-carousel__track[b-cjczvdh7hb] {
    display: flex;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.realisation-card[b-cjczvdh7hb] {
    position: relative;
    flex: 0 0 100%;
    min-width: 0;
    aspect-ratio: 16 / 8.3;
    overflow: hidden;
    background: #202020;
}

    .realisation-card[b-cjczvdh7hb]::after {
        position: absolute;
        inset: 0;
        content: "";
        background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 5, 0.2) 63%, rgba(5, 5, 5, 0.92) 100%);
        pointer-events: none;
    }

    .realisation-card img[b-cjczvdh7hb] {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(0.88) contrast(0.98);
        transform: scale(1.015);
        transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
    }

    .realisation-card:hover img[b-cjczvdh7hb] {
        filter: saturate(1) contrast(1);
        transform: scale(1.055);
    }

.realisation-card__overlay[b-cjczvdh7hb] {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding: clamp(24px, 4vw, 52px);
    color: #ffffff;
}

    .realisation-card__overlay time[b-cjczvdh7hb] {
        flex: 0 0 auto;
        padding-left: 48px;
        color: var(--jlh-orange);
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.2em;
    }

        .realisation-card__overlay time[b-cjczvdh7hb]::before {
            position: absolute;
            width: 34px;
            height: 1px;
            margin-top: 0.52em;
            margin-left: -48px;
            content: "";
            background: currentColor;
        }

    .realisation-card__overlay h3[b-cjczvdh7hb] {
        max-width: 850px;
        margin: 0;
        font-size: clamp(1.7rem, 4vw, 3.7rem);
        font-weight: 400;
        line-height: 1.05;
        letter-spacing: -0.035em;
        text-align: right;
    }

.realisations-carousel__controls[b-cjczvdh7hb] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin-top: 26px;
}

.realisations-carousel__arrows[b-cjczvdh7hb] {
    display: flex;
    justify-self: start;
    gap: 10px;
}

.realisations-carousel__arrow[b-cjczvdh7hb] {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    color: var(--jlh-black);
    background: transparent;
    border: 1px solid rgba(22, 22, 22, 0.2);
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

    .realisations-carousel__arrow:hover[b-cjczvdh7hb] {
        color: #ffffff;
        background: var(--jlh-orange);
        border-color: var(--jlh-orange);
        transform: translateY(-2px);
    }

    .realisations-carousel__arrow svg[b-cjczvdh7hb] {
        width: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.realisations-carousel__pagination[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.realisations-carousel__dot[b-cjczvdh7hb] {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgba(22, 22, 22, 0.24);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: width 200ms ease, background 200ms ease, border-radius 200ms ease;
}

    .realisations-carousel__dot.is-active[b-cjczvdh7hb] {
        width: 30px;
        background: var(--jlh-orange);
        border-radius: 999px;
    }

.realisations-carousel__counter[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 12px;
    color: rgba(22, 22, 22, 0.42);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
}

    .realisations-carousel__counter > span:first-child[b-cjczvdh7hb] {
        color: var(--jlh-orange);
    }

.realisations-carousel__counter-line[b-cjczvdh7hb] {
    width: 34px;
    height: 1px;
    background: rgba(22, 22, 22, 0.22);
}

.visually-hidden[b-cjczvdh7hb] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/* =========================================================
   Section Contact
   ========================================================= */

.contact-section[b-cjczvdh7hb] {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 7vw, 6rem) 1.5rem;
    color: #ffffff;
    background: radial-gradient(circle at 8% 20%, rgba(199, 164, 94, 0.12), transparent 30%), linear-gradient(135deg, #111416 0%, #1a1f22 100%);
}

.contact-background-text[b-cjczvdh7hb] {
    position: absolute;
    top: 1rem;
    left: 50%;
    color: transparent;
    font-size: clamp(6rem, 18vw, 18rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.07em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    transform: translateX(-50%);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
}

.contact-container[b-cjczvdh7hb] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(2.5rem, 5vw, 5rem);
    width: min(100%, 1180px);
    margin: 0 auto;
}

.section-eyebrow[b-cjczvdh7hb] {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    color: #c7a45e;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

    .section-eyebrow[b-cjczvdh7hb]::before {
        width: 2.8rem;
        height: 1px;
        content: "";
        background: currentColor;
    }

.contact-introduction h2[b-cjczvdh7hb] {
    max-width: 750px;
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

    .contact-introduction h2 span[b-cjczvdh7hb] {
        color: #c7a45e;
    }

.contact-introduction > p[b-cjczvdh7hb] {
    max-width: 610px;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.8;
}

.contact-details[b-cjczvdh7hb] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    margin-top: 3rem;
}

.contact-detail[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-detail-icon[b-cjczvdh7hb] {
    display: grid;
    place-items: center;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid rgba(199, 164, 94, 0.4);
    border-radius: 50%;
}

    .contact-detail-icon svg[b-cjczvdh7hb] {
        width: 1.15rem;
        fill: #c7a45e;
    }

.contact-detail > div:last-child[b-cjczvdh7hb] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-detail span[b-cjczvdh7hb] {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-detail a[b-cjczvdh7hb] {
    color: #ffffff;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 180ms ease;
}

    .contact-detail a:hover[b-cjczvdh7hb] {
        color: #c7a45e;
    }

.contact-form-wrapper[b-cjczvdh7hb] {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 590px;
    min-width: 0;
}

    .contact-form-wrapper[b-cjczvdh7hb]::before {
        position: absolute;
        inset: 1.25rem -1.25rem -1.25rem 1.25rem;
        content: "";
        border: 1px solid rgba(199, 164, 94, 0.28);
        pointer-events: none;
    }

.contact-form[b-cjczvdh7hb] {
    position: relative;
    z-index: 1;
    padding: clamp(1.5rem, 2.5vw, 2.2rem);
    color: #171a1c;
    background: #f4f1eb;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.25);
}

.contact-form-header[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(23, 26, 28, 0.15);
}

    .contact-form-header > span[b-cjczvdh7hb],
    .contact-form-number[b-cjczvdh7hb] {
        font-size: 0.8rem;
        font-weight: 800;
    }

    .contact-form-header > span[b-cjczvdh7hb] {
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

.contact-form-number[b-cjczvdh7hb] {
    color: #c7a45e;
}

.form-grid[b-cjczvdh7hb] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.2rem;
}

.form-field[b-cjczvdh7hb] {
    min-width: 0;
}

.form-field-full[b-cjczvdh7hb] {
    grid-column: 1 / -1;
}

.form-field label[b-cjczvdh7hb] {
    display: block;
    margin-bottom: 0.65rem;
    color: #282d30;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-field input[b-cjczvdh7hb],
.form-field select[b-cjczvdh7hb],
.form-field textarea[b-cjczvdh7hb] {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    padding: 0.65rem 0;
    color: #171a1c;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(23, 26, 28, 0.25);
    border-radius: 0;
    outline: none;
    font: inherit;
    transition: border-color 180ms ease;
}

    .form-field input[b-cjczvdh7hb]::placeholder,
    .form-field textarea[b-cjczvdh7hb]::placeholder {
        color: rgba(23, 26, 28, 0.38);
    }

    .form-field input:focus[b-cjczvdh7hb],
    .form-field select:focus[b-cjczvdh7hb],
    .form-field textarea:focus[b-cjczvdh7hb] {
        border-color: #c7a45e;
    }

.form-field textarea[b-cjczvdh7hb] {
    min-height: 6rem;
    line-height: 1.6;
    resize: vertical;
}

.select-wrapper[b-cjczvdh7hb] {
    position: relative;
}

    .select-wrapper[b-cjczvdh7hb]::after {
        position: absolute;
        top: 50%;
        right: 0.3rem;
        width: 0.45rem;
        height: 0.45rem;
        content: "";
        border-right: 1.5px solid #171a1c;
        border-bottom: 1.5px solid #171a1c;
        pointer-events: none;
        transform: translateY(-70%) rotate(45deg);
    }

.form-field select[b-cjczvdh7hb] {
    padding-right: 2rem;
    appearance: none;
    cursor: pointer;
}

.contact-consent[b-cjczvdh7hb] {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.4rem;
    color: rgba(23, 26, 28, 0.62);
    font-size: 0.78rem;
    line-height: 1.5;
    cursor: pointer;
}

    .contact-consent input[b-cjczvdh7hb] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

.custom-checkbox[b-cjczvdh7hb] {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 1.15rem;
    height: 1.15rem;
    border: 1px solid rgba(23, 26, 28, 0.35);
    transition: background-color 180ms ease, border-color 180ms ease;
}

    .custom-checkbox svg[b-cjczvdh7hb] {
        width: 0.8rem;
        fill: none;
        stroke: #ffffff;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: 0;
    }

.contact-consent input:checked + .custom-checkbox[b-cjczvdh7hb] {
    background: #c7a45e;
    border-color: #c7a45e;
}

    .contact-consent input:checked + .custom-checkbox svg[b-cjczvdh7hb] {
        opacity: 1;
    }

.contact-form-footer[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.6rem;
}

    .contact-form-footer p[b-cjczvdh7hb] {
        max-width: 270px;
        margin: 0;
        color: rgba(23, 26, 28, 0.42);
        font-size: 0.68rem;
        line-height: 1.5;
    }

.contact-submit[b-cjczvdh7hb] {
    display: inline-flex;
    align-items: stretch;
    min-height: 3.25rem;
    padding: 0;
    color: #ffffff;
    background: #171a1c;
    border: 0;
    font: inherit;
    cursor: pointer;
    transition: background-color 180ms ease;
}

    .contact-submit > span:first-child[b-cjczvdh7hb] {
        display: flex;
        align-items: center;
        padding: 0 1.6rem;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

.contact-submit-icon[b-cjczvdh7hb] {
    display: grid;
    place-items: center;
    width: 3.25rem;
    background: #c7a45e;
}

    .contact-submit-icon svg[b-cjczvdh7hb] {
        width: 1.25rem;
        fill: none;
        stroke: #171a1c;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 180ms ease;
    }

.contact-submit:hover[b-cjczvdh7hb] {
    background: #292e31;
}

    .contact-submit:hover .contact-submit-icon svg[b-cjczvdh7hb] {
        transform: translateX(0.2rem);
    }

.form-honeypot[b-cjczvdh7hb] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* =========================================================
   Transition Réalisations vers Contact
   ========================================================= */

.realisations-cta[b-cjczvdh7hb] {
    position: relative;
    display: grid;
    grid-template-columns: minmax(90px, 1fr) minmax(0, 900px) minmax(90px, 1fr);
    align-items: center;
    gap: clamp(25px, 5vw, 80px);
    padding: clamp(75px, 10vw, 135px) clamp(24px, 6vw, 80px);
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(242, 140, 0, 0.13),
            transparent 42%
        ),
        #171717;
}

.realisations-cta[b-cjczvdh7hb]::before,
.realisations-cta[b-cjczvdh7hb]::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.realisations-cta[b-cjczvdh7hb]::before {
    top: 0;
    left: 50%;
    width: min(72%, 900px);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );
    transform: translateX(-50%);
}

.realisations-cta[b-cjczvdh7hb]::after {
    top: 50%;
    left: 50%;
    width: clamp(320px, 55vw, 800px);
    height: clamp(320px, 55vw, 800px);
    border: 1px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.realisations-cta__content[b-cjczvdh7hb] {
    position: relative;
    z-index: 2;
    text-align: center;
}

.realisations-cta__eyebrow[b-cjczvdh7hb] {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
    color: var(--jlh-orange);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.realisations-cta__eyebrow[b-cjczvdh7hb]::before,
.realisations-cta__eyebrow[b-cjczvdh7hb]::after {
    width: 35px;
    height: 1px;
    content: "";
    background: currentColor;
}

.realisations-cta h2[b-cjczvdh7hb] {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.6rem, 6vw, 6.4rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.realisations-cta h2 span[b-cjczvdh7hb] {
    display: block;
    color: var(--jlh-orange);
    font-weight: 300;
}

.realisations-cta__link[b-cjczvdh7hb] {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 38px;
    padding-bottom: 8px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    font-size: clamp(0.78rem, 1.2vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 180ms ease,
        border-color 180ms ease,
        gap 180ms ease;
}

.realisations-cta__link:hover[b-cjczvdh7hb] {
    gap: 28px;
    color: var(--jlh-orange);
    border-color: var(--jlh-orange);
}

.realisations-cta__link span[b-cjczvdh7hb] {
    font-size: 1.3rem;
    line-height: 1;
}

.realisations-cta__arrow[b-cjczvdh7hb] {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: clamp(62px, 7vw, 88px);
    height: clamp(62px, 7vw, 88px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    text-decoration: none;
    transition:
        color 200ms ease,
        background-color 200ms ease,
        border-color 200ms ease,
        transform 200ms ease;
    animation: realisations-cta-arrow-b-cjczvdh7hb 2.2s ease-in-out infinite;
}

.realisations-cta__arrow:first-child[b-cjczvdh7hb] {
    justify-self: end;
}

.realisations-cta__arrow:last-child[b-cjczvdh7hb] {
    justify-self: start;
    animation-delay: 300ms;
}

.realisations-cta__arrow:hover[b-cjczvdh7hb] {
    color: #171717;
    background: var(--jlh-orange);
    border-color: var(--jlh-orange);
    transform: translateY(6px);
    animation-play-state: paused;
}

.realisations-cta__arrow svg[b-cjczvdh7hb] {
    width: clamp(22px, 2.5vw, 30px);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes realisations-cta-arrow-b-cjczvdh7hb {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* =========================================================
   Fenêtre de confirmation
   ========================================================= */

.contact-confirmation-dialog[b-cjczvdh7hb] {
    width: min(calc(100% - 2rem), 760px);
    max-height: calc(100dvh - 2rem);
    padding: 0;
    overflow: auto;
    color: #171a1c;
    background: transparent;
    border: 0;
}

    .contact-confirmation-dialog[b-cjczvdh7hb]::backdrop {
        background: rgba(5, 7, 8, 0.76);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        animation: confirmation-backdrop-appearance-b-cjczvdh7hb 180ms ease-out;
    }

    .contact-confirmation-dialog[open][b-cjczvdh7hb] {
        animation: confirmation-modal-appearance-b-cjczvdh7hb 220ms ease-out;
    }

.confirmation-modal[b-cjczvdh7hb] {
    position: relative;
    padding: clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
    background: radial-gradient(circle at 100% 0, rgba(199, 164, 94, 0.16), transparent 32%), #f4f1eb;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.4);
}

    .confirmation-modal[b-cjczvdh7hb]::before {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 4px;
        content: "";
        background: #c7a45e;
    }

.confirmation-modal__close[b-cjczvdh7hb] {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    padding: 0;
    color: #171a1c;
    background: transparent;
    border: 1px solid rgba(23, 26, 28, 0.18);
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

    .confirmation-modal__close:hover[b-cjczvdh7hb] {
        color: #ffffff;
        background: #171a1c;
        transform: rotate(90deg);
    }

    .confirmation-modal__close svg[b-cjczvdh7hb] {
        width: 1.1rem;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
    }

.confirmation-modal__header[b-cjczvdh7hb] {
    max-width: 600px;
    padding-right: 3rem;
}

.confirmation-modal__icon[b-cjczvdh7hb] {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    color: #c7a45e;
    border: 1px solid rgba(199, 164, 94, 0.5);
    border-radius: 50%;
}

    .confirmation-modal__icon svg[b-cjczvdh7hb] {
        width: 1.5rem;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.confirmation-modal__eyebrow[b-cjczvdh7hb] {
    display: block;
    margin-bottom: 0.7rem;
    color: #c7a45e;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.confirmation-modal__header h3[b-cjczvdh7hb] {
    margin: 0;
    color: #171a1c;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.confirmation-modal__header p[b-cjczvdh7hb] {
    max-width: 530px;
    margin: 1rem 0 0;
    color: rgba(23, 26, 28, 0.58);
    line-height: 1.65;
}

.confirmation-modal__summary[b-cjczvdh7hb] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 2rem;
    background: rgba(23, 26, 28, 0.12);
    border: 1px solid rgba(23, 26, 28, 0.12);
}

.confirmation-summary__item[b-cjczvdh7hb] {
    min-width: 0;
    padding: 1.1rem 1.2rem;
    background: rgba(255, 255, 255, 0.48);
}

.confirmation-summary__item--full[b-cjczvdh7hb] {
    grid-column: 1 / -1;
}

.confirmation-summary__item > span[b-cjczvdh7hb] {
    display: block;
    margin-bottom: 0.4rem;
    color: rgba(23, 26, 28, 0.45);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.confirmation-summary__item strong[b-cjczvdh7hb] {
    display: block;
    color: #171a1c;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.confirmation-summary__message[b-cjczvdh7hb] {
    max-height: 160px;
    overflow: auto;
    color: rgba(23, 26, 28, 0.75);
    font-size: 0.9rem;
    line-height: 1.65;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.contact-send-result[b-cjczvdh7hb] {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.5;
}

.contact-send-result--success[b-cjczvdh7hb],
.contact-send-result--error[b-cjczvdh7hb] {
    display: block;
}

.contact-send-result--success[b-cjczvdh7hb] {
    color: #245b3a;
    background: rgba(56, 142, 91, 0.12);
    border-left: 3px solid #388e5b;
}

.contact-send-result--error[b-cjczvdh7hb] {
    color: #7c2929;
    background: rgba(186, 54, 54, 0.11);
    border-left: 3px solid #ba3636;
}

.confirmation-modal__footer[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.confirmation-button[b-cjczvdh7hb] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 3.4rem;
    padding: 0 1.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.confirmation-button--secondary[b-cjczvdh7hb] {
    color: #171a1c;
    background: transparent;
    border: 1px solid rgba(23, 26, 28, 0.25);
}

    .confirmation-button--secondary:hover[b-cjczvdh7hb] {
        border-color: #171a1c;
    }

.confirmation-button--primary[b-cjczvdh7hb] {
    color: #ffffff;
    background: #171a1c;
    border: 1px solid #171a1c;
}

    .confirmation-button--primary:hover[b-cjczvdh7hb] {
        background: #c7a45e;
        border-color: #c7a45e;
        transform: translateY(-2px);
    }

    .confirmation-button--primary svg[b-cjczvdh7hb] {
        width: 1.2rem;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.confirmation-button:disabled[b-cjczvdh7hb] {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

.confirmation-button.is-loading svg[b-cjczvdh7hb] {
    display: none;
}

/* =========================================================
   Footer
   ========================================================= */

.split-footer[b-cjczvdh7hb] {
    --footer-dark: #171717;
    --footer-text: rgba(255, 255, 255, 0.7);
    --footer-muted: rgba(255, 255, 255, 0.2);
    --footer-border: rgba(255, 255, 255, 0.12);
    position: relative;
    margin-top: 100px;
    padding: 0 60px 28px;
    color: #ffffff;
    background: var(--footer-dark);
}

.split-footer__top[b-cjczvdh7hb] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    width: min(100%, 1300px);
    margin: 0 auto;
}

.split-footer__line[b-cjczvdh7hb] {
    height: 1px;
    background: var(--footer-border);
}

.split-footer__logo[b-cjczvdh7hb] {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: clamp(150px, 18vw, 250px);
    height: 120px;
    overflow: hidden;
    transform: translateY(-48px);
}

    .split-footer__logo img[b-cjczvdh7hb] {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

.split-footer__content[b-cjczvdh7hb] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    width: min(100%, 1000px);
    margin: -8px auto 0;
    padding: 30px 0 42px;
}

.split-footer__nav[b-cjczvdh7hb],
.split-footer__contact[b-cjczvdh7hb] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .split-footer__nav a[b-cjczvdh7hb],
    .split-footer__contact a[b-cjczvdh7hb] {
        width: fit-content;
        color: var(--footer-text);
        font-size: 0.78rem;
        line-height: 1.5;
        letter-spacing: 0.08em;
        text-decoration: none;
        text-transform: uppercase;
        transition: color 180ms ease, transform 180ms ease;
    }

        .split-footer__nav a:hover[b-cjczvdh7hb],
        .split-footer__contact a:hover[b-cjczvdh7hb] {
            color: var(--jlh-orange);
            transform: translateX(4px);
        }

.split-footer__bottom[b-cjczvdh7hb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    width: min(100%, 1300px);
    margin: 0 auto;
    padding-top: 22px;
    color: var(--footer-muted);
    border-top: 1px solid var(--footer-border);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

    .split-footer__bottom a[b-cjczvdh7hb] {
        color: inherit;
        text-decoration: none;
    }

        .split-footer__bottom a:hover[b-cjczvdh7hb] {
            color: var(--jlh-orange);
        }

/* =========================================================
   Navigation interne
   ========================================================= */

#accueil[b-cjczvdh7hb],
#metiers[b-cjczvdh7hb],
#realisations[b-cjczvdh7hb],
#contact[b-cjczvdh7hb] {
    scroll-margin-top: 135px;
}

/* =========================================================
   Animations
   ========================================================= */

@keyframes confirmation-modal-appearance-b-cjczvdh7hb {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes confirmation-backdrop-appearance-b-cjczvdh7hb {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1200px) {
    .home-header[b-cjczvdh7hb],
    .home-content[b-cjczvdh7hb] {
        padding-inline: 30px;
    }

    .home-header[b-cjczvdh7hb] {
        gap: 20px;
    }

    .home-section[b-cjczvdh7hb],
    .jobs-section[b-cjczvdh7hb],
    .realisations-section[b-cjczvdh7hb] {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .contact-container[b-cjczvdh7hb] {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .contact-introduction[b-cjczvdh7hb],
    .contact-form-wrapper[b-cjczvdh7hb] {
        justify-self: center;
        width: min(100%, 760px);
        max-width: 760px;
    }
}

@media (max-width: 950px) {
    .home-header[b-cjczvdh7hb] {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 100000;
        align-items: center;
        flex-direction: row;
        padding: 12px 24px;
        background: rgba(246, 245, 242, 0.97);
    }

    .home-header__brand[b-cjczvdh7hb] {
        width: auto;
    }

    .home-header__right[b-cjczvdh7hb] {
        width: auto;
    }

    .home-header__identity span[b-cjczvdh7hb],
    .home-header__line[b-cjczvdh7hb] {
        display: none;
    }

    .home-nav[b-cjczvdh7hb] {
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 14px 24px;
    }

    .home-content[b-cjczvdh7hb] {
        padding: 115px 24px 50px;
    }

    .home-section[b-cjczvdh7hb] {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-top: 20px;
        padding: 45px 0 80px;
    }

    .home-section__content[b-cjczvdh7hb] {
        max-width: none;
    }

    .home-section__visual[b-cjczvdh7hb],
    .home-section__visual img[b-cjczvdh7hb] {
        height: 380px;
        min-height: 380px;
    }

    .jobs-section[b-cjczvdh7hb] {
        padding: 80px 0;
    }

    .jobs-section__header[b-cjczvdh7hb] {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 25px;
    }

    .jobs-section__grid[b-cjczvdh7hb] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .realisations-section[b-cjczvdh7hb] {
        padding: 80px 0 95px;
    }

    .realisations-section__header[b-cjczvdh7hb] {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 24px;
    }

    #accueil[b-cjczvdh7hb],
    #metiers[b-cjczvdh7hb],
    #realisations[b-cjczvdh7hb],
    #contact[b-cjczvdh7hb] {
        scroll-margin-top: 105px;
    }
}

@media (max-width: 700px) {
    .home-header[b-cjczvdh7hb] {
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 16px;
    }

    .home-header__brand[b-cjczvdh7hb],
    .home-header__right[b-cjczvdh7hb] {
        flex: 0 1 auto;
        min-width: 0;
    }

    .home-header__brand[b-cjczvdh7hb] {
        align-items: center;
        gap: 12px;
    }

    .home-header__logo[b-cjczvdh7hb] {
        width: 62px;
        height: 46px;
        max-width: 95px;
    }

    .home-header__identity[b-cjczvdh7hb] {
        min-width: 0;
    }

        .home-header__identity h1[b-cjczvdh7hb] {
            font-size: 1.15rem;
            white-space: nowrap;
        }

    .home-nav[b-cjczvdh7hb] {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 7px 14px;
    }

    .home-nav__link[b-cjczvdh7hb] {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        white-space: nowrap;
    }

    .home-content[b-cjczvdh7hb] {
        padding: 95px 16px 40px;
    }

    .home-section[b-cjczvdh7hb] {
        gap: 30px;
        margin-top: 0;
        padding: 25px 0 60px;
    }

    .home-section__label[b-cjczvdh7hb],
    .jobs-section__label[b-cjczvdh7hb] {
        font-size: 0.65rem;
        letter-spacing: 0.14em;
    }

    .home-section__title[b-cjczvdh7hb],
    .jobs-section__title[b-cjczvdh7hb] {
        font-size: clamp(2rem, 10vw, 3rem);
        overflow-wrap: break-word;
    }

    .home-section__description[b-cjczvdh7hb] {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .home-section__button[b-cjczvdh7hb] {
        justify-content: space-between;
        width: 100%;
    }

    .home-section__visual[b-cjczvdh7hb],
    .home-section__visual img[b-cjczvdh7hb] {
        height: min(72vw, 340px);
        min-height: 240px;
    }

    .jobs-section[b-cjczvdh7hb] {
        padding: 60px 0;
    }

    .jobs-section__header[b-cjczvdh7hb] {
        margin-bottom: 35px;
    }

    .jobs-section__grid[b-cjczvdh7hb] {
        grid-template-columns: 1fr;
    }

    .job-card[b-cjczvdh7hb] {
        min-height: auto;
        padding: 24px;
    }

    .job-card__icon[b-cjczvdh7hb] {
        width: 60px;
        height: 60px;
        margin: 30px 0 22px;
    }

    .jobs-section__footer[b-cjczvdh7hb],
    .contact-form-footer[b-cjczvdh7hb] {
        align-items: stretch;
        flex-direction: column;
    }

    .jobs-section__commitments[b-cjczvdh7hb] {
        flex-wrap: wrap;
    }

    .realisations-section[b-cjczvdh7hb] {
        padding: 60px 0 75px;
    }

    .realisations-section__header[b-cjczvdh7hb] {
        margin-bottom: 34px;
    }

    .realisations-section__label[b-cjczvdh7hb] {
        font-size: 0.65rem;
        letter-spacing: 0.14em;
    }

    .realisations-section__title[b-cjczvdh7hb] {
        font-size: clamp(2rem, 10vw, 3rem);
        overflow-wrap: break-word;
    }

    .realisation-card[b-cjczvdh7hb] {
        aspect-ratio: 4 / 5;
    }

    .realisation-card__overlay[b-cjczvdh7hb] {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-end;
        gap: 12px;
        padding: 24px 20px;
    }

        .realisation-card__overlay h3[b-cjczvdh7hb] {
            font-size: clamp(1.55rem, 8vw, 2.45rem);
            text-align: left;
        }

    .realisations-carousel__controls[b-cjczvdh7hb] {
        grid-template-columns: 1fr auto;
        gap: 18px;
        margin-top: 18px;
    }

    .realisations-carousel__pagination[b-cjczvdh7hb] {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .realisations-carousel__arrow[b-cjczvdh7hb] {
        width: 46px;
        height: 46px;
    }

    .contact-section[b-cjczvdh7hb] {
        padding: 4rem 14px;
    }

    .contact-background-text[b-cjczvdh7hb] {
        font-size: 22vw;
    }

    .contact-container[b-cjczvdh7hb] {
        gap: 2.5rem;
    }

    .contact-introduction h2[b-cjczvdh7hb] {
        font-size: clamp(2rem, 11vw, 3.2rem);
        line-height: 1.03;
    }

    .contact-details[b-cjczvdh7hb] {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-form-wrapper[b-cjczvdh7hb] {
        width: 100%;
        max-width: none;
    }

        .contact-form-wrapper[b-cjczvdh7hb]::before {
            display: none;
        }

    .contact-form[b-cjczvdh7hb] {
        padding: 1.2rem;
    }

    .contact-form-header[b-cjczvdh7hb] {
        margin-bottom: 1.5rem;
    }

    .form-grid[b-cjczvdh7hb] {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-field-full[b-cjczvdh7hb] {
        grid-column: auto;
    }

    .form-field input[b-cjczvdh7hb],
    .form-field select[b-cjczvdh7hb],
    .form-field textarea[b-cjczvdh7hb] {
        font-size: 16px;
    }

    .contact-form-footer p[b-cjczvdh7hb] {
        max-width: none;
    }

    .contact-submit[b-cjczvdh7hb] {
        justify-content: space-between;
        width: 100%;
    }

        .contact-submit > span:first-child[b-cjczvdh7hb] {
            padding-inline: 1rem;
            font-size: 0.68rem;
        }

    .contact-confirmation-dialog[b-cjczvdh7hb] {
        width: calc(100% - 16px);
        max-height: calc(100dvh - 16px);
    }

    .confirmation-modal[b-cjczvdh7hb] {
        padding: 1.2rem;
    }

    .confirmation-modal__header[b-cjczvdh7hb] {
        padding-right: 2.5rem;
    }

    .confirmation-modal__summary[b-cjczvdh7hb] {
        grid-template-columns: 1fr;
    }

    .confirmation-summary__item--full[b-cjczvdh7hb] {
        grid-column: auto;
    }

    .confirmation-modal__footer[b-cjczvdh7hb] {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .confirmation-button[b-cjczvdh7hb] {
        width: 100%;
    }

    .split-footer[b-cjczvdh7hb] {
        margin-top: 70px;
        padding: 0 16px 24px;
    }

    .split-footer__top[b-cjczvdh7hb] {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .split-footer__line[b-cjczvdh7hb] {
        display: none;
    }

    .split-footer__logo[b-cjczvdh7hb] {
        width: 150px;
        height: 80px;
        margin-inline: auto;
        transform: translateY(-34px);
    }

    .split-footer__content[b-cjczvdh7hb] {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
        margin-top: -4px;
        padding: 22px 0 34px;
    }

    .split-footer__bottom[b-cjczvdh7hb] {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .home-header__identity[b-cjczvdh7hb] {
        display: none;
    }

    .home-header__logo[b-cjczvdh7hb] {
        width: 70px;
    }

    .home-nav[b-cjczvdh7hb] {
        gap: 6px 10px;
    }

    .home-nav__link[b-cjczvdh7hb] {
        font-size: 0.58rem;
    }

    .home-section__button[b-cjczvdh7hb] {
        padding-inline: 18px;
        font-size: 0.65rem;
    }

    .job-card[b-cjczvdh7hb] {
        padding: 20px;
    }

    .contact-detail[b-cjczvdh7hb] {
        align-items: flex-start;
        width: 100%;
    }

        .contact-detail > div:last-child[b-cjczvdh7hb] {
            min-width: 0;
        }

        .contact-detail a[b-cjczvdh7hb] {
            font-size: 0.86rem;
            overflow-wrap: anywhere;
        }

    .confirmation-modal__header[b-cjczvdh7hb] {
        padding-right: 2.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-nav__link[b-cjczvdh7hb],
    .home-nav__link[b-cjczvdh7hb]::after,
    .home-section__button[b-cjczvdh7hb],
    .job-card[b-cjczvdh7hb],
    .realisations-carousel__track[b-cjczvdh7hb],
    .realisation-card img[b-cjczvdh7hb],
    .realisations-carousel__arrow[b-cjczvdh7hb],
    .realisations-carousel__dot[b-cjczvdh7hb],
    .job-card[b-cjczvdh7hb]::before,
    .contact-detail a[b-cjczvdh7hb],
    .contact-submit[b-cjczvdh7hb],
    .contact-submit-icon svg[b-cjczvdh7hb],
    .confirmation-modal__close[b-cjczvdh7hb],
    .confirmation-button[b-cjczvdh7hb],
    .split-footer a[b-cjczvdh7hb] {
        transition: none;
    }

    .contact-confirmation-dialog[b-cjczvdh7hb],
    .contact-confirmation-dialog[b-cjczvdh7hb]::backdrop {
        animation: none;
    }
    @media (prefers-reduced-motion: reduce) {
        html[b-cjczvdh7hb] {
            scroll-behavior: auto;
        }
    }
}
/* /Pages/NotFound.razor.rz.scp.css */
.not-found[b-rkx5hk8nzn] {
    --jlh-black: #161616;
    --jlh-anthracite: #303030;
    --jlh-orange: #f28c00;
    --jlh-orange-light: #ffad35;
    --jlh-background: #f6f5f2;
    --jlh-background-light: #ffffff;
    --jlh-background-dark: #e8e6e1;
    --jlh-grid-major: rgba(22, 22, 22, 0.075);
    --jlh-grid-minor: rgba(22, 22, 22, 0.026);
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    color: var(--jlh-black);
    background: radial-gradient( circle at 50% 38%, var(--jlh-background-light) 0%, var(--jlh-background) 52%, var(--jlh-background-dark) 100% );
}


/* =========================================================
   Fond quadrillé
   ========================================================= */

.not-found__background[b-rkx5hk8nzn] {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background-image: linear-gradient( var(--jlh-grid-major) 1px, transparent 1px ), linear-gradient( 90deg, var(--jlh-grid-major) 1px, transparent 1px ), linear-gradient( var(--jlh-grid-minor) 1px, transparent 1px ), linear-gradient( 90deg, var(--jlh-grid-minor) 1px, transparent 1px );
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
}

    .not-found__background[b-rkx5hk8nzn]::before {
        position: absolute;
        top: -230px;
        right: -150px;
        width: 590px;
        height: 590px;
        content: "";
        border: 1px solid rgba(242, 140, 0, 0.16);
        border-radius: 50%;
    }

    .not-found__background[b-rkx5hk8nzn]::after {
        position: absolute;
        bottom: -320px;
        left: -230px;
        width: 700px;
        height: 700px;
        content: "";
        border: 1px solid rgba(22, 22, 22, 0.08);
        border-radius: 50%;
    }


/* =========================================================
   Angles décoratifs
   ========================================================= */

.not-found__corner[b-rkx5hk8nzn] {
    position: absolute;
    width: 42px;
    height: 42px;
    opacity: 0.44;
}

.not-found__corner--top-left[b-rkx5hk8nzn] {
    top: 32px;
    left: 32px;
    border-top: 2px solid var(--jlh-orange);
    border-left: 2px solid var(--jlh-orange);
}

.not-found__corner--top-right[b-rkx5hk8nzn] {
    top: 32px;
    right: 32px;
    border-top: 2px solid var(--jlh-orange);
    border-right: 2px solid var(--jlh-orange);
}

.not-found__corner--bottom-left[b-rkx5hk8nzn] {
    bottom: 32px;
    left: 32px;
    border-bottom: 2px solid var(--jlh-orange);
    border-left: 2px solid var(--jlh-orange);
}

.not-found__corner--bottom-right[b-rkx5hk8nzn] {
    right: 32px;
    bottom: 32px;
    border-right: 2px solid var(--jlh-orange);
    border-bottom: 2px solid var(--jlh-orange);
}


/* =========================================================
   Cotations décoratives
   ========================================================= */

.not-found__measure[b-rkx5hk8nzn] {
    position: absolute;
    color: rgba(22, 22, 22, 0.28);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.not-found__measure--top[b-rkx5hk8nzn] {
    top: 45px;
    left: 50%;
    width: min(38vw, 430px);
    text-align: center;
    transform: translateX(-50%);
}

    .not-found__measure--top[b-rkx5hk8nzn]::before,
    .not-found__measure--top[b-rkx5hk8nzn]::after {
        position: absolute;
        top: 50%;
        height: 1px;
        content: "";
        background: rgba(22, 22, 22, 0.16);
    }

    .not-found__measure--top[b-rkx5hk8nzn]::before {
        right: calc(50% + 90px);
        left: 0;
    }

    .not-found__measure--top[b-rkx5hk8nzn]::after {
        right: 0;
        left: calc(50% + 90px);
    }

.not-found__measure--left[b-rkx5hk8nzn] {
    top: 50%;
    left: 30px;
    transform: translateY(-50%) rotate(-90deg);
}


/* =========================================================
   Mise en page
   ========================================================= */

.not-found__container[b-rkx5hk8nzn] {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.85fr);
    align-items: center;
    gap: clamp(45px, 7vw, 110px);
    width: min(100% - 120px, 1380px);
    margin: 0 auto;
    padding: 130px 0 90px;
}


/* =========================================================
   Illustration
   ========================================================= */

.not-found__visual[b-rkx5hk8nzn] {
    position: relative;
    width: 100%;
    max-width: 660px;
}

    .not-found__visual[b-rkx5hk8nzn]::before {
        position: absolute;
        top: 8%;
        right: 3%;
        bottom: 8%;
        left: 4%;
        content: "";
        background: linear-gradient( 145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.15) );
        border: 1px solid rgba(22, 22, 22, 0.09);
        box-shadow: 0 30px 75px rgba(22, 22, 22, 0.08);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .not-found__visual svg[b-rkx5hk8nzn] {
        position: relative;
        z-index: 2;
        display: block;
        width: 100%;
        height: auto;
        overflow: visible;
    }

.not-found__status[b-rkx5hk8nzn] {
    position: absolute;
    top: 70px;
    left: 35px;
    z-index: 4;
    color: rgba(22, 22, 22, 0.34);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.not-found__plan-lines[b-rkx5hk8nzn] {
    fill: none;
    stroke: rgba(22, 22, 22, 0.15);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 12 8;
}

.not-found__building[b-rkx5hk8nzn] {
    fill: none;
    stroke: var(--jlh-anthracite);
    stroke-width: 2.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1800;
    stroke-dashoffset: 1800;
    animation: not-found-building-drawing-b-rkx5hk8nzn 3.3s ease-in-out infinite;
}

.not-found__crane[b-rkx5hk8nzn] {
    fill: none;
    stroke: var(--jlh-orange);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1100;
    stroke-dashoffset: 1100;
    animation: not-found-crane-drawing-b-rkx5hk8nzn 3.3s 180ms ease-in-out infinite;
}

.not-found__missing[b-rkx5hk8nzn] {
    fill: none;
    stroke: rgba(242, 140, 0, 0.7);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 7 8;
    animation: not-found-missing-pulse-b-rkx5hk8nzn 1.8s ease-in-out infinite;
}

.not-found__marker[b-rkx5hk8nzn] {
    fill: var(--jlh-orange);
    transform-box: fill-box;
    transform-origin: center;
    animation: not-found-marker-pulse-b-rkx5hk8nzn 1.8s ease-in-out infinite;
}

.not-found__marker--second[b-rkx5hk8nzn] {
    animation-delay: 500ms;
}

.not-found__marker--third[b-rkx5hk8nzn] {
    animation-delay: 1s;
}


/* Grand 404 */

.not-found__code[b-rkx5hk8nzn] {
    position: absolute;
    right: 20px;
    bottom: 35px;
    z-index: 4;
    color: transparent;
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 300;
    line-height: 0.8;
    letter-spacing: -0.08em;
    -webkit-text-stroke: 2px rgba(242, 140, 0, 0.75);
    opacity: 0.85;
}


/* =========================================================
   Partie textuelle
   ========================================================= */

.not-found__content[b-rkx5hk8nzn] {
    max-width: 600px;
}

.not-found__label[b-rkx5hk8nzn] {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 23px;
    color: var(--jlh-orange);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

    .not-found__label[b-rkx5hk8nzn]::before {
        width: 42px;
        height: 2px;
        content: "";
        background: var(--jlh-orange);
    }

.not-found__content h1[b-rkx5hk8nzn] {
    margin: 0;
    color: var(--jlh-black);
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

    .not-found__content h1 span[b-rkx5hk8nzn] {
        display: block;
        color: var(--jlh-orange);
        font-weight: 300;
    }

.not-found__content p[b-rkx5hk8nzn] {
    max-width: 550px;
    margin: 26px 0 0;
    color: rgba(22, 22, 22, 0.62);
    font-size: clamp(0.92rem, 1.25vw, 1.05rem);
    line-height: 1.75;
}


/* =========================================================
   Boutons
   ========================================================= */

.not-found__actions[b-rkx5hk8nzn] {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.not-found__button[b-rkx5hk8nzn] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 54px;
    padding: 0 25px;
    border: 1px solid transparent;
    font-size: 0.73rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

    .not-found__button:hover[b-rkx5hk8nzn] {
        transform: translateY(-2px);
    }

.not-found__button--primary[b-rkx5hk8nzn] {
    color: #ffffff;
    background: var(--jlh-orange);
    box-shadow: 0 14px 30px rgba(242, 140, 0, 0.18);
}

    .not-found__button--primary:hover[b-rkx5hk8nzn] {
        color: #ffffff;
        background: var(--jlh-black);
        box-shadow: 0 16px 34px rgba(22, 22, 22, 0.16);
    }

    .not-found__button--primary span[b-rkx5hk8nzn] {
        font-size: 1.1rem;
    }

.not-found__button--secondary[b-rkx5hk8nzn] {
    color: var(--jlh-black);
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(22, 22, 22, 0.22);
}

    .not-found__button--secondary:hover[b-rkx5hk8nzn] {
        color: var(--jlh-orange);
        border-color: var(--jlh-orange);
    }


/* =========================================================
   Référence technique
   ========================================================= */

.not-found__reference[b-rkx5hk8nzn] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(22, 22, 22, 0.13);
}

    .not-found__reference span[b-rkx5hk8nzn] {
        color: rgba(22, 22, 22, 0.36);
        font-size: 0.59rem;
        font-weight: 500;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .not-found__reference strong[b-rkx5hk8nzn] {
        color: rgba(22, 22, 22, 0.57);
        font-size: 0.67rem;
        font-weight: 500;
        letter-spacing: 0.1em;
    }


/* =========================================================
   Animations
   ========================================================= */

@keyframes not-found-building-drawing-b-rkx5hk8nzn {
    0% {
        opacity: 0.2;
        stroke-dashoffset: 1800;
    }

    42%, 74% {
        opacity: 1;
        stroke-dashoffset: 0;
    }

    100% {
        opacity: 0.2;
        stroke-dashoffset: -1800;
    }
}

@keyframes not-found-crane-drawing-b-rkx5hk8nzn {
    0% {
        opacity: 0.2;
        stroke-dashoffset: 1100;
    }

    45%, 75% {
        opacity: 1;
        stroke-dashoffset: 0;
    }

    100% {
        opacity: 0.2;
        stroke-dashoffset: -1100;
    }
}

@keyframes not-found-missing-pulse-b-rkx5hk8nzn {
    0%, 100% {
        opacity: 0.25;
    }

    50% {
        opacity: 1;
    }
}

@keyframes not-found-marker-pulse-b-rkx5hk8nzn {
    0%, 100% {
        opacity: 0.25;
        transform: scale(0.7);
    }

    50% {
        opacity: 1;
        transform: scale(1.35);
    }
}


/* =========================================================
   Tablette
   ========================================================= */

@media (max-width: 1000px) {
    .not-found[b-rkx5hk8nzn] {
        align-items: flex-start;
    }

    .not-found__container[b-rkx5hk8nzn] {
        grid-template-columns: 1fr;
        width: min(100% - 70px, 760px);
        padding-top: 130px;
    }

    .not-found__visual[b-rkx5hk8nzn] {
        width: min(100%, 620px);
        margin: 0 auto;
    }

    .not-found__content[b-rkx5hk8nzn] {
        max-width: 700px;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 650px) {
    .not-found__container[b-rkx5hk8nzn] {
        width: min(100% - 36px, 600px);
        gap: 35px;
        padding: 100px 0 60px;
    }

    .not-found__visual[b-rkx5hk8nzn] {
        width: 110%;
        margin-left: -5%;
    }

    .not-found__status[b-rkx5hk8nzn] {
        top: 45px;
        left: 25px;
    }

    .not-found__code[b-rkx5hk8nzn] {
        right: 10px;
        bottom: 22px;
        font-size: clamp(4.5rem, 27vw, 7rem);
        -webkit-text-stroke-width: 1.4px;
    }

    .not-found__content h1[b-rkx5hk8nzn] {
        font-size: clamp(2.4rem, 12vw, 3.8rem);
    }

    .not-found__actions[b-rkx5hk8nzn] {
        flex-direction: column;
    }

    .not-found__button[b-rkx5hk8nzn] {
        width: 100%;
    }

    .not-found__corner[b-rkx5hk8nzn] {
        width: 27px;
        height: 27px;
    }

    .not-found__corner--top-left[b-rkx5hk8nzn] {
        top: 18px;
        left: 18px;
    }

    .not-found__corner--top-right[b-rkx5hk8nzn] {
        top: 18px;
        right: 18px;
    }

    .not-found__corner--bottom-left[b-rkx5hk8nzn] {
        bottom: 18px;
        left: 18px;
    }

    .not-found__corner--bottom-right[b-rkx5hk8nzn] {
        right: 18px;
        bottom: 18px;
    }

    .not-found__measure[b-rkx5hk8nzn] {
        display: none;
    }
}

/* =========================================================
   Accessibilité
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .not-found *[b-rkx5hk8nzn],
    .not-found *[b-rkx5hk8nzn]::before,
    .not-found *[b-rkx5hk8nzn]::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }

    .not-found__building[b-rkx5hk8nzn],
    .not-found__crane[b-rkx5hk8nzn] {
        opacity: 1;
        stroke-dasharray: none;
        stroke-dashoffset: 0;
    }
}
