:root
{
    --neo-primary: #237f47;
    --neo-primary-dark: #123d28;
    --neo-primary-light: #e8f5ed;
    --neo-secondary: #d8a84e;
    --neo-dark: #181818;
    --neo-text: #444444;
    --neo-muted: #747474;
    --neo-background: #f7f5f2;
    --neo-white: #ffffff;
    --neo-border: rgba(24, 24, 24, 0.1);
    --neo-shadow: 0 20px 50px rgba(24, 24, 24, 0.1);
    --neo-shadow-small: 0 12px 30px rgba(24, 24, 24, 0.08);
    --neo-radius-small: 12px;
    --neo-radius-medium: 22px;
    --neo-radius-large: 34px;
    --neo-content-width: 1240px;
}

*
{
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
}

body
{
    margin: 0;
    color: var(--neo-text);
    background-color: var(--neo-white);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
}

img
{
    display: block;
    max-width: 100%;
}

a
{
    color: inherit;
    text-decoration: none;
}

button,
a
{
    -webkit-tap-highlight-color: transparent;
}

.Neo
{
    width: 100%;
    overflow: hidden;
}

.section-label
{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: var(--neo-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-label::before
{
    width: 34px;
    height: 2px;
    content: "";
    background-color: var(--neo-secondary);
}

.section-label-light
{
    color: var(--neo-white);
}

.section-heading
{
    width: min(calc(100% - 40px), var(--neo-content-width));
    margin: 0 auto;
    padding: 100px 0 44px;
    text-align: center;
}

.section-heading .section-label
{
    justify-content: center;
}

.section-heading h2
{
    margin: 0;
    color: var(--neo-dark);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.15;
}

.section-heading > p:last-child
{
    max-width: 660px;
    margin: 18px auto 0;
    color: var(--neo-muted);
    font-size: 1.05rem;
}

.bouton
{
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 750;
    line-height: 1.2;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.bouton:hover
{
    transform: translateY(-3px);
}

.bouton-principal
{
    color: var(--neo-white);
    background-color: var(--neo-primary);
    box-shadow: 0 12px 28px rgba(35, 127, 71, 0.3);
}

.bouton-principal:hover
{
    background-color: var(--neo-primary-dark);
    box-shadow: 0 16px 34px rgba(35, 127, 71, 0.38);
}

.bouton-secondaire
{
    color: var(--neo-white);
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.bouton-secondaire:hover
{
    color: var(--neo-dark);
    background-color: var(--neo-white);
}

.bouton-clair
{
    color: var(--neo-primary-dark);
    background-color: var(--neo-white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.bouton-clair:hover
{
    background-color: var(--neo-primary-light);
}

.bouton-large
{
    width: 100%;
}

/* Diaporama principal */

#accueilsection1
{
    position: relative;
    width: 100%;
    min-height: 760px;
    overflow: hidden;
    background-color: var(--neo-dark);
}

#accueilsection1::after
{
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            90deg,
            rgba(17, 13, 14, 0.84) 0%,
            rgba(17, 13, 14, 0.5) 45%,
            rgba(17, 13, 14, 0.12) 100%
        );
    pointer-events: none;
}

#accueilsection1-slider
{
    display: flex;
    width: 100%;
    height: 760px;
    transition: transform 0.7s ease;
}

.accueilsection1-diapos
{
    position: relative;
    min-width: 100%;
    height: 100%;
}

.accueilsection1-diapos-image
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content
{
    position: absolute;
    z-index: 3;
    top: 50%;
    left: max(6vw, calc((100% - var(--neo-content-width)) / 2));
    width: min(630px, calc(100% - 120px));
    color: var(--neo-white);
    transform: translateY(-50%);
}

.hero-label
{
    display: inline-flex;
    margin: 0 0 18px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-content h1
{
    max-width: 700px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 6.2rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.hero-content > p:not(.hero-label)
{
    max-width: 590px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions
{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.slider-navigation
{
    position: absolute;
    z-index: 5;
    top: 50%;
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background-color: rgba(20, 20, 20, 0.3);
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.slider-navigation:hover
{
    background-color: var(--neo-primary);
    transform: translateY(-50%) scale(1.08);
}

.slider-navigation img
{
    width: 20px;
    filter: brightness(0) invert(1);
}

.slider-navigation-previous
{
    left: 24px;
}

.slider-navigation-next
{
    right: 24px;
}

.slider-navigation-next img
{
    transform: rotate(180deg);
}

/* Informations pratiques */

#accueilsection2
{
    position: relative;
    z-index: 6;
    width: min(calc(100% - 40px), var(--neo-content-width));
    margin: -65px auto 0;
}

#accueilsection2-cadre
{
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    overflow: hidden;
    border: 1px solid var(--neo-border);
    border-radius: var(--neo-radius-medium);
    background-color: var(--neo-white);
    box-shadow: var(--neo-shadow);
}

.accueilsection2-cadre-part
{
    display: flex;
    min-height: 130px;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-right: 1px solid var(--neo-border);
}

.information-card-icon
{
    display: flex;
    width: 48px;
    min-width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background-color: var(--neo-primary-light);
}

.accueilsection2-cadre-part-image
{
    width: 23px;
    height: 23px;
    object-fit: contain;
}

.information-card-label
{
    color: var(--neo-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.accueilsection2-p
{
    margin: 4px 0 0;
    color: var(--neo-dark);
    font-size: 0.94rem;
    font-weight: 650;
    line-height: 1.45;
}

.accueilsection2-p a:hover
{
    color: var(--neo-primary);
}

#accueilsection2-cadre-part4
{
    display: flex;
    min-width: 190px;
    align-items: stretch;
}

#accueilsection2-cadre-part4-p
{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: var(--neo-white);
    background-color: var(--neo-primary);
    font-weight: 800;
    transition: background-color 0.25s ease;
}

#accueilsection2-cadre-part4-p:hover
{
    background-color: var(--neo-primary-dark);
}

/* Présentation */

#accueilsection3
{
    display: grid;
    width: min(calc(100% - 40px), var(--neo-content-width));
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
    margin: 0 auto;
    padding: 130px 0 80px;
}

#accueilsection3-part1-titre
{
    margin: 0 0 30px;
    color: var(--neo-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.accueilsection3-part1-p
{
    margin: 0 0 19px;
    color: var(--neo-text);
    font-size: 1.03rem;
}

.presentation-highlight
{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
    padding: 22px;
    border-left: 4px solid var(--neo-secondary);
    border-radius: 0 var(--neo-radius-small) var(--neo-radius-small) 0;
    background-color: var(--neo-background);
}

#accueilsection3-part1-image
{
    width: 88px;
    min-width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: contain;
    background-color: var(--neo-white);
}

.presentation-highlight p
{
    margin: 0;
    color: var(--neo-dark);
    font-weight: 650;
    line-height: 1.55;
}

#accueilsection3-part2
{
    position: relative;
}

#accueilsection3-part2::before
{
    position: absolute;
    z-index: -1;
    right: -28px;
    bottom: -28px;
    width: 70%;
    height: 70%;
    border-radius: var(--neo-radius-large);
    content: "";
    background-color: var(--neo-primary-light);
}

#accueilsection3-part2-image
{
    width: 100%;
    height: 650px;
    border-radius: var(--neo-radius-large);
    object-fit: cover;
    box-shadow: var(--neo-shadow);
}

/* Services */

#accueilsection-4bis-services
{
    display: grid;
    width: min(calc(100% - 40px), var(--neo-content-width));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0 auto;
    padding-bottom: 110px;
}

.service-card
{
    overflow: hidden;
    border: 1px solid var(--neo-border);
    border-radius: var(--neo-radius-medium);
    background-color: var(--neo-white);
    box-shadow: var(--neo-shadow-small);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover
{
    transform: translateY(-8px);
    box-shadow: var(--neo-shadow);
}

.service-card-image
{
    height: 280px;
    overflow: hidden;
}

.accueilsection-4bis-services-image
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .accueilsection-4bis-services-image
{
    transform: scale(1.06);
}

.service-card-content
{
    position: relative;
    padding: 30px;
}

.service-card-number
{
    position: absolute;
    top: -26px;
    right: 24px;
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--neo-white);
    border-radius: 50%;
    color: var(--neo-white);
    background-color: var(--neo-primary);
    font-size: 0.82rem;
    font-weight: 800;
}

.accueilsection-4bis-services-titre
{
    margin: 0;
    color: var(--neo-dark);
    font-size: 1.35rem;
    line-height: 1.3;
}

.service-card-content p
{
    margin: 14px 0 0;
    color: var(--neo-muted);
    line-height: 1.65;
}

/* Bloc menus */

#accueilsection4
{
    display: grid;
    width: min(calc(100% - 40px), var(--neo-content-width));
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    margin: 0 auto;
    border-radius: var(--neo-radius-large);
    background:
        linear-gradient(
            135deg,
            var(--neo-primary-dark),
            var(--neo-primary)
        );
    box-shadow: var(--neo-shadow);
}

.menu-promotion-content
{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: clamp(50px, 7vw, 90px);
    color: var(--neo-white);
}

.menu-promotion-content h2
{
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-weight: 500;
    line-height: 1.1;
}

.menu-promotion-content > p:not(.section-label)
{
    margin: 22px 0 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.04rem;
}

.menu-promotion-image
{
    min-height: 520px;
}

#accueilsection4-image
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* À propos */

#accueilsection5
{
    width: min(calc(100% - 40px), var(--neo-content-width));
    margin: 0 auto;
    padding-bottom: 110px;
}

#accueilsection5-part1
{
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
    overflow: hidden;
    border-radius: var(--neo-radius-large);
    background-color: var(--neo-background);
}

#accueilsection5-part1-image
{
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.about-text
{
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: clamp(40px, 6vw, 80px);
}

.about-quote
{
    position: absolute;
    top: 4px;
    right: 40px;
    color: rgba(35, 127, 71, 0.1);
    font-family: Georgia, serif;
    font-size: 12rem;
    line-height: 1;
}

.accueilsection5-part1-p
{
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    color: var(--neo-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    line-height: 1.55;
}

.team-gallery
{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.accueilsection5-image
{
    width: 100%;
    height: 240px;
    border-radius: var(--neo-radius-small);
    object-fit: cover;
    filter: saturate(0.88);
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.accueilsection5-image:hover
{
    z-index: 1;
    filter: saturate(1);
    transform: translateY(-6px);
}

/* Locaux */

#accueilsection6
{
    position: relative;
    width: min(calc(100% - 40px), var(--neo-content-width));
    overflow: hidden;
    margin: 0 auto 110px;
    border-radius: var(--neo-radius-large);
    background-color: var(--neo-dark);
    box-shadow: var(--neo-shadow);
}

#accueilsection6-slider
{
    display: flex;
    height: 620px;
    transition: transform 0.7s ease;
}

.accueilsection6-diapos
{
    min-width: 100%;
    height: 100%;
}

.accueilsection6-diapos-image
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact */

#accueilsection7
{
    display: grid;
    width: min(calc(100% - 40px), var(--neo-content-width));
    grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.6fr);
    overflow: hidden;
    margin: 0 auto 110px;
    border: 1px solid var(--neo-border);
    border-radius: var(--neo-radius-large);
    background-color: var(--neo-white);
    box-shadow: var(--neo-shadow);
}

.contact-map
{
    min-height: 610px;
}

.contact-map iframe
{
    display: block;
    width: 100%;
    height: 100%;
    min-height: 610px;
    border: 0;
}

.contact-card
{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: clamp(38px, 5vw, 65px);
    background-color: var(--neo-background);
}

.contact-card h2
{
    margin: 0 0 32px;
    color: var(--neo-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
}

.contact-information
{
    padding: 17px 0;
    border-bottom: 1px solid var(--neo-border);
}

.contact-information span
{
    color: var(--neo-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-information p
{
    margin: 5px 0 0;
    color: var(--neo-dark);
    font-weight: 650;
}

.contact-information a:hover
{
    color: var(--neo-primary);
}

.contact-card .bouton
{
    margin-top: 32px;
}

/* Tablette */

@media screen and (max-width: 1050px)
{
    #accueilsection2-cadre
    {
        grid-template-columns: repeat(3, 1fr);
    }

    #accueilsection2-cadre-part4
    {
        min-height: 70px;
        grid-column: 1 / -1;
    }

    #accueilsection3
    {
        grid-template-columns: 1fr;
    }

    #accueilsection3-part2
    {
        width: min(100%, 720px);
        margin: 0 auto;
    }

    #accueilsection3-part2-image
    {
        height: 520px;
    }

    #accueilsection-4bis-services
    {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-gallery
    {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #accueilsection7
    {
        grid-template-columns: 1fr;
    }

    .contact-map,
    .contact-map iframe
    {
        min-height: 450px;
    }
}

/* Mobile */

@media screen and (max-width: 760px)
{
    #accueilsection1,
    #accueilsection1-slider
    {
        min-height: 690px;
        height: 690px;
    }

    #accueilsection1::after
    {
        background:
            linear-gradient(
                0deg,
                rgba(17, 13, 14, 0.92) 0%,
                rgba(17, 13, 14, 0.52) 70%,
                rgba(17, 13, 14, 0.25) 100%
            );
    }

    .hero-content
    {
        top: auto;
        bottom: 72px;
        left: 24px;
        width: calc(100% - 48px);
        transform: none;
    }

    .hero-content h1
    {
        font-size: clamp(2.8rem, 14vw, 4rem);
    }

    .hero-actions
    {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .bouton
    {
        width: 100%;
    }

    .slider-navigation
    {
        top: auto;
        bottom: 18px;
        width: 44px;
        height: 44px;
        transform: none;
    }

    .slider-navigation:hover
    {
        transform: scale(1.05);
    }

    .slider-navigation-previous
    {
        left: calc(50% - 54px);
    }

    .slider-navigation-next
    {
        right: calc(50% - 54px);
    }

    #accueilsection2
    {
        margin-top: 24px;
    }

    #accueilsection2-cadre
    {
        grid-template-columns: 1fr;
    }

    .accueilsection2-cadre-part
    {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--neo-border);
    }

    #accueilsection2-cadre-part4
    {
        grid-column: auto;
    }

    #accueilsection3
    {
        gap: 48px;
        padding: 90px 0 40px;
    }

    #accueilsection3-part2-image
    {
        height: 430px;
        border-radius: var(--neo-radius-medium);
    }

    #accueilsection3-part2::before
    {
        display: none;
    }

    .presentation-highlight
    {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading
    {
        padding: 80px 0 35px;
    }

    #accueilsection-4bis-services
    {
        grid-template-columns: 1fr;
        padding-bottom: 80px;
    }

    #accueilsection4
    {
        grid-template-columns: 1fr;
        border-radius: var(--neo-radius-medium);
    }

    .menu-promotion-image
    {
        min-height: 350px;
        grid-row: 1;
    }

    .menu-promotion-content
    {
        padding: 45px 30px;
    }

    #accueilsection5-part1
    {
        grid-template-columns: 1fr;
        border-radius: var(--neo-radius-medium);
    }

    #accueilsection5-part1-image
    {
        min-height: 360px;
        height: 360px;
    }

    .about-text
    {
        padding: 40px 28px;
    }

    .team-gallery
    {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .accueilsection5-image
    {
        height: 210px;
    }

    #accueilsection6
    {
        border-radius: var(--neo-radius-medium);
    }

    #accueilsection6-slider
    {
        height: 430px;
    }

    #accueilsection7
    {
        border-radius: var(--neo-radius-medium);
    }

    .contact-card
    {
        padding: 40px 28px;
    }

    .contact-map,
    .contact-map iframe
    {
        min-height: 360px;
    }
}

@media screen and (max-width: 480px)
{
    #accueilsection1
    {
        min-height: 650px;
    }

    #accueilsection1-slider
    {
        height: 650px;
    }

    .hero-label
    {
        font-size: 0.68rem;
    }

    .team-gallery
    {
        grid-template-columns: 1fr;
    }

    .accueilsection5-image
    {
        height: 300px;
    }

    #accueilsection6-slider
    {
        height: 350px;
    }
}