﻿/* ═══════════════════════════════════════════════════════════
   AXION — ABOUT.CSS (Page À Propos)
   ═══════════════════════════════════════════════════════════ */

/* ── Keyframes séparateurs (identiques à home.css) ── */
@keyframes chartScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes chartScrollRev {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes chartScrollMid {
    0% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-75%);
    }
}

/* ════════════════════════════════════════════
   SÉPARATEUR E — Constellation de données
   Points connexes animés (réseau neural)
════════════════════════════════════════════ */
.sep-e {
    position: relative;
    height: 20px;
    background: var(--navy);
    overflow: hidden;
}

    .sep-e canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.sep-e-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8.5px;
    background: linear-gradient(90deg, transparent 0%, rgba(242,144,12,.35) 50%, transparent 100%);
    pointer-events: none;
}

.sep-e-line2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8.5px;
    background: linear-gradient(90deg, transparent 0%, rgba(74,141,192,.3) 50%, transparent 100%);
    pointer-events: none;
}

/* ── Séparateurs graphiques financiers ── */
.sect-sep {
    position: relative;
    height: 25px;
    overflow: hidden;
    display: block;
    line-height: 0;
}

.ss-cl {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    display: block;
    pointer-events: none;
    overflow: visible;
}

.ss-cl-1 {
    animation: chartScroll 10s linear infinite;
}

.ss-cl-2 {
    animation: chartScrollRev 14s linear infinite;
}

.ss-cl-3 {
    animation: chartScrollMid 19s linear infinite;
}

.ss-navy-paper {
    background: var(--navy);
}

    .ss-navy-paper .ss-fill {
        fill: var(--paper);
    }

@media (prefers-reduced-motion: reduce) {
    .ss-cl {
        animation: none !important;
        transform: translateX(0) !important;
    }
}


/* ── Section header réutilisable ── */
.about-section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .about-section-header h2 {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        color: var(--white);
        margin-bottom: .8rem;
        line-height: 1.3;
    }

.about-section-header--light h2 {
    color: var(--navy);
}

.about-section-sub {
    font-size: 1rem;
    color: var(--ink-soft);
    max-width: 560px;
    margin-top: .5rem;
    line-height: 1.6;
}

.about-eyebrow {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: "IBM Plex Mono", monospace;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.about-eyebrow-light {
    color: rgba(242,144,12,.85);
}

.about-section-header--light .about-section-sub {
    color: var(--ink-soft);
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION FLOTTANTE — identique à la page d'accueil
   ═══════════════════════════════════════════════════════════ */
.float-nav {
    position: fixed;
    right: 1.4rem;
    top: 0;
    bottom: 0;
    margin-top: var(--header-h);
    z-index: 500;
    display: flex;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
}

    .float-nav.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .float-nav ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: .5rem;
        padding: .75rem .55rem;
        background: rgba(1,30,61,.88);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 50px;
        border: 1px solid rgba(242,144,12,.22);
        box-shadow: 0 8px 32px rgba(1,15,31,.45);
    }

.fnav-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .55rem;
    padding: .28rem;
    text-decoration: none;
    position: relative;
}

.fnav-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
    flex-shrink: 0;
    transition: all .3s cubic-bezier(.34,1.56,.64,1);
    position: relative;
    z-index: 1;
}

.fnav-link:hover .fnav-dot,
.fnav-link.is-active .fnav-dot {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.45);
    box-shadow: 0 0 10px rgba(242,144,12,.55);
}

.fnav-label {
    position: absolute;
    right: calc(100% + 10px);
    background: rgba(1,30,61,.95);
    color: var(--white);
    padding: .28rem .65rem;
    border-radius: 5px;
    font-size: .68rem;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: .04em;
    border: 1px solid rgba(242,144,12,.25);
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition: opacity .2s ease, transform .2s ease;
    box-shadow: 0 4px 12px rgba(1,15,31,.35);
}

