:root {
    /* --- Palette "Director 2026" --- */
    --bg-color: #0A0A0A;       /* Obsidian Black */
    --bg-secondary: #141414;   /* Darker Grey for subtle contrast */
    --text-main: #E5E5E5;      /* Platinum */
    --text-muted: #A0A0A0;     /* Grey text */
    --accent-color: #D62828;   /* Cinema Red */
    --accent-hover: #ff3b3b;   /* Brighter red for hover */
    
    /* --- Typography --- */
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-display: 'Impact', 'Arial Black', sans-serif; /* Pour les titres forts si besoin */
    
    /* --- Spacing & UI --- */
    --nav-height: 80px;
    --container-width: 1400px;
    --transition-speed: 0.3s;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: var(--bg-color);
}

body {
    background-color: transparent; /* Transparent pour laisser voir html et body::before */
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative; /* Contexte de positionnement */
}

/* Lueur d'ambiance globale (Fixe sur toutes les pages) */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0) 70%);
    z-index: 0; /* Au-dessus de html/video mais sous le contenu (si content > 0) */
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    display: block;
}

/* --- Fonts Spécifiques Triple Identité --- */
.font-musician { font-family: 'Playfair Display', serif; font-style: italic; }
.font-director { font-family: 'Montserrat', sans-serif; font-weight: 900; text-transform: uppercase; }
.font-editor { font-family: 'Courier New', Courier, monospace; }

/* --- Parallax Section --- */
.parallax-bg {
    position: relative;
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* --- COLLABORATIONS / CINEMA TABS SYSTEM --- */
.collab-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Barre d'onglets */
.collab-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 10px 20px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.tab-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.tab-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 15px rgba(214, 40, 40, 0.3);
}

/* Zone de contenu (Écran noir) */
.tab-content {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 4px;
    min-height: 300px; /* Hauteur min pour éviter le saut */
    position: relative;
}

.tab-panel {
    display: none; /* Caché par défaut */
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block; /* Visible si actif */
}

/* Liste en colonnes façon générique */
.collab-list {
    column-count: 4; /* 4 colonnes sur grand écran */
    column-gap: 40px;
    width: 100%;
}

.collab-list li {
    font-size: 0.95rem; /* Augmenté de 0.8rem */
    color: #888; /* Un peu plus clair pour la lisibilité */
    margin-bottom: 10px; /* Un peu plus d'espace entre les noms */
    break-inside: avoid; /* Évite de couper un nom sur 2 colonnes */
    transition: color 0.2s;
}

.collab-list li:hover {
    color: #fff; /* Plus lumineux au survol */
}

.collab-list li strong {
    color: var(--accent-color);
    display: block;
    margin-top: 25px; /* Added spacing for separation */
    margin-bottom: 5px;
    font-size: 1.1rem; 
    text-transform: uppercase;
    break-after: avoid;
    line-height: 1.2;
}

.collab-list li:first-child strong {
    margin-top: 0; /* No margin for the very first header */
}

/* Responsive */
@media (max-width: 1024px) {
    .collab-list { column-count: 3; }
}
@media (max-width: 768px) {
    .collab-list { column-count: 2; }
    .collab-tabs { gap: 5px; }
    .tab-btn { padding: 8px 12px; font-size: 0.7rem; }
}
@media (max-width: 480px) {
    .collab-list { column-count: 1; text-align: center; }
}



@media (max-width: 768px) {
    .quote-text { white-space: normal; font-size: 1.4rem; }
}

/* --- Side Console Nav (Option 6 Revised) --- */
.side-nav-console {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 10px;
    background: rgba(0, 0, 0, 0.75); /* Fond plus opaque pour lisibilité */
    backdrop-filter: blur(20px); /* Flou renforcé */
    -webkit-backdrop-filter: blur(20px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8); /* Ombre plus forte */
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.5; /* Discrète par défaut */
}

.side-nav-console:hover {
    opacity: 1; /* Pleine visibilité au survol */
}

#console-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.console-nav-items {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espacement visuel entre les items */
    width: 100%;
    align-items: center;
}

.console-dot {
    width: 12px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    /* Zone de clic élargie */
    box-sizing: content-box;
    padding: 10px 0; /* Ajoute 10px de zone invisible haut/bas */
    background-clip: content-box; /* Le fond ne s'applique qu'au contenu (le trait de 2px), pas au padding */
    cursor: pointer;
}

