/**
 * Coaching - Fidèle à la maquette Figma
 *
 * PALETTE:
 * - Beige clair:   #e8e5d6
 * - Bordeaux:      #4a1418
 * - Texte sombre:  #3e2a2c
 * - Kaki/vert:     #657763
 * - Vert feuille:  #536550
 * - Vert kaki bg:  #76806d
 * - Rouge/saumon:  #b6464a
 * - Orange:        #d98546
 * - Magenta:       #80194e
 * - Corail:        #cc8a6e
 */

/* =============================================
   HERO — 2 images côte à côte
   ============================================= */
.co-hero {
    margin-top: 80px;
}

.co-hero__image-wrapper {
    width: 100%;
    max-height: 50vh;
    overflow: hidden;
}

.co-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* =============================================
   INTRO — Comment savoir si j'ai besoin
   ============================================= */
.co-intro {
    background-color: #fff;
    padding: 72px 0 48px;
}

.co-intro__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.co-intro__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 46px;
    font-weight: 400;
    color: #3e2a2c;
    line-height: 1.25;
    margin: 0 0 40px 0;
    text-align: center;
}

.co-intro__card {
    background-color: #657763;
    border-radius: 12px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 56px;
    margin-bottom: 56px;
}

.co-intro__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.co-intro__item {
    font-size: 18px;
    line-height: 1.75;
    color: #fff;
    margin: 0;
}

.co-intro__item strong {
    font-weight: 600;
    color: #fff;
}

.co-intro__conclusion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 48px 24px;
}

.co-intro__corner {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.co-intro__conclusion-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    font-style: normal;
    color: #3e2a2c;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.4;
}

.co-intro__conclusion-text strong {
    color: #d98546;
    font-weight: 600;
}

/* =============================================
   DEFINITION — Qu'est-ce que le coaching
   ============================================= */
.co-definition {
    background-color: #d98546;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.co-definition__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.co-definition__logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.co-definition__logo img {
    width: 180px;
    height: auto;
    opacity: 0.85;
}

.co-definition__text-col {
    /* contient titre + body */
}

.co-definition__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 46px;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    margin: 0 0 28px 0;
}

.co-definition__body {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
}

.co-definition__body p {
    margin: 0 0 16px 0;
}

.co-definition__body strong {
    font-weight: 700;
}

/* =============================================
   DEROULEMENT — Comment se déroule
   ============================================= */
.co-deroulement {
    background-color: #f5f3ec;
    padding: 72px 0;
}

.co-deroulement__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.co-deroulement__image-col {
    display: flex;
    justify-content: center;
}

.co-deroulement__image {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    object-fit: cover;
}

.co-deroulement__text-col {
    font-size: 18px;
    line-height: 1.8;
    color: #3e2a2c;
}

.co-deroulement__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    font-style: normal;
    color: #b6464a;
    margin: 0 0 24px 0;
    line-height: 1.25;
}

.co-deroulement__text-col p {
    margin: 0 0 16px 0;
}

.co-deroulement__text-col strong {
    font-weight: 600;
}

/* =============================================
   ÉTAPES — Les étapes de ce processus
   ============================================= */
.co-etapes {
    background-color: #fff;
}

.co-etapes__header {
    padding: 64px 24px 48px;
    text-align: center;
}

.co-etapes__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    font-style: normal;
    color: #b6464a;
    margin: 0;
}

.co-etapes__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.co-etapes__card {
    padding: 48px 40px;
    color: #fff;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.co-etapes__card-icon {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.co-etapes__card--magenta .co-etapes__card-icon {
    filter: brightness(0.55) saturate(1.4);
}

