/* =========================================================
   GUILHEM COHEN
   ONE PAGE
   HEADER + HERO
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:FILL@0..1&display=swap');

/* =========================================================
   RESET ASTRA SUR LA PAGE D'ACCUEIL
   ========================================================= */

body.home #masthead {
    display: none !important;
}

body.home .site-content,
body.home .ast-container,
body.home .site-main,
body.home .entry-content {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}

body.home .entry-header {
    display: none !important;
}

body.home {
    margin: 0;

    overflow-x: hidden;

    background: #F8F5EE;
}


/* =========================================================
   VARIABLES
   ========================================================= */

.gc-page-top {

    --gc-bg: #F8F5EE;
    --gc-bg-soft: #F1ECE3;

    --gc-white: #FFFFFF;

    --gc-text: #202B27;
    --gc-muted: #737B76;

    --gc-green: #2F735C;
    --gc-green-dark: #245A48;

    --gc-green-light: #DCE8E2;

    --gc-sand: #E6DDD1;

    --gc-border: rgba(32, 43, 39, 0.11);

    --gc-shadow:
        0 14px 40px rgba(32, 43, 39, 0.07);

    width: 100%;

    background: var(--gc-bg);

    color: var(--gc-text);
}


/* =========================================================
   GLOBAL SVG
   ========================================================= */

.gc-page-top svg {
    display: block;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   HEADER
   ========================================================= */

.gc-header {
    position: relative;

    z-index: 100;

    width: 100%;

    background:
        rgba(248, 245, 238, 0.96);

    border-bottom:
        1px solid rgba(32, 43, 39, 0.035);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


.gc-header-inner {
    width: min(92%, 1280px);

    min-height: 92px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 36px;
}


/* =========================================================
   LOGO
   ========================================================= */

.gc-logo {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;

    gap: 14px;

    color: var(--gc-text) !important;

    text-decoration: none !important;
}


.gc-logo:hover {
    color: var(--gc-text) !important;
}


.gc-logo-mark {
    width: 49px;
    height: 49px;

    flex: 0 0 49px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1.5px solid var(--gc-green);

    border-radius: 50%;

    color: var(--gc-green);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;

    font-style: italic;
}


.gc-logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}


.gc-logo-text strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;
    font-weight: 400;

    letter-spacing: -0.4px;
}


.gc-logo-text small {
    margin-top: 8px;

    color: var(--gc-green);

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

    letter-spacing: 3px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.gc-nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 31px;
}


.gc-nav a {
    position: relative;

    padding:
        35px 0 31px;

    color: var(--gc-text) !important;

    font-size: 13px;
    font-weight: 500;

    line-height: 1;

    text-decoration: none !important;
}


.gc-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 23px;

    width: 0;
    height: 1px;

    background: var(--gc-green);

    transform: translateX(-50%);

    transition:
        width 0.25s ease;
}


.gc-nav a:hover,
.gc-nav a.is-active {
    color:
        var(--gc-green) !important;
}


.gc-nav a:hover::after,
.gc-nav a.is-active::after {
    width: 100%;
}


/* =========================================================
   CTA HEADER
   ========================================================= */

.gc-header-rdv {
    min-width: 198px;
    min-height: 49px;

    flex: 0 0 auto;

    padding:
        0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    border-radius: 999px;

    background:
        var(--gc-green);

    color:
        var(--gc-white) !important;

    text-decoration: none !important;

    font-size: 13px;
    font-weight: 600;

    box-shadow:
        0 9px 25px rgba(47, 115, 92, 0.16);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.gc-header-rdv svg {
    width: 17px;
    height: 17px;
}


.gc-header-rdv:hover {
    background:
        var(--gc-green-dark);

    color:
        var(--gc-white) !important;

    transform:
        translateY(-1px);

    box-shadow:
        0 12px 30px rgba(47, 115, 92, 0.21);
}


/* =========================================================
   HERO
   ========================================================= */

.gc-hero {
    position: relative;

    width: 100%;

    min-height: 700px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 87% 12%,
            rgba(224, 216, 203, 0.34) 0,
            rgba(224, 216, 203, 0.14) 25%,
            transparent 48%
        ),

        var(--gc-bg);
}


.gc-hero::before {
    content: "";

    position: absolute;

    left: -250px;
    bottom: -300px;

    width: 510px;
    height: 510px;

    border-radius: 50%;

    background:
        rgba(222, 210, 195, 0.21);
}