.fnav-link:hover .fnav-label {
    opacity: 1;
    transform: translateX(0);
}

.fnav-label .bl-en {
    display: none;
}

[data-lang="en"] .fnav-label .bl-fr {
    display: none;
}

[data-lang="en"] .fnav-label .bl-en {
    display: inline;
}

@media (max-width: 900px) {
    .float-nav {
        display: none;
    }
}


/* ═══════════════════════════════════════════════════════════
   SECTION PRÉSENTATION
   ═══════════════════════════════════════════════════════════ */
.about-intro {
    padding: 5rem 0;
    background: var(--paper);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-text h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    color: var(--navy);
    margin-bottom: 1.3rem;
    line-height: 1.3;
}

.text-fr {
    font-size: 1.02rem;
    color: var(--ink);
    line-height: 1.75;
    margin-bottom: 1rem;
    text-align: justify;
}

.text-en {
    font-size: .9rem;
    color: var(--ink-soft);
    font-style: italic;
    line-height: 1.65;
    padding-left: 1.1rem;
    border-left: 2px solid var(--gold);
    text-align: justify;
    margin-bottom: 0;
}

.text-pair {
    margin-bottom: 1.5rem;
}

    .text-pair p {
        margin-bottom: 0;
    }

.about-intro-image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(1,30,61,.15);
}

    .about-intro-image-frame img {
        width: 100%;
        height: 440px;
        object-fit: cover;
        display: block;
        transition: transform .6s ease;
    }

    .about-intro-image-frame:hover img {
        transform: scale(1.03);
    }

.about-intro-image-accent {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 10px;
    z-index: -1;
}


/* ═══════════════════════════════════════════════════════════
   SECTION HISTOIRE (GENÈSE) — Timeline sur fond navy
   ═══════════════════════════════════════════════════════════ */
@keyframes genesisLineDraw {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes genesisMarkerPop {
    0% {
        transform: scale(0) rotate(-30deg);
        opacity: 0;
    }

    70% {
        transform: scale(1.15) rotate(5deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes genesisBadgePop {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.genesis-section {
    position: relative;
    overflow: hidden;
}

.genesis-section-inner {
    background: var(--navy);
    padding: 5.5rem 0;
    position: relative;
}

    .genesis-section-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .genesis-section-inner::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

.genesis-section .about-section-header h2 {
    color: var(--white);
}

.genesis-section .about-section-sub {
    color: rgba(255,255,255,.6);
    font-style: italic;
}

.genesis-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 1rem;
}

    .genesis-timeline::before {
        content: '';
        position: absolute;
        top: 36px;
        left: calc(12.5%);
        right: calc(12.5%);
        height: 1px;
        background: linear-gradient(90deg, rgba(242,144,12,.15), rgba(242,144,12,.5), rgba(242,144,12,.15));
        transform: scaleX(0);
        transform-origin: left center;
        z-index: 0;
    }

    .genesis-timeline.is-visible::before {
        animation: genesisLineDraw 1.4s cubic-bezier(.4,0,.2,1) forwards;
        animation-delay: .2s;
    }

.genesis-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.genesis-step-marker {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242,144,12,.12);
    border: 1px solid rgba(242,144,12,.4);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    transition: background .35s ease, border-color .35s ease;
}

.genesis-step.is-visible .genesis-step-marker {
    animation: genesisMarkerPop .6s cubic-bezier(.34,1.56,.64,1) forwards;
}

.genesis-step:nth-child(1) .genesis-step-marker {
    animation-delay: .3s;
}

.genesis-step:nth-child(2) .genesis-step-marker {
    animation-delay: .55s;
}

.genesis-step:nth-child(3) .genesis-step-marker {
    animation-delay: .8s;
}

.genesis-step:nth-child(4) .genesis-step-marker {
    animation-delay: 1.05s;
}

.genesis-step:hover .genesis-step-marker {
    background: rgba(242,144,12,.22);
    border-color: var(--gold);
    box-shadow: 0 0 24px rgba(242,144,12,.22);
}

.genesis-step-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.genesis-step-num {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    border: 2px solid var(--navy);
    font-family: "IBM Plex Mono", monospace;
    font-size: .6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
}

.genesis-step.is-visible .genesis-step-num {
    animation: genesisBadgePop .4s cubic-bezier(.34,1.56,.64,1) forwards;
}

.genesis-step:nth-child(1) .genesis-step-num {
    animation-delay: .5s;
}

.genesis-step:nth-child(2) .genesis-step-num {
    animation-delay: .75s;
}

.genesis-step:nth-child(3) .genesis-step-num {
    animation-delay: 1.0s;
}

.genesis-step:nth-child(4) .genesis-step-num {
    animation-delay: 1.25s;
}

.genesis-step-body {
    position: relative;
    z-index: 1;
}

.genesis-step-title {
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: .8rem;
    line-height: 1.3;
}

.genesis-desc p {
    font-size: .88rem;
    line-height: 1.7;
    color: rgba(255,255,255,.62);
    text-align: justify;
}


/* ═══════════════════════════════════════════════════════════
   SECTION MISSION · VISION · VALEURS
   ═══════════════════════════════════════════════════════════ */
.mvv-section {
    padding: 5rem 0;
    background: var(--paper);
}

.mvv-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    margin-bottom: 4rem;
}

.mvv-card {
    background: var(--navy);
    border-radius: 12px;
    padding: 2.6rem 2.2rem;
    position: relative;
    overflow: hidden;
    transition: transform .45s ease, box-shadow .45s ease;
}

    .mvv-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: var(--gold);
    }

    .mvv-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 48px rgba(1,30,61,.25);
    }

