/* ===================================
   Variables CSS
   =================================== */
:root {
    /* Violet - conservé pour accents et CTA */
    --primary: #9e035d;
    --primary-light: #d14f99;
    --primary-dark: #7a024a;
    --magenta: #9e035d;
    --magenta-light: rgba(158, 3, 93, 0.1);
    --magenta-lighter: rgba(158, 3, 93, 0.05);

    /* Orange - palette spirituelle abricot/pêche */
    --orange-gold: #FFCC67;        /* Orange abricot moderne (doré) */
    --orange-light: #FFCC80;       /* Orange abricot clair (lumineux) */
    --orange-warm: #FF6B35;        /* Orange rouge chaleureux (spirituel) */
    --orange-deep: #E85D04;        /* Orange brûlé très visible (intense) */
    --orange-soft: #F5EDE3;        /* Crème visible (fond doux) */
    --orange-surface: #EDE5DA;     /* Crème plus chaud (surfaces) */

    --secondary: #EDE5DA;          /* Crème papier chaud */
    --background: #F5EDE3;         /* Crème visible - papier vieilli */
    --surface: #EDE5DA;            /* Crème légèrement plus foncé */
    --surface-light: rgba(237, 229, 218, 0.7); /* Crème transparent */

    --text: #2d3748;
    --text-secondary: #718096;
    --text-light: #a0aec0;
    --text-on-primary: #ffffff;

    --border: rgba(158, 3, 93, 0.15);
    --border-light: rgba(158, 3, 93, 0.08);

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, 'Segoe UI', system-ui, sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6,
.section-title-enhanced,
.hero-strip__title {
    font-family: Lora, Georgia, serif !important;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Container
   =================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .portfolio-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ===================================
   Navigation
   =================================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FFCC80 0%, #FF6B35 100%);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg,
        var(--primary) 0%,
        var(--orange-warm) 50%,
        var(--primary) 100%) 1;
    box-shadow: 0 4px 20px rgba(158, 3, 93, 0.15),
                0 2px 8px rgba(255, 107, 53, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

body.is-scrolled .top-nav {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 70px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    transition: var(--transition);
}

.nav__logo:hover {
    opacity: 0.8;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: Lora, Georgia, serif;
    font-weight: 600;
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav__links a {
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
    width: 100%;
}

.nav__links a[aria-current="page"] {
    color: var(--primary);
}

.nav__actions {
    display: flex;
    gap: 1rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__hamburger {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile Navigation */
.nav__mobile {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--background);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.nav__mobile.is-open {
    transform: translateY(0);
}

.nav__mobile-links {
    list-style: none;
    padding: 1rem;
}

.nav__mobile-links li {
    border-bottom: 1px solid var(--border-light);
}

.nav__mobile-links a {
    display: block;
    padding: 1rem;
    color: var(--text);
    font-weight: 500;
}

.nav__mobile-links a[aria-current="page"] {
    color: var(--primary);
    background: var(--magenta-lighter);
}

@media (max-width: 1024px) {
    .nav__links {
        display: none;
    }
    
    .nav__actions .btn:not(.nav__toggle) {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__mobile {
        display: block;
    }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.btn--primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: white;
}

/* ===================================
   Hero Section
   =================================== */
.hero-strip {
    padding: 8rem 0 3rem;
    margin-top: 70px;
    background: linear-gradient(135deg, #FFCC80 0%, #FF6B35 100%);
    position: relative;
}

.hero-strip__content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-strip__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.hero-strip__subtitle {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-videos {
    margin-top: 3rem;
    padding: 2rem;
    background: transparent;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(158, 3, 93, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-intro {
    margin-bottom: 1.5rem;
    color: var(--text);
}

.video-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-strip {
        padding: 6rem 0 2rem;
        margin-top: 60px;
    }
    
    .video-links {
        flex-direction: column;
    }
    
    .video-links .btn {
        width: 100%;
    }
}

/* ===================================
   Sections
   =================================== */
.section {
    padding: 5rem 0;
    position: relative;
    scroll-margin-top: 70px;
}

/* Section approche avec padding ajusté */
#approche {
    padding: 5rem 0 3rem 0;
}

.section:nth-child(even) {
    background: var(--surface-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--magenta-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-enhanced {
    margin-bottom: 1rem;
}

.title-accent {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ===================================
   Portfolio Grid
   =================================== */
.portfolio {
    padding: 5rem 0;
    scroll-margin-top: 70px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Grille uniforme pour stages, voyages, qui-suis-je : 4 colonnes sur une ligne */
#stages .portfolio-grid,
#voyages .portfolio-grid,
#qui-suis-je .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Layout asymétrique pour qui-suis-je : 1ère carte prend 2 colonnes */
#qui-suis-je .portfolio-grid--asymmetric .portfolio-item--wide {
    grid-column: span 2;
}

/* Grille pour vidéos : 3 colonnes (3 vidéos) */
#videos .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Grille contact : 2 colonnes égales */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Carte info contact */
.contact-info-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info-card h4 {
    margin-bottom: 1rem;
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-light, #f8f8f8);
    border-radius: var(--radius-md);
    transition: transform 0.2s ease;
}

.contact-info-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.contact-info-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-item strong {
    color: var(--text);
    font-weight: 600;
}

.contact-info-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Grande carte Ana Rodriguez fusionnée */
.ana-card-full {
    margin-top: 3rem;
}

.ana-card-container {
    background: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
}

.ana-card-image {
    height: 100%;
    min-height: 500px;
}

.ana-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ana-card-content {
    padding: 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.ana-card-content strong {
    color: var(--text);
    font-weight: 600;
}

/* Grande carte Domaine du Taillé fusionnée */
.domaine-card-full {
    margin-top: 3rem;
}

.domaine-card-container {
    background: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
}

.domaine-card-image {
    height: 100%;
    min-height: 500px;
    background: var(--surface);
}

.domaine-card-content {
    padding: 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.domaine-card-content strong {
    color: var(--text);
    font-weight: 600;
}

.portfolio-item {
    background: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.portfolio-item:hover {
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: var(--surface);
    position: relative;
    overflow: hidden;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-image::after {
    opacity: 1;
}

.portfolio-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-content h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 600;
    min-height: 2.5em;
}

.portfolio-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-info {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-label {
    font-size: 1.1rem;
}

.portfolio-btn {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
}

/* ===================================
   Content Styles
   =================================== */
.simple-content {
    max-width: 1000px;
    margin: 0 auto;
}

.simple-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text);
    text-align: justify;
}

.simple-content .lead {
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
}

.simple-content h3 {
    font-size: 1.75rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary);
    text-align: center;
}

.simple-content strong {
    color: var(--primary);
    font-weight: 600;
}

.simple-content blockquote {
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--surface);
    border-left: 4px solid var(--primary);
    font-style: italic;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
}

.content-image {
    margin: 2rem 0;
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
    margin: 0 auto;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
}

.content-with-image .text-content {
    flex: 1;
}

.content-with-image .image-content {
    flex: 1;
    text-align: center;
}

.content-image-enfant {
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===================================
   Accordion Styles
   =================================== */
.accordion-section {
    margin: 1.5rem 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--background);
    transition: var(--transition);
}

.accordion-section:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: Lora, Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
}

.accordion-header:hover {
    background: var(--surface-light);
    color: var(--primary);
}

.accordion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 300;
}

.accordion-section.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.accordion-section.active .accordion-content {
    max-height: 3000px;
    padding: 1.5rem 1.5rem 2rem;
}

.accordion-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.accordion-content ul {
    margin: 1rem 0 1rem 1.5rem;
    list-style: disc;
}

.accordion-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text);
}

.accordion-content strong {
    color: var(--primary);
    font-weight: 600;
}

.accordion-content blockquote {
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--surface);
    border-left: 4px solid var(--primary);
    font-style: italic;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
}

.accordion-content .content-image {
    margin: 2rem 0;
    text-align: center;
}

.accordion-content .content-image img {
    max-width: 350px;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
    margin: 0 auto;
}

/* Layout flex pour accordéon avec image à côté */
.accordion-content-flex {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
}

.accordion-text {
    flex: 1;
}

.accordion-image {
    flex-shrink: 0;
    margin: 0;
    width: 140px;
    display: flex;
}

.accordion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 1rem;
        font-size: 1rem;
    }

    .accordion-content {
        padding: 0 1rem;
    }

    .accordion-section.active .accordion-content {
        padding: 1rem 1rem 1.5rem;
    }

    .accordion-content-flex {
        flex-direction: column;
        gap: 1.5rem;
    }

    .accordion-image {
        width: 100%;
        height: 150px;
    }

    .accordion-image img {
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }
}

/* ===================================
   Video Section (Simple & Discreet)
   =================================== */
.portfolio-item--video {
    cursor: default;
}

.portfolio-item--video:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    background: var(--surface);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================================
   Gallery
   =================================== */
.gallery {
    padding: 5rem 0;
    background: var(--surface-light);
}

/* ===================================
   Forms
   =================================== */
.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--background);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--magenta-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--text);
    color: white;
    padding: 2rem 0;
    margin-top: 5rem;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__left p {
    margin: 0;
    opacity: 0.9;
}

.footer__right {
    display: flex;
    gap: 2rem;
}

.footer__right a {
    color: white;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer__right a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===================================
   Modals
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--background);
    margin: clamp(10px, 5vh, 5%) auto;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    padding-bottom: 1rem;
    border-radius: var(--radius-lg);
    width: min(95vw, 900px); /* Plus moderne avec min() */
    height: 85vh; /* Hauteur FIXE pour uniformité - toutes les modals ont la même taille */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Pas de scroll sur le container principal */
    animation: slideIn 0.3s ease;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Zone scrollable du contenu */
.modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem; /* Espace pour le scroll */
    /* Cacher scrollbar tout en gardant le scroll fonctionnel */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.modal-body::-webkit-scrollbar {
    display: none;
}

/* Cacher scrollbar pour Chrome, Safari, Opera */
.modal-content::-webkit-scrollbar {
    display: none;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Ancien système - gardé pour compatibilité temporaire */
.close {
    display: none; /* Caché car remplacé par modal__close */
}

/* Nouveau système de header moderne avec flexbox */
.modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(158, 3, 93, 0.1);
}

.modal__header--gallery {
    border-bottom: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    margin-bottom: 0;
    padding-bottom: 0;
    z-index: 10;
}

.modal__header-content {
    flex: 1;
    min-width: 0; /* Permet au texte de se rétrécir */
}

.modal__header-content h2 {
    color: var(--primary);
    margin: 0 0 0.5rem 0;
    font-size: clamp(1.4rem, 4vw, 2rem);
    line-height: 1.2;
    padding-right: 0; /* Plus besoin de padding pour éviter le bouton */
}

.modal__header-content h3 {
    color: #4a5568;
    margin: 0;
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    font-weight: 500;
    line-height: 1.3;
}

/* Bouton de fermeture Glassmorphism ultra moderne */
.modal__close {
    position: relative;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;

    /* Effet glassmorphism */
    background: rgba(245, 237, 227, 0.65);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);

    /* Bordure avec gradient subtil */
    border: 1px solid;
    border-color: rgba(158, 3, 93, 0.2);
    background-clip: padding-box;

    /* Ombres multiples pour profondeur */
    box-shadow:
        0 4px 30px rgba(158, 3, 93, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.6),
        inset 0 -1px 1px rgba(158, 3, 93, 0.05);

    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;

    /* Animation smooth */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;

    /* Animation subtile de brillance */
    overflow: hidden;
}

/* Effet de brillance animé */
.modal__close::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.6s ease;
}

