:root {

    --burgundy: #5C6E32;
    --burgundy-dark: #3F4D21;

    --black: #111111;
    --white: #fcfbf9;

    --cream: #f2efeb;

    --gray: #696562;
    --line: #ded9d3;

    --max-width: 1180px;
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--white);
    color: var(--black);

    font-family: "DM Sans", sans-serif;

    line-height: 1.6;
}


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


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


.container {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: auto;
}


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

.header {

    height: 82px;

    padding: 0 max(
        24px,
        calc((100vw - var(--max-width)) / 2)
    );

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

    position: sticky;
    top: 0;

    z-index: 100;

    background: rgba(252, 251, 249, .94);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(17,17,17,.08);
}


.logo {

    display: flex;
    align-items: center;
    gap: 10px;

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: -.7px;
}


.logo > span:last-child > span {
    color: var(--burgundy);
}


.logo-box {

    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    background: var(--burgundy);

    color: white;

    font-size: 15px;
}


.navigation {

    display: flex;
    align-items: center;

    gap: 30px;

    font-size: 13px;

    font-weight: 600;
}


.navigation > a {
    opacity: .65;

    transition: .2s ease;
}


.navigation > a:hover,
.navigation > a.active {
    opacity: 1;
}


.navigation > a.active {
    color: var(--burgundy);
}


.nav-button {

    padding: 12px 17px;

    background: var(--black);

    color: white !important;

    opacity: 1 !important;
}
.whatsapp-nav {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 1 !important;
}  


.whatsapp-nav img {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    display: block;
     transform: scale(1.35);
}


.nav-button span {
    margin-left: 12px;
}


.menu-toggle {
    display: none;

    border: 0;

    background: transparent;

    width: 40px;

    cursor: pointer;
}


.menu-toggle span {

    display: block;

    height: 2px;

    background: var(--black);

    margin: 6px 0;
}


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

.hero {

    min-height: 690px;

    display: grid;

    grid-template-columns: 1.02fr .98fr;

    gap: 70px;

    align-items: center;

    padding-top: 60px;

    padding-bottom: 70px;
}


.eyebrow {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--burgundy);

    margin-bottom: 23px;
}


.eyebrow span {

    display: inline-block;

    width: 25px;

    height: 1px;

    background: var(--burgundy);

    vertical-align: middle;

    margin-right: 10px;
}


.hero h1 {

    max-width: 700px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(45px, 6vw, 76px);

    line-height: 1.05;

    letter-spacing: -3.8px;
}


.hero h1 em {

    display: block;

    color: var(--burgundy);

    font-style: normal;
}


.hero-description {

    max-width: 530px;

    margin: 28px 0 32px;

    color: var(--gray);

    font-size: 18px;
}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 28px;
}


.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 24px;

    padding: 15px 21px;

    border: 1px solid transparent;

    font-size: 13px;

    font-weight: 700;

    transition: .25s ease;
}


.button-dark {

    background: var(--black);

    color: white;
}


.button-dark:hover {

    background: var(--burgundy);

    transform: translateY(-2px);
}


.button-outline {

    border-color: var(--black);
}


.button-outline:hover {

    background: var(--black);

    color: white;
}


.button-white {

    background: white;

    color: var(--black);
}


.simple-link {

    font-size: 13px;

    font-weight: 700;

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

    padding-bottom: 3px;
}


.simple-link span {
    margin-left: 12px;
}


.hero-status {

    margin-top: 45px;

    font-size: 12px;

    color: var(--gray);
}


.hero-status span {

    display: inline-block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--burgundy);

    margin-right: 9px;
}


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

.hero-visual {
    position: relative;
}


.hero-image {

    height: 560px;

    position: relative;

    overflow: hidden;

    background: var(--cream);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.15);
}


.image-placeholder {

    height: 100%;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #ded9d2,
            #f3f0ec 50%,
            #b9b0a8
        );

    position: relative;
}