.gc-hero-inner {
    position: relative;

    width: min(92%, 1280px);

    min-height: 700px;

    margin: 0 auto;

    padding:
        72px 0 80px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(420px, .92fr);

    align-items: center;

    gap: 68px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.gc-hero-content {
    position: relative;

    z-index: 4;
}


.gc-eyebrow {
    margin:
        0 0 19px;

    color:
        var(--gc-green);

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

    letter-spacing: 3px;
}


/* =========================================================
   H1
   ========================================================= */

.gc-hero h1 {
    max-width: 670px;

    margin: 0;

    color:
        var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(58px, 5vw, 79px);

    font-weight: 400;

    line-height: 0.99;

    letter-spacing: -3px;
}


.gc-hero h1 em {
    color:
        var(--gc-green);

    font-weight: 400;
}


/* =========================================================
   INTRO
   ========================================================= */

.gc-hero-intro {
    max-width: 590px;

    margin:
        30px 0 0;

    color:
        var(--gc-muted);

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.gc-hero-actions {
    margin-top: 34px;

    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 15px;
}


.gc-btn {
    min-height: 57px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    text-decoration: none !important;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   BOUTON PRINCIPAL
   ========================================================= */

.gc-btn-primary {
    min-width: 226px;

    padding:
        0 22px;

    gap: 12px;

    background:
        var(--gc-green);

    color:
        var(--gc-white) !important;

    font-size: 14px;
    font-weight: 600;

    box-shadow:
        0 10px 28px rgba(47, 115, 92, 0.20);
}


.gc-btn-primary:hover {
    background:
        var(--gc-green-dark);

    color:
        var(--gc-white) !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 14px 32px rgba(47, 115, 92, 0.23);
}


.gc-btn-icon {
    width: 18px;
    height: 18px;
}


.gc-btn-arrow {
    width: 17px;
    height: 17px;

    margin-left: 4px;
}


/* =========================================================
   BOUTON TÉLÉPHONE
   ========================================================= */

.gc-btn-secondary {
    min-width: 200px;

    padding:
        0 22px;

    gap: 14px;

    border:
        1px solid rgba(32, 43, 39, 0.26);

    background:
        rgba(255, 255, 255, 0.32);

    color:
        var(--gc-text) !important;
}


.gc-btn-secondary:hover {
    border-color:
        var(--gc-green);

    background:
        var(--gc-white);

    color:
        var(--gc-green) !important;

    transform:
        translateY(-2px);
}


.gc-phone-icon {
    width: 19px;
    height: 19px;

    color:
        var(--gc-green);
}


.gc-call-content {
    display: flex;
    flex-direction: column;

    text-align: left;
}


.gc-call-content small {
    color:
        var(--gc-muted);

    font-size: 10px;

    line-height: 1;
}


.gc-call-content strong {
    margin-top: 5px;

    color: inherit;

    font-size: 12px;
    font-weight: 600;

    line-height: 1;
}


/* =========================================================
   TRUST / RÉASSURANCE
   ========================================================= */

.gc-trust {
    width: 100%;

    max-width: 790px;

    margin-top: 48px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================================
   TRUST CARD
   ========================================================= */

.gc-trust-item {
    min-height: 104px;

    padding:
        18px 17px;

    display: flex;
    align-items: center;

    gap: 15px;

    border:
        1px solid rgba(32, 43, 39, 0.075);

    border-radius: 19px;

    background:
        rgba(255, 255, 255, 0.49);

    box-shadow:
        0 9px 28px rgba(32, 43, 39, 0.035);
}


/* =========================================================
   TRUST ICON
   ========================================================= */

.gc-trust-icon {
    width: 55px;
    height: 55px;

    flex:
        0 0 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(47, 115, 92, 0.16);

    border-radius: 50%;

    background:
        #F5F2EB;

    color:
        var(--gc-green);
}


.gc-trust-icon svg {
    width: 25px;
    height: 25px;

    stroke-width: 1.6;
}


/* =========================================================
   TRUST TEXT
   ========================================================= */

.gc-trust-text {
    min-width: 0;

    display: flex;
    flex-direction: column;

    justify-content: center;
}


.gc-trust-text strong {
    color:
        var(--gc-text);

    font-size: 17px;
    font-weight: 600;

    line-height: 1.25;
}


.gc-trust-text small {
    margin-top: 7px;

    color:
        var(--gc-muted);

    font-size: 12.5px;

    line-height: 1.4;
}


/* =========================================================
   HERO VISUEL
   ========================================================= */

.gc-hero-visual {
    position: relative;

    min-height: 540px;
}


/* =========================================================
   PORTRAIT
   ========================================================= */

.gc-portrait-wrap {
    position: absolute;

    z-index: 3;

    top: 15px;
    left: 6%;

    width: 73%;
    height: 490px;

    overflow: hidden;

    border-radius:
        46% 45% 39% 47% /
        34% 39% 46% 53%;

    background:
        var(--gc-bg-soft);
}


.gc-portrait {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position:
        center top;
}


/* =========================================================
   FORMES DÉCORATIVES
   ========================================================= */

.gc-hero-shape {
    position: absolute;

    z-index: 1;

    border-radius: 50%;
}


.gc-shape-one {
    top: -48px;
    left: -8px;

    width: 400px;
    height: 400px;

    background:
        rgba(229, 219, 207, 0.38);
}


.gc-shape-two {
    right: -20px;
    bottom: -5px;

    width: 310px;
    height: 310px;

    background:
        rgba(221, 232, 226, 0.47);
}


/* =========================================================
   CITATION
   ========================================================= */

.gc-quote {
    position: absolute;

    z-index: 5;

    top: 86px;
    right: -9px;

    width: 190px;

    color:
        #6E716B;

    transform:
        rotate(-3deg);
}


.gc-quote-mark {
    display: block;

    color:
        var(--gc-green);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 39px;

    line-height: 1;
}


.gc-quote p {
    margin:
        -1px 0 13px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;
    font-style: italic;

    line-height: 1.5;
}


.gc-quote strong {
    display: inline-block;

    padding-bottom: 6px;

    border-bottom:
        1px solid #9B9A93;

    color:
        #77756F;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;
    font-style: italic;
    font-weight: 400;
}


/* =========================================================
   VALEURS
   ========================================================= */

.gc-values {
    position: absolute;

    z-index: 5;

    right: 6px;
    bottom: 41px;

    display: flex;
    flex-direction: column;

    gap: 7px;
}


.gc-values span {
    color:
        var(--gc-green);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2.2px;
}


/* =========================================================
   MENU BURGER
   ========================================================= */

.gc-menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0 !important;

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

    flex-direction: column;

    gap: 5px;

    border: 0 !important;

    border-radius: 50%;

    background:
        transparent !important;

    box-shadow:
        none !important;
}


.gc-menu-toggle span {
    display: block;

    width: 22px;
    height: 1.5px;

    background:
        var(--gc-text);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


.gc-menu-toggle.is-open span:nth-child(1) {
    transform:
        translateY(6.5px)
        rotate(45deg);
}


.gc-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}


.gc-menu-toggle.is-open span:nth-child(3) {
    transform:
        translateY(-6.5px)
        rotate(-45deg);
}


/* =========================================================
   MENU MOBILE
   ========================================================= */

.gc-mobile-menu {
    display: none;
}


/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width: 1150px) {

    .gc-nav {
        gap: 19px;
    }

    .gc-nav a {
        font-size: 12px;
    }

    .gc-header-rdv {
        min-width: 176px;

        padding:
            0 17px;
    }

    .gc-hero-inner {
        gap: 35px;
    }

    .gc-trust-text strong {
        font-size: 15px;
    }

    .gc-trust-text small {
        font-size: 11px;
    }

    .gc-quote {
        display: none;
    }

}


/* =========================================================
   TABLETTE / MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .gc-header {
        position: sticky;

        top: 0;
    }


    .gc-header-inner {
        min-height: 76px;
    }


    .gc-nav,
    .gc-header-rdv {
        display: none;
    }


    .gc-menu-toggle {
        margin-left: auto;

        display: flex;
    }


    .gc-mobile-menu {
        position: absolute;

        top: 76px;
        left: 0;
        right: 0;

        padding:
            18px 5% 27px;

        flex-direction: column;

        background:
            rgba(248, 245, 238, 0.99);

        border-top:
            1px solid var(--gc-border);

        box-shadow:
            0 18px 35px rgba(32, 43, 39, 0.08);
    }


    .gc-mobile-menu.is-open {
        display: flex;
    }


    .gc-mobile-menu > a {
        padding:
            14px 2px;

        border-bottom:
            1px solid var(--gc-border);

        color:
            var(--gc-text) !important;

        font-size: 15px;

        text-decoration: none !important;
    }


    .gc-mobile-menu > a:hover {
        color:
            var(--gc-green) !important;
    }


    .gc-mobile-menu .gc-mobile-rdv {
        margin-top: 18px;

        padding:
            15px 20px;

        border: 0;

        border-radius: 999px;

        background:
            var(--gc-green);

        color:
            var(--gc-white) !important;

        text-align: center;
    }


    .gc-hero-inner {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-top: 65px;
    }


    .gc-hero-content {
        text-align: center;
    }


    .gc-eyebrow {
        text-align: center;
    }


    .gc-hero h1 {
        margin:
            0 auto;
    }


    .gc-hero-intro {
        margin-left: auto;
        margin-right: auto;
    }


    .gc-hero-actions {
        justify-content: center;
    }


    .gc-trust {
        max-width: 620px;

        margin-left: auto;
        margin-right: auto;

        grid-template-columns: 1fr;
    }


    .gc-trust-item {
        min-height: 90px;

        text-align: left;
    }


    .gc-trust-text strong {
        font-size: 18px;
    }


    .gc-trust-text small {
        font-size: 13px;
    }


    .gc-hero-visual {
        width:
            min(100%, 640px);

        min-height: 530px;

        margin:
            15px auto 0;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .gc-header-inner {
        width: 91%;

        min-height: 72px;
    }


    .gc-logo-mark {
        width: 42px;
        height: 42px;

        flex-basis: 42px;

        font-size: 14px;
    }


    .gc-logo-text strong {
        font-size: 17px;
    }


    .gc-logo-text small {
        margin-top: 6px;

        font-size: 6px;

        letter-spacing: 2px;
    }


    .gc-mobile-menu {
        top: 72px;
    }


    .gc-hero-inner {
        width: 90%;

        padding:
            51px 0 62px;
    }


    .gc-eyebrow {
        font-size: 9px;

        letter-spacing: 2.2px;
    }


    .gc-hero h1 {
        font-size:
            clamp(43px, 13vw, 59px);

        line-height: 1.02;

        letter-spacing: -2px;
    }


    .gc-hero-intro {
        margin-top: 24px;

        font-size: 14px;

        line-height: 1.7;
    }


    .gc-hero-actions {
        width: 100%;

        flex-direction: column;
    }


    .gc-btn {
        width: 100%;
    }


    .gc-trust {
        width: 100%;

        max-width: none;

        margin-top: 36px;

        gap: 12px;
    }


    .gc-trust-item {
        min-height: 92px;

        padding:
            16px 15px;

        gap: 15px;

        border-radius: 17px;
    }


    .gc-trust-icon {
        width: 54px;
        height: 54px;

        flex-basis: 54px;
    }


    .gc-trust-icon svg {
        width: 24px;
        height: 24px;
    }


    .gc-trust-text strong {
        font-size: 17px;

        line-height: 1.25;
    }


    .gc-trust-text small {
        margin-top: 5px;

        font-size: 12.5px;
    }


    .gc-hero-visual {
        min-height: 435px;
    }


    .gc-portrait-wrap {
        top: 10px;
        left: 7%;

        width: 86%;
        height: 405px;
    }


    .gc-values {
        display: none;
    }


    .gc-shape-one {
        width: 310px;
        height: 310px;
    }


    .gc-shape-two {
        width: 230px;
        height: 230px;
    }

}

/* =========================================================
   POURQUOI CONSULTER ?
   ========================================================= */

.gc-reasons {
    position: relative;

    padding: 105px 0 115px;

    background: #FFFFFF;

    overflow: hidden;
}


/* FORME DÉCORATIVE */

.gc-reasons::before {
    content: "";

    position: absolute;

    top: -170px;
    right: -180px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        rgba(221, 232, 226, 0.30);

    pointer-events: none;
}


/* =========================================================
   CONTENEUR
   ========================================================= */

.gc-section-inner {
    position: relative;

    z-index: 2;

    width: min(92%, 1280px);

    margin: 0 auto;
}


/* =========================================================
   EN-TÊTE DE SECTION
   ========================================================= */

.gc-section-heading {
    display: grid;

    grid-template-columns:
        minmax(0, .85fr)
        minmax(360px, .65fr);

    justify-content: space-between;

    align-items: end;

    gap: 80px;

    margin-bottom: 55px;
}


.gc-section-kicker {
    margin: 0 0 13px;

    color:
        var(--gc-green);

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

    letter-spacing: 3px;
}


.gc-section-heading h2 {
    margin: 0;

    color:
        var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(42px, 4vw, 58px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;
}


.gc-section-intro {
    max-width: 535px;

    margin: 0;

    color:
        var(--gc-muted);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   GRILLE
   ========================================================= */

.gc-reasons-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   CARTE
   ========================================================= */

.gc-reason-card {
    position: relative;

    min-height: 280px;

    padding: 31px 30px 32px;

    border:
        1px solid rgba(32, 43, 39, 0.075);

    border-radius: 24px;

    background:
        #FBF9F5;

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.gc-reason-card::after {
    content: "";

    position: absolute;

    right: -55px;
    bottom: -75px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background:
        rgba(47, 115, 92, 0.045);

    transition:
        transform .35s ease,
        background .35s ease;
}


.gc-reason-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(47, 115, 92, 0.17);

    background:
        #FFFFFF;

    box-shadow:
        0 18px 45px rgba(32, 43, 39, 0.075);
}


.gc-reason-card:hover::after {
    transform:
        scale(1.25);

    background:
        rgba(47, 115, 92, 0.075);
}


/* =========================================================
   ICÔNE
   ========================================================= */

.gc-reason-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 50%;

    background: #F1ECE3;

    color: var(--gc-green);
}

.gc-reason-icon .material-symbols-rounded {
    font-size: 34px;
    line-height: 1;

    font-variation-settings:
        'FILL' 0,
        'wght' 350,
        'GRAD' 0,
        'opsz' 40;
}


/* =========================================================
   NUMÉRO
   ========================================================= */

.gc-reason-number {
    position: absolute;

    top: 34px;
    right: 30px;

    color:
        rgba(47, 115, 92, 0.32);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;
}


/* =========================================================
   TEXTES
   ========================================================= */

.gc-reason-card h3 {
    position: relative;

    z-index: 2;

    margin:
        0 0 13px;

    color:
        var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
    font-weight: 400;

    line-height: 1.15;

    letter-spacing: -.6px;
}


.gc-reason-card p {
    position: relative;

    z-index: 2;

    max-width: 300px;

    margin: 0;

    color:
        var(--gc-muted);

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width: 900px) {

    .gc-reasons {
        padding:
            85px 0 90px;
    }


    .gc-section-heading {
        grid-template-columns: 1fr;

        gap: 24px;

        margin-bottom: 42px;
    }


    .gc-section-intro {
        max-width: 650px;
    }


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

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .gc-reasons {
        padding:
            70px 0 75px;
    }


    .gc-section-inner {
        width: 90%;
    }


    .gc-section-heading {
        margin-bottom: 32px;
    }


    .gc-section-heading h2 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }


    .gc-section-intro {
        font-size: 14px;

        line-height: 1.7;
    }


    .gc-reasons-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }


    .gc-reason-card {
        min-height: auto;

        padding:
            25px 23px 26px;

        border-radius: 20px;
    }


    .gc-reason-icon {
        width: 58px;
        height: 58px;

        margin-bottom: 24px;
    }


    .gc-reason-icon svg {
        width: 26px;
        height: 26px;
    }


    .gc-reason-number {
        top: 29px;
        right: 24px;
    }


    .gc-reason-card h3 {
        font-size: 23px;
    }


    .gc-reason-card p {
        max-width: none;

        font-size: 13.5px;
    }

}

/* =========================================================
   VOTRE OSTÉOPATHE
   ========================================================= */

.gc-about {
    position: relative;

    padding:
        110px 0 115px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #F8F5EE 0%,
            #FBF9F5 55%,
            #F4EFE6 100%
        );
}