.modal__close:hover::before {
    transform: rotate(45deg) translateY(-100%);
}

.modal__close:hover {
    /* Intensification du glass effect */
    background: rgba(245, 237, 227, 0.8);
    backdrop-filter: blur(16px) saturate(200%);
    -webkit-backdrop-filter: blur(16px) saturate(200%);

    /* Bordure lumineuse magenta */
    border-color: rgba(158, 3, 93, 0.4);

    /* Glow effect magenta */
    box-shadow:
        0 8px 40px rgba(158, 3, 93, 0.25),
        0 2px 8px rgba(158, 3, 93, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.8),
        inset 0 -1px 1px rgba(158, 3, 93, 0.1),
        0 0 20px rgba(158, 3, 93, 0.15);

    transform: rotate(90deg) scale(1.05);
}

.modal__close:active {
    transform: rotate(90deg) scale(0.95);
    box-shadow:
        0 4px 20px rgba(158, 3, 93, 0.2),
        inset 0 2px 3px rgba(158, 3, 93, 0.1);
}

.modal__close svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    z-index: 1;
    transition: all 0.3s ease;
}

.modal__close:hover svg {
    stroke-width: 3;
    filter: drop-shadow(0 0 2px rgba(158, 3, 93, 0.3));
}

/* Fallback pour navigateurs sans backdrop-filter */
@supports not (backdrop-filter: blur(12px)) {
    .modal__close {
        background: rgba(245, 237, 227, 0.95);
        border: 1.5px solid rgba(158, 3, 93, 0.25);
    }

    .modal__close:hover {
        background: rgba(237, 229, 218, 1);
        border-color: var(--primary);
    }
}