.mvv-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242,144,12,.12);
    border: 1px solid rgba(242,144,12,.3);
    border-radius: 50%;
    margin-bottom: 1.3rem;
    transition: transform .45s ease, background .45s ease;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.08) rotate(-6deg);
    background: var(--gold);
}

.mvv-icon i {
    font-size: 1.4rem;
    color: var(--gold);
    transition: color .45s ease;
}

.mvv-card:hover .mvv-icon i {
    color: var(--navy);
}

.mvv-card h2 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1.1rem;
}

.mvv-text-fr {
    font-family: "Newsreader", Georgia, serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.65;
}

.mvv-text-en {
    font-size: .84rem;
    color: rgba(255,255,255,.45);
    font-style: italic;
    line-height: 1.6;
}

.mvv-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}

.mvv-value-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 2rem 1.4rem;
    text-align: center;
    transition: transform .55s cubic-bezier(.25,.8,.25,1), border-color .55s ease, box-shadow .55s ease;
    position: relative;
    overflow: hidden;
}

    .mvv-value-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .55s ease;
    }

    .mvv-value-card:hover {
        transform: translateY(-6px);
        border-color: rgba(242,144,12,.3);
        box-shadow: 0 16px 40px rgba(1,30,61,.1);
    }

        .mvv-value-card:hover::after {
            transform: scaleX(1);
        }

.mvv-value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    border-radius: 50%;
    transition: background .55s ease, transform .55s cubic-bezier(.34,1.56,.64,1);
}

.mvv-value-card:hover .mvv-value-icon {
    background: var(--gold);
    transform: scale(1.1) rotate(-5deg);
}

.mvv-value-icon i {
    font-size: 1.4rem;
    color: var(--gold);
    transition: color .3s ease;
}

.mvv-value-card:hover .mvv-value-icon i {
    color: var(--navy);
}

.mvv-value-card h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: .9rem;
}

.mvv-value-desc p {
    font-size: .8rem;
    color: var(--ink-soft);
    line-height: 1.65;
    text-align: justify;
}