.console-dot.active {
    width: 20px;
    background-color: var(--accent-color);
}

/* Tooltip */
.console-dot::before {
    content: attr(data-title);
    position: absolute;
    right: 35px; /* Décalé pour ne pas gêner */
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    font-family: var(--font-main);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.console-dot:hover::before, .console-dot.active::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.console-dot:hover {
    background: #fff;
    width: 18px;
}

@media (max-width: 768px) {
    .side-nav-console { display: none; }
}

/* --- Triple Identity Section & Charte Standard 3 Colonnes --- */
.identity-grid, .charter-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px; /* Plus d'air entre les colonnes */
    width: 100%;
    max-width: 1100px; /* Recentrage et éloignement des bords */
    margin: 80px auto 0;
    text-align: left; /* Alignement gauche souvent plus chic pour les colonnes de texte */
}

.identity-col {
    padding: 0 10px;
}

.identity-title {
    /* Style copié du Hero Title "COLIN LAURENT" */
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 15px;
    display: inline-block;
}

.identity-desc {
    /* Style descriptif différent */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0; /* Gris clair */
    line-height: 1.8;
    font-weight: 400;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .identity-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* --- Logo Carousel (Infinite Scroll) --- */
.logo-slider {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: #050505;
    position: relative;
}

.logo-track {
    display: flex;
    width: calc(250px * 24); /* Ajusté selon nb logos */
    animation: scroll 40s linear infinite;
}

.logo-item {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    filter: grayscale(1) brightness(0.8);
    transition: filter 0.3s;
    font-weight: bold;
    color: #444;
    white-space: nowrap;
}

.logo-item:hover {
    filter: grayscale(0) brightness(1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 12)); }
}

/* --- Utils --- */
.picto-charte {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 0.4rem; /* Réduit pour correspondre au point typographique */
    vertical-align: middle;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrage horizontal des enfants directs */
    justify-content: center;
}

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }

/* --- Sections --- */
section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    letter-spacing: 5px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%); /* Centrage de la barre rouge */
}

/* --- Navbar --- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between; /* Left, Center, Right zones */
    align-items: center;
    padding: 0 40px;
}

/* Zone Gauche : Langue */
.nav-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.lang-switch span {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0 5px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.lang-switch span.active, .lang-switch span:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Zone Centre : Menu Principal */
.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Zone Droite : Réseaux Sociaux */
.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-main);
    transition: fill 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    fill: var(--accent-color);
    transform: translateY(-2px);
}

/* --- Typography Effects --- */
.text-glow, .hero-title, .page-header h1, .font-musician, .font-director, .font-editor {
    text-shadow: none; /* Pas de glow sur le texte */
}

/* --- Koala Studio Pulse Circle --- */
.koala-pulse {
    position: relative;
    width: 40px; /* Réduit de 60px */
    height: 40px; /* Réduit de 60px */
    margin: 0 auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-dot {
    width: 24px; /* Réduit de 36px */
    height: 24px; /* Réduit de 36px */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s;
}

.koala-pulse:hover .pulse-dot {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    animation: koala-ripple 3s infinite;
}

.pulse-ring:nth-child(2) {
    animation-delay: 1s;
}

@keyframes koala-ripple {
    0% { transform: scale(0.5); opacity: 0; }
    30% { opacity: 0.5; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* --- Hero Section (Style Koala Studio) --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Derrière tout, y compris la lueur */
    background: #000;
}

/* La vidéo doit couvrir toute la zone sans déformation */
.video-container video, .video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Overlay renforcé : plus sombre pour détacher le texte blanc pur */
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
    z-index: -1; /* Derrière la lueur (0) */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    /* Ajustement optique pour centrer malgré la navbar */
    padding-top: var(--nav-height); 
    width: 100%;
    max-width: 1200px;
}

/* Titre principal Signature */
.hero-title {
    font-size: 4rem; /* Taille d'avant */
    font-weight: 300; /* Plus fin et élégant */
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    animation: fadeInUp 1.2s ease-out;
}

/* --- Placeholders --- */
.placeholder-box {
    background-color: #222;
    border: 1px dashed #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- PROJECTS LIST (Technical Listing Style) --- */
.projects-list {
    width: 100%;
    max-width: 1100px; /* Retour à 1100px pour la liste principale */
    margin: 0 auto;
    text-align: left;
}

.project-entry {
    display: grid;
    grid-template-columns: 80px 1fr; /* Alignement strict Année | Texte par défaut */
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s;
    text-align: left;
}

.project-entry:hover {
    background: rgba(255, 255, 255, 0.04); 
    padding-left: 10px;
}

.project-entry .content {
    /* Conteneur pour titre et détails */
}

.project-entry .year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
    padding-top: 4px; /* Ajustement optique */
    display: block;
}

.project-entry .title {
    font-size: 0.95rem;
    font-weight: 700;
    font-style: italic;
    color: #eee;
    display: inline-block; /* Retour en ligne par défaut */
    margin-right: 10px;
    margin-bottom: 0;
}

.project-entry .details {
    font-size: 0.8rem;
    color: #777;
    display: inline-block;
    font-style: normal;
}

.project-entry .details strong {
    background-color: rgba(255, 255, 255, 0.1);
    color: #bbb;
    padding: 2px 8px 2px 20px;
    border-radius: 3px;
    border: none;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    margin-left: 5px;
}

/* Pastille de couleur vive repositionnée devant */
.project-entry .details strong::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: block;
}