/* Les styles h2 et h3 sont maintenant dans .modal__header-content */

.modal-section {
    margin: 2rem 0;
}

.modal-section:last-of-type {
    margin-bottom: 0.5rem;
}

.modal-section p {
    text-align: left;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.modal-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.modal-section ul {
    list-style: none;
    padding-left: 0;
}

.modal-section ul li {
    padding-left: 1.2rem;
    text-indent: -1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    text-align: left;
    font-size: 0.95rem;
}

.modal-section ul li::before {
    content: "• ";
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: bold;
}

.modal-info {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    margin-bottom: -0.5rem;
}

.modal-info p {
    margin: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-info strong {
    color: var(--primary);
}

/* Indicateur de scroll moderne dans les modales */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(158, 3, 93, 0.3);
    animation: pulseSubtle 2s infinite;
}

@keyframes pulseSubtle {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

/* Mode close: stopper l'animation bounce */
.scroll-indicator.close-mode {
    animation: none;
}

/* Effet hover pour feedback visuel */
.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
    background: #7a024a;
    box-shadow: 0 6px 24px rgba(158, 3, 93, 0.4);
}

.scroll-indicator:active {
    transform: translateX(-50%) scale(0.95);
}

.scroll-indicator svg {
    animation: bounceArrow 1.5s infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Bouton de fermeture moderne en bas de modal */
/* Responsive design moderne pour tous les modals */
/* Desktop - approche générique sans ID selectors */
@media (min-width: 1024px) {
    .modal[data-modal] .modal-content {
        height: 85vh; /* Hauteur FIXE pour uniformité desktop */
        margin: 3% auto;
        padding: 2.5rem;
        padding-bottom: 1rem;
    }

    /* Styles génériques pour tous les modals au lieu d'ID selectors */
    .modal[data-modal] .modal__header-content h2 {
        font-size: 1.8rem;
    }

    .modal[data-modal] .modal__header-content h3 {
        font-size: 1.1rem;
    }

    .modal[data-modal] .modal-section {
        margin: 1.5rem 0;
    }

    .modal[data-modal] .modal-section:last-of-type {
        margin-bottom: 0.5rem;
    }

    .modal[data-modal] .modal-section h4 {
        font-size: 1.15rem;
    }

    .modal[data-modal] .modal-section ul li {
        margin-bottom: 0.6rem;
        line-height: 1.6;
    }

    .modal[data-modal] .modal-info {
        padding: 1.25rem;
        margin-top: 0.5rem;
    }
}

/* Profile styles */
.profile-image {
    margin: 2rem 0;
    text-align: center;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.venue-image {
    margin: 2rem 0;
}

.venue-photo {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-md);
    margin: 0 auto;
    display: block;
    box-shadow: var(--shadow-md);
}

.venue-image figcaption {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ===================================
   Animations
   =================================== */
.animate {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.animate:nth-child(1) { animation-delay: 0.1s; }
.animate:nth-child(2) { animation-delay: 0.2s; }
.animate:nth-child(3) { animation-delay: 0.3s; }
.animate:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Utilities
   =================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ===================================
   Contact Section
   =================================== */
.section--contact {
    background: var(--surface-light);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Stages, Voyages, Qui-suis-je : 2 colonnes sur tablette */
    #stages .portfolio-grid,
    #voyages .portfolio-grid,
    #qui-suis-je .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Qui-suis-je layout asymétrique sur tablette : Ana pleine largeur */
    #qui-suis-je .portfolio-grid--asymmetric .portfolio-item--wide {
        grid-column: span 2;
    }

    /* Vidéos : 2 colonnes sur tablette */
    #videos .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Contact : 1 colonne sur tablette */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Domaine responsive tablette */
    .domaine-card-container {
        grid-template-columns: 350px 1fr;
    }

    .domaine-card-content {
        padding: 2.5rem;
    }
}

/* Tablette */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Carte Ana responsive tablette */
    .ana-card-container {
        grid-template-columns: 350px 1fr;
    }

    .ana-card-content {
        padding: 2.5rem;
    }

    .modal[data-modal] .modal-content {
        height: 90vh; /* Hauteur FIXE pour uniformité tablette */
        padding: 2rem;
    }

    .modal__header {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .modal__close {
        width: 42px;
        height: 42px;
        /* Réduction du blur pour performance sur tablette */
        backdrop-filter: blur(10px) saturate(160%);
        -webkit-backdrop-filter: blur(10px) saturate(160%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Carte Ana responsive mobile */
    .ana-card-container {
        grid-template-columns: 1fr;
    }

    .ana-card-image {
        min-height: 300px;
    }

    .ana-card-content {
        padding: 2rem 1.5rem;
    }

    /* Carte Domaine responsive mobile */
    .domaine-card-container {
        grid-template-columns: 1fr;
    }

    .domaine-card-image {
        min-height: 300px;
    }

    .domaine-card-content {
        padding: 2rem 1.5rem;
    }

    /* Stages, Voyages, Qui-suis-je : 1 colonne sur mobile */
    #stages .portfolio-grid,
    #voyages .portfolio-grid,
    #qui-suis-je .portfolio-grid {
        grid-template-columns: 1fr;
    }

    /* Qui-suis-je : annuler le span 2 sur mobile */
    #qui-suis-je .portfolio-grid--asymmetric .portfolio-item--wide {
        grid-column: span 1;
    }

    /* Vidéos : 1 colonne sur mobile */
    #videos .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact : 1 colonne sur mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .title-main {
        font-size: 2rem;
    }

    /* Modal responsive mobile */
    .modal-content {
        padding: 1.5rem;
        margin: 2vh auto;
        border-radius: var(--radius-md);
        height: 92vh; /* Hauteur FIXE pour uniformité mobile */
    }

    .modal__header {
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .modal__header-content h2 {
        font-size: 1.3rem;
    }

    .modal__header-content h3 {
        font-size: 0.95rem;
    }

    .modal__close {
        width: 40px;
        height: 40px;
        /* Optimisation mobile - réduction des effets */
        backdrop-filter: blur(8px) saturate(150%);
        -webkit-backdrop-filter: blur(8px) saturate(150%);
    }

    .modal__close svg {
        width: 18px;
        height: 18px;
    }

    /* Désactiver l'effet de brillance sur mobile pour performance */
    .modal__close::before {
        display: none;
    }

    .modal-section {
        margin: 1.5rem 0;
    }

    .modal-section h4 {
        font-size: 1.1rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }
}

/* Extra petit mobile */
@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        height: 100vh; /* Fallback pour navigateurs anciens */
        height: 100dvh; /* Dynamic viewport - s'adapte à la barre URL Chrome */
        margin: 0;
        border-radius: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .modal__header {
        position: fixed; /* Fixed pour le sticky intelligent */
        top: 0;
        left: 0;
        right: 0;
        background: var(--background);
        z-index: 100;
        margin: 0;
        padding: 1rem 1.25rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(158, 3, 93, 0.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: opacity;
    }

    /* Compenser le header fixed avec padding-top sur modal-body */
    .modal-body {
        padding: 1.25rem;
        padding-top: var(--header-height, 150px); /* Variable dynamique avec fallback */
        padding-bottom: 5rem; /* Espace pour scroll indicator (1.5rem pos + 3rem hauteur + 0.5rem marge) */
    }

    /* État caché du header */
    .modal__header.header-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .modal__close {
        width: 48px;
        height: 48px;
        /* Version simplifiée pour très petits écrans */
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        background: rgba(245, 237, 227, 0.8);
    }

    .modal__close svg {
        width: 20px;
        height: 20px;
    }
    .hero-strip__title {
        font-size: 1.75rem;
    }

    .hero-strip__subtitle {
        font-size: 1rem;
    }

    .portfolio-content {
        padding: 1.5rem;
    }
}

/* ===================================
   Custom Styles - Consolidated from inline CSS
   =================================== */

/* Reset des polices pour assurer la cohérence */
* {
    font-family: Inter, 'Segoe UI', system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.section-title-enhanced,
.hero-strip__title,
.portfolio-content h4,
.modal-content h2, .modal-content h3,
.carousel-slide .gallery-title {
    font-family: Lora, Georgia, serif !important;
}

/* ===================================
   Section Événements
   =================================== */
#evenements {
    background: rgba(237, 229, 218, 0.5);
}

/* Grille centrée pour 2 cartes larges - harmonisée avec stages/voyages */
.portfolio-grid--centered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin: 2rem auto 0;
    gap: 1.5rem;
    justify-content: center;
}

/* Chaque carte événement = largeur de 2 cartes voyages */
#evenements .portfolio-item {
    grid-column: span 1;
    width: 100%;
}

/* Cartes événements étendues */
#evenements .portfolio-image {
    aspect-ratio: 16/4;  /* Plus large et moins haut */
}

