/* ── HERO SPLIT (photo droite, texte gauche) ── */
.hero--split {
    position: relative;
    display: flex;
    overflow: hidden;
    height: 85vh;
    min-height: 580px;
    align-items: flex-end;
}
.hero--split .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #040d1a 0%, #0A2540 50%, #1B5583 100%);
}
.hero--split .hero-photo {
    position: absolute;
    right: 0; bottom: 0;
    height: 100%; width: 52%;
    object-fit: cover;
    object-position: top center;
}
.hero--split .hero-fade {
    position: absolute; inset: 0;
    background: linear-gradient(90deg,
        rgba(10,37,64,1) 0%,
        rgba(10,37,64,0.9) 25%,
        rgba(10,37,64,0.35) 58%,
        transparent 100%);
}
.hero--split .hero-fade-bottom {
    position: absolute; bottom: 0; left: 0; right: 0; height: 28%;
    background: linear-gradient(180deg, transparent 0%, rgba(10,37,64,0.55) 100%);
}
.hero--split .hero-content {
    position: relative; z-index: 3;
    padding: 0 5% 5rem; max-width: 620px; color: var(--white);
}
.hero--split .hero-scroll {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%); z-index: 4;
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    animation: bounce 2s ease-in-out infinite;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero--split {
        height: auto;
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
    }
    .hero--split .hero-bg { display: none; }
    .hero--split .hero-fade { display: none; }
    .hero--split .hero-fade-bottom { display: none; }
    .hero--split .hero-content {
        background: var(--ocean-deep);
        padding: 7rem 6% 3rem;
        max-width: 100%;
        order: 1;
    }
    .hero--split .hero-photo {
        position: relative;
        width: 100%; height: 320px;
        object-fit: cover;
        object-position: top center;
        order: 2;
    }
    .hero--split .hero-scroll { display: none; }
}

/* Éléments spécifiques trimaran à ajouter dans hero-split.css */

.hero--split .hero-subtitle {
    font-family: var(--font-condensed);
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.hero--split .hero-specs {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.7s backwards;
}

.hero--split .hero-spec-val {
    font-family: var(--font-condensed);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--turquoise);
    line-height: 1;
}

.hero--split .hero-spec-key {
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 0.2rem;
}

.hero--split .hero-breadcrumb {
    font-family: var(--font-condensed);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero--split .hero-breadcrumb a {
    color: var(--turquoise);
    text-decoration: none;
}

.hero--split .hero-tag {
    display: inline-block;
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--turquoise);
    border: 1px solid rgba(134,193,233,0.4);
    padding: 0.35rem 1rem;
    margin-bottom: 1.5rem;
    animation: fadeSlideDown 0.8s ease-out backwards;
}

.hero--split .hero-title {
    font-family: var(--font-display);
    letter-spacing: var(--tracking-display);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    line-height: 1.15;
    margin-bottom: 0.5rem;
    animation: fadeSlideUp 1s ease-out 0.2s backwards;
}
.hero--split .hero-title2 {
    font-family: var(--font-display);
    letter-spacing: var(--tracking-display);
    font-size: clamp(2.8rem, 5.5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 0.5rem;
    animation: fadeSlideUp 1s ease-out 0.2s backwards;
}
.hero--split .hero-scroll span {
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.hero--split .hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, rgba(45,212,191,0.8) 0%, transparent 100%);
}

/* ── HERO SPLIT — éléments communs ── */
.hero--split .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.7s backwards;
}
.hero--split .hero-stat-val {
    font-family: var(--font-condensed);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--turquoise);
    line-height: 1;
}
.hero--split .hero-stat-key {
    font-family: var(--font-condensed);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 0.2rem;
}
.hero--split .hero-subtitle {
    font-family: var(--font-condensed);
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.5s backwards;
}
.hero--split .hero-subtitle2 {
    font-family: var(--font-condensed);
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.5s backwards;
}
.hero--split .hero-age {
    font-family: var(--font-condensed);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.52);
    margin-bottom: 1.8rem;
    animation: fadeIn 1s ease-out 0.5s backwards;
}
.hero--split .hero-langs {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.7s backwards;
}
.hero--split .hero-lang {
    padding: 0.3rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
    font-family: var(--font-condensed);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}