/* ═══════════════════════════════════════════════════════════
   SECTION NOUS ACCOMPAGNONS
   ═══════════════════════════════════════════════════════════ */
.audience-section {
    padding: 5rem 0;
    background: var(--paper);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.4rem;
}

.audience-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(1,30,61,.06);
    transition: transform .65s cubic-bezier(.25,.8,.25,1), box-shadow .65s ease;
    display: flex;
    flex-direction: column;
}

    .audience-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 48px rgba(1,30,61,.15);
    }

.audience-card-media {
    position: relative;
    height: 160px;
    overflow: hidden;
}

    .audience-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .75s ease;
    }

.audience-card:hover .audience-card-media img {
    transform: scale(1.1);
}

.audience-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1,30,61,.85) 0%, rgba(1,30,61,.2) 55%, rgba(1,30,61,.05) 100%);
    transition: background .4s ease;
}

.audience-card:hover .audience-card-overlay {
    background: linear-gradient(to top, rgba(1,30,61,.9) 0%, rgba(242,144,12,.18) 60%, rgba(1,30,61,.1) 100%);
}

.audience-icon {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    z-index: 2;
    transition: background .45s ease, transform .45s cubic-bezier(.34,1.56,.64,1), box-shadow .45s ease;
    box-shadow: 0 4px 12px rgba(242,144,12,.35);
}

.audience-card:hover .audience-icon {
    background: var(--navy);
    transform: translateX(-50%) scale(1.1) rotate(8deg);
    box-shadow: 0 6px 18px rgba(242,144,12,.3);
}

.audience-icon i {
    font-size: 1.1rem;
    color: var(--navy);
    transition: color .3s;
}

.audience-card:hover .audience-icon i {
    color: var(--gold);
}

.audience-card-body {
    flex: 1;
    padding: 2rem 1.1rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}

    .audience-card-body h3 {
        font-family: "IBM Plex Sans", sans-serif;
        font-size: .84rem;
        font-weight: 600;
        color: var(--navy);
        line-height: 1.4;
        margin-bottom: .8rem;
    }

.audience-desc {
    flex: 1;
    text-align: left;
    padding-top: .7rem;
    border-top: 1px dashed var(--line);
}

    .audience-desc p {
        font-size: .85rem;
        color: var(--ink-soft);
        line-height: 1.6;
        text-align:justify;
    }


/* ═══════════════════════════════════════════════════════════
   SECTION POSITIONNEMENT (statement band)
   ═══════════════════════════════════════════════════════════ */
@keyframes driftGlow {
    0%, 100% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(3%,-4%) scale(1.15);
    }
}

@keyframes quotePulse {
    0%, 100% {
        opacity: .4;
        transform: scale(1);
    }

    50% {
        opacity: .7;
        transform: scale(1.1);
    }
}

@keyframes flowChevron {
    0%, 100% {
        opacity: .15;
    }

    50% {
        opacity: .9;
    }
}

@keyframes pillarPing {
    0% {
        opacity: .6;
        transform: scale(.85);
    }

    70% {
        opacity: 0;
        transform: scale(1.35);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

.statement-band {
    padding: 5rem 0;
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.statement-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 25% 35%, rgba(242,144,12,.1) 0%, transparent 45%), radial-gradient(circle at 78% 65%, rgba(242,144,12,.08) 0%, transparent 45%);
    animation: driftGlow 18s ease-in-out infinite;
}

.statement-band::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.statement-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.statement-icon {
    font-size: 1.8rem;
    color: rgba(242,144,12,.5);
    margin-bottom: 1.2rem;
    display: inline-block;
    animation: quotePulse 3s ease-in-out infinite;
}

.statement-text-fr {
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(1.25rem, 2.6vw, 1.7rem);
    font-style: italic;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1.55;
    margin-bottom: 1.2rem;
}

.statement-text-en {
    font-size: .92rem;
    color: rgba(255,255,255,.4);
    font-style: italic;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}

.statement-pillars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.statement-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    max-width: 160px;
    transition: transform .35s ease;
}

    .statement-pillar:hover {
        transform: translateY(-6px);
    }