/* =========================================================
   DÉCOR
   ========================================================= */

.gc-about::before {
    content: "";

    position: absolute;

    left: -210px;
    bottom: -280px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(221, 232, 226, 0.33);

    pointer-events: none;
}


.gc-about::after {
    content: "";

    position: absolute;

    right: -170px;
    top: -230px;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        rgba(230, 221, 209, 0.32);

    pointer-events: none;
}


/* =========================================================
   CONTENEUR
   ========================================================= */

.gc-about-inner {
    position: relative;

    z-index: 2;

    width:
        min(92%, 1280px);

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        0.85fr
        1.25fr
        0.95fr;

    align-items: center;

    gap: 52px;
}


/* =========================================================
   PHOTO
   ========================================================= */

.gc-about-photo-column {
    position: relative;

    min-height: 470px;
}


.gc-about-photo-wrap {
    position: relative;

    width: 100%;
    height: 440px;

    overflow: hidden;

    border-radius:
        27px;

    background:
        #EDE7DD;

    box-shadow:
        0 20px 50px rgba(32, 43, 39, 0.08);
}


.gc-about-photo {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position:
        center top;
}


/* =========================================================
   CITATION SUR PHOTO
   ========================================================= */

.gc-about-quote {
    position: absolute;

    z-index: 4;

    left: 20px;
    right: 20px;
    bottom: 4px;

    padding:
        23px 24px 22px;

    border:
        1px solid rgba(32, 43, 39, 0.08);

    border-radius:
        18px;

    background:
        rgba(248, 245, 238, 0.94);

    box-shadow:
        0 12px 30px rgba(32, 43, 39, 0.08);

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);
}