.image-placeholder::after {

    content: "";

    position: absolute;

    width: 65%;
    height: 65%;

    border: 1px solid rgba(120,31,43,.35);

    transform: rotate(7deg);
}


.image-placeholder span {

    font-family: "Manrope", sans-serif;

    font-size: 140px;

    font-weight: 800;

    letter-spacing: -15px;

    color: rgba(120,31,43,.12);
}


.image-overlay {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 22px 24px;

    display: flex;

    justify-content: space-between;

    align-items: end;

    color: white;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.7)
        );
}


.image-overlay strong {

    font-size: 22px;
}


.image-overlay small {

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    opacity: .8;
}


.floating-card {

    position: absolute;

    left: -45px;

    bottom: 48px;

    max-width: 285px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 18px 21px;

    background: white;

    box-shadow: 0 18px 50px rgba(0,0,0,.12);
}


.floating-icon {

    color: var(--burgundy);

    font-size: 22px;
}


.floating-card strong,
.floating-card small {

    display: block;
}


.floating-card strong {

    font-size: 13px;
}


.floating-card small {

    margin-top: 3px;

    color: var(--gray);

    font-size: 11px;
}


/* ================= SECTIONS ================= */

.section {
    padding: 105px 0;
}


.section-small {
    padding: 78px 0;
}


.section-label {

    margin-bottom: 23px;

    color: var(--burgundy);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.section-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 60px;

    margin-bottom: 48px;
}


.section-heading > p {

    max-width: 400px;

    color: var(--gray);

    font-size: 14px;
}


h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 4vw, 57px);

    line-height: 1.08;

    letter-spacing: -2.5px;
}


h2 span {
    color: var(--burgundy);
}


/* ================= PRESENTATION ================= */

.section-dark {

    padding: 105px 0;

    background: var(--black);

    color: white;
}


.presentation-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 70px;
}


.section-dark .section-label {
    color: #AAB58A;
}


.section-dark h2 span {
    color: #AAB58A;
}


.large-text {

    max-width: 650px;

    margin: 25px 0 28px;

    color: var(--gray);

    font-size: 18px;

    line-height: 1.65;
}


.section-dark .large-text {
    color: #b8b5b2;
}


.light-link {

    color: white;

    border-color: white;
}


/* ================= AUDIENCE ================= */

.audience-grid {

    display: grid;

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

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

    border-left: 1px solid var(--line);
}


.audience-card {

    min-height: 260px;

    padding: 28px;

    border-right: 1px solid var(--line);

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

    transition: .25s ease;
}


.audience-card:hover,
.audience-card.featured {

    background: var(--burgundy);

    color: white;
}


.audience-card small {

    font-size: 11px;

    opacity: .55;
}


.audience-card h3 {

    margin-top: 55px;
    margin-bottom: 10px;

    font-family: "Manrope", sans-serif;

    font-size: 23px;
}


.audience-card p {

    min-height: 62px;

    color: var(--gray);

    font-size: 13px;
}


.audience-card:hover p,
.audience-card.featured p {

    color: #E4E8D8;
}


.audience-card a {

    display: inline-block;

    margin-top: 20px;

    font-size: 11px;

    font-weight: 700;

    border-bottom: 1px solid currentColor;
}


/* ================= PHOTOS ================= */

.photo-grid {

    display: grid;

    grid-template-columns: 1fr 1.6fr .8fr;

    gap: 14px;
}


.photo {

    height: 250px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    color: white;

    position: relative;

    overflow: hidden;
}


.photo::after {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.05);

    transition: .3s ease;
}


.photo:hover::after {

    background: rgba(0,0,0,.18);
}


.photo span,
.photo strong {

    position: relative;

    z-index: 1;
}


.photo span {
    font-size: 11px;
}


.photo strong {

    font-family: "Manrope", sans-serif;

    font-size: 21px;
}


.photo-one {

    height: 350px;

    background-image: url("./images/index/learn.avif");

    background-size: cover;

    background-position: center;
}

.photo-two {

    height: 350px;

    
    background-image: url("./images/index/campus.jpg");

    background-size: cover;

    background-position: center;
}