.statement-flow-arrow {
    display: flex;
    align-items: center;
    color: var(--gold);
}

    .statement-flow-arrow i {
        font-size: .85rem;
        opacity: .15;
        animation: flowChevron 1.8s ease-in-out infinite;
    }

        .statement-flow-arrow i:nth-child(2) {
            animation-delay: .2s;
            margin-left: -5px;
        }

        .statement-flow-arrow i:nth-child(3) {
            animation-delay: .4s;
            margin-left: -5px;
        }

.statement-pillar-icon {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(242,144,12,.35);
    border-radius: 50%;
    background: rgba(242,144,12,.06);
    transition: background .3s, border-color .3s, transform .3s;
}

    .statement-pillar-icon::after {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 1px solid rgba(242,144,12,.35);
        opacity: 0;
        transform: scale(.85);
        pointer-events: none;
    }

.statement-pillar.is-visible .statement-pillar-icon::after {
    animation: pillarPing 2.6s ease-out infinite;
}

.statement-pillar:hover .statement-pillar-icon {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.08) rotate(-6deg);
}

.statement-pillar-icon i {
    font-size: 1.4rem;
    color: var(--gold-light);
    transition: color .3s;
}

.statement-pillar:hover .statement-pillar-icon i {
    color: var(--navy);
}

.statement-pillar .pillar-fr {
    font-size: .82rem;
    font-weight: 600;
    color: var(--white);
}

.statement-pillar .pillar-en {
    font-size: .7rem;
    font-style: italic;
    color: rgba(255,255,255,.4);
}


/* ═══════════════════════════════════════════════════════════
   SECTION VIVIER D'EXPERTS
   ═══════════════════════════════════════════════════════════ */
.vivier-section {
    padding: 5rem 0;
    background: var(--bone);
}

.vivier-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.vivier-image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(1,30,61,.12);
}

    .vivier-image-frame img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        display: block;
        transition: transform .55s ease;
    }

    .vivier-image-frame:hover img {
        transform: scale(1.04);
    }

.vivier-text h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--navy);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.vivier-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.4rem;
}

.vivier-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .95rem;
    background: rgba(242,144,12,.08);
    border: 1px solid rgba(242,144,12,.2);
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--navy);
}

    .vivier-tag i {
        font-size: .7rem;
        color: var(--gold);
    }

    .vivier-tag .bl-en {
        display: none;
    }

[data-lang="en"] .vivier-tag .bl-fr {
    display: none;
}

[data-lang="en"] .vivier-tag .bl-en {
    display: inline;
}

.vivier-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.6rem 1.8rem;
    background: var(--white);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    box-shadow: 0 6px 24px rgba(1,30,61,.06);
}

.vivier-note-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242,144,12,.1);
    border-radius: 50%;
}

    .vivier-note-icon i {
        font-size: 1.1rem;
        color: var(--gold);
    }

.vivier-note .text-fr {
    font-size: .92rem;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: .5rem;
    text-align: justify;
}

.vivier-note .text-en {
    font-size: .82rem;
    color: var(--ink-soft);
    font-style: italic;
    line-height: 1.55;
    text-align: justify;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mvv-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .genesis-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

        .genesis-timeline::before {
            display: none;
        }
}