.gc-about-quote-mark {
    display: block;

    height: 24px;

    color:
        var(--gc-green);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 38px;

    line-height: .75;
}


.gc-about-quote p {
    margin: 5px 0 0;

    color:
        #555D58;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
    font-style: italic;

    line-height: 1.5;
}


/* =========================================================
   CONTENU
   ========================================================= */

.gc-about-content {
    align-self: center;
}


/* PETIT TITRE */

.gc-about-heading-line {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom:
        13px;
}


.gc-about-kicker {
    color:
        var(--gc-green);

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        3px;
}


.gc-about-line {
    width: 44px;
    height: 1px;

    background:
        rgba(47, 115, 92, 0.45);
}


/* =========================================================
   H2
   ========================================================= */

.gc-about-content h2 {
    margin: 0;

    color:
        var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(42px, 4vw, 58px);

    font-weight:
        400;

    line-height:
        1;

    letter-spacing:
        -2px;
}


/* =========================================================
   SOUS-TITRE
   ========================================================= */

.gc-about-content h3 {
    margin:
        20px 0 18px;

    color:
        var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        19px;

    font-weight:
        600;

    line-height:
        1.4;
}


/* =========================================================
   PARAGRAPHES
   ========================================================= */

.gc-about-content p {
    max-width:
        610px;

    margin:
        0 0 16px;

    color:
        var(--gc-muted);

    font-size:
        15px;

    line-height:
        1.75;
}


/* =========================================================
   BOUTON
   ========================================================= */

.gc-about-btn {
    min-height:
        51px;

    margin-top:
        15px;

    padding:
        0 22px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        14px;

    border-radius:
        999px;

    background:
        var(--gc-green);

    color:
        var(--gc-white) !important;

    text-decoration:
        none !important;

    font-size:
        13px;

    font-weight:
        600;

    box-shadow:
        0 10px 26px rgba(47, 115, 92, 0.18);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.gc-about-btn svg {
    width:
        17px;

    height:
        17px;
}


.gc-about-btn:hover {
    background:
        var(--gc-green-dark);

    color:
        var(--gc-white) !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 14px 30px rgba(47, 115, 92, 0.23);
}


/* =========================================================
   CARTE APPROCHE
   ========================================================= */

.gc-about-values {
    position: relative;

    padding:
        38px 34px 36px;

    border:
        1px solid rgba(32, 43, 39, 0.075);

    border-radius:
        25px;

    background:
        rgba(255, 255, 255, 0.55);

    box-shadow:
        0 15px 40px rgba(32, 43, 39, 0.045);
}


/* =========================================================
   ICÔNE FEUILLE
   ========================================================= */

.gc-about-values-icon {
    width:
        54px;

    height:
        54px;

    margin-bottom:
        22px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        rgba(221, 232, 226, 0.6);

    color:
        var(--gc-green);
}


.gc-about-values-icon svg {
    width:
        28px;

    height:
        28px;

    stroke-width:
        1.55;
}


/* =========================================================
   TITRE CARTE
   ========================================================= */

.gc-about-values h3 {
    margin:
        0;

    color:
        var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        25px;

    font-weight:
        400;

    line-height:
        1.25;

    letter-spacing:
        -0.7px;
}


.gc-about-values h3 em {
    color:
        var(--gc-green);

    font-weight:
        400;
}


/* =========================================================
   SÉPARATEUR
   ========================================================= */

.gc-about-values-separator {
    width:
        100%;

    height:
        1px;

    margin:
        25px 0;

    background:
        rgba(32, 43, 39, 0.08);
}


/* =========================================================
   LISTE
   ========================================================= */

.gc-about-values ul {
    margin:
        0;

    padding:
        0;

    list-style:
        none;
}


.gc-about-values li {
    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    margin-bottom:
        16px;

    color:
        #555D58;

    font-size:
        14px;

    line-height:
        1.4;
}


.gc-about-values li:last-child {
    margin-bottom:
        0;
}


/* =========================================================
   CHECK
   ========================================================= */

.gc-check {
    width:
        25px;

    height:
        25px;

    flex:
        0 0 25px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        var(--gc-green);

    color:
        var(--gc-white);
}


.gc-check svg {
    width:
        14px;

    height:
        14px;

    stroke-width:
        2;
}


/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width: 1050px) {

    .gc-about-inner {
        grid-template-columns:
            .9fr 1.1fr;

        gap:
            45px;
    }


    .gc-about-values {
        grid-column:
            1 / -1;

        display:
            grid;

        grid-template-columns:
            auto 1fr 1.4fr;

        align-items:
            center;

        gap:
            25px;
    }


    .gc-about-values-icon {
        margin:
            0;
    }


    .gc-about-values-separator {
        display:
            none;
    }


    .gc-about-values ul {
        display:
            grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap:
            13px 24px;
    }


    .gc-about-values li {
        margin:
            0;
    }

}


/* =========================================================
   MOBILE / TABLETTE
   ========================================================= */