.co-etapes__card--orange { background-color: #d98546; }
.co-etapes__card--magenta { background-color: #571632; }
.co-etapes__card--red { background-color: #b6464a; }
.co-etapes__card--green { background-color: #657763; }

.co-etapes__card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
}

.co-etapes__card-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 340px;
}

.co-etapes__card-desc strong {
    font-weight: 600;
    color: #fff;
}

/* =============================================
   CITATION IMAGE — Grande image avec texte
   ============================================= */
.co-quote-image {
    position: relative;
    height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-quote-image__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.co-quote-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(62, 42, 44, 0.2);
    z-index: 1;
}

.co-quote-image__text {
    position: relative;
    z-index: 2;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 300;
    font-style: normal;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    padding: 0 24px;
    border: none;
    letter-spacing: 0.02em;
    max-width: 600px;
}

/* =============================================
   SÉANCES — Comment s'organisent
   ============================================= */
.co-seances {
    background-color: #fff;
    padding: 80px 0;
}

.co-seances__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.co-seances__left {
    padding-top: 16px;
}

.co-seances__logo {
    width: 60px;
    height: auto;
    margin-bottom: 24px;
}

.co-seances__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    font-style: normal;
    color: #3e2a2c;
    text-align: left;
    margin: 0;
    line-height: 1.25;
}

.co-seances__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.co-seances__item {
    border: 1.5px solid #a1623a;
    width: 85%;
}

.co-seances__item-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a1623a;
    list-style: none;
    transition: background-color 0.2s ease;
    border: none;
}

.co-seances__item-header::-webkit-details-marker {
    display: none;
}

.co-seances__item-header:hover {
    background-color: #f9f8f5;
}

.co-seances__chevron {
    display: none;
}

.co-seances__bar {
    width: 4px;
    height: 32px;
    background-color: #d98546;
    align-self: center;
}

.co-seances__item-body {
    padding: 0 24px 24px;
    font-size: 18px;
    line-height: 1.8;
    color: #3e2a2c;
}

.co-seances__item-body p {
    margin: 0 0 12px 0;
}

.co-seances__item-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.co-seances__item-body ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

.co-seances__item-body ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #657763;
    font-weight: 600;
}

.co-seances__item-body strong {
    font-weight: 600;
}

/* =============================================
   DOMAINES D'INTERVENTION
   ============================================= */
.co-domaines {
    background-color: #f9f8f5;
    padding: 72px 0;
    border-top: 1px solid #e8e5d6;
}

.co-domaines__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.co-domaines__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    font-style: normal;
    color: #b6464a;
    text-align: center;
    margin: 0 0 48px 0;
}

.co-domaines__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 48px;
}

.co-domaines__domain-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    color: #3e2a2c;
    margin: 0 0 6px 0;
}

.co-domaines__domain--orange {
    background-color: #B75B54;
    padding: 32px;
    border-radius: 8px;
}

.co-domaines__domain--orange .co-domaines__domain-title {
    color: #fff;
}

.co-domaines__domain--orange .co-domaines__domain-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.co-domaines__domain--orange .co-domaines__domain-list li {
    color: #fff;
}

.co-domaines__domain--orange .co-domaines__domain-list li::before {
    color: #fff;
}

.co-domaines__domain-actions {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    justify-content: center;
}

.co-domaines__domain-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.co-domaines__domain-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.co-domaines__domain-details {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    justify-content: center;
}

.co-domaines__detail {
    flex: 1;
    max-width: 260px;
}

.co-domaines__detail-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    list-style: none;
    transition: all 0.3s ease;
}

.co-domaines__detail-btn::-webkit-details-marker {
    display: none;
}

.co-domaines__detail-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.co-domaines__detail[open] .co-domaines__detail-btn {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.co-domaines__detail-body {
    padding: 16px 20px;
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 4px;
}

.co-domaines__detail-body p {
    margin: 0;
}

.co-domaines__detail-body strong {
    font-weight: 600;
}

.co-domaines__domain-subtitle {
    font-size: 16px;
    font-style: normal;
    color: #657763;
    margin: 0 0 12px 0;
}

.co-domaines__domain-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.co-domaines__domain-list li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #3e2a2c;
    margin-bottom: 4px;
}

.co-domaines__domain-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #657763;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.5;
}

.co-domaines__domain-cta {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #3e2a2c;
    border: 1px solid #3e2a2c;
    transition: all 0.3s ease;
}

.co-domaines__domain-cta:hover {
    background-color: #3e2a2c;
    color: #fff;
}


.co-domaines__btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.co-domaines__btn--primary {
    background-color: transparent;
    color: #3e2a2c;
    border: 1px solid #3e2a2c;
}

.co-domaines__btn--primary:hover {
    background-color: #3e2a2c;
    color: #fff;
}