@media (max-width: 900px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-intro-image {
        order: -1;
    }

    .about-intro-image-frame img {
        height: 300px;
    }

    .mvv-top {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .vivier-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .vivier-image-frame img {
        height: 280px;
    }

    .vivier-note {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vivier-note-icon {
        margin: 0 auto;
    }

    .genesis-timeline {
        grid-template-columns: 1fr;
    }

    .genesis-step {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        text-align: left;
    }

    .genesis-step-marker {
        margin: 0;
        flex-shrink: 0;
    }

    .genesis-desc p {
        text-align: left;
    }

    .statement-pillars {
        gap: 1.6rem;
    }

    .statement-pillar {
        max-width: 110px;
    }

    .statement-flow-arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .mvv-values-grid {
        grid-template-columns: 1fr;
    }
}


/* ════════════════════════════════════════════════════════════
   SYSTÈME BILINGUE
   ════════════════════════════════════════════════════════════ */
/* Bannière */
.page-banner-title .bl-en, .page-banner-eyebrow .bl-en,
.page-banner-subtitle .bl-en, .breadcrumb .bl-en {
    display: none;
}

[data-lang="en"] .page-banner-title .bl-fr, [data-lang="en"] .page-banner-eyebrow .bl-fr,
[data-lang="en"] .page-banner-subtitle .bl-fr, [data-lang="en"] .breadcrumb .bl-fr {
    display: none;
}

[data-lang="en"] .page-banner-title .bl-en, [data-lang="en"] .page-banner-eyebrow .bl-en,
[data-lang="en"] .page-banner-subtitle .bl-en, [data-lang="en"] .breadcrumb .bl-en {
    display: inline;
}

/* Eyebrows */
.about-eyebrow .bl-en, .about-eyebrow-light .bl-en {
    display: none;
}

[data-lang="en"] .about-eyebrow .bl-fr, [data-lang="en"] .about-eyebrow-light .bl-fr {
    display: none;
}

[data-lang="en"] .about-eyebrow .bl-en, [data-lang="en"] .about-eyebrow-light .bl-en {
    display: inline;
}

/* text-fr / text-en swap */
[data-lang="en"] .bilingual .text-en.bl-en {
    color: var(--ink);
    font-style: normal;
    border-left: none;
    padding-left: 0;
}

[data-lang="en"] .bilingual .text-fr.bl-fr {
    color: var(--ink-soft);
    font-style: italic;
    border-left: 2px solid var(--gold);
    padding-left: 1.1rem;
}

/* MVV h2 bilingual */
.mvv-card h2.bilingual .bl-en {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: "IBM Plex Sans", sans-serif;
    font-style: normal;
    opacity: 1;
    margin-bottom: 1.1rem;
}

[data-lang="en"] .mvv-card h2.bilingual .bl-en {
    order: 1;
    font-size: 1.4rem;
    color: var(--white);
    text-transform: none;
    letter-spacing: 0;
    font-family: "Newsreader", Georgia, serif;
    font-weight: 600;
}

[data-lang="en"] .mvv-card h2.bilingual .bl-fr {
    order: 2;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: "IBM Plex Sans", sans-serif;
    font-style: normal;
    opacity: 1;
}

/* MVV text swap */
[data-lang="en"] .mvv-text-pair .mvv-text-en.bl-en {
    font-family: "Newsreader", Georgia, serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.65;
}

[data-lang="en"] .mvv-text-pair .mvv-text-fr.bl-fr {
    font-size: .84rem;
    color: rgba(255,255,255,.45);
    font-style: italic;
    font-family: "IBM Plex Sans", sans-serif;
}

/* Value cards */
.mvv-value-card h3.bilingual .bl-en {
    font-size: .72rem;
    font-style: italic;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
}

[data-lang="en"] .mvv-value-card h3.bilingual .bl-en {
    order: 1;
    font-size: 1.05rem;
    font-style: normal;
    letter-spacing: 0;
    text-transform: none;
    color: var(--navy);
    font-family: "Newsreader", Georgia, serif;
    font-weight: 600;
}

[data-lang="en"] .mvv-value-card h3.bilingual .bl-fr {
    order: 2;
    font-size: .72rem;
    font-style: italic;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
}

[data-lang="en"] .mvv-value-desc .bl-en {
    font-size: .8rem;
    color: var(--ink-soft);
    font-style: normal;
}

[data-lang="en"] .mvv-value-desc .bl-fr {
    font-size: .75rem;
    color: var(--ink-soft);
    font-style: italic;
    opacity: .75;
}

/* Génèse h3 */
.genesis-step-title.bilingual .bl-en {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(242,144,12,.7);
    font-family: "IBM Plex Sans", sans-serif;
}

[data-lang="en"] .genesis-step-title.bilingual .bl-en {
    order: 1;
    font-size: 1rem;
    color: var(--gold-light);
    text-transform: none;
    letter-spacing: 0;
    font-family: "Newsreader", Georgia, serif;
    font-weight: 600;
}

[data-lang="en"] .genesis-step-title.bilingual .bl-fr {
    order: 2;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(242,144,12,.7);
    font-family: "IBM Plex Sans", sans-serif;
}

/* Audience */
.audience-card-body h3.bilingual .bl-en {
    font-size: .72rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: .02em;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
}

[data-lang="en"] .audience-card-body h3.bilingual .bl-en {
    order: 1;
    font-size: .84rem;
    font-weight: 600;
    color: var(--navy);
    font-style: normal;
    letter-spacing: 0;
    font-family: "IBM Plex Sans", sans-serif;
}

[data-lang="en"] .audience-card-body h3.bilingual .bl-fr {
    order: 2;
    font-size: .72rem;
    font-style: italic;
    color: var(--gold);
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
}

[data-lang="en"] .audience-desc .bl-en {
    font-size: .75rem;
    color: var(--ink-soft);
    font-style: normal;
}

[data-lang="en"] .audience-desc .bl-fr {
    font-size: .7rem;
    color: var(--ink-soft);
    font-style: italic;
    opacity: .75;
}

/* Statement */
.statement-texts.bilingual {
    gap: .8rem;
}

.statement-texts .statement-text-fr.bl-fr, .statement-texts .statement-text-en.bl-en {
    opacity: 1;
}

[data-lang="en"] .statement-texts .statement-text-en.bl-en {
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(1.25rem, 2.6vw, 1.7rem);
    font-style: italic;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1.55;
}

[data-lang="en"] .statement-texts .statement-text-fr.bl-fr {
    font-size: .92rem;
    color: rgba(255,255,255,.4);
    font-style: italic;
    line-height: 1.6;
}

.statement-pillar .pillar-fr {
    order: 1;
}

.statement-pillar .pillar-en {
    order: 2;
}

[data-lang="en"] .statement-pillar .pillar-en {
    order: 1;
    font-size: .82rem;
    font-weight: 600;
    color: var(--white);
    font-style: normal;
}

[data-lang="en"] .statement-pillar .pillar-fr {
    order: 2;
    font-size: .7rem;
    font-style: italic;
    color: rgba(255,255,255,.4);
    font-weight: 400;
}

/* Vivier */
[data-lang="en"] .vivier-text .bilingual .text-en.bl-en {
    color: var(--ink);
    font-style: normal;
    border-left: none;
    padding-left: 0;
}

[data-lang="en"] .vivier-text .bilingual .text-fr.bl-fr {
    color: var(--ink-soft);
    font-style: italic;
    border-left: 2px solid var(--gold);
    padding-left: 1.1rem;
}

[data-lang="en"] .vivier-note .bilingual .text-en.bl-en {
    font-size: .92rem;
    color: var(--ink);
    font-style: normal;
}

[data-lang="en"] .vivier-note .bilingual .text-fr.bl-fr {
    font-size: .82rem;
    color: var(--ink-soft);
    font-style: italic;
}

/* CTA about */
.cta-about-text .bl-fr {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}

.cta-about-text .bl-en {
    font-size: .88rem;
    color: rgba(255,255,255,.4);
}

[data-lang="en"] .cta-about-text .bl-en {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
}

[data-lang="en"] .cta-about-text .bl-fr {
    font-size: .88rem;
    color: rgba(255,255,255,.35);
}
