:root {
    --purple-dark: #16021f;
    --purple: #3b0855;
    --purple-soft: #852467;
    --coral: #fd8083;
    --pink: #ee227d;
    --blue: #498099;
    --cyan: #30c0b7;

    --surface: rgba(59, 8, 85, 0.72);
    --surface-strong: rgba(35, 5, 51, 0.92);
    --text: #fff7ff;
    --text-muted: #d8bcd8;
    --border: rgba(48, 192, 183, 0.25);

    --container-width: 1180px;
    --shadow-pink: 0 0 35px rgba(238, 34, 125, 0.22);
    --shadow-cyan: 0 0 35px rgba(48, 192, 183, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--purple-dark);
    color: var(--text);
    font-family: Inter, Aptos, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

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

a:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 5px;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(238, 34, 125, 0.24);
    background: rgba(22, 2, 31, 0.86);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
}

.header-container {
    width: min(calc(100% - 40px), var(--container-width));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    position: relative;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid rgba(48, 192, 183, 0.65);
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            rgba(238, 34, 125, 0.95),
            rgba(59, 8, 85, 0.95) 54%,
            rgba(48, 192, 183, 0.9)
        );
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow:
        0 0 20px rgba(238, 34, 125, 0.35),
        0 0 22px rgba(48, 192, 183, 0.2);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.site-logo::after {
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9px;
    content: "";
}

.site-logo:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 28px rgba(238, 34, 125, 0.55),
        0 0 30px rgba(48, 192, 183, 0.3);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation a {
    position: relative;
    color: var(--text-muted);
    font-size: 0.94rem;
    font-weight: 700;
    transition:
        color 180ms ease,
        text-shadow 180ms ease;
}

.main-navigation a:not(.navigation-contact)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    box-shadow: 0 0 9px var(--pink);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.main-navigation a:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(48, 192, 183, 0.55);
}

.main-navigation a:hover::after {
    transform: scaleX(1);
}

.main-navigation .navigation-contact {
    padding: 10px 19px;
    border: 1px solid rgba(238, 34, 125, 0.65);
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            rgba(238, 34, 125, 0.96),
            rgba(133, 36, 103, 0.96)
        );
    color: #ffffff;
    box-shadow: 0 0 20px rgba(238, 34, 125, 0.25);
}

.main-navigation .navigation-contact:hover {
    box-shadow: 0 0 28px rgba(238, 34, 125, 0.45);
}