.co-domaines__btn--outline {
    background-color: transparent;
    color: #3e2a2c;
    border: 1px solid #3e2a2c;
}

.co-domaines__btn--outline:hover {
    background-color: #3e2a2c;
    color: #fff;
}

/* =============================================
   CITATION SOMBRE
   ============================================= */
.co-quote-dark {
    position: relative;
    padding: 200px 24px;
    text-align: center;
    overflow: hidden;
}

.co-quote-dark__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.co-quote-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.co-quote-dark__container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.co-quote-dark__text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 300;
    font-style: normal;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 20px 0;
    border: none;
}

.co-quote-dark__author {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(232, 229, 214, 0.7);
    letter-spacing: 0.06em;
    font-style: normal;
}

/* =============================================
   FONDEMENTS — Méthode de coaching
   ============================================= */
.co-fondements {
    background-color: #791E4D;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.co-fondements__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.co-fondements__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    text-align: center;
    margin: 0 0 44px 0;
    line-height: 1.3;
}

.co-fondements__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
}

.co-fondements__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.co-fondements__col ul li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 14px;
}

.co-fondements__col ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.co-fondements__col strong {
    font-weight: 600;
}

/* =============================================
   RÉSULTATS
   ============================================= */
.co-resultats {
    background-color: #fff;
    padding: 72px 0;
}

.co-resultats__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.co-resultats__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    font-style: normal;
    color: #571632;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.35;
}

.co-resultats__list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.co-resultats__list li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #571632;
    margin-bottom: 12px;
}

.co-resultats__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #571632;
    font-weight: 700;
}

/* =============================================
   CTA — Bandeau final
   ============================================= */
.co-cta {
    background-color: #4a1418;
    padding: 56px 0;
    text-align: center;
}

.co-cta__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.co-cta__btn {
    display: inline-block;
    padding: 18px 48px;
    background-color: transparent;
    border: 1.5px solid #e8e5d6;
    color: #e8e5d6;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.co-cta__btn:hover {
    background-color: #e8e5d6;
    color: #4a1418;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .co-deroulement__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .co-deroulement__image-col {
        order: -1;
    }

    .co-fondements__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .co-hero {
        margin-top: 64px;
    }

    .co-hero__image-wrapper {
        max-height: 50vh;
    }

    .co-intro {
        padding: 48px 0 36px;
    }

    .co-intro__title {
        font-size: 28px;
    }

    .co-intro__item {
        font-size: 18px;
    }

    .co-intro__card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 12px;
    }

    .co-seances__item {
        width: 100%;
    }

    .co-definition {
        padding: 48px 0;
    }

    .co-definition__container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .co-definition__logo img {
        width: 120px;
    }

    .co-definition__title {
        font-size: 28px;
    }

    .co-deroulement {
        padding: 48px 0;
    }

    .co-deroulement__title {
        font-size: 26px;
    }

    .co-etapes__header {
        padding: 48px 24px 36px;
    }

    .co-etapes__title {
        font-size: 28px;
    }

    .co-etapes__grid {
        grid-template-columns: 1fr;
    }

    .co-etapes__card {
        min-height: 220px;
        padding: 36px 24px;
    }

    .co-quote-image {
        height: 280px;
    }

    .co-seances {
        padding: 48px 0;
    }

    .co-seances__container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .co-seances__title {
        font-size: 26px;
    }

    .co-domaines {
        padding: 48px 0;
    }

    .co-domaines__title {
        font-size: 28px;
    }

    .co-domaines__domain-details {
        flex-direction: column;
        align-items: center;
    }

    .co-domaines__detail {
        max-width: 100%;
        width: 100%;
    }

    .co-domaines__actions {
        flex-direction: column;
        align-items: center;
    }

    .co-domaines__btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .co-quote-dark {
        padding: 56px 24px;
    }

    .co-fondements {
        padding: 48px 0;
    }

    .co-fondements__title {
        font-size: 26px;
    }

    .co-fondements__grid {
        grid-template-columns: 1fr;
    }

    .co-resultats {
        padding: 48px 0;
    }

    .co-resultats__title {
        font-size: 24px;
    }

    .co-cta {
        padding: 40px 0;
    }

    .co-cta__btn {
        padding: 16px 36px;
        font-size: 14px;
    }
}
