body.home {
    @media (min-width: 1192px) {
        h1 {
            font-size: 94px;
        }
    }
    #presentation-home {
        @media (min-width: 768px) {
            .col-12:first-of-type {
                
                figure {
                    position: relative;
                    height: 100%;

                    img {
                        height: 100%;
                    }

                    div.legend {
                        position: absolute;
                        bottom: 0;
                    }
                }
            }
        }
    }
    #temoignages {
        h5 {
            font-size: 25px;
            font-family: 'ClashGrotesk-Medium';
            color: var(--bs-noir-carbone);
            line-height: 30px;
            text-transform: uppercase;
        }
        
        .carousel {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: stretch;

            .carousel-control-prev,
            .carousel-control-next {
                opacity: 1;
                position: static;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                width: 30px;

                @media (min-width: 992px) { 
                    width: 50px;
                }
            }
            .carousel-control-prev {
                justify-content: flex-start;
                
                /* TRAIT */
                &::after {
                    z-index: 2;
                    content: "";

                    width: 13px;
                    height: 2px;
                    background: var(--bs-noir-carbone);

                    transform: translateY(-50%);
                    transition: width 0.25s ease;
                }

                /* POINTE */
                &::before {
                    z-index: 2;
                    content: "";
                    margin-top: 9px;
                    margin-right: -11px;      /* inverse */
                    width: 11px;
                    height: 11px;
                    border-top: 2px solid var(--bs-noir-carbone);
                    border-left: 2px solid var(--bs-noir-carbone); /* inverse */

                    transform: translateY(-50%) rotate(-45deg);  /* ← */
                }

                /* HOVER */
                &:hover::after {
                    width: 20px;
                }
            }

            .carousel-control-next {
                justify-content: flex-end;

                /* TRAIT */
                &::before {
                    z-index: 2;
                    content: "";

                    width: 13px;
                    height: 2px;
                    background: var(--bs-noir-carbone);

                    transform: translateY(-50%);
                    transition: width 0.25s ease;
                }
                /* POINTE */
                &::after {
                    z-index: 2;
                    content: "";
                    margin-top: 9px;
                    margin-left: -11px;
                    width: 11px;
                    height: 11px;
                    border-top: 2px solid var(--bs-noir-carbone);
                    border-right: 2px solid var(--bs-noir-carbone);

                    transform: translateY(-50%) rotate(45deg);
                }
                /* HOVER */
                &:hover::before {
                    width: 20px; /* seul le trait s'allonge */
                }
            }
            .carousel-inner {
                flex: 1;
            }
            .carousel-item {
                font-size: 20px;
            }

            a.float-end {
                font-style: italic;
                font-size: 18px;
                margin-right: 0.5rem; 
                font-family: 'ClashGrotesk-Light';
            }
        }
    }
    div#paysagiste-complet {
        position: relative;
        z-index: 2;
    }
    section#artisans-home {
        position: relative;
        z-index: 1;
        margin-top: -320px;
        padding-top: 320px;
        background-image: url("../../images/illustration-artisans-home-QeYGwUd.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    div#illustration-savoir-faire {
        width: 50%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background-image: url("../../images/illustration-savoir-faire-home-qFck02R.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    a.realisation {
        position: relative;
        background-color: var(--bs-gris-vert);
        text-decoration: none !important;
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow: hidden;
        color: #000;

        img {
            max-height: 250px;
        }

        .bg-slide {
            position: absolute;
            top: 100%;
            height: 100%;
            width: 100%;
            background-color: var(--bs-gris-vert);
            transition: top 0.25s ease;
        }
        .title {
            position: relative;
            flex-grow: 1;
            text-decoration: none !important;
            color: #000;
            font-size: 20px;
            background-color: var(--bs-gris-vert);
            padding: 25px 40px 25px 30px;
            transition: transform 0.25s ease;
        }

        .desc {
            position: absolute;
            bottom: 0;
            background-color: var(--bs-gris-vert);
            padding: 25px 40px 50px 30px;
            opacity: 0;
            transition: opacity 0.25s ease;
            color: #000;
        }
        
        /* TRAIT */
        &::before {
            z-index: 2;
            content: "";
            position: absolute;
            right: 20px;
            bottom: 34px;

            width: 13px;
            height: 2px;
            background: currentColor;

            transform: translateY(-50%);
            transition: width 0.25s ease;

            @media (min-width: 768px) {
                right: 10px;
            }
        }
        /* POINTE */
        &::after {
            z-index: 2;
            content: "";
            position: absolute;
            right: 20px;
            bottom: 25px;

            width: 11px;
            height: 11px;
            border-top: 2px solid currentColor;
            border-right: 2px solid currentColor;

            transform: translateY(-50%) rotate(45deg);

            @media (min-width: 768px) {
                right: 10px;
            }
        }
        /* HOVER */
        &:hover::before {
            width: 20px; /* seul le trait s'allonge */
        }

        &:hover {
            div.bg-slide {
                top: 0;
            }
            div.title {
                transform: translateY(-150px);
            }
            div.desc {
                opacity: 1;
            }
        }
    }
}