#evenements .portfolio-content {
    padding: 1.5rem;  /* Moins de padding vertical */
}

#evenements .portfolio-content h4 {
    margin-bottom: 0.5rem;
    min-height: auto;
    font-size: 1.3rem;
}

#evenements .portfolio-content p {
    margin-bottom: 1rem;
}

#evenements .portfolio-info {
    padding-top: 0.75rem;
}

/* Contenu étendu pour les événements */
.portfolio-content--expanded {
    padding: 2rem;
}

.portfolio-content--expanded .lead {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.portfolio-content--expanded .content-details {
    margin: 1.5rem 0;
}

.portfolio-content--expanded .content-details p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.portfolio-content--expanded .content-details p strong {
    color: var(--magenta);
    font-weight: 600;
}

.portfolio-content--expanded .invitation {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(158, 3, 93, 0.1);
    font-style: italic;
    color: var(--magenta);
    font-size: 0.95rem;
}

.evenement-card {
    min-height: auto;
}

.evenement-card .portfolio-content {
    height: auto;
}

/* ===================================
   Images de fond
   =================================== */

/* Images pour stages */
#stages .portfolio-image {
    background-size: cover;
    background-position: center;
}

#stages .portfolio-item:nth-child(1) .portfolio-image {
    background-image: url('images/Stage1V2.webp');
}