.photo-three {

    
    background-image: url("./images/index/Progress.jpg");

    background-size: cover;

    background-position: center;
}


/* ================= PARTNERS ================= */

.partner-list {

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 25px;

    padding: 30px 0;

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

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

    color: #77716c;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}
.partner-list img,
.partner-list span {
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    object-fit: fill;
}



/* ================= LOCATION ================= */

.location {

    background: var(--cream);
}


.location-grid {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 90px;

    align-items: center;
}


.address {

    display: grid;

    gap: 7px;

    padding-left: 20px;

    margin: 30px 0;

    border-left: 2px solid var(--burgundy);

    font-size: 13px;
}


.address strong {
    font-size: 15px;
}


.address span {
    color: var(--gray);
}

/* ================= FINAL CTA ================= */

.final-cta {

    padding: 105px 0;

    background: var(--burgundy);

    color: white;
}


.final-cta .section-label {
    color: #C7D0A8;
}


.final-cta h2 {

    max-width: 800px;

    margin-bottom: 38px;

    color: white;

    font-size: clamp(45px, 6vw, 75px);

    letter-spacing: -3px;
}


.final-cta h2 em {

    display: block;

    color: #D9DFC5;

    font-style: normal;
}


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

.footer {

    padding: 65px 0 24px;

    background: var(--black);

    color: white;
}


.footer-top {

    display: grid;

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

    gap: 40px;

    align-items: start;

    padding-bottom: 65px;
}


.footer-logo {
    color: white;
}


.footer-logo > span:last-child > span {
    color: #8E9D61;
}


.footer-top > p {

    color: #aaa;

    font-size: 13px;
}
.logo img {
    width: 70px;
    height: auto;
}

.footer-links {

    display: flex;

    justify-content: flex-end;

    gap: 22px;

    flex-wrap: wrap;

    font-size: 12px;
}



.footer-links a:hover {
    color: #8E9D61;
}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    padding-top: 18px;

    border-top: 1px solid #333;

    color: #777;

    font-size: 10px;

    letter-spacing: .5px;
}
/* ================= ABOUT PHOTOS ================= */
/* Labels sur les images */
.courses-section-03 {
    position: relative;
    min-height: 650px;
    padding: 120px 0;
    color: white;
    overflow: hidden;
}

/* IMAGE */
.courses-section-03::before {
    content: "";
    position: absolute;

    top: -80px;
    left: 0;
    right: 0;
    bottom: 0;

    background-image: url("./images/cours/cours.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 0;
}

/* VOILE */
.courses-section-03::after {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.35);

    z-index: 1;
}

/* TEXTE */
.courses-section-03 > .container {
    position: relative;
    z-index: 2;
}

.courses-section-03 .eyebrow,
.courses-section-03 h2,
.courses-section-03 h3,
.courses-section-03 p {
    color: white;
}
.page-hero .eyebrow,
.cream-section .eyebrow {
    color: white;
}

.courses-hero .eyebrow {
    color: white;
}

.page-hero {
    padding: 150px 0 100px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.cream-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-photo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
}

.about-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.15) 75%,
        rgba(0, 0, 0, 0.05) 100%
    );
}
.about-photo-01,
.about-photo-03 {
    position: absolute;
    inset: 0;
}

.page-hero .container,
.cream-section .container {
    position: relative;
    z-index: 1;
}

.page-hero .container h1,
.page-hero .container .hero-text,
.cream-section .container h2,
.cream-section .container .method-item h3,
.cream-section .container .method-item p {
    color: white;
}

.page-hero > .container,
.cream-section > .container {
    position: relative;
    z-index: 1;
}

/* ================= TABLET ================= */

@media (max-width: 900px) {

    .navigation {
        gap: 18px;
    }


    .hero {
        gap: 35px;
    }


    .audience-grid {
        grid-template-columns: repeat(2,1fr);
    }


    .location-grid {
        gap: 45px;
    }


    .floating-card {
        left: -15px;
    }


    .footer-top {
        grid-template-columns: 1fr 1fr;
    }


    .footer-links {
        justify-content: flex-start;
    }
}


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

