@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Manrope:wght@400;500;600;700;800&display=swap');


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

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

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    background: #0d0d0d;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}


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

.header {
    position: fixed;
    top: 24px;
    left: 50%;

    width: calc(100% - 48px);
    height: 76px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    padding: 0 26px;

    z-index: 1000;

    background: rgba(15, 15, 15, .68);

    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;

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

    transition:
        transform .45s cubic-bezier(.16, 1, .3, 1),
        opacity .35s ease;
}

.header-hidden {
    transform:
        translateX(-50%)
        translateY(-130px);

    opacity: 0;
}


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

.nav {
    display: flex;
    align-items: center;

    gap: 36px;
    height: 100%;
}

.nav a {
    position: relative;

    display: flex;
    align-items: center;

    height: 100%;

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

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    transition: color .25s ease;
}

.nav a:hover,
.nav a.active {
    color: #ffffff;
}

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

    position: absolute;
    left: 0;
    bottom: 19px;

    width: 0;
    height: 2px;

    background: #8CB5ED;

    transition:
        width .3s cubic-bezier(.16, 1, .3, 1);
}

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


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

.header-right {
    margin-left: auto;

    height: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}


/* ==========================================
   RÉSEAUX SOCIAUX
========================================== */

.header-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 11px;
    margin-right: 32px;
}

.header-socials .social-link {
    width: 36px;
    height: 36px;
    min-width: 36px;

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

    padding: 0;
    margin: 0;

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

    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;

    color: #ffffff;
    text-decoration: none;

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

.header-socials .social-link svg {
    display: block;

    width: 17px;
    height: 17px;

    fill: #ffffff;
}

.header-socials .social-link svg path {
    fill: #ffffff;
}

.header-socials .social-link:hover {
    background: #8CB5ED;
    border-color: #8CB5ED;

    transform:
        translateY(-2px)
        scale(1.05);

    box-shadow:
        0 0 16px
        rgba(140, 181, 237, .25);
}


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

.header-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    text-decoration: none;
}

.header-logo {
    display: block;

    width: 54px;
    height: auto;

    filter: invert(1);

    transition:
        transform .3s cubic-bezier(.16, 1, .3, 1);
}

.header-logo-link:hover .header-logo {
    transform: scale(1.06);
}


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

.hero {
    position: relative;

    width: 100%;
    height: 100vh;

    min-height: 650px;

    overflow: hidden;

    background: #000000;
}


/* ==========================================
   VIDÉO HERO
========================================== */

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


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

.overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .20),
            rgba(0, 0, 0, .32) 55%,
            rgba(0, 0, 0, .72)
        );
}


/* ==========================================
   CONTENU CENTRAL HERO
========================================== */

.hero-content {
    position: absolute;

    top: 50%;
    left: 50%;

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

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    z-index: 2;
}


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

.hero-logo {
    display: block;

    width:
        clamp(
            190px,
            18vw,
            300px
        );

    height: auto;

    filter: invert(1);

    opacity: 0;

    transform: scale(.72);

    transform-origin: center center;

    animation:
        heroLogoReveal
        1.0s
        cubic-bezier(.22, .61, .36, 1)
        .10s
        forwards;

    will-change:
        transform,
        opacity;
}


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

.hero-content p {
    margin-top: 24px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;

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

    opacity: 0;

    animation:
        heroSubtitleReveal
        .8s
        ease
        .85s
        forwards;
}


/* ==========================================
   DÉCOUVRIR
========================================== */

.scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 35px;

    transform: translateX(-50%);

    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;

    color: #ffffff;

    text-decoration: none;

    opacity: 0;

    animation:
        heroDiscoverReveal
        1.0s
        ease
        1.20s
        forwards;
}

.scroll-indicator span {
    font-size: 8px;
    font-weight: 700;

    letter-spacing: 3px;

    opacity: .7;
}


/* ==========================================
   LIGNE DÉCOUVRIR
========================================== */