#stages .portfolio-item:nth-child(2) .portfolio-image {
    background-image: url('images/stage2-ombres-lumieres.webp?v=2');
}

#stages .portfolio-item:nth-child(3) .portfolio-image {
    background-image: url('images/Stage___3.webp');
}

#stages .portfolio-item:nth-child(4) .portfolio-image {
    background-image: url('images/Stage4V3.webp');
}

/* Images pour événements */
#evenements .portfolio-item:nth-child(1) .portfolio-image {
    background-image: linear-gradient(135deg, #FFCC80 0%, #FF6B35 100%);
}

#evenements .portfolio-item:nth-child(2) .portfolio-image {
    background-image: linear-gradient(135deg, #FFCC67 0%, #E85D04 100%);
}

/* Images pour voyages */
#voyages .portfolio-item:nth-child(1) .portfolio-image {
    background-image: url('images/Angleterre.webp');
}

#voyages .portfolio-item:nth-child(2) .portfolio-image {
    background-image: url('images/Guatemala.webp');
}

#voyages .portfolio-item:nth-child(3) .portfolio-image {
    background-image: url('images/Montserrat.webp');
}

#voyages .portfolio-item:nth-child(4) .portfolio-image {
    background-image: url('images/Peyrepicade.webp');
}

/* ===================================
   Carousel
   =================================== */
