.hero-portrait {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--or);
    box-shadow: 0 0 40px rgba(241,196,15,0.4), 0 0 80px rgba(192,57,43,0.3);
    margin-bottom: 2rem;
}

/* MAIN LAYOUT */
.bio-section {
    padding: 5rem 0;
    background: #1a0505;
}

/* SIDEBAR */
.sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-card {
    background: linear-gradient(135deg, #2d0a0a, #3d1010);
    border: 1px solid rgba(231,76,60,0.35);
    border-radius: 15px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h5 {
    color: var(--or);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(231,76,60,0.3);
    padding-bottom: 0.7rem;
}

.sidebar-photo {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--rouge-vif);
    margin-bottom: 1rem;
}

.info-list { list-style: none; }
.info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.9rem;
    color: #f0d0d0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.info-list li:last-child { border-bottom: none; }
.info-list li i { color: var(--or); margin-top: 3px; flex-shrink: 0; }

.toc-list { list-style: none; }
.toc-list li { margin-bottom: 0.5rem; }
.toc-list a {
    color: #f0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.toc-list a:hover { color: var(--or); }
.toc-list a::before {
    content: '›';
    color: var(--rouge-vif);
    font-size: 1.2rem;
    line-height: 1;
}

/* BIO CONTENT */
.bio-content h2 {
    color: var(--or);
    font-size: 1.9rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(231,76,60,0.4);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.bio-content h2:first-child { margin-top: 0; }

.bio-content p {
    color: #e8c8c8;
    line-height: 1.95;
    font-size: 1.02rem;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.bio-content p:last-child { margin-bottom: 0; }

/* PULL QUOTE */
.pull-quote {
    background: linear-gradient(135deg, #2d0a0a, #4a1010);
    border-left: 5px solid var(--or);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.15rem;
    color: #f9e47e;
    line-height: 1.8;
    position: relative;
}

.pull-quote::before {
    content: '❝';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3rem;
    color: var(--or);
    opacity: 0.3;
    line-height: 1;
}

/* IMAGE INSIDE CONTENT */
.bio-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--rouge-vif);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    margin: 1.5rem 0;
}

.img-caption {
    text-align: center;
    font-style: italic;
    color: #a06060;
    font-size: 0.85rem;
    margin-top: -0.8rem;
    margin-bottom: 1rem;
}

/* SPECIALITES BADGES */
.badge-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0 1.5rem; }
.badge-item {
    background: rgba(231,76,60,0.2);
    border: 1px solid var(--rouge-vif);
    color: #f0a0a0;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.88rem;
}

/* TIMELINE */
.timeline { margin: 1.5rem 0; }
.timeline-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}
.timeline-year {
    flex-shrink: 0;
    width: 65px;
    text-align: center;
    background: linear-gradient(135deg, var(--rouge-fonce), var(--rouge));
    color: var(--or);
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0.4rem 0.2rem;
    height: fit-content;
}
.timeline-text {
    color: #e8c8c8;
    font-size: 0.95rem;
    line-height: 1.7;
    border-left: 2px solid rgba(231,76,60,0.3);
    padding-left: 1rem;
}
.timeline-text strong { color: var(--or); display: block; margin-bottom: 0.2rem; }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--rouge-fonce), var(--violet-fonce));
    padding: 4rem 2rem;
    text-align: center;
    border-top: 2px solid var(--or);
    border-bottom: 2px solid var(--or);
}

.cta-section h3 { color: var(--or); font-size: 2rem; margin-bottom: 1rem; }
.cta-section p { color: #f0d0d0; margin-bottom: 2rem; font-size: 1.05rem; }

.btn-cta {
    background: linear-gradient(135deg, var(--rouge), var(--violet));
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    margin: 0.4rem;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192,57,43,0.5);
    color: white;
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid var(--or);
    color: var(--or);
}

.btn-cta-outline:hover {
    background: var(--or);
    color: #1a0505;
}