.scroll-line {
    width: 1px;
    height: 35px;

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

    transform-origin: top center;

    animation:
        heroScrollLine
        1.8s
        ease-in-out
        1.8s
        infinite;
}


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

@keyframes heroLogoReveal {

    0% {
        opacity: 0;
        transform: scale(.72);
    }

    25% {
        opacity: .18;
    }

    55% {
        opacity: .62;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes heroSubtitleReveal {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@keyframes heroDiscoverReveal {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@keyframes heroScrollLine {

    0% {
        transform: scaleY(.30);
        opacity: .25;
    }

    50% {
        transform: scaleY(1);
        opacity: .85;
    }

    100% {
        transform: scaleY(.30);
        opacity: .25;
    }
}


/* ==========================================
   PRÉSENTATION
========================================== */

.presentation {
    position: relative;

    padding:
        55px
        5vw
        70px;

    overflow: hidden;

    background: #0d0d0d;
}

.presentation-main {
    width: 100%;

    margin-top: 5vh;
}


/* ==========================================
   GRAND TITRE
========================================== */

.presentation h1 {
    font-family:
        "Bowlby One SC",
        sans-serif;

    font-size:
        clamp(
            58px,
            8.8vw,
            150px
        );

    font-weight: 400;

    line-height: .84;

    letter-spacing: -3px;
}

.presentation h1 span {
    display: block;

    opacity: 0;

    transform:
        translateX(-100px);

    transition:
        opacity .9s ease,
        transform 1s
        cubic-bezier(.16, 1, .3, 1);
}

.presentation h1 span:nth-child(2) {
    color: #8CB5ED;
}

.presentation h1 span.title-visible {
    opacity: 1;

    transform:
        translateX(0);
}


/* ==========================================
   BAS PRÉSENTATION
========================================== */

.presentation-bottom {
    width: 100%;

    margin-top: 85px;

    display: grid;

    grid-template-columns:
        1.1fr
        .9fr;

    gap: 80px;

    align-items: center;
}


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

.duo-photo-wrapper {
    width: 100%;

    overflow: hidden;

    border-radius: 12px;

    opacity: 0;

    transform:
        translateY(45px);

    transition:
        opacity .9s ease,
        transform 1s
        cubic-bezier(.16, 1, .3, 1);
}

.duo-photo-wrapper.photo-visible {
    opacity: 1;

    transform:
        translateY(0);
}

.duo-photo {
    display: block;

    width: 100%;
    height: auto;

    transform: scale(1);

    transition:
        transform .8s
        cubic-bezier(.16, 1, .3, 1);
}

.duo-photo-wrapper.photo-visible:hover
.duo-photo {
    transform: scale(1.05);
}


/* ==========================================
   TEXTE PRÉSENTATION
========================================== */

.presentation-text {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .9s ease,
        transform 1s
        cubic-bezier(.16, 1, .3, 1);
}

.presentation-text.text-visible {
    opacity: 1;

    transform:
        translateY(0);
}

.about-heading {
    margin-bottom: 32px;

    text-align: center;
}

.about-heading h2 {
    font-family:
        "Bowlby One SC",
        sans-serif;

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

    letter-spacing: 3px;

    color: #ffffff;
}

.about-line {
    width: 45px;
    height: 2px;

    margin:
        13px
        auto
        0;

    background: #8CB5ED;
}

.presentation-text p {
    max-width: 650px;

    margin-bottom: 24px;

    font-size:
        clamp(
            15px,
            1.25vw,
            19px
        );

    line-height: 1.8;

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


/* ==========================================
   FORMULE
========================================== */

.formula {
    position: relative;

    padding:
        70px
        5vw
        60px;

    background: #0d0d0d;

    border-top:
        1px solid
        rgba(255, 255, 255, .08);

    overflow: hidden;
}


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

.formula-intro {
    width: 100%;

    display: grid;

    grid-template-columns:
        1.35fr
        .65fr;

    gap: 80px;

    align-items: center;

    opacity: 0;

    transform:
        translateY(45px);

    transition:
        opacity .9s ease,
        transform 1s
        cubic-bezier(.16, 1, .3, 1);
}

.formula-intro.formula-visible {
    opacity: 1;

    transform:
        translateY(0);
}

.formula-intro-text {
    min-width: 0;
}


/* ==========================================
   LABEL
========================================== */

.section-label {
    margin-bottom: 40px;
}

.section-label span {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 4px;

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

.section-label-line {
    width: 45px;
    height: 2px;

    margin-top: 13px;

    background: #8CB5ED;
}


/* ==========================================
   TITRE FORMULE
========================================== */

.formula-intro h2 {
    font-family:
        "Bowlby One SC",
        sans-serif;

    font-size:
        clamp(
            54px,
            7.4vw,
            125px
        );

    font-weight: 400;

    line-height: .88;

    letter-spacing: -2px;
}

.formula-intro h2 span {
    display: block;
}

.formula-intro h2 span:nth-child(2) {
    color: #8CB5ED;
}

.formula-intro-text > p {
    max-width: 720px;

    margin-top: 42px;

    font-size:
        clamp(
            15px,
            1.15vw,
            18px
        );

    line-height: 1.8;

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


/* ==========================================
   IMAGE FORMULE
========================================== */

.formula-image-wrapper {
    width: 100%;
    max-width: 520px;

    justify-self: end;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 12px;
}

.formula-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.03);

    transition:
        transform .8s
        cubic-bezier(.16, 1, .3, 1);
}

.formula-image-wrapper:hover
.formula-image {
    transform: scale(1.08);
}


/* ==========================================
   BLOCS FORMULE
========================================== */

.formula-features {
    width: 100%;

    margin-top: 55px;

    display: grid;

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

    border-top:
        1px solid
        rgba(255, 255, 255, .12);

    border-bottom:
        1px solid
        rgba(255, 255, 255, .12);

    opacity: 0;

    transform:
        translateY(40px);

    transition:
        opacity .9s ease,
        transform 1s
        cubic-bezier(.16, 1, .3, 1);
}

.formula-features.formula-visible {
    opacity: 1;

    transform:
        translateY(0);
}

.formula-feature {
    position: relative;

    min-height: 230px;

    padding:
        35px
        45px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition:
        background .4s ease,
        color .4s ease;
}

.formula-feature:not(:last-child) {
    border-right:
        1px solid
        rgba(255, 255, 255, .12);
}

.formula-feature h3 {
    font-family:
        "Bowlby One SC",
        sans-serif;

    font-size:
        clamp(
            45px,
            5vw,
            78px
        );

    font-weight: 400;

    line-height: .85;
}

.formula-feature h3 span {
    display: block;

    margin-top: 10px;

    font-family:
        "Bowlby One SC",
        sans-serif;

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

    letter-spacing: 2px;

    padding-left: 4px;
}

.formula-feature p {
    max-width: 340px;

    margin-top: 25px;

    font-size: 12px;

    line-height: 1.7;

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

    transition:
        color .4s ease;
}

.formula-feature:hover {
    background: #8CB5ED;

    color: #111111;
}

.formula-feature:hover p {
    color:
        rgba(17, 17, 17, .72);
}


/* ==========================================
   TEASER
========================================== */

.teaser-section {
    width: 100%;

    margin-top: 80px;

    opacity: 0;

    transform:
        translateY(45px);

    transition:
        opacity .9s ease,
        transform 1s
        cubic-bezier(.16, 1, .3, 1);
}

.teaser-section.formula-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* ==========================================
   TITRE TEASER
========================================== */

.teaser-header {
    width: 100%;

    margin-bottom: 55px;
}

.teaser-header h2 {
    font-family:
        "Bowlby One SC",
        sans-serif;

    font-size:
        clamp(
            55px,
            7.5vw,
            125px
        );

    font-weight: 400;

    line-height: .87;

    letter-spacing: -2px;
}

.teaser-header h2 span {
    display: block;

    color: #8CB5ED;
}


/* ==========================================
   VIDÉO TEASER
========================================== */

.teaser-video-wrapper {
    position: relative;

    width: 88%;
    max-width: 1500px;

    margin:
        0
        auto;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 12px;

    background: #000000;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, .35);
}

.teaser-video-wrapper iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    display: block;
}


/* ==========================================
   SÉPARATEUR TEASER / AUDIO
========================================== */

.section-separator {
    position: relative;

    left: 50%;

    width: 100vw;
    height: 1px;

    margin-top: 80px;

    transform:
        translateX(-50%);

    background:
        rgba(255, 255, 255, .12);
}


/* ==========================================
   AUDIO
========================================== */

.audio-section {
    width: 100%;

    margin-top: 100px;

    opacity: 0;

    transform:
        translateY(45px);

    transition:
        opacity .9s ease,
        transform 1s
        cubic-bezier(.16, 1, .3, 1);
}

.audio-section.formula-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* ==========================================
   TITRE AUDIO
========================================== */

.audio-header {
    width: 100%;

    margin-bottom: 55px;
}

.audio-header h2 {
    font-family:
        "Bowlby One SC",
        sans-serif;

    font-size:
        clamp(
            55px,
            7.5vw,
            125px
        );

    font-weight: 400;

    line-height: .87;

    letter-spacing: -2px;
}

.audio-header h2 span {
    display: block;

    color: #8CB5ED;
}


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

.audio-list {
    width: 100%;

    border-top:
        1px solid
        rgba(255, 255, 255, .13);
}

.audio-track {
    width: 100%;

    min-height: 100px;

    display: flex;
    align-items: center;

    gap: 28px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .13);
}

.audio-play {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

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

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

    border-radius: 50%;

    background: transparent;

    color: #ffffff;

    cursor: pointer;

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

.audio-play:hover {
    background: #8CB5ED;

    border-color: #8CB5ED;

    color: #111111;

    transform: scale(1.05);
}

.play-icon {
    font-size: 12px;
}

.audio-info {
    flex: 1;
}

.audio-title {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 14px;
}

.audio-title span {
    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #8CB5ED;
}

.audio-title strong {
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #ffffff;
}

.audio-progress {
    position: relative;

    width: 100%;
    height: 2px;

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

    cursor: pointer;
}

.audio-progress-bar {
    width: 0;
    height: 100%;

    background: #8CB5ED;
}

.audio-time {
    min-width: 42px;

    text-align: right;

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

    letter-spacing: 1px;

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


/* ==========================================
   LIEN MÉDIAS
========================================== */

.media-link {
    width: fit-content;

    margin:
        48px
        0
        0
        auto;

    display: flex;
    align-items: center;

    gap: 18px;

    color: #ffffff;

    text-decoration: none;

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

    letter-spacing: 3px;

    transition:
        color .3s ease;
}

.media-arrow {
    font-size: 22px;

    transition:
        transform .3s
        cubic-bezier(.16, 1, .3, 1);
}

.media-link:hover {
    color: #8CB5ED;
}

.media-link:hover
.media-arrow {
    transform:
        translateX(7px);
}


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

.footer {
    position: relative;

    padding:
        55px
        5vw
        25px;

    background: #090909;

    border-top:
        1px solid
        rgba(255, 255, 255, .10);
}

.footer-main {
    width: 100%;

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

    gap: 80px;
}


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

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: block;

    width: 100px;
    height: auto;

    filter: invert(1);
}

.footer-brand p {
    margin-top: 22px;

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

    letter-spacing: 3px;

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


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

.footer-links {
    display: flex;

    gap:
        clamp(
            55px,
            7vw,
            120px
        );
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
}

.footer-label {
    margin-bottom: 10px;

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

    letter-spacing: 3px;

    color: #8CB5ED;
}

.footer-column a {
    position: relative;

    width: fit-content;

    text-decoration: none;

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

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

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

.footer-column a:hover {
    color: #ffffff;

    transform:
        translateX(4px);
}


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

.footer-bottom {
    width: 100%;

    margin-top: 45px;

    padding-top: 25px;

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

    border-top:
        1px solid
        rgba(255, 255, 255, .09);

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

    letter-spacing: 2px;

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


/* ==========================================
   CONTACT FLOTTANT
========================================== */

.floating-contact {
    position: fixed;

    right: 28px;
    bottom: 28px;

    z-index: 900;

    height: 64px;

    padding:
        0
        28px;

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

    gap: 14px;

    text-decoration: none;

    color: #101010;

    background: #8CB5ED;

    border:
        4px solid
        #161616;

    border-radius: 999px;

    box-shadow:
        0 0 0 1px rgba(140, 181, 237, .12),
        0 5px 16px rgba(0, 0, 0, .35),
        0 0 15px rgba(140, 181, 237, .30),
        0 0 32px rgba(140, 181, 237, .14);

    animation:
        contactGlow
        2.4s
        ease-in-out
        infinite;

    transition:
        transform .3s
        cubic-bezier(.16, 1, .3, 1),
        box-shadow .3s ease,
        background .3s ease;
}

.floating-contact-icon {
    width: 23px;
    height: 23px;

    flex-shrink: 0;

    fill: none;

    stroke: currentColor;

    stroke-width: 2.2;

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

    transition:
        transform .3s
        cubic-bezier(.16, 1, .3, 1);
}

.floating-contact-text {
    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;

    line-height: 1;
}

.floating-contact:hover {
    transform:
        translateY(-3px)
        scale(1.02);

    background: #9CC2F3;

    box-shadow:
        0 0 0 1px rgba(140, 181, 237, .20),
        0 8px 20px rgba(0, 0, 0, .38),
        0 0 20px rgba(140, 181, 237, .42),
        0 0 38px rgba(140, 181, 237, .18);
}

.floating-contact:hover
.floating-contact-icon {
    transform: scale(1.08);
}


/* ==========================================
   GLOW CONTACT
========================================== */

@keyframes contactGlow {

    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(140, 181, 237, .10),
            0 5px 16px rgba(0, 0, 0, .35),
            0 0 10px rgba(140, 181, 237, .22),
            0 0 24px rgba(140, 181, 237, .08);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(140, 181, 237, .18),
            0 5px 16px rgba(0, 0, 0, .35),
            0 0 18px rgba(140, 181, 237, .42),
            0 0 34px rgba(140, 181, 237, .15);
    }

}


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

@media (max-width: 900px) {

    .header {
        top: 14px;

        width:
            calc(100% - 28px);

        height: 68px;

        padding:
            0
            18px;

        border-radius: 15px;
    }

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 9px;

        letter-spacing: 1.3px;
    }

    .nav a::after {
        bottom: 16px;
    }

    .header-socials {
        gap: 8px;

        margin-right: 18px;
    }

    .header-socials
    .social-link {
        width: 32px;
        height: 32px;

        min-width: 32px;
    }

    .header-socials
    .social-link svg {
        width: 15px;
        height: 15px;
    }

    .header-logo {
        width: 46px;
    }

    .presentation {
        padding:
            50px
            30px
            70px;
    }

    .presentation-bottom {
        gap: 45px;
    }

    .formula {
        padding:
            70px
            30px
            60px;
    }

    .formula-intro {
        gap: 45px;
    }

    .formula-feature {
        padding:
            30px
            25px;
    }

}


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

@media (max-width: 700px) {

    .header {
        top: 10px;

        width:
            calc(100% - 20px);

        height: 62px;

        padding:
            0
            14px;

        border-radius: 14px;
    }

    .nav {
        gap: 14px;
    }

    .nav a {
        font-size: 8px;

        letter-spacing: .8px;
    }

    .nav a::after {
        bottom: 14px;
    }

    .header-socials {
        display: none;
    }

    .header-logo {
        width: 42px;
    }


    /* HERO */

    .hero {
        min-height: 600px;
    }

    .hero-logo {
        width: 180px;
    }

    .hero-content p {
        margin-top: 18px;

        font-size: 8px;

        letter-spacing: 2.5px;
    }


    /* PRÉSENTATION */

    .presentation {
        padding:
            45px
            22px
            65px;
    }

    .presentation-main {
        margin-top: 3vh;
    }

    .presentation h1 {
        font-size:
            clamp(
                47px,
                15vw,
                78px
            );

        line-height: .88;

        letter-spacing: -1px;
    }

    .presentation-bottom {
        margin-top: 55px;

        display: flex;
        flex-direction: column;

        gap: 50px;
    }

    .presentation-text p {
        font-size: 14px;

        line-height: 1.75;
    }


    /* FORMULE */

    .formula {
        padding:
            70px
            22px
            60px;
    }

    .formula-intro {
        display: flex;
        flex-direction: column;

        gap: 50px;
    }

    .formula-intro h2 {
        font-size:
            clamp(
                48px,
                15vw,
                78px
            );

        letter-spacing: -1px;
    }

    .formula-intro-text > p {
        margin-top: 30px;

        font-size: 14px;
    }

    .formula-image-wrapper {
        width: 100%;

        max-width: none;
    }


    /* BLOCS FORMULE */

    .formula-features {
        margin-top: 55px;

        grid-template-columns: 1fr;
    }

    .formula-feature {
        min-height: 220px;

        padding:
            35px
            25px;
    }

    .formula-feature:not(:last-child) {
        border-right: none;

        border-bottom:
            1px solid
            rgba(255, 255, 255, .12);
    }

    .formula-feature h3 {
        font-size: 55px;
    }


    /* TEASER */

    .teaser-section {
        margin-top: 70px;
    }

    .teaser-header {
        margin-bottom: 40px;
    }

    .teaser-header h2 {
        font-size:
            clamp(
                47px,
                15vw,
                75px
            );

        letter-spacing: -1px;
    }

    .teaser-video-wrapper {
        width: 100%;

        border-radius: 8px;
    }


    /* SÉPARATEUR */

    .section-separator {
        margin-top: 60px;
    }


    /* AUDIO */

    .audio-section {
        margin-top: 60px;
    }

    .audio-header {
        margin-bottom: 40px;
    }

    .audio-header h2 {
        font-size:
            clamp(
                47px,
                15vw,
                75px
            );
    }

    .audio-track {
        min-height: 90px;

        gap: 16px;
    }

    .audio-play {
        width: 43px;
        height: 43px;
    }

    .audio-title {
        gap: 10px;

        margin-bottom: 12px;
    }

    .audio-title strong {
        font-size: 10px;

        letter-spacing: .8px;
    }

    .audio-time {
        min-width: 35px;

        font-size: 8px;
    }

    .media-link {
        margin-top: 38px;

        font-size: 8px;

        letter-spacing: 2px;
    }


    /* FOOTER */

    .footer {
        padding:
            45px
            22px
            22px;
    }

    .footer-main {
        flex-direction: column;

        gap: 55px;
    }

    .footer-logo {
        width: 85px;
    }

    .footer-links {
        width: 100%;

        display: grid;

        grid-template-columns:
            1fr
            1fr;

        gap:
            45px
            30px;
    }

    .footer-column:last-child {
        grid-column:
            1 / -1;
    }

    .footer-bottom {
        margin-top: 40px;

        gap: 20px;

        font-size: 7px;
    }


    /* CONTACT */

    .floating-contact {
        right: 15px;
        bottom: 15px;

        height: 54px;

        padding:
            0
            21px;

        gap: 11px;

        border-width: 3px;
    }

    .floating-contact-icon {
        width: 19px;
        height: 19px;
    }

    .floating-contact-text {
        font-size: 11px;
        font-weight: 800;

        letter-spacing: 1.7px;
    }

}