/* Couleurs des pastilles (Saturées pour visibilité) */
.tv-arte::before { background-color: #ff5a00; box-shadow: 0 0 5px rgba(255, 90, 0, 0.3); } 
.tv-f4::before { background-color: #8a35ff; box-shadow: 0 0 5px rgba(138, 53, 255, 0.3); } 
.tv-f5::before { background-color: #00d950; box-shadow: 0 0 5px rgba(0, 217, 80, 0.3); } 
.tv-f3::before { background-color: #0087eb; box-shadow: 0 0 5px rgba(0, 135, 235, 0.3); }
.tv-tf1::before { background-color: #00a2ea; box-shadow: 0 0 5px rgba(0, 162, 234, 0.3); }
.tv-canal::before { background-color: #ffffff; box-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
.tv-mezzo::before { background-color: #ff9e00; box-shadow: 0 0 5px rgba(255, 158, 0, 0.3); }
.tv-olympia::before { background-color: #ff0035; box-shadow: 0 0 5px rgba(255, 0, 53, 0.3); }
.tv-cstar::before { background-color: #00adef; box-shadow: 0 0 5px rgba(0, 173, 239, 0.3); }
.tv-comedie::before { background-color: #fecf08; box-shadow: 0 0 5px rgba(254, 207, 8, 0.3); }
.tv-qwest::before { background-color: #9c27b0; box-shadow: 0 0 5px rgba(156, 39, 176, 0.3); }
.tv-ftv::before { background-color: #64C8D7; box-shadow: 0 0 5px rgba(100, 200, 215, 0.3); }

/* --- SPÉCIFIQUE ARCHIVE "ET AVANT..." (2 Lignes Centrées) --- */
.projects-archive {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Grille 2 colonnes */
    gap: 0 60px;
    max-width: 1100px;
    margin: 0 auto; /* Centrage horizontal de la grille elle-même */
    border-top: none;
    padding: 0;
}

.projects-archive .project-entry {
    display: flex; /* Flexbox pour empiler */
    flex-direction: column;
    align-items: center; /* Tout centré */
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.projects-archive .project-entry:hover {
    padding-left: 0; /* Pas de décalage au hover pour l'archive centrée */
    background: rgba(255, 255, 255, 0.04);
}

.projects-archive .title {
    display: block;
    font-size: 0.95rem; /* Harmonisé avec la liste principale (était 1.05rem) */
    font-weight: 700;
    font-style: italic;
    color: #eee;
    margin-bottom: 6px;
    margin-right: 0;
}

.projects-archive .details {
    display: block;
    font-size: 0.8rem; /* Harmonisé avec la liste principale (était par défaut) */
    color: #888;
    white-space: nowrap; /* Tente de garder sur une ligne si ça rentre */
    overflow: hidden; /* Sécurité */
    text-overflow: ellipsis; /* Sécurité */
    max-width: 100%; /* S'assure que ça ne déborde pas */
}

/* Si l'écran est trop petit, on autorise le retour à la ligne proprement */
@media (max-width: 1200px) {
    .projects-archive .details {
        white-space: normal;
    }
}

.projects-archive .year {
    display: inline; /* Le point s'intègre au texte */
    margin-right: 8px;
    color: var(--accent-color);
    padding-top: 0;
}

@media (max-width: 800px) {
    .projects-archive { grid-template-columns: 1fr; }
    .project-entry { grid-template-columns: 60px 1fr; }
}

@media (max-width: 768px) {
    .projects-archive { grid-template-columns: 1fr; }
    .project-entry { flex-direction: column; align-items: flex-start; gap: 10px; }
    .project-entry .year { text-align: left; font-size: 1.2rem; }
}

/* --- Citations (Quotes) - Design & Animation Cinema --- */
.quote-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    /* L'animation est gérée par les enfants via la classe .visible */
}

/* Le Grand Guillemet Graphique */
.quote-section::before {
    content: '“';
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 12rem; /* Très gros */
    line-height: 0.5;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-50px) scale(0.8);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.quote-section.visible::before {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Le Texte : Effet de Mise au Point (Camera Focus) */
.quote-text {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    white-space: nowrap; /* Par défaut une seule ligne */
    
    /* État initial : Flou et transparent */
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.95);
    transition: all 1.2s ease-out;
    transition-delay: 0.2s; /* Arrive après le guillemet */
}

/* Exception pour les citations longues */
.quote-text.quote-long {
    white-space: normal;
    max-width: 800px;
}

.quote-section.visible .quote-text {
    opacity: 1;
    filter: blur(0); /* Le texte devient net */
    transform: scale(1);
}

/* Suppression de l'ancien pseudo-element pour éviter doublon */
.quote-text::before { content: none; }

/* La Source */
.quote-source {
    font-family: var(--font-main);
    letter-spacing: 2px;
    
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    transition-delay: 0.6s; /* Arrive en dernier */
}

.quote-source .project-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; /* Plus grand */
    font-weight: 700;
    font-style: italic;
    color: var(--accent-color); /* Rouge Cinéma */
    display: block;
    margin-bottom: 8px;
}

.quote-source .author-source {
    font-size: 0.85rem; /* Plus petit */
    color: var(--text-muted); /* Gris */
    text-transform: uppercase;
    font-weight: 600;
}

.quote-source strong {
    color: var(--text-main);
}

.quote-section.visible .quote-source {
    opacity: 1;
    transform: translateY(0);
}


/* --- Spécifique Orgue (2 Colonnes Centrées, resserrées) --- */
.collab-list-orgue {
    column-count: 2;
    column-gap: 40px; /* Unité de traitement avec les autres listes */
    max-width: 500px; /* Resserré pour l'aspect graphique */
    margin: 0 auto;
    text-align: center; /* Centrage des noms à l'intérieur */
}

.collab-list-orgue li {
    text-align: center;
}

/* Sur mobile, retour à 1 colonne */
@media (max-width: 768px) {
    .collab-list-orgue {
        column-count: 1;
    }
}

/* --- SECTION CV / PROFIL EXPRESS (Style Fiche Technique) --- */
.cv-section {
    background: linear-gradient(to right, #0a0a0a, #111);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.cv-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Bloc Philosophie */
.cv-bio-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cv-bio-title span {
    color: var(--accent-color);
}

.cv-text {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cv-signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #666;
    text-align: right;
    margin-top: -20px;
}

/* Bloc Timeline / Stats (Look Info-graphique) */
.cv-stats-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    border-left: 2px solid var(--accent-color);
    padding-left: 30px;
}

.cv-stat-item {
    position: relative;
}

.cv-stat-year {
    font-family: var(--font-editor); /* Courier style */
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.cv-stat-label {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cv-stat-desc {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
}

/* Tags Compétences */
.cv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.cv-tag {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    padding: 8px 16px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-editor);
    transition: all 0.3s;
}

.cv-tag:hover {
    border-color: var(--accent-color);
    color: #fff;
    background: rgba(214, 40, 40, 0.1);
}

@media (max-width: 900px) {
    .cv-grid { grid-template-columns: 1fr; gap: 40px; }
    .cv-stats-container { border-left: none; border-top: 2px solid var(--accent-color); padding-left: 0; padding-top: 30px; }
    .cv-signature { text-align: left; margin-top: 10px; }
}