/* HERO */
.mobile-menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(48, 192, 183, 0.65);
    border-radius: 11px;
    background: rgba(59, 8, 85, 0.72);
    cursor: pointer;
    box-shadow: 0 0 18px rgba(48, 192, 183, 0.16);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--cyan);
    transition:
        transform 200ms ease,
        opacity 200ms ease;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: calc(100vh - 78px);
    padding: 92px 0 125px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 8% 18%, #ffffff 0 1px, transparent 2px),
        radial-gradient(circle at 18% 35%, #ffffff 0 1px, transparent 2px),
        radial-gradient(circle at 31% 13%, #fd8083 0 1px, transparent 2px),
        radial-gradient(circle at 44% 28%, #ffffff 0 1px, transparent 2px),
        radial-gradient(circle at 57% 9%, #30c0b7 0 1px, transparent 2px),
        radial-gradient(circle at 69% 31%, #ffffff 0 1px, transparent 2px),
        radial-gradient(circle at 81% 12%, #ffffff 0 1px, transparent 2px),
        radial-gradient(circle at 92% 39%, #fd8083 0 1px, transparent 2px),
        radial-gradient(
            ellipse at 50% 94%,
            rgba(238, 34, 125, 0.5),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #12021d 0%,
            #2b0740 45%,
            #3b0855 72%,
            #16021f 100%
        );
}

/* Soleil synthwave */

.hero::before {
    position: absolute;
    z-index: -2;
    top: 14%;
    right: 9%;
    width: min(29vw, 390px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0 17px,
            rgba(59, 8, 85, 0.72) 17px 23px
        ),
        linear-gradient(
            180deg,
            var(--coral) 0%,
            var(--pink) 48%,
            #bc197d 100%
        );
    box-shadow:
        0 0 35px rgba(253, 128, 131, 0.5),
        0 0 95px rgba(238, 34, 125, 0.35);
    content: "";
    opacity: 0.9;
}

/* Grille en perspective */

.hero::after {
    position: absolute;
    z-index: -1;
    right: -20%;
    bottom: -230px;
    left: -20%;
    height: 410px;
    background-image:
        linear-gradient(
            rgba(48, 192, 183, 0.55) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(48, 192, 183, 0.55) 1px,
            transparent 1px
        );
    background-size: 55px 34px;
    border-top: 1px solid rgba(48, 192, 183, 0.9);
    box-shadow: 0 -8px 30px rgba(48, 192, 183, 0.2);
    content: "";
    transform: perspective(360px) rotateX(60deg);
    transform-origin: center top;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 40px), var(--container-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.75fr);
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.availability {
    width: fit-content;
    margin-bottom: 27px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(48, 192, 183, 0.52);
    border-radius: 999px;
    background: rgba(59, 8, 85, 0.58);
    color: #9bf6ef;
    font-size: 0.86rem;
    font-weight: 750;
    box-shadow:
        inset 0 0 14px rgba(48, 192, 183, 0.08),
        0 0 20px rgba(48, 192, 183, 0.1);
    backdrop-filter: blur(10px);
}

.availability-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow:
        0 0 8px var(--cyan),
        0 0 16px rgba(48, 192, 183, 0.75);
}

.hero-introduction {
    margin-bottom: 8px;
    color: var(--cyan);
    font-size: 1.05rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(48, 192, 183, 0.48);
}

.hero h1 {
    max-width: 760px;
    color: #ffffff;
    font-size: clamp(3rem, 6.3vw, 5.65rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-shadow:
        3px 3px 0 rgba(238, 34, 125, 0.18),
        0 0 28px rgba(238, 34, 125, 0.12);
}

.hero h1 span {
    margin-top: 19px;
    display: block;
    background: linear-gradient(
        90deg,
        var(--coral),
        var(--pink) 48%,
        var(--cyan)
    );
    background-clip: text;
    color: transparent;
    font-size: clamp(1.65rem, 3.1vw, 2.75rem);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.15;
    text-shadow: none;
}

.hero-description {
    max-width: 680px;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: clamp(1rem, 1.4vw, 1.13rem);
    line-height: 1.8;
}

.hero-actions {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 9px;
    font-weight: 800;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

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

.button-primary {
    border-color: rgba(253, 128, 131, 0.55);
    background: linear-gradient(135deg, var(--pink), var(--purple-soft));
    color: #ffffff;
    box-shadow:
        0 0 22px rgba(238, 34, 125, 0.35),
        0 12px 25px rgba(10, 0, 16, 0.3);
}

.button-primary:hover {
    box-shadow:
        0 0 34px rgba(238, 34, 125, 0.56),
        0 15px 30px rgba(10, 0, 16, 0.38);
}

.button-secondary {
    border-color: rgba(48, 192, 183, 0.52);
    background: rgba(22, 2, 31, 0.5);
    color: #b8fffa;
    box-shadow: inset 0 0 18px rgba(48, 192, 183, 0.06);
    backdrop-filter: blur(8px);
}

.button-secondary:hover {
    background: rgba(48, 192, 183, 0.12);
    box-shadow:
        inset 0 0 18px rgba(48, 192, 183, 0.08),
        0 0 24px rgba(48, 192, 183, 0.24);
}

.hero-technologies {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
}

.hero-technologies li {
    padding: 7px 11px;
    border: 1px solid rgba(133, 36, 103, 0.75);
    border-radius: 7px;
    background: rgba(59, 8, 85, 0.52);
    color: #f2dbea;
    font-size: 0.8rem;
    font-weight: 750;
    letter-spacing: 0.03em;
    box-shadow: inset 0 0 12px rgba(238, 34, 125, 0.05);
    backdrop-filter: blur(8px);
}

/* CARTE DE PROFIL */

.profile-card {
    position: relative;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(48, 192, 183, 0.48);
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(133, 36, 103, 0.28),
            transparent 38%
        ),
        rgba(28, 4, 42, 0.86);
    color: #ffffff;
    box-shadow:
        12px 12px 0 rgba(238, 34, 125, 0.1),
        -8px -8px 0 rgba(48, 192, 183, 0.06),
        var(--shadow-pink),
        var(--shadow-cyan);
    backdrop-filter: blur(18px);
}

.profile-card::before {
    position: absolute;
    top: -80px;
    right: -70px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(238, 34, 125, 0.3);
    border-radius: 50%;
    background: rgba(238, 34, 125, 0.1);
    box-shadow: 0 0 45px rgba(238, 34, 125, 0.18);
    content: "";
}

.profile-card-top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-monogram {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 13px;
    background: linear-gradient(135deg, var(--pink), var(--coral));
    color: var(--purple-dark);
    font-weight: 950;
    letter-spacing: 0.05em;
    box-shadow: 0 0 24px rgba(238, 34, 125, 0.38);
}

.profile-card-top strong,
.profile-card-top span {
    display: block;
}

.profile-card-top strong {
    font-size: 1.05rem;
}

.profile-card-top span {
    margin-top: 2px;
    color: #cdb3cd;
    font-size: 0.88rem;
}

.profile-card-content {
    position: relative;
    margin: 30px 0 24px;
    border-top: 1px solid rgba(48, 192, 183, 0.21);
}

.profile-information {
    padding: 18px 0;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    border-bottom: 1px solid rgba(48, 192, 183, 0.18);
}

.profile-information span {
    color: #82dad4;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.profile-information strong {
    color: #fff7ff;
    font-size: 0.93rem;
    line-height: 1.5;
}

.profile-card-footer {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #f2dbea;
    font-size: 0.88rem;
    font-weight: 700;
}

/* À PROPOS */

.about-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    border-top: 1px solid rgba(238, 34, 125, 0.2);
    background:
        radial-gradient(
            circle at 12% 40%,
            rgba(238, 34, 125, 0.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(48, 192, 183, 0.1),
            transparent 28%
        ),
        linear-gradient(145deg, #1b0328, #300643);
}

.about-section::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 6%;
    width: 1px;
    background: linear-gradient(
        transparent,
        rgba(48, 192, 183, 0.6),
        transparent
    );
    box-shadow: 0 0 15px rgba(48, 192, 183, 0.4);
    content: "";
}

@media (max-width: 1350px) {
    .about-section::before {
        left: 10px;
    }
}

@media (max-width: 560px) {
    .about-section::before {
        display: none;
    }
}

@media (max-width: 1320px) {
    .profile-intro::before {
        display: none;
    }

    @media (max-width: 1315px) {
    .profile-intro::after {
            display: none;
        }
    }
}

@media (max-width: 810px) {
    .experience-intro::before {
        display: none;
    }
}

@media (max-width: 1000px) {
    .experience-counter::before {
        display: none;
    }
}

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

.section-label {
    margin-bottom: 24px;
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-shadow: 0 0 13px rgba(48, 192, 183, 0.48);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: clamp(45px, 8vw, 105px);
}

.about-grid h2 {
    background: linear-gradient(
        100deg,
        #ffffff 0%,
        var(--coral) 58%,
        var(--pink) 100%
    );
    background-clip: text;
    color: transparent;
    font-size: clamp(2rem, 3.8vw, 3.35rem);
    letter-spacing: -0.045em;
    line-height: 1.1;
    padding-bottom: 0.12em;
}

.about-content {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-content p + p {
    margin-top: 18px;
}

/* FOOTER */

.site-footer {
    padding: 42px 0;
    border-top: 1px solid rgba(48, 192, 183, 0.2);
    background: #100118;
    color: #ffffff;
}

.footer-container {
    width: min(calc(100% - 40px), var(--container-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 35px;
}

.site-footer strong {
    font-size: 1rem;
}

.site-footer p,
.footer-links {
    color: #bca4bc;
    font-size: 0.85rem;
}

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

.footer-links a {
    transition:
        color 180ms ease,
        text-shadow 180ms ease;
}

.footer-links a:hover {
    color: var(--cyan);
    text-shadow: 0 0 12px rgba(48, 192, 183, 0.55);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        max-height: calc(100vh - 79px);
        padding: 24px max(20px, calc((100% - var(--container-width)) / 2));
        display: grid;
        align-items: stretch;
        gap: 6px;
        overflow-y: auto;
        border-bottom: 1px solid rgba(48, 192, 183, 0.3);
        background: rgba(22, 2, 31, 0.98);
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition:
            opacity 200ms ease,
            visibility 200ms ease,
            transform 200ms ease;
    }

    .site-header.menu-open .main-navigation {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-navigation a,
    .main-navigation .navigation-contact {
        width: 100%;
        padding: 14px 18px;
        border: 0;
        border-radius: 8px;
        background: transparent;
        box-shadow: none;
        color: var(--text-muted);
    }

    .main-navigation a:hover,
    .main-navigation .navigation-contact:hover {
        background: rgba(48, 192, 183, 0.09);
        color: #ffffff;
        box-shadow: none;
    }

    .main-navigation a:not(.navigation-contact)::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 75px 0 120px;
    }

    .hero::before {
        top: 44%;
        right: -8%;
        width: 320px;
        opacity: 0.42;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .profile-card {
        max-width: 620px;
    }

    .about-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .header-container {
        width: min(calc(100% - 28px), var(--container-width));
        min-height: 70px;
    }

    .site-logo {
        width: 44px;
        height: 44px;
    }

    .hero {
        padding: 58px 0 105px;
    }

    .hero::before {
        top: 49%;
        right: -105px;
        width: 280px;
    }

    .hero::after {
        bottom: -255px;
        height: 370px;
        background-size: 40px 28px;
    }

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

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

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .profile-card {
        padding: 22px;
        border-radius: 16px;
    }

    .profile-information {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .about-section {
        padding: 75px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}



/* =====================================================
   PAGE À PROPOS — DOSSIER SYNTHWAVE
   ===================================================== */

.profile-intro {
    position: relative;
    padding: 115px 0 0;
    overflow: hidden;
    isolation: isolate;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0 5px,
            rgba(255, 255, 255, 0.012) 5px 6px
        ),
        radial-gradient(
            circle at 88% 25%,
            rgba(238, 34, 125, 0.2),
            transparent 25%
        ),
        radial-gradient(
            circle at 12% 70%,
            rgba(48, 192, 183, 0.1),
            transparent 25%
        ),
        linear-gradient(135deg, #12021d, #300643 70%, #3b0855);
}

.profile-intro::before {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 8%;
    width: 1px;
    background: linear-gradient(
        transparent,
        rgba(48, 192, 183, 0.65),
        transparent
    );
    box-shadow: 0 0 14px rgba(48, 192, 183, 0.4);
    content: "";
}

.profile-intro::after {
    position: absolute;
    z-index: -1;
    top: 41%;
    right: 0;
    width: 37%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(238, 34, 125, 0.8),
        transparent
    );
    box-shadow: 0 0 15px rgba(238, 34, 125, 0.55);
    content: "";
}

.profile-background-title {
    position: absolute;
    z-index: -2;
    top: -55px;
    right: -25px;
    color: transparent;
    font-size: clamp(8rem, 18vw, 21rem);
    font-weight: 950;
    letter-spacing: -0.08em;
    line-height: 1;
    white-space: nowrap;
    -webkit-text-stroke: 1px rgba(253, 128, 131, 0.1);
    user-select: none;
}

.profile-intro-layout {
    display: grid;
    grid-template-columns: 115px minmax(0, 850px);
    align-items: start;
    gap: clamp(35px, 7vw, 90px);
}

.profile-chapter {
    min-height: 315px;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-chapter span {
    width: 1px;
    flex: 1;
    margin: 18px 0;
    background: linear-gradient(
        var(--cyan),
        var(--pink)
    );
    box-shadow: 0 0 10px rgba(48, 192, 183, 0.5);
}

.profile-chapter p {
    color: #cdb2cd;
    font-size: 0.75rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.page-eyebrow {
    width: fit-content;
    margin-bottom: 24px;
    color: var(--coral);
    font-size: 0.79rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-shadow: 0 0 12px rgba(253, 128, 131, 0.42);
}

.profile-intro-content h1 {
    max-width: 940px;
    color: #ffffff;
    font-size: clamp(3rem, 5.7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.01;
}

.profile-intro-content h1 span {
    display: block;
    background: linear-gradient(
        90deg,
        var(--pink),
        var(--coral) 48%,
        var(--cyan)
    );
    background-clip: text;
    color: transparent;
}

.page-introduction {
    max-width: 720px;
    margin-top: 30px;
    color: #d2bad2;
    font-size: 1.08rem;
    line-height: 1.85;
}

.profile-facts {
    margin-top: 85px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(48, 192, 183, 0.28);
    background: rgba(18, 2, 29, 0.34);
    backdrop-filter: blur(12px);
}

.profile-facts > div {
    min-height: 135px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(48, 192, 183, 0.18);
}

.profile-facts > div:last-child {
    border-right: 0;
}

.profile-facts span {
    margin-bottom: 8px;
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.profile-facts strong {
    color: #ffffff;
    font-size: 0.94rem;
    line-height: 1.5;
}

/* Parcours : section claire et éditoriale */

.profile-story {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(253, 128, 131, 0.08),
            transparent 40%
        ),
        #f5eaf1;
    color: var(--purple);
}

.profile-story::before {
    position: absolute;
    top: 0;
    right: 9%;
    width: 170px;
    height: 8px;
    background: linear-gradient(
        90deg,
        var(--pink),
        var(--coral),
        var(--cyan)
    );
    content: "";
}

.profile-story::after {
    position: absolute;
    right: -110px;
    bottom: -110px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(133, 36, 103, 0.13);
    border-radius: 50%;
    content: "";
}

.profile-story-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) 1.15fr;
    gap: clamp(60px, 9vw, 130px);
}

.profile-story .section-label {
    color: var(--pink);
    text-shadow: none;
}

.profile-story-heading h2 {
    color: var(--purple);
    font-size: clamp(2.1rem, 4vw, 3.55rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.profile-story-text {
    position: relative;
    padding-left: 35px;
    color: #5c315a;
    font-size: 1.05rem;
    line-height: 1.9;
}

.profile-story-text::before {
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: 0;
    width: 3px;
    background: linear-gradient(
        var(--pink),
        var(--coral),
        var(--cyan)
    );
    content: "";
}

.profile-story-text p + p {
    margin-top: 22px;
}

/* Méthode : grandes lignes horizontales */

.profile-method {
    padding: 115px 0;
    background:
        linear-gradient(
            rgba(48, 192, 183, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(48, 192, 183, 0.035) 1px,
            transparent 1px
        ),
        #150220;
    background-size: 48px 48px;
}

.profile-method-heading {
    max-width: 760px;
    margin-bottom: 65px;
}

.profile-method-heading h2 {
    color: #ffffff;
    font-size: clamp(2.1rem, 4vw, 3.55rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.profile-method-list {
    border-top: 1px solid rgba(48, 192, 183, 0.25);
}

.profile-method-list article {
    position: relative;
    min-height: 175px;
    padding: 33px 20px;
    display: grid;
    grid-template-columns: minmax(125px, 0.35fr) 1fr;
    align-items: center;
    gap: 35px;
    overflow: hidden;
    border-bottom: 1px solid rgba(48, 192, 183, 0.25);
    transition:
        padding-left 200ms ease,
        background 200ms ease;
}

.profile-method-list article::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: linear-gradient(
        var(--pink),
        var(--coral)
    );
    box-shadow: 0 0 15px rgba(238, 34, 125, 0.55);
    content: "";
    opacity: 0;
    transition: opacity 200ms ease;
}

.profile-method-list article:hover {
    padding-left: 35px;
    background: linear-gradient(
        90deg,
        rgba(133, 36, 103, 0.16),
        transparent 65%
    );
}

.profile-method-list article:hover::after {
    opacity: 1;
}

.profile-method-list article > span {
    color: transparent;
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    font-weight: 950;
    letter-spacing: -0.07em;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(48, 192, 183, 0.55);
}

.profile-method-list article:nth-child(2) > span {
    -webkit-text-stroke-color: rgba(253, 128, 131, 0.55);
}

.profile-method-list article:nth-child(3) > span {
    -webkit-text-stroke-color: rgba(238, 34, 125, 0.55);
}

.profile-method-list h3 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.45rem;
}

.profile-method-list p {
    max-width: 720px;
    color: #cbb3cb;
    line-height: 1.8;
}

/* Partie personnelle */

.profile-personal {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 50%,
            rgba(48, 192, 183, 0.16),
            transparent 27%
        ),
        linear-gradient(
            120deg,
            #3b0855 0%,
            #852467 54%,
            #3b0855 100%
        );
}

.profile-personal::after {
    position: absolute;
    top: -140px;
    right: -100px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(253, 128, 131, 0.2);
    border-radius: 50%;
    content: "";
}

.profile-personal-layout {
    display: grid;
    grid-template-columns: 130px 0.85fr 1fr;
    align-items: center;
    gap: clamp(35px, 6vw, 80px);
}

.profile-personal-number {
    color: transparent;
    font-size: clamp(5rem, 9vw, 9rem);
    font-weight: 950;
    letter-spacing: -0.08em;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(48, 192, 183, 0.55);
}

.profile-personal h2 {
    color: #ffffff;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.profile-personal-layout > div:last-child {
    color: #f0d8e9;
    font-size: 1.02rem;
    line-height: 1.85;
}

.text-link {
    width: fit-content;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8ff5ee;
    font-weight: 850;
    text-shadow: 0 0 12px rgba(48, 192, 183, 0.4);
}

.text-link span {
    font-size: 1.3rem;
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(6px);
}

/* Responsive */

@media (max-width: 900px) {
    .profile-intro {
        padding-top: 80px;
    }

    .profile-intro-layout {
        grid-template-columns: 70px 1fr;
        gap: 30px;
    }

    .profile-background-title {
        top: 20px;
    }

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

    .profile-facts > div:nth-child(2) {
        border-right: 0;
    }

    .profile-facts > div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(48, 192, 183, 0.18);
    }

    .profile-story-layout {
        grid-template-columns: 1fr;
    }

    .profile-personal-layout {
        grid-template-columns: 95px 1fr;
    }

    .profile-personal-layout > div:last-child {
        grid-column: 2;
    }

        .hero-technologies {
        position: relative;
        z-index: 2;
        margin-top: 30px;
        gap: 10px;
    }

    .hero-technologies li {
        padding: 8px 12px;
        border-color: rgba(238, 34, 125, 0.82);
        background: rgba(35, 5, 49, 0.88);
        color: #ffffff;
        box-shadow:
            0 5px 15px rgba(0, 0, 0, 0.3),
            inset 0 0 12px rgba(238, 34, 125, 0.08);
        backdrop-filter: blur(12px);
    }

    .hero::before {
        opacity: 0.27;
    }
}

@media (max-width: 560px) {
    .profile-intro {
        padding-top: 65px;
    }

    .profile-intro-layout {
        grid-template-columns: 1fr;
    }

    .profile-chapter {
        min-height: 0;
        flex-direction: row;
        justify-content: flex-start;
        gap: 13px;
    }

    .profile-chapter span {
        width: 45px;
        height: 1px;
        flex: none;
        margin: 0;
    }

    .profile-chapter p {
        writing-mode: initial;
        transform: none;
    }

    .profile-intro-content h1 {
        font-size: clamp(2.65rem, 14vw, 4rem);
    }

    .profile-facts {
        margin-top: 60px;
        grid-template-columns: 1fr;
    }

    .profile-facts > div {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(48, 192, 183, 0.18);
    }

    .profile-story,
    .profile-method,
    .profile-personal {
        padding: 75px 0;
    }

    .profile-story-text {
        padding-left: 22px;
    }

    .profile-method-list article {
        grid-template-columns: 75px 1fr;
        gap: 20px;
        padding-right: 0;
        padding-left: 0;
    }

    .profile-method-list article:hover {
        padding-left: 10px;
    }

    .profile-method-list article > span {
        font-size: 3.8rem;
    }

    .profile-personal-layout {
        grid-template-columns: 1fr;
    }

    .profile-personal-number {
        font-size: 5rem;
    }

    .profile-personal-layout > div:last-child {
        grid-column: auto;
    }
}


/* =====================================================
   PAGE EXPÉRIENCE
   ===================================================== */

/* Introduction */

.experience-intro {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(238, 34, 125, 0.25);
    background:
        repeating-linear-gradient(
            135deg,
            transparent 0 70px,
            rgba(48, 192, 183, 0.035) 70px 71px
        ),
        radial-gradient(
            circle at 78% 50%,
            rgba(238, 34, 125, 0.22),
            transparent 27%
        ),
        linear-gradient(135deg, #12021d, #300643 68%, #3b0855);
}

.experience-intro::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 11%;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        transparent,
        rgba(253, 128, 131, 0.75),
        transparent
    );
    box-shadow: 0 0 15px rgba(238, 34, 125, 0.5);
    content: "";
}

.experience-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(60px, 10vw, 150px);
}

.experience-heading {
    max-width: 820px;
}

.experience-heading h1 {
    color: #ffffff;
    font-size: clamp(3.2rem, 6.3vw, 6rem);
    font-weight: 950;
    letter-spacing: -0.065em;
    line-height: 0.95;
}

.experience-heading h1 span {
    margin-top: 17px;
    display: block;
    background: linear-gradient(
        90deg,
        var(--coral),
        var(--pink) 55%,
        var(--cyan)
    );
    background-clip: text;
    color: transparent;
    font-size: 0.55em;
    letter-spacing: -0.045em;
    line-height: 1.12;
}

.experience-heading > p:last-child {
    max-width: 680px;
    margin-top: 30px;
    color: #d3bcd3;
    font-size: 1.08rem;
    line-height: 1.85;
}

.experience-counter {
    position: relative;
    min-width: 270px;
    display: flex;
    align-items: flex-end;
    gap: 17px;
}

.experience-counter::before {
    position: absolute;
    top: 50%;
    right: -80px;
    left: -35px;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--pink),
        var(--cyan),
        transparent
    );
    box-shadow: 0 0 13px rgba(48, 192, 183, 0.5);
    content: "";
}

.experience-counter strong {
    position: relative;
    color: transparent;
    font-size: clamp(7rem, 13vw, 12rem);
    font-weight: 950;
    letter-spacing: -0.11em;
    line-height: 0.73;
    -webkit-text-stroke: 2px var(--cyan);
    filter: drop-shadow(0 0 11px rgba(48, 192, 183, 0.5));
}

.experience-counter div {
    position: relative;
    padding-bottom: 4px;
}

.experience-counter span {
    display: block;
    color: var(--coral);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.experience-counter p {
    max-width: 115px;
    margin-top: 4px;
    color: #d9c2d8;
    font-size: 0.83rem;
    line-height: 1.4;
}

/* Expérience Mailtech */

.career-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(48, 192, 183, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(48, 192, 183, 0.03) 1px,
            transparent 1px
        ),
        #14021e;
    background-size: 50px 50px;
}

.experience-section-heading {
    margin-bottom: 50px;
}

.experience-section-heading h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.featured-experience {
    position: relative;
    display: grid;
    grid-template-columns: 245px 1fr;
    overflow: hidden;
    border: 1px solid rgba(48, 192, 183, 0.42);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(133, 36, 103, 0.19),
            transparent 42%
        ),
        rgba(37, 5, 52, 0.82);
    box-shadow:
        10px 10px 0 rgba(238, 34, 125, 0.08),
        0 25px 65px rgba(0, 0, 0, 0.25),
        0 0 35px rgba(48, 192, 183, 0.08);
    backdrop-filter: blur(12px);
}

.featured-experience::after {
    position: absolute;
    right: -100px;
    bottom: -130px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(238, 34, 125, 0.18);
    border-radius: 50%;
    content: "";
}

.experience-period {
    padding: 42px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
;
    border-right: 1px solid rgba(48, 192, 183, 0.22);
    background: rgba(17, 2, 27, 0.42);
}

.experience-period span:not(.period-line) {
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.period-line {
    position: relative;
    width: 1px;
    min-height: 185px;
    margin: 18px 0;
    flex: 1;
    background: linear-gradient(
        var(--cyan),
        var(--coral),
        var(--pink)
    );
    box-shadow:
        0 0 11px rgba(48, 192, 183, 0.5),
        0 0 13px rgba(238, 34, 125, 0.4);
}

.period-line::before,
.period-line::after {
    position: absolute;
    left: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    content: "";
    transform: translateX(-50%);
}

.period-line::before {
    top: 0;
}

.period-line::after {
    bottom: 0;
    background: var(--pink);
    box-shadow: 0 0 12px var(--pink);
}

.experience-company {
    position: relative;
    z-index: 1;
    padding: clamp(35px, 5vw, 65px);
}

.experience-company > p:first-child {
    margin-bottom: 8px;
    color: var(--coral);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.experience-company h3 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.experience-description {
    max-width: 760px;
    margin-top: 21px;
    color: #d1b9d0;
    font-size: 1.02rem;
    line-height: 1.8;
}

.experience-missions {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 32px;
    list-style: none;
}

.experience-missions li {
    position: relative;
    padding-left: 22px;
    color: #ead7e7;
    font-size: 0.94rem;
    line-height: 1.65;
}

.experience-missions li::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 8px;
    height: 2px;
    background: var(--cyan);
    box-shadow: 0 0 8px rgba(48, 192, 183, 0.8);
    content: "";
}

.experience-tags {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
}

.experience-tags li {
    padding: 7px 11px;
    border: 1px solid rgba(238, 34, 125, 0.48);
    border-radius: 6px;
    background: rgba(59, 8, 85, 0.55);
    color: #f1d9ea;
    font-size: 0.77rem;
    font-weight: 800;
}

/* Anciennes expériences : section claire */

.previous-experiences {
    padding: 115px 0;
    background:
        linear-gradient(
            120deg,
            rgba(253, 128, 131, 0.1),
            transparent 40%
        ),
        #f5eaf1;
    color: var(--purple);
}

.previous-experiences .section-label {
    color: var(--pink);
    text-shadow: none;
}

.previous-experiences .experience-section-heading h2 {
    color: var(--purple);
}

.previous-experience-list {
    border-top: 1px solid rgba(133, 36, 103, 0.25);
}

.previous-experience-list article {
    padding: 34px 20px;
    display: grid;
    grid-template-columns: 105px minmax(250px, 0.75fr) 1fr;
    align-items: center;
    gap: clamp(25px, 5vw, 70px);
    border-bottom: 1px solid rgba(133, 36, 103, 0.25);
    transition:
        padding-left 200ms ease,
        background 200ms ease;
}

.previous-experience-list article:hover {
    padding-left: 32px;
    background: rgba(238, 34, 125, 0.055);
}

.previous-experience-year {
    color: transparent;
    font-size: 2.1rem;
    font-weight: 950;
    letter-spacing: -0.04em;
    -webkit-text-stroke: 1px var(--pink);
}

.previous-experience-list article > div:nth-child(2) > p {
    color: var(--pink);
    font-size: 0.73rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.previous-experience-list h3 {
    margin: 4px 0 2px;
    color: var(--purple);
    font-size: 1.2rem;
}

.previous-experience-list span {
    color: #885b7e;
    font-size: 0.83rem;
}

.previous-experience-list article > p {
    color: #68415f;
    line-height: 1.75;
}

/* Formation */

.education-section {
    position: relative;
    padding: 115px 0 125px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 25%,
            rgba(238, 34, 125, 0.16),
            transparent 27%
        ),
        linear-gradient(140deg, #180223, #35074b);
}

.education-intro {
    max-width: 720px;
    margin-bottom: 70px;
}

.education-intro h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.education-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.education-timeline::before {
    position: absolute;
    top: 7px;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--pink),
        var(--coral),
        var(--cyan)
    );
    box-shadow: 0 0 12px rgba(48, 192, 183, 0.4);
    content: "";
}

.education-item {
    position: relative;
    padding: 37px 25px 25px 0;
}

.education-marker {
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 3px solid #20032e;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow:
        0 0 0 1px var(--cyan),
        0 0 13px var(--cyan);
}

.education-item:nth-child(even) .education-marker {
    background: var(--pink);
    box-shadow:
        0 0 0 1px var(--pink),
        0 0 13px var(--pink);
}

.education-item span {
    color: var(--coral);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.education-item p {
    min-height: 75px;
    margin: 8px 0 15px;
    padding-right: 15px;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 750;
    line-height: 1.5;
}

.education-item strong {
    color: var(--cyan);
    font-size: 0.77rem;
    letter-spacing: 0.07em;
}

/* Responsive */

@media (max-width: 1000px) {
    .experience-intro-grid {
        grid-template-columns: 1fr;
    }

    .experience-counter {
        width: min(100%, 390px);
        min-width: 0;
        padding: 20px 24px;
        align-items: center;
        gap: 22px;
        border: 1px solid rgba(48, 192, 183, 0.45);
        border-radius: 14px;
        background:
            linear-gradient(
                135deg,
                rgba(48, 192, 183, 0.1),
                transparent 55%
            ),
            rgba(24, 3, 35, 0.7);
        box-shadow:
            7px 8px 0 rgba(133, 36, 103, 0.18),
            inset 0 0 20px rgba(48, 192, 183, 0.04);
    }

    .experience-counter strong {
        flex-shrink: 0;
        color: rgba(48, 192, 183, 0.07);
        font-size: clamp(5.5rem, 15vw, 7rem);
        line-height: 0.8;
    }

    .experience-counter div {
        padding-bottom: 0;
    }

    .experience-counter p {
        max-width: 150px;
        line-height: 1.45;
    }

    .education-timeline {
        grid-template-columns: 1fr;
    }

    .education-timeline::before {
        top: 0;
        bottom: 0;
        left: 7px;
        width: 1px;
        height: auto;
    }

    .education-item {
        padding: 0 0 35px 42px;
    }

    .education-item:last-child {
        padding-bottom: 0;
    }

    .education-item p {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .featured-experience {
        grid-template-columns: 1fr;
    }

    .experience-period {
        padding: 23px;
        flex-direction: row;
    }

    .period-line {
        width: auto;
        min-width: 70px;
        min-height: 1px;
        height: 1px;
        margin: 0 18px;
        flex: 1;
    }

    .period-line::before {
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%);
    }

    .period-line::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translate(50%, -50%);
    }

    .experience-period {
        border-right: 0;
        border-bottom: 1px solid rgba(48, 192, 183, 0.22);
    }

    .experience-missions {
        grid-template-columns: 1fr;
    }

    .previous-experience-list article {
        grid-template-columns: 80px 1fr;
    }

    .previous-experience-list article > p {
        grid-column: 2;
    }
}

@media (max-width: 560px) {
    .experience-intro,
    .career-section,
    .previous-experiences,
    .education-section {
        padding: 75px 0;
    }

    .experience-heading h1 {
        font-size: clamp(2.75rem, 14vw, 4.2rem);
    }

    .experience-counter {
        width: 100%;
        padding: 17px 18px;
        gap: 17px;
    }

    .experience-counter strong {
        font-size: clamp(4.8rem, 24vw, 6.2rem);
    }

    .experience-counter span {
        font-size: 0.7rem;
    }

    .experience-counter p {
        font-size: 0.9rem;
    }

    .experience-company {
        padding: 30px 22px;
    }

    .previous-experience-list article {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-right: 0;
        padding-left: 0;
    }

    .previous-experience-list article:hover {
        padding-left: 10px;
    }

    .previous-experience-list article > p {
        grid-column: auto;
    }
}


/* =====================================================
   PAGE COMPÉTENCES
   ===================================================== */

/* Introduction */

.skills-intro {
    position: relative;
    padding: 105px 0 0;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid rgba(48, 192, 183, 0.25);
    background:
        radial-gradient(circle at 8% 20%, #ffffff 0 1px, transparent 2px),
        radial-gradient(circle at 30% 65%, #fd8083 0 1px, transparent 2px),
        radial-gradient(circle at 56% 18%, #30c0b7 0 1px, transparent 2px),
        radial-gradient(circle at 88% 35%, #ffffff 0 1px, transparent 2px),
        linear-gradient(125deg, #12021d, #300643 65%, #3b0855);
}

.skills-intro::before {
    position: absolute;
    z-index: -1;
    top: -160px;
    right: -70px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(48, 192, 183, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 60px rgba(48, 192, 183, 0.025),
        0 0 0 120px rgba(238, 34, 125, 0.018);
    content: "";
}

.skills-background-title {
    position: absolute;
    z-index: -1;
    top: -70px;
    left: 50%;
    color: transparent;
    font-size: clamp(11rem, 25vw, 27rem);
    font-weight: 950;
    letter-spacing: -0.09em;
    line-height: 1;
    white-space: nowrap;
    -webkit-text-stroke: 1px rgba(48, 192, 183, 0.08);
    transform: translateX(-50%);
    user-select: none;
}

.skills-intro-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: end;
    gap: clamp(55px, 9vw, 135px);
}

.skills-intro h1 {
    max-width: 850px;
    color: #ffffff;
    font-size: clamp(3.1rem, 6.1vw, 5.8rem);
    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.skills-intro h1 span {
    margin-top: 14px;
    display: block;
    background: linear-gradient(
        90deg,
        var(--coral),
        var(--pink) 54%,
        var(--cyan)
    );
    background-clip: text;
    color: transparent;
    font-size: 0.62em;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.skills-intro-text {
    padding: 0 0 12px 27px;
    border-left: 2px solid var(--cyan);
    color: #d1b9d0;
    font-size: 1rem;
    line-height: 1.85;
    box-shadow: -8px 0 18px -12px var(--cyan);
}

.skills-marquee {
    position: relative;
    margin-top: 90px;
    overflow: hidden;
    border-top: 1px solid rgba(48, 192, 183, 0.27);
    border-bottom: 1px solid rgba(48, 192, 183, 0.27);
    background: rgba(17, 2, 27, 0.55);
}

.skills-marquee div {
    min-width: 0;
    min-height: 72px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 14px;
}

.skills-marquee span {
    display: flex;
    align-items: center;
    color: #f0d9e9;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.skills-marquee span:not(:last-child)::after {
    width: 6px;
    height: 6px;
    margin: 0 clamp(24px, 4vw, 58px);
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 11px var(--pink);
    content: "";
}

/* Compétences principales */

.core-skills {
    position: relative;
    padding: 115px 0;
    background:
        linear-gradient(
            rgba(48, 192, 183, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(48, 192, 183, 0.035) 1px,
            transparent 1px
        ),
        #14021e;
    background-size: 48px 48px;
}

.skills-section-heading {
    max-width: 760px;
    margin-bottom: 52px;
}

.skills-section-heading h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.core-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.skill-card {
    position: relative;
    min-height: 245px;
    padding: 29px;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 25px;
    overflow: hidden;
    border: 1px solid rgba(133, 36, 103, 0.65);
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            rgba(133, 36, 103, 0.16),
            transparent 42%
        ),
        rgba(35, 4, 49, 0.8);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    transition:
        transform 200ms ease,
        border-color 200ms ease,
        box-shadow 200ms ease;
}

.skill-card::after {
    position: absolute;
    right: -65px;
    bottom: -75px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(48, 192, 183, 0.12);
    border-radius: 50%;
    content: "";
}

.skill-card:hover {
    border-color: rgba(48, 192, 183, 0.65);
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.23),
        0 0 28px rgba(48, 192, 183, 0.1);
    transform: translateY(-5px);
}

.skill-card-featured {
    grid-column: 1 / -1;
    min-height: 270px;
    grid-template-columns: 150px 1fr;
    border-color: rgba(48, 192, 183, 0.5);
    background:
        linear-gradient(
            115deg,
            rgba(48, 192, 183, 0.12),
            transparent 37%
        ),
        linear-gradient(
            145deg,
            rgba(238, 34, 125, 0.12),
            transparent 60%
        ),
        rgba(35, 4, 49, 0.86);
}

.skill-card-code {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    align-self: start;
    border: 1px solid rgba(48, 192, 183, 0.45);
    border-radius: 8px;
    background: rgba(18, 2, 29, 0.46);
    color: transparent;
    font-size: 1.8rem;
    font-weight: 950;
    letter-spacing: -0.04em;
    -webkit-text-stroke: 1px var(--cyan);
    box-shadow:
        inset 0 0 18px rgba(48, 192, 183, 0.07),
        0 0 18px rgba(48, 192, 183, 0.09);
}

.skill-card-featured .skill-card-code {
    width: 135px;
    height: 135px;
    font-size: 2.35rem;
    -webkit-text-stroke-color: var(--pink);
    border-color: rgba(238, 34, 125, 0.52);
    box-shadow:
        inset 0 0 22px rgba(238, 34, 125, 0.08),
        0 0 24px rgba(238, 34, 125, 0.1);
}

.skill-card > div:last-child {
    position: relative;
    z-index: 1;
}

.skill-category {
    margin-bottom: 5px;
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.skill-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.45rem;
}

.skill-card p:last-child {
    max-width: 700px;
    color: #cbb4ca;
    font-size: 0.94rem;
    line-height: 1.75;
}

/* PrestaShop et WordPress */

.platform-skills {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(238, 34, 125, 0.15),
            transparent 30%
        ),
        linear-gradient(130deg, #3b0855, #6a185d);
}

.platform-skills::after {
    position: absolute;
    top: -130px;
    left: -110px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(48, 192, 183, 0.18);
    border-radius: 50%;
    content: "";
}

.platform-skills-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(60px, 9vw, 125px);
}

.platform-heading h2 {
    color: #ffffff;
    font-size: clamp(2rem, 3.7vw, 3.35rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.platform-list {
    border-top: 1px solid rgba(48, 192, 183, 0.32);
}

.platform-list article {
    padding: 31px 0;
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;
    border-bottom: 1px solid rgba(48, 192, 183, 0.32);
}

.platform-list article > span {
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-shadow: 0 0 12px rgba(48, 192, 183, 0.6);
}

.platform-list h3 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.35rem;
}

.platform-list p {
    color: #efd7e8;
    line-height: 1.8;
}

/* Outils : section claire */

.tools-section {
    padding: 115px 0;
    background:
        linear-gradient(
            135deg,
            rgba(253, 128, 131, 0.09),
            transparent 40%
        ),
        #f5eaf1;
}

.tools-section .section-label {
    color: var(--pink);
    text-shadow: none;
}

.tools-section .skills-section-heading h2 {
    color: var(--purple);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(133, 36, 103, 0.25);
    border-left: 1px solid rgba(133, 36, 103, 0.25);
}

.tools-grid article {
    min-height: 165px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    border-right: 1px solid rgba(133, 36, 103, 0.25);
    border-bottom: 1px solid rgba(133, 36, 103, 0.25);
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.tools-grid article:hover {
    z-index: 1;
    background: rgba(238, 34, 125, 0.07);
    transform: translateY(-4px);
}

.tools-grid strong {
    color: var(--purple);
    font-size: 1.08rem;
}

.tools-grid span {
    color: #79516f;
    font-size: 0.86rem;
    line-height: 1.6;
}

/* Méthodes */

.working-skills {
    padding: 115px 0;
    background:
        repeating-linear-gradient(
            135deg,
            transparent 0 70px,
            rgba(48, 192, 183, 0.025) 70px 71px
        ),
        #14021e;
}

.working-skills-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(60px, 9vw, 125px);
}

.working-skills h2 {
    color: #ffffff;
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.working-skills ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    list-style: none;
}

.working-skills li {
    position: relative;
    padding: 18px 18px 18px 42px;
    border: 1px solid rgba(48, 192, 183, 0.22);
    border-radius: 8px;
    background: rgba(59, 8, 85, 0.38);
    color: #ead7e8;
    font-size: 0.91rem;
}

.working-skills li::before {
    position: absolute;
    top: 50%;
    left: 18px;
    width: 8px;
    height: 8px;
    border: 1px solid var(--cyan);
    content: "";
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 0 8px rgba(48, 192, 183, 0.55);
}

/* Création numérique */

.creative-skills {
    padding: 95px 0;
    background:
        linear-gradient(
            110deg,
            var(--purple),
            var(--purple-soft) 55%,
            var(--pink)
        );
}

.creative-skills-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(600px, 1.5fr);
    align-items: center;
    gap: 80px;
}

.creative-skills h2 {
    max-width: 520px;
    color: #ffffff;
    font-size: clamp(2rem, 3.7vw, 3.3rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.creative-skills-content {
    display: grid;
    gap: 28px;
}

.creative-skills-intro {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.7;
}

.creative-skills-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.creative-skill-card {
    min-height: 230px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 14px;
    background: rgba(20, 2, 30, 0.34);
    backdrop-filter: blur(8px);
}

.creative-skill-card__number {
    display: block;
    margin-bottom: 25px;
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.creative-skill-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.05rem;
}

.creative-skill-card p {
    min-height: 72px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.6;
}

.creative-skill-card strong {
    display: inline-block;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.78rem;
}

.creative-skills h2 span {
    display: block;
}

.creative-skills h2 span:first-child {
    white-space: nowrap;
}

/* Responsive */

@media (max-width: 480px) {
    .creative-skills h2 span:first-child {
        white-space: normal;
    }
}

@media (max-width: 1100px) {
    .creative-skills-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

@media (max-width: 750px) {
    .creative-skills-list {
        grid-template-columns: 1fr;
    }

    .creative-skill-card {
        min-height: 0;
    }

    .creative-skill-card p {
        min-height: 0;
    }
}

@media (max-width: 1000px) {
    .skills-intro-layout,
    .platform-skills-layout,
    .working-skills-layout {
        grid-template-columns: 1fr;
    }

    .skills-intro-text {
        max-width: 720px;
    }

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

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

    .creative-skills-list {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .core-skills-grid {
        grid-template-columns: 1fr;
    }

    .skill-card-featured {
        grid-column: auto;
    }

    .skill-card,
    .skill-card-featured {
        min-height: auto;
        grid-template-columns: 75px 1fr;
    }

    .skill-card-code,
    .skill-card-featured .skill-card-code {
        width: 70px;
        height: 70px;
        font-size: 1.35rem;
    }

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

@media (max-width: 560px) {
    .skills-intro {
        padding-top: 70px;
    }

    .skills-intro h1 {
        font-size: clamp(2.65rem, 14vw, 4rem);
    }

    .skills-marquee {
        margin-top: 60px;
    }

    .skills-marquee div {
        min-height: 60px;
        padding: 16px 14px;
        justify-content: center;
        row-gap: 13px;
    }

    .skills-marquee span:not(:last-child)::after {
        margin: 0 14px;
    }

    .core-skills,
    .platform-skills,
    .tools-section,
    .working-skills,
    .creative-skills {
        padding: 75px 0;
    }

    .skill-card,
    .skill-card-featured {
        padding: 18px;
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 15px;
        align-items: start;
    }

    .skill-card-code,
    .skill-card-featured .skill-card-code {
        width: 58px;
        height: 58px;
        font-size: 1.1rem;
    }

    .skill-category {
        margin-bottom: 3px;
        font-size: 0.64rem;
    }

    .skill-card h3 {
        margin-bottom: 8px;
        font-size: 1.2rem;
    }

    .skill-card p:last-child {
        font-size: 0.87rem;
        line-height: 1.65;
    }

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

    .tools-grid article {
        min-height: 145px;
    }
}


/* =====================================================
   PAGE CONTACT
   ===================================================== */

.contact-page {
    position: relative;
    min-height: calc(100vh - 78px);
    padding: 100px 0 120px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 8% 18%, #ffffff 0 1px, transparent 2px),
        radial-gradient(circle at 26% 47%, #fd8083 0 1px, transparent 2px),
        radial-gradient(circle at 72% 16%, #30c0b7 0 1px, transparent 2px),
        radial-gradient(circle at 91% 43%, #ffffff 0 1px, transparent 2px),
        radial-gradient(
            circle at 50% 20%,
            rgba(238, 34, 125, 0.19),
            transparent 28%
        ),
        linear-gradient(145deg, #110119, #29043a 65%, #3b0855);
}

.contact-page::before {
    position: absolute;
    z-index: -2;
    right: -18%;
    bottom: -340px;
    left: -18%;
    height: 510px;
    background-image:
        linear-gradient(
            rgba(48, 192, 183, 0.33) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(48, 192, 183, 0.33) 1px,
            transparent 1px
        );
    background-size: 60px 38px;
    border-top: 1px solid rgba(48, 192, 183, 0.7);
    content: "";
    transform: perspective(380px) rotateX(61deg);
    transform-origin: center top;
}

.contact-page::after {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(
        transparent,
        rgba(238, 34, 125, 0.22),
        transparent
    );
    content: "";
}

.contact-signal {
    position: absolute;
    z-index: -1;
    top: -155px;
    left: 50%;
    width: 490px;
    height: 490px;
    transform: translateX(-50%);
}

.contact-signal span {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(238, 34, 125, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.contact-signal span:nth-child(1) {
    width: 190px;
    height: 190px;
    box-shadow: 0 0 35px rgba(238, 34, 125, 0.08);
}

.contact-signal span:nth-child(2) {
    width: 330px;
    height: 330px;
    border-color: rgba(48, 192, 183, 0.13);
}

.contact-signal span:nth-child(3) {
    width: 480px;
    height: 480px;
}

/* Introduction */

.contact-heading {
    max-width: 950px;
    margin-bottom: 65px;
    text-align: center;
}

.contact-heading .page-eyebrow {
    margin-right: auto;
    margin-left: auto;
}

.contact-heading h1 {
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.contact-heading h1 span {
    display: inline-block;
    background: linear-gradient(
        90deg,
        var(--coral),
        var(--pink) 52%,
        var(--cyan)
    );
    background-clip: text;
    color: transparent;
    padding-bottom: 0.20em;
}

.contact-heading > p:last-child {
    max-width: 680px;
    margin: 28px auto 0;
    color: #d0b8cf;
    font-size: 1.04rem;
    line-height: 1.8;
}

/* Interface principale */

.contact-interface {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    overflow: hidden;
    border: 1px solid rgba(48, 192, 183, 0.42);
    border-radius: 18px;
    background: rgba(24, 2, 35, 0.82);
    box-shadow:
        12px 12px 0 rgba(238, 34, 125, 0.09),
        -8px -8px 0 rgba(48, 192, 183, 0.05),
        0 30px 75px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(48, 192, 183, 0.08);
    backdrop-filter: blur(18px);
}

/* Coordonnées */

.contact-information {
    padding: clamp(30px, 4vw, 48px);
    border-right: 1px solid rgba(48, 192, 183, 0.22);
    background:
        linear-gradient(
            150deg,
            rgba(133, 36, 103, 0.24),
            transparent 42%
        ),
        rgba(59, 8, 85, 0.36);
}

.contact-information-heading {
    padding-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(48, 192, 183, 0.2);
}

.contact-status {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow:
        0 0 9px var(--cyan),
        0 0 18px rgba(48, 192, 183, 0.75);
}

.contact-information-heading p {
    color: #a98da8;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-information-heading strong {
    display: block;
    margin-top: 2px;
    color: #ffffff;
    font-size: 0.98rem;
}

.contact-links {
    margin-top: 12px;
}

.contact-links a {
    padding: 22px 3px;
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid rgba(48, 192, 183, 0.18);
    transition:
        padding-left 180ms ease,
        background 180ms ease;
}

.contact-links a:hover {
    padding-left: 12px;
    background: linear-gradient(
        90deg,
        rgba(238, 34, 125, 0.1),
        transparent
    );
}

.contact-link-number {
    color: var(--cyan);
    font-size: 0.71rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.contact-links a div p {
    color: var(--coral);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-links a div strong {
    color: #ffffff;
    font-size: 0.9rem;
    word-break: break-word;
}

.contact-links a > span:last-child {
    color: var(--pink);
    font-size: 1.15rem;
    transition: transform 180ms ease;
}

.contact-links a:hover > span:last-child {
    transform: translate(3px, -3px);
}

.contact-response {
    margin-top: 30px;
    padding-left: 17px;
    border-left: 2px solid var(--pink);
    color: #bda4bc;
    font-size: 0.84rem;
    line-height: 1.6;
}

/* Formulaire */

.contact-form-container {
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0 5px,
            rgba(255, 255, 255, 0.012) 5px 6px
        ),
        rgba(19, 2, 29, 0.55);
}

.contact-form-heading {
    min-height: 57px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(48, 192, 183, 0.2);
    background: rgba(11, 1, 17, 0.38);
}

.contact-form-heading > div {
    display: flex;
    gap: 7px;
}

.contact-form-heading > div span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.contact-form-heading > div span:nth-child(1) {
    background: var(--pink);
    box-shadow: 0 0 8px rgba(238, 34, 125, 0.7);
}

.contact-form-heading > div span:nth-child(2) {
    background: var(--coral);
}

.contact-form-heading > div span:nth-child(3) {
    background: var(--cyan);
    box-shadow: 0 0 8px rgba(48, 192, 183, 0.7);
}

.contact-form-heading p {
    color: #9f819d;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
}

.contact-form-message {
    margin: 25px clamp(30px, 5vw, 55px) 0;
    padding: 14px 17px;
    border: 1px solid;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-form-message--success {
    border-color: rgba(48, 192, 183, 0.65);
    background: rgba(48, 192, 183, 0.12);
    color: var(--cyan);
}

.contact-form-message--error {
    border-color: rgba(238, 34, 125, 0.65);
    background: rgba(238, 34, 125, 0.12);
    color: var(--coral);
}

.contact-form {
    padding: clamp(30px, 5vw, 55px);
}

.contact-form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form-privacy {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    line-height: 1.5;
}

.contact-form-privacy a {
    color: #4edbd3;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-form-privacy a:hover {
    color: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-field {
    margin-bottom: 21px;
}

.form-field label {
    margin-bottom: 8px;
    display: block;
    color: #d9c0d6;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(133, 36, 103, 0.7);
    border-radius: 7px;
    outline: none;
    background: rgba(59, 8, 85, 0.36);
    color: #ffffff;
    font: inherit;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.form-field input {
    min-height: 50px;
    padding: 0 15px;
}

.form-field textarea {
    min-height: 155px;
    padding: 14px 15px;
    line-height: 1.6;
    resize: vertical;
}

.form-field input:hover,
.form-field textarea:hover {
    border-color: rgba(253, 128, 131, 0.72);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--cyan);
    background: rgba(48, 192, 183, 0.055);
    box-shadow:
        0 0 0 3px rgba(48, 192, 183, 0.1),
        0 0 18px rgba(48, 192, 183, 0.08);
}

.contact-submit {
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid rgba(253, 128, 131, 0.55);
    border-radius: 8px;
    background: linear-gradient(
        135deg,
        var(--pink),
        var(--purple-soft)
    );
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    box-shadow:
        0 0 22px rgba(238, 34, 125, 0.28),
        0 12px 25px rgba(0, 0, 0, 0.2);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.contact-submit:hover {
    box-shadow:
        0 0 32px rgba(238, 34, 125, 0.48),
        0 15px 30px rgba(0, 0, 0, 0.26);
    transform: translateY(-3px);
}

.contact-submit span {
    font-size: 1.2rem;
}

/* Responsive */

@media (max-width: 900px) {
    .contact-interface {
        grid-template-columns: 1fr;
    }

    .contact-information {
        border-right: 0;
        border-bottom: 1px solid rgba(48, 192, 183, 0.22);
    }
}

@media (max-width: 560px) {
    .contact-page {
        padding: 70px 0 90px;
    }

    .contact-heading {
        margin-bottom: 45px;
        text-align: left;
    }

    .contact-heading .page-eyebrow {
        margin-left: 0;
    }

    .contact-heading h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
    }

    .contact-interface {
        border-radius: 13px;
    }

    .contact-information,
    .contact-form {
        padding: 24px 20px;
    }

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

    .contact-submit {
        width: 100%;
    }
}


/* =========================================================
   PAGE PROJETS
   ========================================================= */

.projects-page {
    --projects-dark: #16001f;
    --projects-purple: #3b0855;
    --projects-purple-light: #852467;
    --projects-pink: #ee227d;
    --projects-coral: #fd8083;
    --projects-blue: #498099;
    --projects-cyan: #30c0b7;
    --projects-text: #fff8fc;
    --projects-muted: #d8bfd2;

    min-height: 100vh;
    overflow: hidden;
    color: var(--projects-text);
    background:
        radial-gradient(circle at 85% 10%, rgba(238, 34, 125, 0.18), transparent 28rem),
        linear-gradient(180deg, #180020 0%, #100016 100%);
}

/* HERO */

.projects-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(238, 34, 125, 0.35);
    background:
        linear-gradient(
            115deg,
            rgba(22, 0, 31, 0.98) 0%,
            rgba(59, 8, 85, 0.94) 55%,
            rgba(133, 36, 103, 0.72) 100%
        );
}

.projects-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 25%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
        radial-gradient(circle at 38% 18%, rgba(48, 192, 183, 0.9) 0 1px, transparent 2px),
        radial-gradient(circle at 66% 31%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
        radial-gradient(circle at 80% 15%, rgba(253, 128, 131, 0.9) 0 1px, transparent 2px),
        radial-gradient(circle at 92% 42%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px);
}

.projects-hero__grid {
    position: absolute;
    right: -10%;
    bottom: -50%;
    width: 70%;
    height: 85%;
    opacity: 0.32;
    transform: perspective(420px) rotateX(62deg);
    transform-origin: bottom;
    background-image:
        linear-gradient(rgba(48, 192, 183, 0.65) 1px, transparent 1px),
        linear-gradient(90deg, rgba(48, 192, 183, 0.65) 1px, transparent 1px);
    background-size: 55px 42px;
}

.projects-hero__sun {
    position: absolute;
    right: 9%;
    top: 50%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow:
        0 0 70px rgba(238, 34, 125, 0.32),
        0 0 130px rgba(238, 34, 125, 0.16);
    background:
        repeating-linear-gradient(
            to bottom,
            var(--projects-coral) 0,
            var(--projects-coral) 18px,
            var(--projects-pink) 19px,
            var(--projects-pink) 31px,
            transparent 32px,
            transparent 39px
        );
    opacity: 0.85;
}

.projects-hero__content {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 40px), var(--container-width));
    margin: 0 auto;
    padding: 105px 0 90px;
}

.projects-eyebrow,
.projects-section-label {
    margin: 0 0 30px;
    color: var(--projects-cyan);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.projects-hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--projects-text);
    font-size: clamp(4rem, 7vw, 8rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.065em;
}

.projects-hero h1 span {
    display: block;
    margin-top: 24px;
    color: transparent;
    background: linear-gradient(
        90deg,
        var(--projects-coral),
        var(--projects-pink),
        var(--projects-cyan)
    );
    background-clip: text;
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 24px rgba(238, 34, 125, 0.25));
}

.projects-hero__description {
    max-width: 700px;
    margin: 42px 0 0;
    color: var(--projects-muted);
    font-size: 1.2rem;
    line-height: 1.75;
}

.projects-hero__counter {
    position: absolute;
    right: 11%;
    bottom: 70px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    padding: 15px 20px;
    border-left: 2px solid var(--projects-cyan);
    background: rgba(22, 0, 31, 0.62);
    backdrop-filter: blur(8px);
}

.projects-hero__counter strong {
    color: var(--projects-cyan);
    font-size: 3rem;
    line-height: 0.9;
}

.projects-hero__counter span {
    max-width: 80px;
    color: var(--projects-text);
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

/* LISTE */

.projects-list {
    position: relative;
    width: min(calc(100% - 40px), var(--container-width));
    margin: 0 auto;
    padding: 110px 0 130px;
}

.projects-list::before {
    content: "";
    position: absolute;
    top: 60px;
    left: -220px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(48, 192, 183, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.projects-list__header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.projects-list__header h2 {
    max-width: 750px;
    margin: 0;
    color: var(--projects-text);
    font-size: clamp(2.8rem, 5vw, 5.3rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.projects-list__intro {
    margin: 0 0 6px;
    padding-left: 28px;
    border-left: 1px solid var(--projects-pink);
    color: var(--projects-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* GRILLE ET CARTES */

.projects-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.project-card {
    position: relative;
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid rgba(73, 128, 153, 0.5);
    border-radius: 24px;
    background: rgba(40, 2, 49, 0.88);
    box-shadow: 12px 14px 0 rgba(133, 36, 103, 0.15);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.project-card:hover {
    transform: translateY(-7px);
    border-color: var(--projects-pink);
    box-shadow:
        12px 18px 0 rgba(133, 36, 103, 0.2),
        0 0 35px rgba(238, 34, 125, 0.13);
}

.project-card__visual {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 30px;
    border-right: 1px solid rgba(48, 192, 183, 0.3);
}

.project-card__visual::before,
.project-card__visual::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.project-card__visual::before {
    right: -55px;
    bottom: -55px;
    width: 210px;
    height: 210px;
    border: 2px solid rgba(48, 192, 183, 0.65);
    border-radius: 50%;
    box-shadow:
        0 0 0 22px rgba(48, 192, 183, 0.08),
        0 0 0 44px rgba(48, 192, 183, 0.05);
}

.project-card__visual::after {
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
    background-size: 32px 32px;
}

.project-card__visual--1 {
    background: linear-gradient(145deg, #3b0855, #852467);
}

.project-card__visual--2 {
    background: linear-gradient(145deg, #852467, #ee227d);
}

.project-card__visual--3 {
    background: linear-gradient(145deg, #3b0855, #498099);
}

.project-card__visual--4 {
    background: linear-gradient(145deg, #852467, #30c0b7);
}

.project-card__number {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.95);
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
}

.project-card__decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 115px;
    height: 115px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.project-card__decoration span {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.project-card__decoration span:nth-child(2) {
    transform: scale(0.7) rotate(15deg);
    border-color: var(--projects-cyan);
}

.project-card__decoration span:nth-child(3) {
    transform: scale(0.4) rotate(30deg);
    border-color: var(--projects-coral);
    background: rgba(238, 34, 125, 0.3);
}

.project-card__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 32px;
}

.project-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
    color: var(--projects-cyan);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project-card h3 {
    margin: 0 0 18px;
    color: var(--projects-text);
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.project-card__summary {
    margin: 0 0 25px;
    color: var(--projects-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.project-card__technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.project-card__technologies li {
    padding: 7px 10px;
    border: 1px solid rgba(238, 34, 125, 0.55);
    border-radius: 7px;
    color: #f5ddea;
    background: rgba(59, 8, 85, 0.65);
    font-size: 0.7rem;
    font-weight: 800;
}

.project-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(73, 128, 153, 0.35);
    color: var(--projects-coral);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-card__footer span:last-child {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(48, 192, 183, 0.5);
    border-radius: 50%;
    color: var(--projects-cyan);
    transition:
        color 200ms ease,
        background 200ms ease;
}

.project-card:hover .project-card__footer span:last-child {
    color: var(--projects-dark);
    background: var(--projects-cyan);
}

/* MENTIONS LÉGALES */

.legal-page {
    min-height: 100vh;
    padding: clamp(75px, 9vw, 130px) 0;
    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(133, 36, 103, 0.18),
            transparent 32%
        ),
        var(--dark);
}

.legal-container {
    max-width: 1050px;
}

.legal-heading {
    max-width: 820px;
    margin-bottom: clamp(40px, 6vw, 70px);
}

.legal-heading h1 {
    margin: 15px 0 22px;
    background: linear-gradient(
        110deg,
        #ffffff 0%,
        var(--coral) 58%,
        var(--pink) 100%
    );
    background-clip: text;
    color: transparent;
    font-size: clamp(3rem, 7vw, 6.4rem);
    letter-spacing: -0.055em;
    line-height: 0.95;
}

.legal-heading > p:last-child {
    max-width: 680px;
    color: #cdb5ca;
    font-size: 1.05rem;
    line-height: 1.75;
}

.legal-content {
    display: grid;
    gap: 20px;
}

.legal-content section {
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(48, 192, 183, 0.28);
    border-radius: 18px;
    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0 5px,
            rgba(255, 255, 255, 0.012) 5px 6px
        ),
        rgba(27, 3, 38, 0.72);
    box-shadow: 8px 9px 0 rgba(133, 36, 103, 0.16);
}

.legal-content h2 {
    margin-bottom: 18px;
    color: var(--cyan);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    letter-spacing: 0.04em;
}

.legal-content p,
.legal-content li,
.legal-content address {
    color: #d7c0d4;
    font-size: 0.98rem;
    line-height: 1.8;
}

.legal-content p + p {
    margin-top: 14px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 22px;
}

.legal-content address {
    font-style: normal;
}

.legal-content a {
    color: var(--coral);
    transition:
        color 180ms ease,
        text-shadow 180ms ease;
}

.legal-content a:hover {
    color: var(--cyan);
    text-shadow: 0 0 12px rgba(48, 192, 183, 0.45);
}

/* LISTE VIDE */

.projects-empty {
    padding: 80px 35px;
    border: 1px solid rgba(48, 192, 183, 0.35);
    border-radius: 22px;
    text-align: center;
    background: rgba(59, 8, 85, 0.4);
}

.projects-empty span {
    color: var(--projects-pink);
    font-size: 5rem;
    font-weight: 900;
}

.projects-empty h2 {
    margin: 15px 0 0;
    color: var(--projects-text);
}

/* RESPONSIVE */

@media (max-width: 1180px) {
    .projects-hero__sun {
        right: -80px;
        width: 300px;
        height: 300px;
        opacity: 0.5;
    }

    .projects-hero__counter {
        right: 4%;
    }

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

    .project-card {
        min-height: 350px;
    }
}

@media (max-width: 800px) {
    .projects-hero {
        min-height: auto;
    }

    .projects-hero__content {
        padding: 90px 0 100px;
    }

    .projects-hero h1 {
        font-size: clamp(3.3rem, 16vw, 5.5rem);
    }

    .projects-hero__description {
        max-width: 90%;
        font-size: 1rem;
    }

    .projects-hero__sun {
        top: auto;
        right: -70px;
        bottom: -80px;
        width: 240px;
        height: 240px;
        transform: none;
    }

    .projects-hero__counter {
        position: relative;
        right: auto;
        bottom: auto;
        width: fit-content;
        margin-top: 45px;
        padding: 18px 24px;
        gap: 18px;
    }

    .projects-hero__counter strong {
        font-size: 3.5rem;
    }

    .projects-hero__counter span {
        max-width: 90px;
        font-size: 0.82rem;
    }

    .projects-list {
        padding: 80px 0 95px;
    }

    .projects-list__header {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 45px;
    }

    .projects-list__intro {
        max-width: 560px;
    }
}

@media (max-width: 620px) {
    .projects-hero__content,
    .projects-list {
        width: min(100% - 30px, 1475px);
    }

    .projects-eyebrow,
    .projects-section-label {
        font-size: 0.72rem;
    }

    .projects-hero h1 {
        letter-spacing: -0.055em;
    }

    .project-card {
        grid-template-columns: 1fr;
    }

    .project-card__visual {
        min-height: 230px;
        border-right: 0;
        border-bottom: 1px solid rgba(48, 192, 183, 0.3);
    }

    .project-card__content {
        padding: 26px 22px;
    }

    .project-card h3 {
        font-size: 1.55rem;
    }
}


/* =========================================================
   PAGE DÉTAIL D’UN PROJET
   ========================================================= */

.project-detail {
    --detail-dark: #120018;
    --detail-purple: #3b0855;
    --detail-pink: #ee227d;
    --detail-coral: #fd8083;
    --detail-blue: #498099;
    --detail-cyan: #30c0b7;
    --detail-white: #fff8fc;
    --detail-muted: #d8bfd2;

    min-height: 100vh;
    overflow: hidden;
    color: var(--detail-white);
    background:
        radial-gradient(circle at 90% 45%, rgba(133, 36, 103, 0.2), transparent 30rem),
        linear-gradient(180deg, #16001f 0%, var(--detail-dark) 100%);
}

/* EN-TÊTE DU PROJET */

.project-detail__hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(238, 34, 125, 0.4);
    background:
        radial-gradient(circle at 76% 45%, rgba(238, 34, 125, 0.28), transparent 25rem),
        linear-gradient(120deg, #16001f 0%, #3b0855 60%, #852467 130%);
}

.project-detail__stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 20%, white 0 1px, transparent 2px),
        radial-gradient(circle at 22% 67%, #30c0b7 0 1px, transparent 2px),
        radial-gradient(circle at 42% 25%, white 0 1px, transparent 2px),
        radial-gradient(circle at 57% 70%, #fd8083 0 1px, transparent 2px),
        radial-gradient(circle at 74% 18%, white 0 1px, transparent 2px),
        radial-gradient(circle at 92% 42%, #30c0b7 0 1px, transparent 2px);
    opacity: 0.8;
}

.project-detail__sun {
    position: absolute;
    top: 50%;
    right: 9%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.82;
    box-shadow:
        0 0 70px rgba(238, 34, 125, 0.3),
        0 0 140px rgba(238, 34, 125, 0.15);
    background:
        repeating-linear-gradient(
            to bottom,
            #fd8083 0,
            #fd8083 17px,
            #ee227d 18px,
            #ee227d 29px,
            transparent 30px,
            transparent 38px
        );
}

.project-detail__hero-content {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 40px), var(--container-width));
    margin: 0 auto;
    padding: 90px 0 125px;
}

.project-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 65px;
    color: var(--detail-cyan);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        gap 180ms ease,
        color 180ms ease;
}

.project-detail__back:hover {
    gap: 19px;
    color: var(--detail-coral);
}

.project-detail__back span {
    font-size: 1.3rem;
}

.project-detail__heading {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 900px) auto;
    gap: 80px;
    align-items: end;
}

.project-detail__eyebrow {
    margin: 0 0 25px;
    color: var(--detail-coral);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.project-detail__heading h1 {
    max-width: 930px;
    margin: 0;
    color: var(--detail-white);
    font-size: clamp(3.7rem, 6.5vw, 7.5rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.065em;
    text-shadow: 7px 7px 0 rgba(238, 34, 125, 0.18);
}

.project-detail__summary {
    max-width: 760px;
    margin: 38px 0 0;
    color: var(--detail-muted);
    font-size: 1.15rem;
    line-height: 1.75;
}

.project-detail__number {
    position: relative;
    z-index: 2;
    color: transparent;
    font-size: clamp(8rem, 14vw, 13rem);
    font-weight: 900;
    line-height: 0.75;
    letter-spacing: -0.1em;
    -webkit-text-stroke: 2px var(--detail-cyan);
    opacity: 0.75;
}

.project-detail__horizon {
    position: absolute;
    right: -5%;
    bottom: -45%;
    width: 65%;
    height: 65%;
    opacity: 0.32;
    transform: perspective(420px) rotateX(64deg);
    transform-origin: bottom;
    background-image:
        linear-gradient(rgba(48, 192, 183, 0.7) 1px, transparent 1px),
        linear-gradient(90deg, rgba(48, 192, 183, 0.7) 1px, transparent 1px);
    background-size: 55px 42px;
}

/* CONTENU */

.project-detail__body {
    position: relative;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 60px;
    width: min(calc(100% - 40px), var(--container-width));
    margin: 0 auto;
    padding: 110px 0 140px;
}

.project-detail__body::before {
    content: "";
    position: absolute;
    top: 60px;
    right: -300px;
    width: 550px;
    height: 550px;
    border: 1px solid rgba(238, 34, 125, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

/* COLONNE D’INFORMATIONS */

.project-detail__sidebar {
    position: relative;
    z-index: 2;
    align-self: start;
    padding: 30px;
    border: 1px solid rgba(48, 192, 183, 0.38);
    border-radius: 20px;
    background: rgba(59, 8, 85, 0.48);
    box-shadow: 10px 12px 0 rgba(133, 36, 103, 0.15);
}

.project-detail__label {
    margin: 0 0 25px;
    color: var(--detail-cyan);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.project-detail__information {
    margin: 0;
}

.project-detail__information > div {
    padding: 0 0 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(73, 128, 153, 0.32);
}

.project-detail__information dt {
    margin-bottom: 8px;
    color: var(--detail-coral);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project-detail__information dd {
    margin: 0;
    color: var(--detail-white);
    font-size: 0.92rem;
    line-height: 1.6;
}

.project-detail__skills {
    margin-top: 30px;
}

.project-detail__skills ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.project-detail__skills li {
    padding: 8px 11px;
    border: 1px solid rgba(238, 34, 125, 0.55);
    border-radius: 7px;
    color: #f8e6f0;
    background: rgba(59, 8, 85, 0.75);
    font-size: 0.7rem;
    font-weight: 800;
}

/* TEXTE PRINCIPAL */

.project-detail__content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.project-detail__content h2 {
    max-width: 850px;
    margin: 0 0 32px;
    color: var(--detail-white);
    font-size: clamp(2.7rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.project-detail__content > p:not(.project-detail__label) {
    max-width: 900px;
    margin: 0;
    color: var(--detail-muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* EMPLACEMENT DU FUTUR VISUEL */

.project-detail__visual {
    position: relative;
    min-height: 500px;
    margin-top: 65px;
    overflow: hidden;
    border: 1px solid rgba(238, 34, 125, 0.48);
    border-radius: 24px;
    background:
        linear-gradient(rgba(48, 192, 183, 0.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(48, 192, 183, 0.13) 1px, transparent 1px),
        linear-gradient(145deg, #3b0855, #852467);
    background-size:
        42px 42px,
        42px 42px,
        auto;
    box-shadow:
        14px 15px 0 rgba(133, 36, 103, 0.2),
        0 0 45px rgba(238, 34, 125, 0.1);
}

.project-detail__visual::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    border: 2px solid var(--detail-cyan);
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.45;
}

.project-detail__visual::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    border: 2px solid var(--detail-coral);
    transform: translate(-50%, -50%) rotate(25deg);
    opacity: 0.55;
}

.project-detail__visual img {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    min-height: 500px;
    object-fit: cover;
}

.project-detail__placeholder {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.project-detail__placeholder span {
    color: transparent;
    font-size: clamp(7rem, 15vw, 13rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.1em;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.8);
}

.project-detail__placeholder p {
    margin: 25px 0 0;
    padding: 10px 15px;
    color: white;
    background: rgba(22, 0, 31, 0.75);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* BAS DE PAGE */

.project-detail__closing {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(73, 128, 153, 0.4);
}

.project-detail__navigation-link {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    user-select: none;
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.project-detail__navigation-link--previous {
    justify-self: start;
}

.project-detail__navigation-link--next {
    justify-self: end;
    text-align: right;
}

.project-detail__navigation-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.project-detail__navigation-copy small {
    color: var(--detail-muted);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.project-detail__navigation-copy strong {
    overflow: hidden;
    color: var(--detail-coral);
    font-size: 0.88rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-detail__navigation-icon {
    display: grid;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--detail-cyan);
    border-radius: 50%;
    color: var(--detail-cyan);
    transition:
        color 180ms ease,
        background 180ms ease;
}

.project-detail__navigation-link:hover {
    background: rgba(48, 192, 183, 0.08);
}

.project-detail__navigation-link:hover .project-detail__navigation-icon {
    color: var(--detail-cyan);
    background: rgba(48, 192, 183, 0.12);
}

.project-detail__navigation-link--previous:hover {
    transform: translateX(-4px);
}

.project-detail__navigation-link--next:hover {
    transform: translateX(4px);
}

.project-detail__selection-link {
    color: var(--detail-coral);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

/* LE LIEN DES CARTES */

.project-card__footer {
    text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
    .project-detail__sun {
        right: -100px;
        opacity: 0.5;
    }

    .project-detail__heading {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .project-detail__number {
        font-size: 8rem;
    }

    .project-detail__body {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 40px;
    }
}

@media (max-width: 780px) {
    .project-detail__hero {
        min-height: auto;
    }

    .project-detail__hero-content {
        padding: 75px 0 105px;
    }

    .project-detail__back {
        margin-bottom: 48px;
    }

    .project-detail__sun {
        top: auto;
        right: -80px;
        bottom: -80px;
        width: 250px;
        height: 250px;
        transform: none;
    }

    .project-detail__number {
        display: none;
    }

    .project-detail__body {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 80px 0 100px;
    }

    .project-detail__sidebar {
        max-width: none;
    }

    .project-detail__visual {
        min-height: 370px;
    }

    .project-detail__visual img {
        min-height: 370px;
    }
}

@media (max-width: 520px) {
    .project-detail__hero-content,
    .project-detail__body {
        width: min(100% - 30px, 1475px);
    }

    .project-detail__heading h1 {
        font-size: 3.3rem;
    }

    .project-detail__summary {
        font-size: 1rem;
    }

    .project-detail__content h2 {
        font-size: 2.7rem;
    }

    .project-detail__visual {
        min-height: 300px;
    }

    .project-detail__visual img {
        min-height: 300px;
    }

    .project-detail__visual::before {
        width: 210px;
        height: 210px;
    }

    .project-detail__visual::after {
        width: 145px;
        height: 145px;
    }

    .project-detail__closing {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .project-detail__navigation-link--previous,
    .project-detail__navigation-link--next,
    .project-detail__selection-link {
        justify-self: stretch;
    }

    .project-detail__navigation-link--next {
        justify-content: flex-end;
    }

    .project-detail__selection-link {
        padding: 12px 0;
        text-align: center;
    }
}

/* =========================================================
   MINIATURES DES PROJETS
   ========================================================= */

.project-card__cover {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #16001f;
    opacity: 0.82;
    transition:
        opacity 220ms ease,
        transform 350ms ease;
}

.project-card__visual::before {
    z-index: 2;
}

.project-card__visual::after {
    z-index: 1;
    opacity: 1;
    background:
        linear-gradient(
            180deg,
            rgba(22, 0, 31, 0.12) 0%,
            rgba(22, 0, 31, 0.28) 48%,
            rgba(22, 0, 31, 0.92) 100%
        ),
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size:
        auto,
        32px 32px,
        32px 32px;
}

.project-card__number {
    z-index: 3;
    text-shadow: 0 2px 12px rgba(10, 0, 15, 0.95);
}

.project-card:hover .project-card__cover {
    opacity: 0.96;
    transform: scale(1.045);
}

/* =========================================================
   GALERIES DE PHOTOS DES PROJETS
   ========================================================= */

.project-photo-gallery {
    margin-top: 75px;
}

.project-photo-gallery__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
}

.project-photo-gallery__header .project-detail__label {
    margin: 0;
}

.project-photo-gallery__header > span {
    color: var(--detail-coral);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project-photo-gallery__grid {
    position: relative;
}

.project-photo-gallery__item {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(48, 192, 183, 0.42);
    border-radius: 18px;
    background:
        linear-gradient(rgba(48, 192, 183, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(48, 192, 183, 0.08) 1px, transparent 1px),
        rgba(20, 0, 28, 0.88);
    background-size: 34px 34px;
    box-shadow: 8px 9px 0 rgba(133, 36, 103, 0.18);
    transition:
        transform 200ms ease,
        border-color 200ms ease,
        box-shadow 200ms ease;
}

.project-photo-gallery__item:hover {
    transform: translateY(-5px);
    border-color: var(--detail-pink);
    box-shadow:
        8px 13px 0 rgba(133, 36, 103, 0.22),
        0 0 30px rgba(238, 34, 125, 0.12);
}

.project-photo-gallery__item img {
    display: block;
    width: 100%;
    height: auto;
}

.project-photo-gallery__zoom {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.project-photo-gallery__zoom img {
    transition:
        transform 250ms ease,
        filter 250ms ease;
}

.project-photo-gallery__zoom:hover img {
    transform: scale(1.025);
    filter: brightness(0.82);
}

.project-photo-gallery__zoom:focus-visible {
    outline: 3px solid var(--detail-cyan);
    outline-offset: -3px;
}

/* Lightbox */

.project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    padding: 105px 90px 45px;
    background: rgba(9, 0, 13, 0.94);
    backdrop-filter: blur(10px);
}

.project-lightbox[hidden] {
    display: none;
}

.project-lightbox-open {
    overflow: hidden;
}

.project-lightbox__figure {
    display: grid;
    justify-items: center;
    gap: 16px;
    min-width: 0;
    margin: 0;
}

.project-lightbox__image {
    display: block;
    width: auto;
    max-width: min(78vw, 1250px);
    height: auto;
    max-height: 72vh;
    border: 1px solid rgba(48, 192, 183, 0.5);
    border-radius: 14px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.55),
        8px 9px 0 rgba(133, 36, 103, 0.22);
    object-fit: contain;
}

.project-lightbox__counter {
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.project-lightbox__close,
.project-lightbox__navigation {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--detail-cyan);
    border-radius: 50%;
    background: rgba(20, 0, 28, 0.8);
    color: var(--detail-cyan);
    font-size: 1.4rem;
    cursor: pointer;
    transition:
        color 180ms ease,
        background 180ms ease,
        transform 180ms ease;
}

.project-lightbox__close {
    position: absolute;
    top: 82px;
    right: 30px;
}

.project-lightbox__close:hover,
.project-lightbox__navigation:hover {
    color: var(--detail-dark);
    background: var(--detail-cyan);
    transform: scale(1.08);
}

@media (max-width: 750px) {
    .project-lightbox {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: 8px;
        padding: 105px 8px 25px;
    }

    .project-lightbox__close,
    .project-lightbox__navigation {
        width: 44px;
        height: 44px;
    }

    .project-lightbox__image {
        max-height: calc(100vh - 145px);
        border-radius: 10px;
    }

    .project-lightbox__close {
        top: 72px;
        right: 14px;
    }

    .project-lightbox__image {
        max-width: 100%;
        max-height: 68vh;
        border-radius: 10px;
    }
}

@media (max-width: 750px) {
    .project-photo-gallery__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .project-photo-gallery {
        margin-top: 55px;
    }

    .project-photo-gallery__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================================================
   VIDÉO D’UN PROJET
   ========================================================= */

.project-video {
    margin-top: 75px;
}

.project-video__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
}

.project-video__header .project-detail__label {
    margin: 0;
}

.project-video__header > span {
    color: var(--detail-coral);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project-video__player {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(48, 192, 183, 0.45);
    border-radius: 20px;
    background: #09000d;
    box-shadow:
        10px 12px 0 rgba(133, 36, 103, 0.2),
        0 0 35px rgba(238, 34, 125, 0.1);
}

.project-video__player video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #09000d;
}

@media (max-width: 480px) {
    .project-video {
        margin-top: 55px;
    }

    .project-video__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================================================
   CRÉATIONS AUDIO
   ========================================================= */

.project-audio {
    margin-top: 75px;
}

.project-audio__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
}

.project-audio__header .project-detail__label {
    margin: 0;
}

.project-audio__header > span {
    color: var(--detail-coral);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project-audio__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-audio__item {
    display: grid;
    grid-template-columns: minmax(230px, 0.7fr) minmax(300px, 1.3fr);
    gap: 35px;
    align-items: center;
    width: 100%;
    min-height: 120px;
    padding: 24px 28px;
    border: 1px solid rgba(48, 192, 183, 0.4);
    border-radius: 16px;
    background:
        linear-gradient(
            110deg,
            rgba(59, 8, 85, 0.86),
            rgba(22, 0, 31, 0.94)
        );
    box-shadow: 7px 8px 0 rgba(133, 36, 103, 0.16);
    box-sizing: border-box;
}

.project-audio__identity {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.project-audio__number {
    display: grid;
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    place-items: center;
    border: 1px solid var(--detail-cyan);
    border-radius: 50%;
    color: var(--detail-cyan);
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: inset 0 0 18px rgba(48, 192, 183, 0.1);
}

.project-audio__identity p {
    margin: 0 0 6px;
    color: var(--detail-white);
    font-size: 0.92rem;
    font-weight: 900;
}

.project-audio__identity div > span {
    color: var(--detail-muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-audio__item audio {
    display: block;
    width: 100%;
    height: 54px;
    min-height: 54px;
}

@media (max-width: 750px) {
    .project-audio__item {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 480px) {
    .project-audio {
        margin-top: 55px;
    }

    .project-audio__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .project-audio__item {
        padding: 22px 18px;
    }
}