@media (max-width: 700px) {

    .container {
        width: calc(100% - 32px);
    }


    .header {

        height: 70px;

        padding: 0 16px;
    }


    .menu-toggle {
        display: block;
    }


    .navigation {

        position: absolute;

        top: 70px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px 16px 25px;

        background: var(--white);

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

        box-shadow: 0 15px 30px rgba(0,0,0,.08);
    }


    .navigation.open {
        display: flex;
    }


    .navigation > a {
        padding: 13px 4px;
    }


    .nav-button {
        margin-top: 7px;

        text-align: center;
    }


    .hero {

        grid-template-columns: 1fr;

        min-height: auto;

        padding-top: 60px;
    }


    .hero h1 {

        letter-spacing: -2.7px;
    }


    .hero-description {
        font-size: 16px;
    }


    .hero-image {
        height: 430px;
    }


    .floating-card {

        left: 10px;
        right: 10px;

        max-width: none;

        bottom: 20px;
    }


    .section {
        padding: 75px 0;
    }


    .section-small {
        padding: 55px 0;
    }


    .presentation-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .section-heading {

        display: block;
    }


    .section-heading > p {
        margin-top: 18px;
    }


    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }


    .audience-card {

        min-height: 230px;

        padding: 20px;
    }


    .audience-card h3 {
        margin-top: 35px;
    }


    .photo-grid {

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


    .photo-one {

        grid-row: span 2;

        height: 575px;
    }


    .photo-two {
        height: 280px;
    }


    .photo-three {
        height: 280px;
    }


    .partner-list {
        justify-content: center;
    }


    .location-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .map-placeholder {
        height: 330px;
    }


    .footer-top {

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .footer-links {
        justify-content: flex-start;
    }


    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}


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

@media (max-width: 430px) {

    .hero-buttons {

        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }


    .audience-grid {
        grid-template-columns: 1fr;
    }


    .photo-grid {
        display: block;
    }


    .photo,
    .photo-one,
    .photo-two,
    .photo-three {

        height: 260px;

        margin-bottom: 12px;
    }


    .hero-image {
        height: 380px;
    }


    .hero h1 {

        font-size: 45px;

        letter-spacing: -2.5px;
    }
}
/* ========================================
   PAGES INTERNES
======================================== */
.page-hero {
    padding: 150px 0 100px;
    background: var(--cream);
}

.page-hero h1 {
    max-width: 850px;
    margin: 20px 0;
}

.page-hero h1 em {
    color: var(--burgundy);
    font-style: normal;
}

.hero-text {
    max-width: 620px;
    color: var(--gray);
    font-size: 18px;
    line-height: 1.7;
}

.courses-hero {
    background-image: url("./images/header/prof.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.courses-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.15) 75%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

.courses-hero h1,
.courses-hero .hero-text,
.courses-hero .section-label {
    color: white;
}

.contact {
    background-image: url("./images/header/phone.avif");
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.contact h1,
.contact .hero-text,
.contact .section-label {
    color: white;
}

.active {
    color: var(--burgundy) !important;
}


/* NIVEAUX */

.levels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.level-card {
    background: var(--white);
    padding: 35px 25px;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease;
}

.level-card:hover {
    transform: translateY(-5px);
    
}


.level-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--burgundy);
    transition: width .3s ease;
}

.level-card:hover::after {
    width: 100%;
}


.level-card span {
    font-size: 14px;
    font-weight: 700;
    color: var(--burgundy);
}

.level-card h3 {
    margin: 45px 0 15px;
}

.level-card p {
    color: var(--gray);
    line-height: 1.6;
}
/* ================= TARIFS ================= */

.courses-pricing {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    border: 1px solid var(--line);
    background: var(--white);
}

.courses-pricing > div {
    padding: 25px 30px;
    border-right: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.courses-pricing > div::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--burgundy);
    transition: width .3s ease;
}

.courses-pricing > div:hover::after {
    width: 100%;
}

.courses-pricing span {
    display: block;
    color: var(--gray);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.courses-pricing strong {
    display: block;
    color: var(--black);
    font-family: "Manrope", sans-serif;
    font-size: 24px;
}

.courses-pricing .button {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    white-space: nowrap;
}

/* ================= FORMULES ================= */

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.course-card {
    background: var(--white);
    padding: 35px 30px;
    min-height: 390px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease;
}

.course-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--burgundy);
    transition: width .3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card:hover::after {
    width: 100%;
}

.course-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 45px;
}