.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 3rem auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide .gallery-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.carousel-slide .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.carousel-slide .gallery-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    font-family: Lora, Georgia, serif;
}

/* Boutons de navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245, 237, 227, 0.95);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    color: #9e035d;
}

.carousel-btn:hover {
    background: var(--orange-soft);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* Indicateurs dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(245, 237, 227, 0.5);
    border: 2px solid var(--orange-soft);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--orange-soft);
    width: 30px;
    border-radius: 6px;
}

/* ===================================
   Responsive - Custom Sections
   =================================== */

/* Événements responsive */
@media (max-width: 1024px) {
    .portfolio-grid--centered {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .portfolio-grid--centered {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    #evenements .portfolio-item {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Carousel responsive */
    .carousel-slide .gallery-image {
        height: 350px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .carousel-slide .gallery-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid--centered {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Carousel mobile */
    .carousel-slide .gallery-image {
        height: 250px;
    }

    .carousel-slide .gallery-overlay {
        padding: 1rem;
    }

    .carousel-slide .gallery-title {
        font-size: 1.2rem;
    }
}

/* ===================================
   L'approche Section - Custom Styles
   =================================== */

/* Engagement questions box */
.engagement-questions {
    background: var(--magenta-lighter);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.engagement-questions p {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    text-align: justify;
}

.engagement-questions p:last-child {
    margin-bottom: 0;
    margin-top: 0.5rem;
}

.engagement-questions strong {
    color: var(--primary);
}

/* Results list with custom bullets */
.results-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.results-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-secondary);
}

.results-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Quote highlight - enhanced blockquote */
.quote-highlight {
    background: linear-gradient(135deg, var(--magenta-lighter) 0%, rgba(237, 229, 218, 0.8) 100%);
    border-left: 4px solid var(--primary);
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    line-height: 1.8;
}

/* Reading note - References */
.reading-note {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: left;
}

.reading-note em {
    color: var(--primary);
    font-style: normal;
    font-weight: 500;
}

@media (max-width: 768px) {
    .engagement-questions {
        padding: 1.25rem 1.5rem;
    }

    .quote-highlight {
        padding: 1.5rem 1.75rem;
        font-size: 1rem;
    }

    .reading-note {
        font-size: 0.85rem;
    }
}

/* ===================================
   SECTIONS AUTHENTIQUES - Style Minimaliste
   =================================== */

.section--authentic {
    background: var(--background);
}

/* Layout Lettre - Une colonne centrée */
.letter-content {
    max-width: 700px;
    margin: 3rem auto 0;
}

/* ===================================
   QUI-SUIS-JE - Avatar Centré + Texte
   =================================== */

/* Avatar rond centré (180px) */
.profile-avatar-centered {
    text-align: center;
    margin: 2rem auto 2rem;
}

.profile-avatar-centered img {
    display: block;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--orange-soft);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* Texte centré en dessous */
.profile-intro-centered {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0 1rem;
}

.profile-intro-centered .opening-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.profile-intro-centered .emphasis-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    font-style: italic;
    margin: 0;
    line-height: 1.7;
}

/* Texte narratif */
.narrative-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.narrative-text p {
    margin-bottom: 1.25rem;
}

.opening-text {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.8;
}

.emphasis-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    font-style: italic;
    margin: 2rem 0;
    line-height: 1.7;
}

/* Citations simples */
.simple-quote {
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
}

/* Titres narratifs */
.narrative-heading {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    color: var(--text);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

/* ===================================
   OÙ-QUAND - Simple et Direct
   =================================== */

/* Image du lieu */
.venue-figure {
    text-align: center;
    margin: 0 auto 3rem;
}

.venue-figure img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.venue-figure figcaption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===================================
   CONTACT - Formulaire Moderne
   =================================== */

/* Container contact plus étroit */
.section--contact .letter-content {
    max-width: 600px;
}

/* Card moderne pour le formulaire */
.modern-form-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    background: var(--background);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.simple-form .form-group {
    margin-bottom: 1.75rem;
}

.simple-form label {
    display: block;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.simple-form input,
.simple-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
    background: var(--background);
}

.simple-form input:focus,
.simple-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.simple-form textarea {
    resize: vertical;
    min-height: 140px;
}

.simple-form .btn {
    display: block;
    margin: 1.5rem auto 0;
    min-width: 200px;
    text-align: center;
}

/* ===================================
   FOOTER - Styles inchangés
   =================================== */

.footer {
    background: var(--text);
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__section {
    display: flex;
    flex-direction: column;
}

.footer__title {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--primary);
}

.footer__info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer__info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__info a:hover {
    color: var(--primary);
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: var(--primary);
}

/* ===================================
   RESPONSIVE - Mobile
   =================================== */

@media (max-width: 768px) {
    .letter-content {
        margin-top: 2rem;
    }

    /* Avatar plus petit sur tablette */
    .profile-avatar-centered img {
        width: 150px;
        height: 150px;
        border: 3px solid var(--orange-soft);
    }

    .narrative-text {
        font-size: 1rem;
    }

    .opening-text {
        font-size: 1.1rem;
    }

    .emphasis-text {
        font-size: 1.1rem;
    }

    .narrative-heading {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.875rem;
    }

    .simple-quote {
        padding-left: 1rem;
        margin: 2rem 0;
    }

    .modern-form-card {
        padding: 2rem 1.5rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Avatar encore plus petit sur mobile */
    .profile-avatar-centered img {
        width: 120px;
        height: 120px;
        border: 2px solid var(--orange-soft);
    }

    .narrative-text {
        font-size: 0.95rem;
    }

    .narrative-heading {
        font-size: 1.15rem;
    }

    .modern-form-card {
        padding: 1.5rem 1rem;
    }

    .simple-form input,
    .simple-form textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .simple-form .btn {
        width: 100%;
    }
}