@media (max-width: 760px) {

    .gc-about {
        padding:
            80px 0 85px;
    }


    .gc-about-inner {
        width:
            90%;

        grid-template-columns:
            1fr;

        gap:
            42px;
    }


    .gc-about-photo-column {
        width:
            min(100%, 520px);

        min-height:
            470px;

        margin:
            0 auto;
    }


    .gc-about-content {
        text-align:
            left;
    }


    .gc-about-values {
        grid-column:
            auto;

        display:
            block;
    }


    .gc-about-values-icon {
        margin-bottom:
            22px;
    }


    .gc-about-values-separator {
        display:
            block;
    }


    .gc-about-values ul {
        display:
            block;
    }


    .gc-about-values li {
        margin-bottom:
            15px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 540px) {

    .gc-about {
        padding:
            70px 0 75px;
    }


    .gc-about-photo-column {
        min-height:
            425px;
    }


    .gc-about-photo-wrap {
        height:
            390px;

        border-radius:
            22px;
    }


    .gc-about-quote {
        left:
            13px;

        right:
            13px;

        padding:
            19px 19px 18px;
    }


    .gc-about-quote p {
        font-size:
            14px;
    }


    .gc-about-content h2 {
        font-size:
            42px;

        letter-spacing:
            -1.5px;
    }


    .gc-about-content h3 {
        font-size:
            18px;
    }


    .gc-about-content p {
        font-size:
            14px;

        line-height:
            1.7;
    }


    .gc-about-btn {
        width:
            100%;

        margin-top:
            12px;
    }


    .gc-about-values {
        padding:
            29px 24px 28px;

        border-radius:
            21px;
    }


    .gc-about-values h3 {
        font-size:
            23px;
    }

}

/* =========================================================
   DÉROULEMENT D'UNE SÉANCE + CABINET
   ========================================================= */

.gc-session-cabinet {
    position: relative;

    padding: 110px 0 115px;

    background: #FFFFFF;

    overflow: hidden;
}


.gc-session-cabinet-inner {
    width: min(92%, 1280px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, .92fr);

    gap: 70px;

    align-items: start;
}


/* =========================================================
   TITRES COMMUNS
   ========================================================= */

.gc-session-heading h2,
.gc-cabinet-heading h2 {
    margin: 0;

    color: var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(40px, 3.5vw, 54px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -1.8px;
}


.gc-session-heading > p:last-child {
    max-width: 540px;

    margin:
        18px 0 0;

    color: var(--gc-muted);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   SESSION
   ========================================================= */

.gc-session {
    position: relative;
}


/* =========================================================
   ÉTAPES
   ========================================================= */

.gc-session-steps {
    position: relative;

    margin-top: 55px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   LIGNE HORIZONTALE
   ========================================================= */

.gc-session-line {
    position: absolute;

    top: 25px;
    left: 16%;

    width: 68%;
    height: 1px;

    background:
        rgba(47, 115, 92, 0.22);

    z-index: 0;
}


/* =========================================================
   ÉTAPE
   ========================================================= */

.gc-session-step {
    position: relative;

    z-index: 2;

    text-align: center;
}


/* =========================================================
   NUMÉRO
   ========================================================= */

.gc-step-number {
    width: 52px;
    height: 52px;

    margin:
        0 auto 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #F1ECE3;

    border:
        1px solid rgba(47, 115, 92, 0.13);

    color:
        var(--gc-green);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    box-shadow:
        0 0 0 9px #FFFFFF;
}


/* TROISIÈME PLUS FONCÉ */

.gc-session-step:nth-of-type(4) .gc-step-number {
    background:
        var(--gc-green);

    color:
        var(--gc-white);

    border-color:
        var(--gc-green);
}


/* =========================================================
   ICÔNE
   ========================================================= */

.gc-step-icon {
    width: 58px;
    height: 58px;

    margin:
        0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #FAF7F1;

    color:
        var(--gc-text);

    border:
        1px solid rgba(32, 43, 39, 0.075);
}


.gc-step-icon svg {
    width: 27px;
    height: 27px;

    stroke-width: 1.5;
}


/* =========================================================
   TEXTES
   ========================================================= */

.gc-session-step h3 {
    margin:
        0 0 11px;

    color:
        var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;

    font-weight: 400;
}


.gc-session-step p {
    max-width: 210px;

    margin:
        0 auto;

    color:
        var(--gc-muted);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   CABINET
   ========================================================= */

.gc-cabinet {
    position: relative;
}


/* =========================================================
   HEADER CABINET
   ========================================================= */

.gc-cabinet-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;
}


.gc-cabinet-heading h2 {
    max-width: 470px;
}


/* =========================================================
   LIEN CABINET
   ========================================================= */

.gc-cabinet-link {
    margin-bottom: 7px;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color:
        var(--gc-green) !important;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none !important;

    border-bottom:
        1px solid rgba(47, 115, 92, 0.45);

    padding-bottom: 3px;
}


.gc-cabinet-link svg {
    width: 15px;
    height: 15px;
}


.gc-cabinet-link:hover {
    color:
        var(--gc-green-dark) !important;
}


/* =========================================================
   INTRO CABINET
   ========================================================= */

.gc-cabinet-intro {
    max-width: 520px;

    margin:
        18px 0 32px;

    color:
        var(--gc-muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   GALERIE
   ========================================================= */

.gc-cabinet-gallery {
    display: grid;

    grid-template-columns:
        1.12fr .88fr;

    gap: 15px;

    align-items: stretch;
}


/* =========================================================
   PHOTO
   ========================================================= */

.gc-cabinet-photo {
    position: relative;

    overflow: hidden;

    border-radius: 22px;

    background:
        #EFEAE2;

    min-height: 360px;
}


.gc-cabinet-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s ease;
}


.gc-cabinet-photo:hover img {
    transform:
        scale(1.035);
}


/* =========================================================
   GRANDE PHOTO
   ========================================================= */

.gc-cabinet-photo-large {
    min-height: 390px;
}


/* =========================================================
   PETITE PHOTO
   ========================================================= */

.gc-cabinet-photo-small {
    min-height: 390px;
}


/* =========================================================
   CAPTION
   ========================================================= */

.gc-cabinet-photo-caption {
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 18px;

    padding:
        14px 16px;

    border-radius: 15px;

    background:
        rgba(248, 245, 238, 0.91);

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);

    box-shadow:
        0 10px 25px rgba(32, 43, 39, 0.08);
}


.gc-cabinet-photo-caption span {
    display: block;

    margin-bottom: 3px;

    color:
        var(--gc-green);

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

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.gc-cabinet-photo-caption strong {
    color:
        var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-weight: 400;
}


/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width: 1000px) {

    .gc-session-cabinet-inner {
        grid-template-columns: 1fr;

        gap: 85px;
    }


    .gc-session-step p {
        max-width: 260px;
    }


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

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .gc-session-cabinet {
        padding:
            80px 0 85px;
    }


    .gc-session-cabinet-inner {
        width: 90%;

        gap: 70px;
    }


    .gc-session-heading h2,
    .gc-cabinet-heading h2 {
        font-size: 41px;

        letter-spacing: -1.4px;
    }


    /* ÉTAPES EN COLONNE */

    .gc-session-steps {
        margin-top: 40px;

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .gc-session-line {
        display: none;
    }


    .gc-session-step {
        padding:
            23px 22px;

        display: grid;

        grid-template-columns:
            auto 1fr;

        grid-template-areas:
            "number title"
            "icon text";

        column-gap: 17px;

        align-items: center;

        text-align: left;

        border:
            1px solid rgba(32, 43, 39, 0.07);

        border-radius: 19px;

        background:
            #FBF9F5;
    }


    .gc-step-number {
        grid-area: number;

        width: 44px;
        height: 44px;

        margin: 0;

        box-shadow: none;
    }


    .gc-step-icon {
        grid-area: icon;

        width: 44px;
        height: 44px;

        margin:
            13px 0 0;
    }


    .gc-step-icon svg {
        width: 22px;
        height: 22px;
    }


    .gc-session-step h3 {
        grid-area: title;

        margin: 0;

        font-size: 20px;
    }


    .gc-session-step p {
        grid-area: text;

        max-width: none;

        margin:
            13px 0 0;

        font-size: 13px;
    }


    /* CABINET */

    .gc-cabinet-heading {
        align-items: flex-start;

        flex-direction: column;
    }


    .gc-cabinet-link {
        margin: 0;
    }


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


    .gc-cabinet-photo,
    .gc-cabinet-photo-large,
    .gc-cabinet-photo-small {
        min-height: 330px;
    }

}

/* =========================================================
   TARIFS + AVIS + FAQ
========================================================= */

.gc-info {
    position: relative;

    padding: 110px 0 115px;

    background: #F8F5EE;

    overflow: hidden;
}


.gc-info::before {
    content: "";

    position: absolute;

    left: -180px;
    top: -210px;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        rgba(221, 232, 226, 0.28);

    pointer-events: none;
}


.gc-info-inner {
    position: relative;

    z-index: 2;

    width: min(92%, 1280px);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(0, .95fr)
        minmax(320px, .82fr);

    gap: 45px;

    align-items: start;
}


/* =========================================================
   TITRES
========================================================= */

.gc-info-heading {
    margin-bottom: 32px;
}


.gc-info-heading h2 {
    margin: 0;

    color: var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(36px, 3vw, 49px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -1.5px;
}


/* =========================================================
   TARIFS
========================================================= */

.gc-price-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;
}


.gc-price-card {
    min-height: 255px;

    padding: 27px 25px 26px;

    border:
        1px solid rgba(32, 43, 39, 0.08);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.66);

    box-shadow:
        0 12px 35px rgba(32, 43, 39, 0.04);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.gc-price-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(47, 115, 92, 0.18);

    box-shadow:
        0 18px 40px rgba(32, 43, 39, 0.07);
}


.gc-price-card-featured {
    background:
        rgba(221, 232, 226, 0.48);
}


.gc-price-top {
    display: flex;

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

    gap: 20px;

    margin-bottom: 27px;
}


.gc-price-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #F3EFE7;

    color:
        var(--gc-green);
}


.gc-price-icon svg {
    width: 25px;
    height: 25px;
}


.gc-price {
    color:
        var(--gc-green);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 36px;

    line-height: 1;
}


.gc-price-card h3 {
    margin: 0;

    color:
        var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;

    font-weight: 400;

    line-height: 1.25;
}


.gc-price-line {
    width: 42px;
    height: 1px;

    margin: 18px 0;

    background:
        rgba(47, 115, 92, 0.34);
}


.gc-price-card p {
    margin: 0;

    color:
        var(--gc-muted);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   MUTUELLE
========================================================= */

.gc-mutuelle {
    margin-top: 15px;

    padding: 18px 20px;

    display: flex;
    align-items: center;

    gap: 15px;

    border-radius: 18px;

    background:
        rgba(221, 232, 226, 0.48);

    border:
        1px solid rgba(47, 115, 92, 0.09);
}


.gc-mutuelle-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.7);

    color:
        var(--gc-green);
}


.gc-mutuelle-icon svg {
    width: 21px;
    height: 21px;
}


.gc-mutuelle p {
    margin: 0;

    color:
        #5E6862;

    font-size: 11.5px;

    line-height: 1.55;
}


/* =========================================================
   AVIS
========================================================= */

.gc-review-list {
    display: grid;

    gap: 15px;
}


.gc-review-card {
    position: relative;

    padding: 27px 26px;

    border:
        1px solid rgba(32, 43, 39, 0.075);

    border-radius: 22px;

    background: #FFFFFF;

    box-shadow:
        0 12px 35px rgba(32, 43, 39, 0.045);
}


.gc-review-card::before {
    content: "“";

    position: absolute;

    top: 15px;
    right: 21px;

    color:
        rgba(47, 115, 92, 0.11);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 70px;

    line-height: 1;
}


.gc-review-stars {
    margin-bottom: 17px;

    color:
        var(--gc-green);

    font-size: 13px;

    letter-spacing: 3px;
}


.gc-review-card blockquote {
    position: relative;

    z-index: 2;

    margin: 0;

    padding: 0;

    border: 0;

    color:
        #555D58;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;

    font-style: italic;

    line-height: 1.65;
}


.gc-review-footer {
    margin-top: 21px;

    padding-top: 17px;

    border-top:
        1px solid rgba(32, 43, 39, 0.07);

    display: flex;

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

    gap: 20px;
}


.gc-review-footer strong {
    color:
        var(--gc-text);

    font-size: 12px;
    font-weight: 600;
}


.gc-review-footer span {
    color:
        var(--gc-muted);

    font-size: 10px;
}


/* =========================================================
   FAQ
========================================================= */

.gc-faq-intro {
    margin:
        17px 0 0;

    color:
        var(--gc-muted);

    font-size: 13.5px;

    line-height: 1.65;
}


.gc-faq-list {
    border-top:
        1px solid rgba(32, 43, 39, 0.12);
}


.gc-faq-item {
    border-bottom:
        1px solid rgba(32, 43, 39, 0.12);
}


.gc-faq-item summary {
    position: relative;

    min-height: 65px;

    padding:
        20px 42px 20px 0;

    display: flex;
    align-items: center;

    color:
        var(--gc-text);

    font-size: 13.5px;
    font-weight: 500;

    line-height: 1.45;

    cursor: pointer;

    list-style: none;
}


.gc-faq-item summary::-webkit-details-marker {
    display: none;
}


.gc-faq-plus {
    position: absolute;

    top: 50%;
    right: 4px;

    width: 20px;
    height: 20px;

    transform:
        translateY(-50%);
}


.gc-faq-plus::before,
.gc-faq-plus::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    background:
        var(--gc-green);

    transform:
        translate(-50%, -50%);

    transition:
        transform .25s ease,
        opacity .25s ease;
}


.gc-faq-plus::before {
    width: 14px;
    height: 1px;
}


.gc-faq-plus::after {
    width: 1px;
    height: 14px;
}


.gc-faq-item[open] .gc-faq-plus::after {
    opacity: 0;

    transform:
        translate(-50%, -50%)
        rotate(90deg);
}


.gc-faq-answer {
    padding:
        0 35px 20px 0;
}


.gc-faq-answer p {
    margin: 0;

    color:
        var(--gc-muted);

    font-size: 12.5px;

    line-height: 1.65;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1100px) {

    .gc-info-inner {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 55px 40px;
    }


    .gc-faq {
        grid-column:
            1 / -1;

        display: grid;

        grid-template-columns:
            .7fr 1.3fr;

        gap: 50px;
    }


    .gc-faq .gc-info-heading {
        margin-bottom: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .gc-info {
        padding:
            80px 0 85px;
    }


    .gc-info-inner {
        width: 90%;

        grid-template-columns:
            1fr;

        gap: 65px;
    }


    .gc-info-heading h2 {
        font-size: 40px;

        letter-spacing: -1.3px;
    }


    .gc-price-grid {
        grid-template-columns:
            1fr;
    }


    .gc-price-card {
        min-height: auto;
    }


    .gc-faq {
        grid-column: auto;

        display: block;
    }


    .gc-faq .gc-info-heading {
        margin-bottom: 28px;
    }

}
/* =========================================================
   CONTACT
========================================================= */

.gc-contact {
    position: relative;

    padding:
        110px 0 115px;

    background:
        #FFFFFF;

    overflow: hidden;
}


.gc-contact::before {
    content: "";

    position: absolute;

    right: -250px;
    bottom: -280px;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    background:
        rgba(221, 232, 226, 0.27);

    pointer-events: none;
}


.gc-contact-inner {
    position: relative;

    z-index: 2;

    width:
        min(92%, 1280px);

    margin:
        0 auto;
}


/* =========================================================
   HEADER CONTACT
========================================================= */

.gc-contact-header {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(350px, .55fr);

    align-items: end;

    justify-content: space-between;

    gap: 70px;

    margin-bottom: 52px;
}


.gc-contact-header h2 {
    margin: 0;

    color:
        var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(43px, 4vw, 58px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -2px;
}


.gc-contact-header > p {
    max-width: 500px;

    margin: 0;

    color:
        var(--gc-muted);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   GRILLE PRINCIPALE
========================================================= */

.gc-contact-grid {
    display: grid;

    grid-template-columns:
        .8fr
        1.12fr
        .9fr;

    gap: 20px;

    align-items: stretch;
}


/* =========================================================
   COORDONNÉES
========================================================= */

.gc-contact-details {
    padding:
        32px 30px;

    border:
        1px solid rgba(32, 43, 39, 0.07);

    border-radius:
        25px;

    background:
        #FBF9F5;
}


.gc-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding:
        21px 0;

    border-bottom:
        1px solid rgba(32, 43, 39, 0.075);
}


.gc-contact-item:first-child {
    padding-top: 0;
}


.gc-contact-item:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}


/* ICÔNE */

.gc-contact-icon {
    width: 48px;
    height: 48px;

    flex:
        0 0 48px;

    display: flex;

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

    border-radius: 50%;

    background:
        #EFE9DF;

    color:
        var(--gc-green);
}


.gc-contact-icon svg {
    width: 23px;
    height: 23px;

    stroke-width: 1.55;
}


/* TEXTE */

.gc-contact-item > div:last-child {
    min-width: 0;
}


.gc-contact-item span {
    display: block;

    margin-bottom: 5px;

    color:
        var(--gc-muted);

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

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.gc-contact-item strong {
    display: block;

    margin-bottom: 5px;

    color:
        var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-weight: 400;
}


.gc-contact-item p {
    margin: 0;

    color:
        var(--gc-muted);

    font-size: 13px;

    line-height: 1.55;
}


.gc-contact-item a {
    color:
        var(--gc-text) !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    text-decoration: none !important;

    word-break: break-word;
}


.gc-contact-item a:hover {
    color:
        var(--gc-green) !important;
}


/* =========================================================
   CARTE
========================================================= */

.gc-map {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    border-radius: 25px;

    background:
        #EDEAE3;

    border:
        1px solid rgba(32, 43, 39, 0.07);
}


.gc-map iframe {
    width: 100%;
    height: 100%;

    min-height: 500px;

    display: block;

    border: 0;

    filter:
        saturate(.55)
        contrast(.93);
}


/* CARTE FLOTTANTE */

.gc-map-card {
    position: absolute;

    left: 20px;
    bottom: 20px;

    padding:
        17px 19px;

    border-radius: 16px;

    background:
        rgba(248, 245, 238, .94);

    backdrop-filter: blur(9px);

    -webkit-backdrop-filter: blur(9px);

    box-shadow:
        0 12px 32px rgba(32, 43, 39, .10);
}


.gc-map-card span {
    display: block;

    margin-bottom: 5px;

    color:
        var(--gc-green);

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

    letter-spacing: 2px;
}


.gc-map-card strong {
    display: block;

    color:
        var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-weight: 400;
}


.gc-map-card p {
    margin:
        6px 0 0;

    color:
        var(--gc-muted);

    font-size: 11px;

    line-height: 1.45;
}


/* =========================================================
   CTA CONTACT
========================================================= */

.gc-contact-cta {
    padding:
        38px 32px 34px;

    display: flex;

    flex-direction: column;

    border:
        1px solid rgba(47, 115, 92, .08);

    border-radius: 25px;

    background:
        #E8EFEA;
}


/* ICÔNE */

.gc-contact-cta-icon {
    width: 57px;
    height: 57px;

    margin-bottom: 27px;

    display: flex;

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

    border-radius: 50%;

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

    color:
        var(--gc-green);
}


.gc-contact-cta-icon svg {
    width: 29px;
    height: 29px;
}


/* KICKER */

.gc-contact-cta-kicker {
    margin:
        0 0 12px;

    color:
        var(--gc-green);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.3px;
}


/* TITRE */

.gc-contact-cta h3 {
    margin: 0;

    color:
        var(--gc-text);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        31px;

    font-weight: 400;

    line-height: 1.12;

    letter-spacing: -1px;
}


.gc-contact-cta h3 em {
    color:
        var(--gc-green);

    font-weight: 400;
}


/* TEXTE */

.gc-contact-cta-text {
    margin:
        22px 0 29px;

    color:
        #64706A;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   BOUTON RDV
========================================================= */

.gc-contact-rdv {
    width: 100%;

    min-height: 56px;

    padding:
        0 19px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 999px;

    background:
        var(--gc-green);

    color:
        var(--gc-white) !important;

    text-decoration:
        none !important;

    font-size: 13px;

    font-weight: 600;

    box-shadow:
        0 10px 25px rgba(47, 115, 92, .18);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.gc-contact-rdv svg {
    width: 18px;
    height: 18px;
}


.gc-contact-rdv .gc-contact-rdv-arrow {
    width: 16px;

    margin-left: auto;
}


.gc-contact-rdv:hover {
    background:
        var(--gc-green-dark);

    color:
        var(--gc-white) !important;

    transform:
        translateY(-2px);

    box-shadow:
        0 14px 30px rgba(47, 115, 92, .23);
}


/* =========================================================
   BOUTON APPEL
========================================================= */

.gc-contact-call {
    width: 100%;

    min-height: 53px;

    margin-top: 11px;

    padding:
        0 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    border:
        1px solid rgba(47, 115, 92, .23);

    border-radius: 999px;

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

    color:
        var(--gc-text) !important;

    text-decoration:
        none !important;

    font-size: 12px;

    font-weight: 500;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.gc-contact-call svg {
    width: 17px;
    height: 17px;

    color:
        var(--gc-green);
}


.gc-contact-call:hover {
    background:
        rgba(255, 255, 255, .72);

    border-color:
        var(--gc-green);

    color:
        var(--gc-green) !important;
}


/* =========================================================
   FOOTER
========================================================= */

.gc-footer {
    position: relative;

    background:
        #202B27;

    color:
        rgba(255, 255, 255, .72);
}


/* =========================================================
   FOOTER PRINCIPAL
========================================================= */

.gc-footer-inner {
    width:
        min(92%, 1280px);

    margin:
        0 auto;

    padding:
        70px 0 62px;

    display: grid;

    grid-template-columns:
        1.35fr
        .7fr
        1fr
        .9fr;

    gap:
        65px;
}


/* =========================================================
   LOGO FOOTER
========================================================= */

.gc-footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    color:
        #FFFFFF !important;

    text-decoration:
        none !important;
}


.gc-footer .gc-logo-mark {
    border-color:
        rgba(255, 255, 255, .75);

    color:
        #FFFFFF;
}


.gc-footer .gc-logo-text strong {
    color:
        #FFFFFF;
}


.gc-footer .gc-logo-text small {
    color:
        #A9C6B9;
}


.gc-footer-brand > p {
    max-width: 270px;

    margin:
        24px 0 0;

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

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   COLONNES FOOTER
========================================================= */

.gc-footer-nav,
.gc-footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.gc-footer-nav > span,
.gc-footer-contact > span {
    margin-bottom: 19px;

    color:
        #A9C6B9;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.gc-footer-nav a,
.gc-footer-contact a {
    margin-bottom: 10px;

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

    font-size: 12px;

    line-height: 1.5;

    text-decoration:
        none !important;
}


.gc-footer-nav a:hover,
.gc-footer-contact a:hover {
    color:
        #FFFFFF !important;
}


.gc-footer-contact p {
    margin:
        0 0 15px;

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

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   SIGNATURE FOOTER
========================================================= */

.gc-footer-signature {
    align-self: center;
}


.gc-footer-signature p {
    margin: 0;

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

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;

    line-height: 1.45;
}


.gc-footer-signature p em {
    color:
        #A9C6B9;

    font-weight: 400;
}


.gc-footer-signature > span {
    display: block;

    width: 45px;
    height: 1px;

    margin-top: 18px;

    background:
        rgba(169, 198, 185, .55);
}


/* =========================================================
   BAS FOOTER
========================================================= */

.gc-footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, .08);
}


.gc-footer-bottom-inner {
    position: relative;

    width:
        min(92%, 1280px);

    min-height: 70px;

    margin:
        0 auto;

    display: flex;

    align-items: center;

    gap: 30px;
}


.gc-footer-bottom p {
    margin: 0;

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

    font-size: 10px;
}


/* LÉGAL */

.gc-footer-legal {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-left: auto;
}


.gc-footer-legal a {
    color:
        rgba(255, 255, 255, .45) !important;

    font-size: 10px;

    text-decoration:
        none !important;
}


.gc-footer-legal a:hover {
    color:
        #FFFFFF !important;
}


/* CRÉDIT */

.gc-footer-credit a {
    color:
        #A9C6B9 !important;

    text-decoration:
        none !important;
}


/* =========================================================
   RETOUR HAUT
========================================================= */

.gc-back-top {
    width: 39px;
    height: 39px;

    flex:
        0 0 39px;

    margin-left:
        8px;

    display: flex;

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

    border:
        1px solid rgba(255, 255, 255, .14);

    border-radius: 50%;

    color:
        #FFFFFF !important;

    text-decoration:
        none !important;

    transition:
        background .25s ease,
        border-color .25s ease;
}


.gc-back-top svg {
    width: 17px;
    height: 17px;
}


.gc-back-top:hover {
    background:
        var(--gc-green);

    border-color:
        var(--gc-green);
}


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

@media (max-width: 1050px) {

    .gc-contact-grid {
        grid-template-columns:
            .8fr 1.2fr;
    }


    .gc-contact-cta {
        grid-column:
            1 / -1;

        display: grid;

        grid-template-columns:
            auto 1fr 1fr;

        gap:
            20px 30px;

        align-items: center;
    }


    .gc-contact-cta-icon {
        grid-row:
            1 / 4;

        margin: 0;
    }


    .gc-contact-cta-kicker {
        margin:
            0 0 5px;
    }


    .gc-contact-cta h3 {
        font-size: 28px;
    }


    .gc-contact-cta-text {
        margin: 0;
    }


    .gc-contact-rdv,
    .gc-contact-call {
        margin: 0;
    }


    .gc-footer-inner {
        grid-template-columns:
            repeat(2, 1fr);

        gap:
            50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .gc-contact {
        padding:
            80px 0 85px;
    }


    .gc-contact-inner {
        width: 90%;
    }


    .gc-contact-header {
        grid-template-columns:
            1fr;

        gap: 21px;

        margin-bottom: 38px;
    }


    .gc-contact-header h2 {
        font-size: 42px;

        letter-spacing: -1.4px;
    }


    .gc-contact-header > p {
        font-size: 14px;
    }


    .gc-contact-grid {
        grid-template-columns:
            1fr;

        gap: 15px;
    }


    .gc-contact-details {
        padding:
            27px 23px;
    }


    .gc-map {
        min-height: 390px;
    }


    .gc-map iframe {
        min-height: 390px;
    }


    .gc-contact-cta {
        grid-column: auto;

        display: flex;

        padding:
            31px 25px;

        gap: 0;
    }


    .gc-contact-cta-icon {
        margin-bottom: 24px;
    }


    .gc-contact-cta-kicker {
        margin-bottom: 11px;
    }


    .gc-contact-cta h3 {
        font-size: 29px;
    }


    .gc-contact-cta-text {
        margin:
            19px 0 25px;
    }


    .gc-contact-call {
        margin-top: 11px;
    }


    /* FOOTER */

    .gc-footer-inner {
        width: 90%;

        padding:
            55px 0 50px;

        grid-template-columns:
            1fr;

        gap:
            38px;
    }


    .gc-footer-bottom-inner {
        width: 90%;

        padding:
            22px 0;

        flex-direction: column;

        align-items: flex-start;

        gap:
            12px;
    }


    .gc-footer-legal {
        margin-left: 0;

        flex-wrap: wrap;
    }


    .gc-back-top {
        position: absolute;

        right: 0;
        bottom: 20px;
    }

}

/* EMAIL CONTACT — rester sur une seule ligne */
.gc-contact-item a[href^="mailto:"] {
    font-size: 14px;
    white-space: nowrap;
    letter-spacing: -0.2px;
}

/* =========================================================
   HEADER FIXE DESKTOP
========================================================= */

@media (min-width: 901px) {

    .gc-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        z-index: 9999;

        width: 100%;

        background: rgba(248, 245, 238, 0.96);

        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        box-shadow: 0 8px 25px rgba(32, 43, 39, 0.05);
    }

    .gc-hero {
        padding-top: 92px;
    }

}