.course-card h3 {
    color: var(--black);
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.course-card p {
    color: var(--gray);
    line-height: 1.6;
    max-width: 450px;
}

.course-info {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0;
}

.course-info strong {
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    padding-bottom: 8px;
}

.course-info span {
    color: var(--gray);
    font-size: 13px;
    padding: 7px 0;
    border-top: 1px solid var(--line);
}

/* TABLEAU */

.schedule {
    border-top: 1px solid var(--line);
}

.schedule-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1fr;
    padding: 22px 15px;
    border-bottom: 1px solid var(--line);
}

.schedule-header {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray);
}

.schedule-row:not(.schedule-header) span:first-child {
    font-weight: 700;
}


/* TEST */

.test-section {
    background: var(--burgundy);
    color: white;
    padding: 100px 0;
}

.test-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.test-content h2 {
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1;
    margin-top: 20px;
}

.test-content p {
    color: #eee;
    line-height: 1.7;
}


/* ABOUT */

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-intro h2 {
    font-size: 50px;
}

.about-intro p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}


/* METHOD */

.cream-section {
    background: var(--cream);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.method-item span {
    color: var(--burgundy);
    font-size: 13px;
    font-weight: 700;
}

.method-item h3 {
    margin: 40px 0 15px;
}

.method-item p {
    color: var(--gray);
    line-height: 1.7;
}


/* TEAM */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card h3 {
    margin-top: 20px;
}

.team-card p {
    color: var(--gray);
}

.team-photo {
    height: 380px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 13px;
}


/* QUOTE */

.quote-section {
    background: var(--black);
    color: white;
    padding: 120px 0;
}

.quote-section blockquote {
    max-width: 950px;
    font-size: clamp(35px, 5vw, 65px);
    line-height: 1.1;
    margin-top: 40px;
}


/* CTA */

.cta-section {
    padding: 120px 0;
    background: var(--burgundy);
    color: white;
}

.cta-section h2 {
    font-size: clamp(45px, 6vw, 80px);
    max-width: 850px;
    line-height: 1;
    margin: 25px 0 40px;
}

.button-light {
    background: white;
    color: var(--burgundy);
}


/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 45px;
    margin: 20px 0 50px;
}

.contact-item {
    border-top: 1px solid var(--line);
    padding: 25px 0;
}

.contact-item span {
    display: block;
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 10px;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--burgundy);
}


/* FORMULAIRE */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--cream);
    padding: 16px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    color: var(--burgundy);
}


/* MAP */

.map-section {
    padding: 0 0 100px;
}

.map-placeholder {
    height: 420px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
    padding: 0;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.map-placeholder > div {
    max-width: 550px;
}

.map-placeholder h2 {
    font-size: 45px;
    margin: 20px 0;
}

.map-placeholder p:not(.eyebrow) {
    color: var(--gray);
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 900px) {

    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .team-photo {
        height: 300px;
    }

    .about-intro,
    .contact-grid,
    .test-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}


@media (max-width: 600px) {

    .page-hero {
        padding: 110px 0 70px;
    }

    .levels-grid,
    .courses-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }

    .course-card {
        min-height: auto;
        padding: 30px;
    }

    .schedule-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .schedule-header {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-intro h2,
    .contact-info h2,
    .contact-form-wrapper h2,
    .map-placeholder h2 {
        font-size: 35px;
    }

   

}