    :root {
        --bg: #ffffff;
        --text: #050505;
        --muted: #6f6a67;
        --line: rgba(5, 5, 5, 0.08);

        --accent: #c79f92;
        --accent-dark: #b98f82;
        --accent-soft: #e8ddda;

        --container: 1440px;
        --nav-height: 110px;
        --radius-full: 999px;
    }

    /* Base */

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

    html {
        scroll-behavior: smooth;
    }

    body {
        background: var(--bg);
        color: var(--text);
        font-family: Arial, Helvetica, sans-serif;
        overflow-x: hidden;
    }

    img {
        display: block;
    }

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

    ul {
        list-style: none;
    }

    /* Header */

    .header {
        position: relative;
        background: var(--bg);
    }
    .header:has(.hero) {
        min-height: 100vh;
    }
    /* Navbar */

    .navbar {
        width: min(calc(100% - 80px), var(--container));
        margin: 0 auto;
        min-height: var(--nav-height);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0 20px;
        position: relative;
        z-index: 50;
    }

    .left {
        display: flex;
        align-items: center;
        position: relative;
        z-index: 60;
    }

    .logo {
        width: 120px;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .right {
        display: flex;
        align-items: center;
        gap: 54px;
        list-style: none;
    }

    .navbar-link {
        font-size: 0.95rem;
        font-weight: 400;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        position: relative;
        transition: opacity 0.25s ease;
    }

    .navbar-link:hover {
        opacity: 0.55;
    }

    /* Burger */

    .burger {
        display: none;
        width: 52px;
        height: 52px;
        border: 1px solid rgba(5, 5, 5, 0.08);
        border-radius: 50%;
        background: transparent;
        cursor: pointer;
        padding: 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        transition: background 0.25s ease, border-color 0.25s ease;
        position: relative;
        z-index: 60;
        flex-shrink: 0;
    }

    .burger:hover {
        background: rgba(5, 5, 5, 0.03);
    }

    .burger span {
        display: block;
        width: 20px;
        height: 1.8px;
        background: var(--text);
        border-radius: 999px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .burger.active span:nth-child(1) {
        transform: translateY(6.8px) rotate(45deg);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: translateY(-6.8px) rotate(-45deg);
    }

    /* Hero */

    .hero {
        width: min(calc(100% - 80px), var(--container));
        margin: 0 auto;
        min-height: calc(100vh - var(--nav-height));
        display: flex;
        align-items: center;
        position: relative;
        padding: 40px 0 90px;
        overflow: hidden;
    }

    .hero-body {
        max-width: 760px;
        position: relative;
        z-index: 3;
    }

    .hero-kicker {
        font-size: 1.05rem;
        letter-spacing: 0.42em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 48px;
    }

    .hero-title {
        font-size: clamp(3.6rem, 7vw, 6.7rem);
        line-height: 0.95;
        font-weight: 400;
        letter-spacing: -0.055em;
        max-width: 900px;
        margin-bottom: 34px;
    }

    .hero-subtitle {
        max-width: 620px;
        font-size: 1.6rem;
        line-height: 1.75;
        color: #222222;
        margin-bottom: 54px;
    }

    /* Button */

    .hero-button {
        display: flex;
        align-items: center;
    }

    .button {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 14px 16px 14px 28px;
        border-radius: var(--radius-full);
        font-size: 0.85rem;
        letter-spacing: 0.25rem;
        text-transform: uppercase;
        transition: all 0.25s ease;
    }

    .button-primary {
        background: var(--accent);
        color: var(--text);
    }

    .button-primary:hover {
        background: var(--accent-dark);
        transform: translateY(px);
    }

    .button-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0,9rem;
        flex-shrink: 0;
        transition: background 0.25s ease;
    }

    .button-primary:hover .button-icon {
        transform: translateX(4px);
    }


    /* Tablet */

    @media (max-width: 1200px) {
        .right {
            gap: 32px;
        }

        .hero-title {
            font-size: clamp(3.1rem, 6.2vw, 5.6rem);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            max-width: 560px;
        }

        /* Mobile menu + tablet layout */
        @media (max-width: 980px) {
            .navbar {
                width: min(calc(100% - 40px), var(--container));
                min-height: 90px;
                padding: 4px 0;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                gap: 0;
            }

            .burger {
                display: flex;
            }

            .right {
                position: absolute;
                top: calc(100% + 10px);
                left: 0;
                right: 0;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                padding: 18px 20px;
                background: rgba(245, 245, 243, 0.96);
                backdrop-filter: blur(12px);
                border: 1px solid rgba(5, 5, 5, 0.08);
                border-radius: 24px;
                box-shadow: 0 20px 40px rgba(5, 5, 5, 0.08);

                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                pointer-events: none;
                transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
            }

            .right.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }

            .right li {
                width: 100%;
                border-bottom: 1px solid rgba(5, 5, 5, 0.06);
            }

            .right li:last-child {
                border-bottom: none;
            }

            .navbar-link {
                display: block;
                width: 100%;
                padding: 16px 0;
                font-size: 0.9rem;
                letter-spacing: 0.18em;
            }

            .hero {
                width: min(calc(100% - 40px), var(--container));
                min-height: auto;
                padding: 70px 0 90px;
            }

            .hero-body {
                max-width: 100%;
            }

            .hero-kicker {
                margin-bottom: 28px;
            }

            .hero-title {
                font-size: clamp(2.8rem, 9vw, 4.7rem);
                max-width: 100%;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                line-height: 1.7;
                max-width: 100%;
            }

            .button {
                min-width: 280px;
                padding-left: 26px;
            }

            /* Mobile */
            @media (max-width: 640px) {
                .logo {
                    width: 110px;
                }

                .burger {
                    width: 48px;
                    height: 48px;
                }

                .burger span {
                    width: 18px;
                }

                .right {
                    padding: 14px 16px;
                    border-radius: 20px;
                }

                .navbar-link {
                    font-size: 0.82rem;
                    letter-spacing: 0.16em;
                    padding: 14px 0;
                }

                .hero {
                    padding-top: 46px;
                    padding-bottom: 70px;
                }

                .hero-kicker {
                    font-size: 0.82rem;
                    letter-spacing: 0.34em;
                }

                .hero-title {
                    font-size: 2.5rem;
                    line-height: 1;
                    margin-bottom: 22px;
                }

                .hero-subtitle {
                    font-size: 1rem;
                    margin-bottom: 34px;
                }

                .button {
                    min-width: 140px !important;
                    width: fit-content;
                    font-size: 0, 5rem;
                    letter-spacing: 0.18em;
                    padding: 10px 12px 10px 20px;
                }

                .button-icon {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    background: #ffffff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1rem;
                    flex-shrink: 0;
                    transition: background 0.25s ease;
                }

            }
        }
    }

    .services {
        width: min(calc(100% - 80px), var(--container));
        margin: 0 auto;
        padding: 100px 0;
        display: flex;
        justify-content: space-between;
        gap: clamp(30px, 5vw, 80px);
        border-top: 1px solid #ddd;
    }

    .services-container {
        flex: 1;
        max-width: 300px;
    }

    .number {
        font-size : 14px;
        color: var(--accent);
        letter-spacing: 2px;
        display: block;
        margin-bottom: 15px;
    }

    .services-container h3 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 12px;
    }

    .services-container p {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.6;
    }

    @media (max-width: 900px) {
        .services {
            flex-direction: column;
            gap: 40px;
            padding: 80px 0;
        }

        .services-container {
            max-width: 100%;
        }
    }

    /* ABOUT */

    .about {
        background: #050505;
        color: #ffffff;
        padding: 120px 0;
    }

    .container {
        width: min(calc(100% - 80px), var(--container));
        margin: 0 auto;
    }

    .about-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(60px, 10vw, 160px);
    }

    .about-text {
        flex: 1;
        max-width: 700px;
        text-align: left;
    }

    .about-kicker {
        display: block;
        font-size: 0.8rem;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 30px;
    }

    .about-title {
        font-size: clamp(2.4rem, 4vw, 3.8rem);
        line-height: 1.1;
        font-weight: 400;
        margin-bottom: 25px;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.8;
        color: #cfcfcf;
        margin-bottom: 40px;
    }

    .about-button {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 10px 10px 10px 22px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.25);
        font-size: 0.7rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: #fff;
        transition: all 0.25s ease;
    }

    .about-button:hover {
        background: rgba(255,255,255,0.05);
    }

    .about-button-circle {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        transition: transform 0.25s ease;
    }

    .about-button:hover .about-button-circle {
        transform: translateX(4px);
    }

    .about-image {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }

    .about-image img {
        width: 100%;
        max-width: 620px;
        height: auto;
        border-radius: 26px;
        object-fit: cover;
    }

    /* RESPONSIVE ABOUT */

    @media (max-width: 900px) {
        .container {
            width: min(calc(100% - 40px), var(--container));
        }

        .about {
            padding: 90px 0;
        }

        .about-container {
            flex-direction: column;
            align-items: flex-start;
            gap: 50px;
        }

        .about-text {
            max-width: 100%;
        }

        .about-image {
            width: 100%;
            justify-content: center;
        }

        .about-image img {
            width: 100%;
            max-width: 520px;
        }
    }

    @media (max-width: 640px) {
        .about {
            padding: 70px 0;
        }

        .about-title {
            font-size: 2rem;
        }

        .about-description {
            font-size: 0.95rem;
        }
    }
    /* CTA */

    .cta {
        background: #f5f5f3;
        padding: 90px 0;
        position: relative;
        overflow: hidden;
    }

    .cta-container {
        width: min(calc(100% - 80px), var(--container));
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        position: relative;
    }

    .cta-text {
        max-width: 520px;
    }

    .cta-kicker {
        font-size: 0.75rem;
        letter-spacing: 0.35em;
        color: var(--accent);
        display: block;
        margin-bottom: 28px;
        text-transform: uppercase;
    }

    .cta-title {
        font-size: clamp(2.8rem, 5vw, 4.5rem);
        line-height: 1.1;
        font-weight: 400;
        color: var(--text);
    }

    .cta-title .dot {
        color: var(--accent);
    }

    .cta-button {
        align-self: center;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 12px 12px 12px 34px;
        background: #050505;
        color: #fff;
        border-radius: 999px;
        font-size: 0.75rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        transition: all 0.25s ease;
    }

    .cta-button:hover {
        transform: translateY(-2px);
    }

    .cta-button-circle {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.25s ease;
    }
    /* RESPONSIVE CTA */

    @media (max-width: 900px) {
        .cta {
            padding: 80px 0;
        }

        .cta-container {
            width: min(calc(100% - 40px), var(--container));
            flex-direction: column;
            align-items: flex-start;
            gap: 40px;
        }

        .cta-button {
            align-self: flex-start;
        }
    }
    /* CONTACT */

    .contact {
        padding: 90px 0 120px;
    }

    .contact-container {
        display: flex;
        justify-content: space-between;
        gap: clamp(60px, 10vw, 140px);
    }

    /* TEXTE */

    .contact-text {
        max-width: 500px;
    }

    .contact-kicker {
        font-size: 0.8rem;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 30px;
    }

    .contact-title {
        font-size: clamp(3rem, 6vw, 5.5rem);
        line-height: 0.95;
        margin-bottom: 30px;
    }

    .contact-title .dot {
        color: var(--accent);
    }

    .contact-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--muted);
    }

    /* FORM */

    .contact-form {
        flex: 1;
        max-width: 520px;
        padding: 40px;
        border-radius: 30px;
        border: 1px solid var(--line);
        background: var(--accent-soft);
    }

    .form-group {
        margin-bottom: 24px;
    }

    .form-group label {
        display: block;
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 10px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        border: none;
        border-bottom: 1px solid rgba(5, 5, 5, 0.2);
        background: transparent;
        padding: 12px 0;
        font: inherit;
        outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-bottom: 1px solid var(--accent);
    }

    /* BOUTON */

    .contact-button {
        margin-top: 20px;
        display: inline-flex;
        align-items: center;
        gap: 16px;
        padding: 10px 10px 10px 24px;
        border-radius: 999px;
        background: #050505;
        color: #fff;
        font-size: 0.75rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .contact-button:hover {
        transform: translateY(-2px);
    }

    .contact-button-circle {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.25s ease;
    }

    .contact-button:hover .contact-button-circle {
        transform: translateX(4px);
    }

    /* RESPONSIVE */

    @media (max-width: 900px) {
        .contact-container {
            flex-direction: column;
            gap: 50px;
        }

        .contact-form {
            max-width: 100%;
            padding: 30px;
        }
    }
    /* FOOTER */

    .footer {
        background: #050505;
        color: #ffffff;
        padding: 80px 0 30px;
    }

    .footer-container {
        width: min(calc(100% - 80px), var(--container));
        margin: 0 auto;
    }

    /* TOP */

    .footer-top {
        display: grid;
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 80px;
        align-items: flex-start;
        padding-bottom: 60px;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    /* LEFT */

    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo {
        width: 180px;
        height: auto;
    }

    .footer-tagline {
        font-size: 0.95rem;
        color: rgba(255,255,255,0.6);
        max-width: 240px;
        line-height: 1.6;
    }

    /* CENTER NAV */

    .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .footer-nav a {
        font-size: 0.78rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: #ffffff;
        transition: opacity 0.25s ease;
    }

    /* RIGHT CONTACT */

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-contact a {
        font-size: 0.95rem;
        color: #ffffff;
        text-decoration: none;
        transition: opacity 0.25s ease;
    }

    /* SOCIALS */

    .footer-socials {
        display: flex;
        gap: 14px;
    }

    .footer-socials a {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255,255,255,0.4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        transition: all 0.25s ease;
    }

    /* HOVER */

    .footer-nav a:hover,
    .footer-contact a:hover,
    .footer-legal a:hover {
        opacity: 0.6;
    }

    .footer-socials a:hover {
        transform: translateY(-2px);
        border-color: #ffffff;
    }

    /* BOTTOM */

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 30px;
        font-size: 0.8rem;
        color: rgba(255,255,255,0.7);
    }

    .footer-legal {
        display: flex;
        gap: 30px;
    }

    .footer-legal a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
    }

    /* RESPONSIVE */

    @media (max-width: 900px) {
        .footer {
            padding: 60px 0 30px;
        }

        .footer-container {
            width: min(calc(100% - 40px), var(--container));
        }

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

        .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .footer-legal {
            flex-direction: column;
            gap: 10px;
        }
    }
    /* LIEN LINKEDIN */

    .footer-linkedin {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: opacity 0.25s ease;
    }

    .footer-linkedin:hover {
        opacity: 0.6;
    }

    /* BOUTON CV */

    .footer-button {
        margin-top: 10px;
        display: inline-flex;
        align-items: center;
        gap: 14px;
        padding: 8px 10px 8px 18px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.3);
        color: #fff;
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        transition: all 0.25s ease;
    }

    .footer-button:hover {
        background: rgba(255,255,255,0.05);
    }

    /* CERCLE */

    .footer-button-circle {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.25s ease;
    }

    .footer-button:hover .footer-button-circle {
        transform: translateX(4px);
    }

    /* =========================
    ARTICLES — VITRINES HORIZONTALES
 ========================= */

    .articles {
        padding: 140px 6vw 100px;
        background: var(--background-color);
        color: var(--text-color);
        min-height: 100vh;
    }

    .articles-intro {
        max-width: 880px;
        margin-bottom: 70px;
    }

    .articles-intro .label {
        margin-bottom: 18px;
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        opacity: 0.65;
    }

    .articles-intro h1 {
        margin: 0 0 26px;
        font-size: clamp(3rem, 7vw, 7rem);
        line-height: 0.95;
        font-weight: 400;
        letter-spacing: -0.06em;
    }

    .articles-intro p:not(.label) {
        max-width: 560px;
        margin: 0;
        font-size: clamp(1rem, 1.25vw, 1.2rem);
        line-height: 1.7;
        opacity: 0.7;
    }

    /* Liste */
    .articles-list {
        display: flex;
        flex-direction: column;
        border-top: 1px solid rgba(248, 248, 249, 0.18);
    }

    .article-item {
        display: block;
        color: inherit;
        text-decoration: none;
        border-bottom: 1px solid rgba(248, 248, 249, 0.18);
    }

    .article-item article {
        display: grid;
        grid-template-columns: 38% 1fr;
        gap: clamp(28px, 5vw, 80px);
        align-items: center;
        padding: 34px 0;
    }

    .article-item img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
        border-radius: 22px;
        filter: brightness(0.95);
        transition: transform 0.7s ease, filter 0.7s ease;
    }

    .article-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .article-tag {
        margin-bottom: 22px;
        font-size: 0.78rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        opacity: 0.58;
    }

    .article-content h2 {
        margin: 0;
        font-size: clamp(1.2rem, 1.8vw, 1.6rem);
        line-height: 1.3;
        font-weight: 400;
        letter-spacing: -0.02em;
    }

    .article-item:hover img {
        transform: scale(1.025);
        filter: brightness(1);
    }

    .article-item:hover .article-content h2 {
        opacity: 0.72;
    }

    /* Responsive */
    @media (max-width: 850px) {
        .article-item article {
            grid-template-columns: 1fr;
            gap: 26px;
            padding: 34px 0 42px;
        }

        .article-item img {
            border-radius: 18px;
        }

    }

    @media (max-width: 600px) {
        .articles {
            padding: 110px 22px 80px;
        }

        .articles-intro {
            margin-bottom: 48px;
        }

        .article-tag {
            margin-bottom: 14px;
        }
    }

    @media (max-width: 600px) {
        .article-content h2 {
            font-size: 1.1rem;
            line-height: 1.4;
        }
    }
    /* =========================
   PAGE ARTICLE DETAIL
========================= */

    .article-page {
        padding: 40px 6vw 100px;
        background: var(--bg);
        color: var(--text);
    }

    .article-detail {
        max-width: 900px;
        margin: 0 auto;
        padding-top: 0;
    }

    .article-back {
        display: inline-block;
        margin-bottom: 35px;
        font-size: 0.9rem;
        opacity: 0.6;
        text-decoration: none;
        color: inherit;
        transform: translateX(-120px);
        transition: opacity 0.3s ease;
    }

    .article-back:hover {
        opacity: 1;
    }

    .article-detail-header {
        margin-bottom: 40px;
    }

    .article-label {
        margin-bottom: 16px;
        font-size: 0.75rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        opacity: 0.6;
    }

    .article-detail-header h1 {
        margin: 0 0 20px;
        font-size: clamp(2.4rem, 4.5vw, 4rem);
        line-height: 1.05;
        font-weight: 400;
        letter-spacing: -0.04em;
    }

    .article-lead {
        max-width: 600px;
        margin-bottom: 20px;
        font-size: 1.05rem;
        line-height: 1.7;
        opacity: 0.75;
    }

    .article-author {
        font-size: 0.9rem;
        opacity: 0.6;
    }

    .article-cover {
        margin: 50px 0;
    }

    .article-cover img {
        width: 100%;
        display: block;
        border-radius: 20px;
    }

    .article-content-detail {
        max-width: 680px;
    }

    .article-content-detail p {
        margin-bottom: 18px;
        font-size: 1.02rem;
        line-height: 1.8;
        opacity: 0.9;
    }

    .article-content-detail h2 {
        margin: 50px 0 18px;
        font-size: 1.5rem;
        font-weight: 400;
        letter-spacing: -0.02em;
    }

    .article-content-detail ul {
        margin: 18px 0 26px;
        padding-left: 18px;
    }

    .article-content-detail li {
        margin-bottom: 8px;
        line-height: 1.7;
        opacity: 0.85;
    }

    .article-content-detail hr {
        margin: 50px 0;
        border: none;
        height: 1px;
        background: var(--line);
    }

    /* Responsive */
    @media (max-width: 900px) {
        .article-back {
            transform: none;
        }
    }

    @media (max-width: 600px) {
        .article-page {
            padding: 30px 22px 80px;
        }

        .article-back {
            margin-bottom: 30px;
        }

        .article-detail-header h1 {
            font-size: 2rem;
            line-height: 1.1;
        }

        .article-lead {
            font-size: 1rem;
        }

        .article-content-detail p {
            font-size: 1rem;
        }

        .article-content-detail h2 {
            font-size: 1.3rem;
        }

        .article-cover {
            margin: 40px 0;
        }
    }

    /* =========================
   PAGE ABOUT
========================= */

    .about-page {
        padding: 140px 6vw 100px;
    }

    /* HERO */

    .about-hero {
        max-width: 900px;
        margin-bottom: 80px;
    }

    .about-label {
        margin-bottom: 18px;
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        opacity: 0.6;
    }

    .about-hero h1 {
        margin: 0 0 28px;
        font-size: clamp(2.8rem, 6vw, 5rem);
        line-height: 1;
        font-weight: 400;
        letter-spacing: -0.05em;
    }

    .about-intro {
        max-width: 600px;
        font-size: 1.1rem;
        line-height: 1.7;
        opacity: 0.75;
    }

    /* CONTENT */

    .about-content {
        max-width: 700px;
    }

    .about-block {
        margin-bottom: 60px;
    }

    .about-block h2 {
        margin-bottom: 16px;
        font-size: 1.5rem;
        font-weight: 400;
    }

    .about-block p {
        margin-bottom: 16px;
        line-height: 1.8;
        opacity: 0.85;
    }

    /* LIST */

    .about-list {
        padding-left: 18px;
    }

    .about-list li {
        margin-bottom: 10px;
        opacity: 0.85;
    }

    /* RESPONSIVE */

    @media (max-width: 600px) {
        .about-page {
            padding: 100px 22px 80px;
        }

        .about-hero h1 {
            font-size: 2rem;
        }

        .about-intro {
            font-size: 1rem;
        }
    }

    /* =========================
   PROJECTS — même style que articles
========================= */

    .projects {
        padding: 140px 6vw 100px;
        min-height: 100vh;
    }

    .projects-intro {
        max-width: 880px;
        margin-bottom: 70px;
    }

    .projects-intro .label {
        margin-bottom: 18px;
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        opacity: 0.65;
    }

    .projects-intro h1 {
        margin-bottom: 26px;
        font-size: clamp(3rem, 7vw, 7rem);
        line-height: 0.95;
        font-weight: 400;
        letter-spacing: -0.06em;
    }

    .projects-intro p {
        max-width: 560px;
        font-size: 1.1rem;
        line-height: 1.7;
        opacity: 0.7;
    }

    /* LISTE */

    .projects-list {
        display: flex;
        flex-direction: column;
        border-top: 1px solid rgba(5,5,5,0.1);
    }

    .project-item {
        display: block;
        border-bottom: 1px solid rgba(5,5,5,0.1);
        text-decoration: none;
        color: inherit;
    }

    .project-item article {
        display: grid;
        grid-template-columns: 38% 1fr;
        gap: clamp(28px, 5vw, 80px);
        align-items: center;
        padding: 34px 0;
    }

    /* IMAGE */

    .project-item img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        border-radius: 22px;
        filter: brightness(0.95);
        transition: transform 0.6s ease, filter 0.6s ease;
    }

    /* TEXTE */

    .project-content {
        display: flex;
        flex-direction: column;
    }

    .project-tag {
        margin-bottom: 18px;
        font-size: 0.75rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        opacity: 0.6;
    }

    .project-content h2 {
        font-size: clamp(1.2rem, 1.8vw, 1.6rem);
        font-weight: 400;
        letter-spacing: -0.02em;
    }

    /* HOVER */

    .project-item:hover img {
        transform: scale(1.03);
        filter: brightness(1);
    }

    .project-item:hover h2 {
        opacity: 0.7;
    }

    /* RESPONSIVE */

    @media (max-width: 850px) {
        .project-item article {
            grid-template-columns: 1fr;
            gap: 26px;
        }
    }

    @media (max-width: 600px) {
        .projects {
            padding: 110px 22px 80px;
        }
    }

    /* ============================= */
    /* PAGE PROJET — THÉÂTRE DU NORD */
    /* ============================= */

    .page-projet {
        max-width: 1180px;
        margin: 0 auto;
        padding: 130px 24px 70px;
    }

    .theatre-nord {
        color: #221f20;
    }

    /* HERO */

    .hero-projet {
        margin-bottom: 90px;
    }

    .categorie-projet {
        display: inline-block;
        margin-bottom: 18px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #8a8a8a;
    }

    .hero-projet h1 {
        max-width: 900px;
        margin-bottom: 24px;
        font-size: clamp(2.8rem, 7vw, 6.5rem);
        line-height: 0.95;
        color: #221f20;
    }

    .intro-projet {
        max-width: 780px;
        margin-bottom: 46px;
        font-size: 1.2rem;
        line-height: 1.8;
        color: #444;
    }

    .hero-image-projet {
        width: 100%;
        border-radius: 32px;
        overflow: hidden;
        background-color: #221f20;
    }

    .hero-image-projet img {
        width: 100%;
        height: 620px;
        object-fit: cover;
        display: block;
    }

    /* INFOS PROJET */

    .infos-projet {
        display: grid;
        grid-template-columns: 1.5fr 0.9fr;
        gap: 50px;
        align-items: start;
        margin-bottom: 90px;
    }

    .infos-projet h2,
    .section-projet h2,
    .bilan-projet h2 {
        margin-bottom: 22px;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.05;
        color: #221f20;
    }

    .infos-projet p,
    .section-projet p,
    .bilan-projet p {
        margin-bottom: 18px;
        font-size: 1rem;
        line-height: 1.85;
        color: #444;
    }

    .fiche-projet {
        padding: 32px;
        border-radius: 28px;
        background-color: #221f20;
        color: #ffffff;
        position: sticky;
        top: 110px;
    }

    .fiche-projet p {
        margin-bottom: 22px;
        color: #ffffff;
        line-height: 1.5;
    }

    .fiche-projet p:last-child {
        margin-bottom: 0;
    }

    .fiche-projet strong {
        color: #fce94b;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* SECTIONS */

    .section-projet {
        margin-bottom: 95px;
    }

    .numero-section {
        display: inline-block;
        margin-bottom: 14px;
        padding-bottom: 6px;
        font-size: 0.9rem;
        font-weight: 700;
        color: #221f20;
        border-bottom: 3px solid #fce94b;
    }

    /* PALETTE */

    .palette-projet {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 34px;
    }

    .couleur {
        display: block;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        border: 1px solid #ddd;
    }

    .couleur-noir {
        background-color: #221f20;
    }

    .couleur-blanc {
        background-color: #ffffff;
    }

    .couleur-jaune {
        background-color: #fce94b;
    }

    .couleur-rouge {
        background-color: #da373e;
    }

    .couleur-bleu {
        background-color: #3989c7;
    }

    .couleur-violet {
        background-color: #bb4c95;
    }

    .couleur-vert {
        background-color: #54b59f;
    }

    /* FOCUS VISUEL */

    .projet-focus {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 46px;
        align-items: center;
        padding: 48px;
        border-radius: 36px;
        background-color: #221f20;
    }

    .projet-focus h2,
    .projet-focus p,
    .projet-focus .numero-section {
        color: #ffffff;
    }

    .projet-focus .numero-section {
        border-bottom-color: #fce94b;
    }

    .image-focus {
        border-radius: 28px;
        overflow: hidden;
        background-color: #000000;
    }

    .image-focus img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        display: block;
    }

    /* GRILLE DES RÉALISATIONS */

    .grille-realisations {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 42px;
    }

    .carte-realisation {
        overflow: hidden;
        border-radius: 30px;
        background-color: #ffffff;
        border: 1px solid #eeeeee;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .carte-realisation:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
    }

    .carte-realisation img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        display: block;
        background-color: #221f20;
    }

    .carte-realisation div {
        padding: 28px;
    }

    .carte-realisation h3 {
        margin-bottom: 12px;
        font-size: 1.35rem;
        color: #221f20;
    }

    .carte-realisation p {
        margin-bottom: 0;
        color: #555;
    }

    /* COMPÉTENCES */

    .competences-projet {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 30px;
    }

    .competences-projet span {
        display: inline-block;
        padding: 13px 20px;
        border-radius: 999px;
        background-color: #221f20;
        color: #ffffff;
        font-size: 0.95rem;
        font-weight: 500;
    }

    .competences-projet span:nth-child(2n) {
        background-color: #fce94b;
        color: #221f20;
    }

    /* BILAN */

    .bilan-projet {
        margin-bottom: 70px;
        padding: 56px;
        border-radius: 36px;
        background-color: #f5f5f5;
        border-left: 8px solid #fce94b;
    }

    .bilan-projet p {
        max-width: 850px;
    }

    /* NAVIGATION */

    .navigation-projets {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        margin-top: 50px;
    }

    .btn-retour,
    .btn-suivant {
        display: inline-block;
        padding: 14px 22px;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.25s ease;
    }

    .btn-retour {
        color: #221f20;
        border: 1px solid #221f20;
        background-color: transparent;
    }

    .btn-retour:hover {
        background-color: #221f20;
        color: #ffffff;
    }

    .btn-suivant {
        color: #221f20;
        background-color: #fce94b;
    }

    .btn-suivant:hover {
        background-color: #221f20;
        color: #ffffff;
    }

    /* RESPONSIVE */

    @media screen and (max-width: 950px) {
        .page-projet {
            padding-top: 110px;
        }

        .infos-projet,
        .projet-focus,
        .grille-realisations {
            grid-template-columns: 1fr;
        }

        .fiche-projet {
            position: static;
        }

        .hero-image-projet img {
            height: 460px;
        }

        .image-focus img {
            height: 440px;
        }
    }

    @media screen and (max-width: 650px) {
        .page-projet {
            padding: 100px 18px 50px;
        }

        .hero-projet {
            margin-bottom: 65px;
        }

        .intro-projet {
            font-size: 1.05rem;
        }

        .hero-image-projet,
        .projet-focus,
        .bilan-projet {
            border-radius: 24px;
        }

        .hero-image-projet img {
            height: 340px;
        }

        .projet-focus {
            padding: 28px;
        }

        .image-focus img {
            height: 340px;
        }

        .carte-realisation img {
            height: 280px;
        }

        .carte-realisation div {
            padding: 22px;
        }

        .bilan-projet {
            padding: 34px 26px;
        }

        .navigation-projets {
            flex-direction: column;
            align-items: stretch;
        }

        .btn-retour,
        .btn-suivant {
            text-align: center;
        }

        .couleur {
            width: 52px;
            height: 52px;
        }
    }

    /* ============================= */
    /* PAGE PROJET — SLOØØW */
    /* ============================= */

    .page-projet {
        max-width: 1180px;
        margin: 0 auto;
        padding: 130px 24px 70px;
    }

    .projet-sloow {
        color: #111111;
    }

    /* HERO */

    .hero-projet {
        margin-bottom: 90px;
    }

    .categorie-projet {
        display: inline-block;
        margin-bottom: 18px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #6f8f99;
    }

    .hero-projet h1 {
        max-width: 950px;
        margin-bottom: 24px;
        font-size: clamp(2.8rem, 7vw, 6.2rem);
        line-height: 0.95;
        color: #111111;
    }

    .intro-projet {
        max-width: 820px;
        margin-bottom: 46px;
        font-size: 1.2rem;
        line-height: 1.8;
        color: #444444;
    }

    .hero-image-projet {
        width: 100%;
        border-radius: 32px;
        overflow: hidden;
        background-color: #d9eef3;
    }

    .hero-image-projet img {
        width: 100%;
        height: 620px;
        object-fit: cover;
        object-position: top;
        display: block;
    }

    /* INFOS PROJET */

    .infos-projet {
        display: grid;
        grid-template-columns: 1.5fr 0.9fr;
        gap: 50px;
        align-items: start;
        margin-bottom: 90px;
    }

    .infos-projet h2,
    .section-projet h2,
    .bilan-projet h2 {
        margin-bottom: 22px;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.05;
        color: #111111;
    }

    .infos-projet p,
    .section-projet p,
    .bilan-projet p {
        margin-bottom: 18px;
        font-size: 1rem;
        line-height: 1.85;
        color: #444444;
    }

    .fiche-projet {
        padding: 32px;
        border-radius: 28px;
        background-color: #d9eef3;
        color: #111111;
        position: sticky;
        top: 110px;
    }

    .fiche-projet p {
        margin-bottom: 22px;
        color: #111111;
        line-height: 1.5;
    }

    .fiche-projet p:last-child {
        margin-bottom: 0;
    }

    .fiche-projet strong {
        color: #ff8f5c;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* SECTIONS */

    .section-projet {
        margin-bottom: 95px;
    }

    .numero-section {
        display: inline-block;
        margin-bottom: 14px;
        padding-bottom: 6px;
        font-size: 0.9rem;
        font-weight: 700;
        color: #111111;
        border-bottom: 3px solid #ffb48f;
    }

    /* OBJECTIFS */

    .objectifs-projet {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
        margin-top: 36px;
    }

    .objectifs-projet article {
        padding: 30px;
        border-radius: 28px;
        background-color: #f6f6f6;
        border: 1px solid #eeeeee;
    }

    .objectifs-projet h3 {
        margin-bottom: 14px;
        font-size: 1.3rem;
        color: #111111;
    }

    .objectifs-projet p {
        margin-bottom: 0;
    }

    /* FOCUS VISUEL */

    .projet-focus {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 46px;
        align-items: center;
        padding: 48px;
        border-radius: 36px;
        background-color: #d9eef3;
    }

    .projet-focus h2,
    .projet-focus p,
    .projet-focus .numero-section {
        color: #111111;
    }

    .projet-focus .numero-section {
        border-bottom-color: #ff8f5c;
    }

    .image-focus {
        border-radius: 28px;
        overflow: hidden;
        background-color: #ffffff;
    }

    .image-focus img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        object-position: top;
        display: block;
    }

    /* GRILLE DES RÉALISATIONS DESKTOP */

    .grille-realisations {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 42px;
    }

    .carte-realisation {
        overflow: hidden;
        border-radius: 30px;
        background-color: #ffffff;
        border: 1px solid #eeeeee;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .carte-realisation:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
    }

    .carte-realisation img {
        width: 100%;
        height: 390px;
        object-fit: cover;
        object-position: top;
        display: block;
        background-color: #d9eef3;
    }

    .carte-realisation div {
        padding: 28px;
    }

    .carte-realisation h3 {
        margin-bottom: 12px;
        font-size: 1.35rem;
        color: #111111;
    }

    .carte-realisation p {
        margin-bottom: 0;
        color: #555555;
    }

    /* SHOWCASE MOBILE */

    .mobile-showcase {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 42px;
        align-items: start;
    }

    .mobile-showcase article {
        background-color: #ffffff;
        border: 1px solid #eeeeee;
        border-radius: 28px;
        padding: 18px;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    }

    .mobile-showcase img {
        width: 100%;
        height: 560px;
        object-fit: cover;
        object-position: top;
        display: block;
        border-radius: 20px;
        background-color: #d9eef3;
        margin-bottom: 20px;
    }

    .mobile-showcase h3 {
        margin-bottom: 10px;
        font-size: 1.15rem;
        color: #111111;
    }

    .mobile-showcase p {
        margin-bottom: 0;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #555555;
    }

    /* PROTOTYPE FIGMA */

    .prototype-section {
        padding: 48px;
        border-radius: 36px;
        background-color: #ffb48f;
    }

    .prototype-section p {
        max-width: 820px;
        color: #111111;
    }

    .boutons-prototype {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 28px;
    }

    .btn-prototype {
        display: inline-block;
        padding: 14px 24px;
        border-radius: 999px;
        background-color: #111111;
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        transition: 0.25s ease;
    }

    .btn-prototype:hover {
        transform: translateY(-3px);
        background-color: #000000;
    }

    .btn-prototype-secondaire {
        background-color: transparent;
        color: #111111;
        border: 1px solid #111111;
    }

    .btn-prototype-secondaire:hover {
        background-color: #111111;
        color: #ffffff;
    }

    /* COMPÉTENCES */

    .competences-projet {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 30px;
    }

    .competences-projet span {
        display: inline-block;
        padding: 13px 20px;
        border-radius: 999px;
        background-color: #d9eef3;
        color: #111111;
        font-size: 0.95rem;
        font-weight: 500;
    }

    .competences-projet span:nth-child(2n) {
        background-color: #ffb48f;
    }

    /* BILAN */

    .bilan-projet {
        margin-bottom: 70px;
        padding: 56px;
        border-radius: 36px;
        background-color: #f6f6f6;
        border-left: 8px solid #ffb48f;
    }

    .bilan-projet p {
        max-width: 850px;
    }

    /* NAVIGATION */

    .navigation-projets {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        margin-top: 50px;
    }

    .btn-retour,
    .btn-suivant {
        display: inline-block;
        padding: 14px 22px;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.25s ease;
    }

    .btn-retour {
        color: #111111;
        border: 1px solid #111111;
        background-color: transparent;
    }

    .btn-retour:hover {
        background-color: #111111;
        color: #ffffff;
    }

    .btn-suivant {
        color: #111111;
        background-color: #ffb48f;
    }

    .btn-suivant:hover {
        background-color: #111111;
        color: #ffffff;
    }

    /* RESPONSIVE */

    @media screen and (max-width: 1100px) {
        .mobile-showcase {
            grid-template-columns: repeat(2, 1fr);
        }

        .mobile-showcase img {
            height: 620px;
        }
    }

    @media screen and (max-width: 950px) {
        .page-projet {
            padding-top: 110px;
        }

        .infos-projet,
        .projet-focus,
        .grille-realisations,
        .objectifs-projet {
            grid-template-columns: 1fr;
        }

        .fiche-projet {
            position: static;
        }

        .hero-image-projet img {
            height: 460px;
        }

        .image-focus img {
            height: 440px;
        }
    }

    @media screen and (max-width: 650px) {
        .page-projet {
            padding: 100px 18px 50px;
        }

        .hero-projet {
            margin-bottom: 65px;
        }

        .intro-projet {
            font-size: 1.05rem;
        }

        .hero-image-projet,
        .projet-focus,
        .prototype-section,
        .bilan-projet {
            border-radius: 24px;
        }

        .hero-image-projet img {
            height: 340px;
        }

        .projet-focus,
        .prototype-section {
            padding: 28px;
        }

        .image-focus img {
            height: 340px;
        }

        .carte-realisation img {
            height: 300px;
        }

        .carte-realisation div {
            padding: 22px;
        }

        .mobile-showcase {
            grid-template-columns: 1fr;
        }

        .mobile-showcase img {
            height: auto;
            max-height: none;
        }

        .boutons-prototype {
            flex-direction: column;
        }

        .btn-prototype {
            text-align: center;
        }

        .bilan-projet {
            padding: 34px 26px;
        }

        .navigation-projets {
            flex-direction: column;
            align-items: stretch;
        }

        .btn-retour,
        .btn-suivant {
            text-align: center;
        }
    }

    /* ============================= */
    /* PAGE À PROPOS */
    /* ============================= */

    .about-page {
        max-width: 1180px;
        margin: 0 auto;
        padding: 130px 24px 70px;
        color: #111111;
    }

    /* HERO */

    .about-hero {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
        align-items: center;
        margin-bottom: 110px;
    }

    .about-hero-text h1 {
        max-width: 760px;
        margin-bottom: 28px;
        font-size: clamp(2.4rem, 5.6vw, 5.4rem);
        line-height: 0.98;
        letter-spacing: -0.04em;
        color: #111111;
    }

    .about-hero-text p:not(.label) {
        max-width: 680px;
        margin-bottom: 30px;
        font-size: 1.08rem;
        line-height: 1.85;
        color: #444444;
    }

    .label {
        display: inline-block;
        margin-bottom: 18px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #b79c8f;
    }

    .about-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 34px;
    }

    .about-btn-primary,
    .about-btn-secondary {
        display: inline-block;
        padding: 14px 24px;
        border-radius: 999px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.25s ease;
    }

    .about-btn-primary {
        background-color: #111111;
        color: #ffffff;
    }

    .about-btn-primary:hover {
        background-color: #b79c8f;
        color: #111111;
        transform: translateY(-3px);
    }

    .about-btn-secondary {
        border: 1px solid #111111;
        color: #111111;
        background-color: transparent;
    }

    .about-btn-secondary:hover {
        background-color: #111111;
        color: #ffffff;
        transform: translateY(-3px);
    }

    /* IMAGE HERO */

    .about-hero-visual {
        width: 100%;
        border-radius: 36px;
        overflow: hidden;
        background-color: #f4efe9;
        box-shadow: 0 18px 55px rgba(0, 0, 0, 0.06);
    }

    .about-hero-visual img {
        width: 100%;
        height: 580px;
        object-fit: cover;
        display: block;
    }

    /* SECTIONS */

    .about-section {
        display: grid;
        grid-template-columns: 0.35fr 1fr;
        gap: 60px;
        margin-bottom: 105px;
    }

    .about-section-title span {
        display: inline-block;
        margin-bottom: 16px;
        padding-bottom: 6px;
        font-size: 0.9rem;
        font-weight: 700;
        color: #111111;
        border-bottom: 3px solid #b79c8f;
    }

    .about-section-title h2 {
        font-size: clamp(1.8rem, 3.4vw, 3rem);
        line-height: 1.05;
        color: #111111;
    }

    .about-text p,
    .about-section p {
        margin-bottom: 20px;
        font-size: 1rem;
        line-height: 1.85;
        color: #444444;
    }

    .about-text p:last-child {
        margin-bottom: 0;
    }

    /* DÉMARCHE */

    .about-process {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-process article {
        padding: 30px;
        border-radius: 28px;
        background-color: #f6f2ee;
        border: 1px solid #eee5df;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .about-process article:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
    }

    .about-process h3 {
        margin-bottom: 14px;
        font-size: 1.35rem;
        color: #111111;
    }

    .about-process p {
        margin-bottom: 0;
        color: #555555;
    }

    /* COMPÉTENCES */

    .about-skills-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .about-skill-card {
        padding: 32px;
        border-radius: 30px;
        background-color: #111111;
        color: #ffffff;
    }

    .about-skill-card:nth-child(2) {
        background-color: #b79c8f;
        color: #111111;
    }

    .about-skill-card:nth-child(3) {
        background-color: #f6f2ee;
        color: #111111;
        border: 1px solid #eee5df;
    }

    .about-skill-card h3 {
        margin-bottom: 18px;
        font-size: 1.35rem;
    }

    .about-skill-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .about-skill-card li {
        margin-bottom: 12px;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .about-skill-card li:last-child {
        margin-bottom: 0;
    }

    /* VALEURS */

    .about-values {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
        margin-bottom: 105px;
        padding: 56px;
        border-radius: 36px;
        background-color: #111111;
    }

    .about-values h2 {
        max-width: 620px;
        font-size: clamp(2rem, 4.5vw, 4rem);
        line-height: 1;
        letter-spacing: -0.04em;
        color: #ffffff;
    }

    .about-values p:not(.label) {
        margin-bottom: 0;
        font-size: 1.05rem;
        line-height: 1.85;
        color: #f4efe9;
    }

    .about-values .label {
        color: #b79c8f;
    }

    /* TAGS */

    .about-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
    }

    .about-tags span {
        display: inline-block;
        padding: 13px 20px;
        border-radius: 999px;
        background-color: #f6f2ee;
        color: #111111;
        border: 1px solid #eee5df;
        font-size: 0.95rem;
        font-weight: 500;
    }

    .about-tags span:nth-child(2n) {
        background-color: #111111;
        color: #ffffff;
        border-color: #111111;
    }

    .about-tags span:nth-child(3n) {
        background-color: #b79c8f;
        color: #111111;
        border-color: #b79c8f;
    }

    /* CTA */

    .about-cta {
        margin-bottom: 70px;
        padding: 60px;
        border-radius: 36px;
        background-color: #f6f2ee;
        text-align: center;
    }

    .about-cta h2 {
        max-width: 720px;
        margin: 0 auto 20px;
        font-size: clamp(2rem, 4vw, 3.8rem);
        line-height: 1;
        letter-spacing: -0.04em;
        color: #111111;
    }

    .about-cta p {
        max-width: 680px;
        margin: 0 auto 32px;
        font-size: 1.05rem;
        line-height: 1.75;
        color: #444444;
    }

    .about-cta a {
        display: inline-block;
        padding: 14px 26px;
        border-radius: 999px;
        background-color: #111111;
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        transition: 0.25s ease;
    }

    .about-cta a:hover {
        transform: translateY(-3px);
        background-color: #b79c8f;
        color: #111111;
    }

    /* RESPONSIVE */

    @media screen and (max-width: 980px) {
        .about-page {
            padding-top: 110px;
        }

        .about-hero,
        .about-section,
        .about-values {
            grid-template-columns: 1fr;
        }

        .about-hero {
            gap: 44px;
            margin-bottom: 85px;
        }

        .about-section {
            gap: 30px;
            margin-bottom: 80px;
        }

        .about-hero-visual img {
            height: 480px;
        }

        .about-skills-grid {
            grid-template-columns: 1fr;
        }

        .about-values {
            padding: 42px;
        }
    }

    @media screen and (max-width: 650px) {
        .about-page {
            padding: 100px 18px 50px;
        }

        .about-hero-text h1 {
            font-size: clamp(2.2rem, 12vw, 3.6rem);
        }

        .about-hero-text p:not(.label) {
            font-size: 1rem;
        }

        .about-buttons {
            flex-direction: column;
        }

        .about-btn-primary,
        .about-btn-secondary {
            text-align: center;
        }

        .about-hero-visual,
        .about-values,
        .about-cta {
            border-radius: 24px;
        }

        .about-hero-visual img {
            height: 340px;
        }

        .about-process {
            grid-template-columns: 1fr;
        }

        .about-process article,
        .about-skill-card {
            border-radius: 24px;
            padding: 26px;
        }

        .about-values,
        .about-cta {
            padding: 32px 24px;
        }

        .about-tags span {
            font-size: 0.9rem;
            padding: 11px 16px;
        }
    }

    .hero {
        position: relative;
        overflow: hidden;
    }

    .hero-body {
        position: relative;
        z-index: 2;
    }

    /* Logo animé à droite en arrière-plan du hero */
    .hero {
        position: relative;
        overflow: hidden;
    }

    .hero-body {
        position: relative;
        z-index: 3;
    }

    .hero-bg-logo {
        position: absolute;
        z-index: 1;

        width: min(48vw, 520px);
        max-width: none;

        top: 50%;
        right: -4vw;
        left: auto;

        opacity: 0.06;
        transform: translateY(-50%) scale(1);

        pointer-events: none;
        user-select: none;

        animation: logoBreathRight 8s ease-in-out infinite;
    }

    @keyframes logoBreathRight {
        0%, 100% {
            transform: translateY(-50%) scale(1) rotate(0deg);
            opacity: 0.04;
        }

        50% {
            transform: translateY(-50%) scale(1.06) rotate(-2deg);
            opacity: 0.10;
        }
    }

    @media (max-width: 768px) {
        .hero-bg-logo {
            width: 95vw;
            right: -35vw;
            opacity: 0.035;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .hero-bg-logo {
            animation: none;
        }
    }

    .video-focus {
        width: 100%;
        overflow: hidden;
        border-radius: 20px;
    }

    .video-focus video {
        display: block;
        width: 100%;
        height: auto;
        border-radius: inherit;
        object-fit: cover;
    }

    .about-hero-visual img {
        width: 100%;
        height: 580px;
        object-fit: cover;
    }
           /* ============================= */
           /* PAGE À PROPOS — HERO */
           /* ============================= */

       .about-page {
           width: min(calc(100% - 80px), 1180px);
           margin: 0 auto;
           padding: 90px 0 70px;
           color: #111111;
       }

    /* Structure du hero */

    .about-hero {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
        gap: clamp(40px, 6vw, 80px);
        align-items: center;
        margin-bottom: 110px;
    }

    /* Partie texte */

    .about-hero-text {
        min-width: 0;
    }

    .about-hero-text h1 {
        max-width: 760px;
        margin-bottom: 28px;
        font-size: clamp(2.4rem, 5.2vw, 5.2rem);
        line-height: 0.98;
        font-weight: 400;
        letter-spacing: -0.04em;
        color: #111111;
    }

    .about-hero-text p:not(.label) {
        max-width: 650px;
        margin-bottom: 30px;
        font-size: 1.08rem;
        line-height: 1.85;
        color: #444444;
    }

    /* Conteneur de l’image */

    .about-hero-visual {
        position: relative;
        width: 100%;
        max-width: 460px;
        justify-self: end;
        aspect-ratio: 4 / 5;
        overflow: hidden;
        border-radius: 36px;
        background-color: #f4efe9;
        box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    }

    /* Image */

    .about-hero-visual img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;

        /*
           Ajuste cette valeur pour déplacer la photo :
           center center = centrée
           center top = cadrage vers le haut
           50% 25% = visage placé plus haut
        */
        object-position: 50% 25%;

        transition: transform 0.5s ease;
    }

    .about-hero-visual:hover img {
        transform: scale(1.02);
    }

    /* Responsive tablette */

    @media screen and (max-width: 980px) {
        .about-page {
            width: min(calc(100% - 40px), 1180px);
            padding-top: 70px;
        }

        .about-hero {
            grid-template-columns: 1fr;
            gap: 50px;
            margin-bottom: 85px;
        }

        .about-hero-text {
            max-width: 820px;
        }

        .about-hero-visual {
            width: min(100%, 540px);
            max-width: 540px;
            justify-self: center;
            aspect-ratio: 4 / 5;
        }
    }

    /* Responsive mobile */

    @media screen and (max-width: 650px) {
        .about-page {
            width: min(calc(100% - 36px), 1180px);
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .about-hero {
            gap: 36px;
            margin-bottom: 70px;
        }

        .about-hero-text h1 {
            font-size: clamp(2.2rem, 11vw, 3.5rem);
            line-height: 1;
        }

        .about-hero-text p:not(.label) {
            font-size: 1rem;
            line-height: 1.75;
        }

        .about-hero-visual {
            width: 100%;
            max-width: none;
            aspect-ratio: 4 / 5;
            border-radius: 24px;
        }

        .about-hero-visual img {
            object-position: 50% 20%;
        }
    }

