/* Fantazia - Built: 2026-06-24T10:46:31Z */

/* ==========================================================================
   1. Design Tokens
   ========================================================================== */

:root {
    /* Colors */
    --orange: #C45A20;
    --orange-light: #E07030;
    --orange-glow: #F4A040;
    --cream: #FDF8F3;
    --cream-warm: #F9EEE2;
    --white: #FFFFFF;
    --dark: #1A110A;
    --text: #3A2010;
    --text-light: #7A6050;
    --text-muted: #A89888;
    --border: #E8DDD4;

    /* Accents par pôle (constellation Fantazia — toujours chauds, cf. brand-book) */
    --p-scene: var(--orange);  /* théâtre — le feu */
    --p-eveil: #F4C977;        /* éveil — miel doré */
    --p-festif: #F47A45;       /* festif — corail vif */
    --p-voix: #D9B98A;         /* voix off / doublage — bronze studio */

    /* Typography */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-signature: 'Caveat', cursive;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 8rem;

    /* Spectacle: Le Foulard — Saul Bass */
    --sb-red: #c41a1a;
    --sb-black: #0a0a0a;
    --sb-cream: #e8e4dc;
    --sb-yellow: #d4a017;
    --font-saul: 'Bebas Neue', Impact, sans-serif;

    /* Surfaces */
    --radius: 10px;
    --radius-lg: 20px;
    --shadow: 0 2px 24px rgba(60, 30, 10, 0.06);
    --shadow-lg: 0 12px 48px rgba(60, 30, 10, 0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}


/* ==========================================================================
   3. Utilities
   ========================================================================== */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 200;
}

.skip-link:focus {
    top: var(--space-sm);
}

:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.section {
    padding: var(--space-xl) 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-xl) 0;
}

.section-cream {
    background: var(--cream-warm);
    padding: var(--space-xl) 0;
}

.section-title-center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange-glow);
    margin-bottom: var(--space-sm);
}

.section-dark h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: var(--space-xl);
}

.text-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
}

.text-accent {
    font-family: var(--font-signature);
    font-size: 1.15rem;
    color: var(--orange);
    font-style: italic;
}

/* ==========================================================================
   4. Layout — Site Wrapper
   ========================================================================== */

.site-wrapper {
    background: var(--cream);
    min-height: 100vh;
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .site-wrapper {
    transform: translateX(-30%);
}


/* ==========================================================================
   5. Layout — Topbar
   ========================================================================== */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    transition: var(--transition);
}

.topbar.scrolled {
    padding: 1rem 2rem;
    background: rgba(26, 17, 10, 0.85);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.topbar-logo {
    display: flex;
    flex-direction: column;
    color: var(--white);
    transition: var(--transition);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.topbar-name {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    line-height: 1;
}

.topbar-tagline {
    font-family: var(--font-signature);
    font-size: 0.75rem;
    font-style: italic;
    opacity: 0.7;
    margin-top: 2px;
}

.menu-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.menu-btn span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 28px;
}

.menu-icon span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: var(--transition);
}

.menu-icon span:last-child {
    width: 70%;
    margin-left: auto;
}

.menu-btn:hover .menu-icon span:last-child {
    width: 100%;
}

body.menu-open .menu-btn {
    z-index: 300;
    color: var(--white);
}

body.menu-open .topbar-logo {
    z-index: 300;
}


/* ==========================================================================
   6. Layout — Menu Overlay
   ========================================================================== */

.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 45%;
    height: 100vh;
    background: var(--dark);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-overlay.open {
    transform: translateX(0);
}

.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.menu-close:hover {
    opacity: 1;
}

.menu-content {
    text-align: center;
}

.menu-content nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.menu-content nav a {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    transition: var(--transition);
    display: inline-block;
}

.menu-content nav a:hover {
    color: var(--orange-glow);
}

.menu-content nav a[aria-current] {
    color: var(--orange);
}


/* ==========================================================================
   7. Layout — Page Transition
   ========================================================================== */

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: var(--dark);
    transform-origin: right center;
    transform: scaleX(0);
    pointer-events: none;
}

.page-transition.active {
    animation: pageTurn 0.8s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}



/* ==========================================================================
   8. Components — Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.78rem;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(196, 90, 32, 0.25);
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(196, 90, 32, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.btn-secondary:hover {
    background: var(--orange);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

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

.link-arrow {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--orange);
    transition: var(--transition);
}

.link-arrow:hover {
    color: var(--orange-light);
}


/* ==========================================================================
   9. Components — Tabs
   ========================================================================== */

.tabs {
    margin-top: var(--space-md);
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-md);
}

.tab {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: var(--space-sm) var(--space-md) var(--space-sm) 0;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: var(--space-md);
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab.active {
    color: var(--white);
}

.tab.active::after {
    transform: scaleX(1);
}

.tab:hover {
    color: rgba(255, 255, 255, 0.7);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
}

.tab-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space-md);
}

.tab-meta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tab-meta span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.tab-meta strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
}


/* ==========================================================================
   10. Components — Cards (date, info, value)
   ========================================================================== */

/* Date cards */
.date-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: var(--space-md);
    text-align: center;
    border: 1px solid var(--border);
}

.date-past {
    opacity: 0.6;
}

.date-past .date-day {
    font-size: 1.8rem;
}

.date-day {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--orange);
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin: 0.3rem 0;
}

.date-lieu {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.date-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.date-available {
    border-style: dashed;
    border-color: var(--orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    flex: 1.2;
}

.date-icon {
    font-size: 1.8rem;
    color: var(--orange);
}

.date-icon svg {
    width: 28px;
    height: 28px;
}

.date-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

/* Info cards */
.info-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius);
    margin-bottom: var(--space-sm);
    border: 1px solid var(--border);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--orange);
    margin-bottom: var(--space-xs);
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

.info-card a {
    color: var(--orange);
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--orange-light);
}

/* Value cards */
.value-card {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-sm);
    background: var(--cream-warm);
    border-radius: 50%;
    color: var(--orange);
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
}

.section-dark .value-card {
    color: var(--white);
}

.section-dark .value-card p {
    color: rgba(255, 255, 255, 0.65);
}

.section-dark .value-icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--orange-glow);
}



/* ==========================================================================
   11. Components — Gallery
   ========================================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}


/* ==========================================================================
   12. Components — Forms
   ========================================================================== */

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(196, 90, 32, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: #e8f5e9;
    border-radius: var(--radius);
    color: #2e7d32;
    font-weight: 500;
}

.form-error {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: #fce4ec;
    border-radius: var(--radius);
    color: #c62828;
    font-weight: 500;
}



/* ==========================================================================
   13. Components — Testimonials
   ========================================================================== */

.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonials-row blockquote {
    padding-left: var(--space-md);
    border-left: 2px solid var(--orange);
}

.testimonials-row p {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--space-xs);
}

.testimonials-row cite {
    font-size: 0.72rem;
    font-style: normal;
    color: var(--text-muted);
}



/* ==========================================================================
   14. Components — Stats & Fiche
   ========================================================================== */

/* Stats */
.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--orange-glow);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

/* Fiche technique */
.fiche-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.fiche-item {
    text-align: center;
}

.fiche-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--orange-glow);
    margin-bottom: 0.3rem;
}

.fiche-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.fiche-download {
    text-align: center;
    margin-top: var(--space-xl);
}

.fiche-download .btn svg {
    width: 18px;
    height: 18px;
}



/* ==========================================================================
   15. Components — Play Button
   ========================================================================== */

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: var(--sb-red);
    border: 2px solid var(--sb-cream);
    cursor: pointer;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-btn:hover {
    background: #e02020;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--sb-red);
    border-radius: 50%;
    animation: pulse-ring 2.5s ease infinite;
}

.play-btn:hover .play-ring {
    animation: none;
    border-color: transparent;
}

.play-btn-disabled {
    opacity: 0.5;
    cursor: default;
}

.play-btn-disabled:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%);
}

.play-icon {
    color: var(--white);
    font-size: 1.2rem;
    margin-left: 3px;
}


/* ==========================================================================
   Video Modal
   ========================================================================== */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.open {
    opacity: 1;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.video-modal-content {
    position: relative;
    width: 90vw;
    max-width: 960px;
}

.video-modal-content video {
    width: 100%;
    border-radius: 4px;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.video-modal-close:hover {
    color: #fff;
}


/* ==========================================================================
   16. Components — Footer
   ========================================================================== */

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.5);
    padding: var(--space-2xl) 0 var(--space-lg);
    text-align: center;
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(1.2);
    margin-bottom: var(--space-xs);
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-nav a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-dot {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
}

.footer-email {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    margin: var(--space-xs) 0;
}

.footer-email:hover {
    color: var(--orange-glow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--orange-glow);
}



/* ==========================================================================
   17. Page — Home Hero
   ========================================================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(20, 10, 5, 0.3) 0%,
        rgba(20, 10, 5, 0.7) 60%,
        rgba(20, 10, 5, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--space-md) 8rem;
}

.hero-logo {
    max-width: 450px;
    width: 60vw;
    height: auto;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: heroIn 1.2s 0.3s forwards;
    filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.6)) brightness(1.2);
}

.hero-signature {
    font-family: var(--font-signature);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -0.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
}

.hero-now {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--space-lg);
    padding: var(--space-sm) var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    transition: var(--transition);
    opacity: 0;
    animation: fadeUp 0.8s 1.2s forwards;
}

.hero-now:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-now-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange-glow);
}

.hero-now-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin: 0.2rem 0;
}

.hero-now-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

.hero-cta {
    position: absolute;
    bottom: 5rem;
    right: 2.5rem;
    z-index: 2;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    opacity: 0;
    animation: fadeUp 0.8s 1.4s forwards;
}

.hero-cta:hover {
    color: var(--orange-glow);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.4;
    animation: bounce 2.5s ease infinite;
    transition: var(--transition);
}

.hero-scroll:hover {
    opacity: 1;
}



/* ==========================================================================
   18. Page — Secondary Hero
   ========================================================================== */

.page-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    overflow: hidden;
}

.page-hero-mini {
    height: 25vh;
    min-height: 180px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20, 10, 5, 0.3) 0%, rgba(20, 10, 5, 0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem var(--space-xl);
    width: 100%;
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-xs);
}

.page-hero-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-content .section-label {
    color: var(--orange-glow);
}



/* ==========================================================================
   19. Page — Immersive Section
   ========================================================================== */

.section-immersive {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.immersive-bg {
    position: absolute;
    inset: 0;
}

.immersive-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.immersive-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(20, 10, 5, 1) 0%, transparent 15%),
        linear-gradient(to right, rgba(20, 10, 5, 0.9) 0%, rgba(20, 10, 5, 0.65) 35%, transparent 65%);
}

.immersive-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: var(--space-2xl) var(--space-xl);
}

.immersive-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.immersive-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}


/* ==========================================================================
   20. Page — Affiche (spectacle showcase)
   ========================================================================== */

/* ==========================================================================
   Section Affiche — Saul Bass
   ========================================================================== */

.section-affiche {
    background: var(--sb-black);
    padding: 0;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 3%, 100% 97%, 0 100%);
    margin: -2rem 0;
    padding: calc(var(--space-3xl) + 2rem) 0;
}

/* Grain overlay */
.section-affiche::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.section-affiche > * {
    position: relative;
    z-index: 2;
}

/* Red diagonal accent — geometric Saul Bass element */
.section-affiche::after {
    content: '';
    position: absolute;
    top: -5%;
    right: -5%;
    width: 40%;
    height: 110%;
    background: var(--sb-red);
    transform: skewX(-8deg);
    opacity: 0.06;
    z-index: 0;
}

/* Header — off-center, bold */
.affiche-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) 2rem 0;
    text-align: left;
    margin-bottom: var(--space-2xl);
    color: var(--sb-cream);
}

.affiche-header .section-label {
    color: var(--sb-red);
    letter-spacing: 0.3em;
    font-family: var(--font-saul);
    font-size: 0.9rem;
}

.affiche-header h2 {
    font-family: var(--font-saul);
    font-size: clamp(5rem, 14vw, 11rem);
    line-height: 0.85;
    margin-bottom: var(--space-sm);
    color: var(--sb-red);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

/* Red block behind part of the title */
.affiche-header h2::after {
    content: '';
    position: absolute;
    bottom: 8%;
    left: -2%;
    width: 35%;
    height: 30%;
    background: var(--sb-red);
    opacity: 0.15;
    z-index: -1;
    transform: skewX(-3deg);
}

.affiche-genre {
    font-family: var(--font-saul);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--sb-cream);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-top: var(--space-sm);
}

/* Grid — asymmetric */
.affiche-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Cover — angular frame */
.affiche-visual {
    position: relative;
    overflow: visible;
}

.affiche-visual img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
    clip-path: polygon(0 2%, 98% 0, 100% 97%, 2% 100%);
}

.affiche-visual:hover img {
    transform: scale(1.02);
}

/* Red geometric accent behind cover */
.affiche-visual::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 3px solid var(--sb-red);
    clip-path: polygon(0 2%, 98% 0, 100% 97%, 2% 100%);
    z-index: -1;
}

/* Synopsis — with red left bar */
.affiche-content {
    color: var(--sb-cream);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
}

.affiche-synopsis {
    border-left: 3px solid var(--sb-red);
    padding-left: var(--space-md);
}

.affiche-synopsis h3 {
    font-family: var(--font-saul);
    font-size: 2.2rem;
    margin-bottom: var(--space-md);
    color: var(--sb-cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.affiche-synopsis .text-lead {
    font-size: 1.2rem;
    color: rgba(232, 228, 220, 0.9);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.affiche-synopsis p {
    color: rgba(232, 228, 220, 0.5);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.affiche-synopsis .text-accent {
    color: var(--sb-red);
    font-weight: 600;
    font-style: normal;
    font-family: var(--font-saul);
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    margin-top: var(--space-sm);
    text-transform: uppercase;
}

/* Fiche technique — geometric blocks */
.affiche-fiche {
    max-width: 1200px;
    margin: var(--space-2xl) auto 0;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
}

.fiche-item-inline {
    font-size: 0.8rem;
    color: rgba(232, 228, 220, 0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-saul);
}

.fiche-item-inline span {
    font-family: var(--font-saul);
    font-size: 2.5rem;
    color: var(--sb-red);
    display: block;
    line-height: 1.1;
}

.fiche-divider {
    width: 2px;
    height: 50px;
    background: var(--sb-red);
    opacity: 0.2;
    transform: skewX(-10deg);
}

/* Galerie strip — desaturated with red hover */
.affiche-gallery-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-2xl) 2rem 0;
    overflow: hidden;
}

.affiche-gallery {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    scrollbar-width: none;
}

.affiche-gallery::-webkit-scrollbar {
    display: none;
}

.affiche-gallery img {
    width: 260px;
    min-width: 260px;
    height: 175px;
    object-fit: cover;
    flex-shrink: 0;
    opacity: 0.6;
    transition: var(--transition);
    cursor: pointer;
    filter: grayscale(70%) contrast(1.1);
    clip-path: polygon(0 3%, 97% 0, 100% 96%, 3% 100%);
}

.affiche-gallery img:hover {
    opacity: 1;
    filter: grayscale(0%) contrast(1);
    transform: scale(1.03);
}

/* Quote — minimal */
.affiche-quote-wrap {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-2xl) 2rem var(--space-lg);
    text-align: center;
}

.affiche-quote p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-style: italic;
    color: rgba(232, 228, 220, 0.5);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.affiche-quote cite {
    font-size: 0.75rem;
    font-style: normal;
    color: var(--sb-red);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-saul);
}

/* CTA — Saul Bass angular */
.affiche-content .btn-primary {
    background: var(--sb-red);
    border-color: var(--sb-red);
    font-family: var(--font-saul);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    font-size: 1rem;
    padding: 0.9rem 2.5rem;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
    transition: var(--transition);
}

.affiche-content .btn-primary:hover {
    background: #e02020;
    border-color: #e02020;
    clip-path: polygon(2% 0, 98% 0, 100% 100%, 0 100%);
}

/* CTA final */
.affiche-cta-wrap {
    text-align: center;
    padding: var(--space-lg) 2rem var(--space-lg);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}



/* ==========================================================================
   21. Page — Closing CTA
   ========================================================================== */

.section-closing {
    position: relative;
    padding: var(--space-2xl) 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.closing-bg {
    position: absolute;
    inset: 0;
}

.closing-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.closing-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 5, 0.8);
}

.closing-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.closing-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.closing-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.closing-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}

.closing-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}


/* ==========================================================================
   22. Page — Split Content
   ========================================================================== */

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.split-content.reverse .split-visual {
    order: -1;
}

.split-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.split-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: var(--space-sm);
}

.split-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}



/* ==========================================================================
   23. Page — Troupe
   ========================================================================== */

.troupe-intro-block h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: var(--space-lg);
}

.troupe-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.troupe-intro-grid p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: var(--space-sm);
}

.troupe-eva img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.eva-caption {
    margin-top: var(--space-sm);
}

.eva-caption strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
}

.eva-caption span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.troupe-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    text-align: center;
    padding: var(--space-lg) 0;
}

.troupe-number-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.troupe-number-label {
    font-size: 0.85rem;
    color: var(--text-light);
}


/* ==========================================================================
   24. Page — Video
   ========================================================================== */

.section-video-compact {
    padding: var(--space-lg) 0;
}

.video-inline {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.video-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    display: block;
}

.video-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: var(--space-sm);
    letter-spacing: 0.05em;
}



/* ==========================================================================
   25. Page — Contact
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* Dates grid (used in contact/spectacles) */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}



/* ==========================================================================
   05k-0. Hero — message maison + pastilles univers
   ========================================================================== */

.hero-maison {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.4vw, 2.7rem);
    line-height: 1.18;
    color: var(--white);
    margin-top: var(--space-md);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
.hero-maison em {
    font-style: italic;
    color: var(--orange-glow);
}

.hero-univers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin-top: var(--space-md);
}
.hero-univers .hu {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.15rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: rgba(20, 12, 6, 0.42);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.hero-univers .hu:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(20, 12, 6, 0.6);
    transform: translateY(-2px);
}
.hero-univers .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: block;
    flex: none;
}
.hu-scene .dot { background: var(--p-scene); }
.hu-eveil .dot { background: var(--p-eveil); }
.hu-festif .dot { background: var(--p-festif); }
.hu-voix .dot { background: var(--p-voix); }


/* ==========================================================================
   05k. Section — Nos univers (la constellation Fantazia)
   ========================================================================== */

.section-univers {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-xl) 0 0;
    overflow: hidden;
}

.univers-head {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--space-md) var(--space-lg);
}

.univers-head h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

.univers-head p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.02rem;
    line-height: 1.7;
}

/* Grille : 4 colonnes pleine largeur, s'agrandissent au survol */
.univers-grid {
    display: flex;
    height: 480px;
}

.univ-col {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg) var(--space-md);
    color: var(--white);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.univ-col + .univ-col {
    box-shadow: -1px 0 0 rgba(0, 0, 0, 0.4);
}

.univ-col:hover,
.univ-col:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.univ-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform var(--transition);
}

.univ-col:hover .univ-bg {
    transform: scale(1.1);
}

.univ-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.univ-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 3;
}

.univ-num {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    z-index: 3;
    font-family: var(--font-display);
    font-size: 1.6rem;
    opacity: 0.35;
}

.univ-inner {
    position: relative;
    z-index: 3;
}

.univ-label {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.univ-name {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    line-height: 1.05;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.univ-name small {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.76rem;
    letter-spacing: 0.02em;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity var(--transition), max-height var(--transition), margin var(--transition);
}

.univ-col:hover .univ-name small,
.univ-col:focus-within .univ-name small {
    opacity: 0.85;
    max-height: 48px;
    margin-top: 0.4rem;
}

.univ-more {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--transition), opacity var(--transition), margin var(--transition);
}

.univ-col:hover .univ-more,
.univ-col:focus-within .univ-more {
    max-height: 160px;
    opacity: 1;
    margin-top: var(--space-sm);
}

.univ-more p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 40ch;
    line-height: 1.6;
}

/* étiquettes produits (le besoin client, visible) */
.univ-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.7rem;
}
.univ-tags span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.26rem 0.65rem;
    border-radius: 40px;
    color: rgba(255, 255, 255, 0.85);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.univ-enter {
    margin-top: var(--space-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    background: var(--white);
    color: var(--dark);
    transition: transform var(--transition), box-shadow var(--transition);
}

.univ-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.univ-enter svg {
    width: 16px;
    height: 16px;
}

/* --- Les 4 mondes (toujours chauds) --- */
.univ-scene .univ-veil {
    background: linear-gradient(to top, rgba(18, 11, 5, 0.95) 8%, rgba(18, 11, 5, 0.4) 55%, rgba(196, 90, 32, 0.2));
}
.univ-scene .univ-label { color: var(--orange-glow); }
.univ-scene .univ-top { background: var(--orange); }

.univ-eveil .univ-bg {
    background: radial-gradient(130% 110% at 30% 25%, #F6D38C, #E0A23C 50%, #6E4517);
    transform: none;
}
/* photos univers : cadrage par pôle */
.univ-eveil .univ-bg[style] { background-position: center 72% !important; background-size: cover; }
.univ-festif .univ-bg[style] { background-position: center 42% !important; background-size: cover; }
.univ-voix .univ-bg[style] { background-position: center 58% !important; background-size: cover; }

/* crossfade jour -> magie AU SURVOL : la magie "se matérialise" (floue + zoomée -> nette).
   On ne voit jamais deux images nettes superposées, donc tout micro-offset est invisible. */
.univ-bg.uvb-b {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(14px);
    transition: opacity 1.4s ease, transform 1.6s ease, filter 1.6s ease;
    will-change: opacity, transform, filter;
}
.univ-col:hover .uvb-b,
.univ-col:focus-within .uvb-b {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
    .univ-bg.uvb-b { transition: none; transform: none; filter: none; }
}
.univ-eveil .univ-veil {
    background: linear-gradient(to top, rgba(40, 24, 8, 0.92), rgba(40, 24, 8, 0.08) 65%);
}
.univ-eveil .univ-label { color: #FFE8BC; }
.univ-eveil .univ-top { background: var(--p-eveil); }

.univ-festif .univ-bg {
    background: radial-gradient(130% 110% at 70% 22%, #F7B25A, #E0552E 54%, #6E210F);
    transform: none;
}
.univ-festif .univ-veil {
    background: linear-gradient(to top, rgba(40, 16, 8, 0.92), rgba(40, 16, 8, 0.08) 65%);
}
.univ-festif .univ-label { color: #FFD3B0; }
.univ-festif .univ-top { background: var(--p-festif); }

.univ-voix .univ-bg {
    background: radial-gradient(130% 120% at 35% 30%, #5E451F, #2A1C0E 62%, #0F0A05);
    transform: none;
}
.univ-voix .univ-veil {
    background: linear-gradient(to top, rgba(8, 5, 2, 0.6), transparent 70%);
}
.univ-voix .univ-label { color: #E0C7A0; }
.univ-voix .univ-top { background: var(--p-voix); }

/* Mobile : on empile (le survol-expand n'a pas de sens au tactile) */
@media (max-width: 820px) {
    .univers-grid { flex-direction: column; height: auto; }
    .univ-col { min-height: 240px; flex: none; }
    .univ-col:hover, .univ-col:focus-within { flex-grow: 0; }
    .univ-name small, .univ-more { opacity: 1; max-height: none; overflow: visible; margin-top: 0.5rem; }
    .univ-bg { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    .univ-col, .univ-bg, .univ-name small, .univ-more, .univ-enter { transition: none; }
}


/* ==========================================================================
   05k-bis. Page pôle — univers en préparation (placeholder)
   ========================================================================== */

.univers-soon {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.univers-soon .univ-bg,
.univers-soon .univ-veil {
    position: absolute;
    inset: 0;
}

.univers-soon .univ-veil {
    background: linear-gradient(to bottom, rgba(18, 11, 5, 0.55), rgba(18, 11, 5, 0.8));
    z-index: 1;
}

.soon-inner {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: var(--space-2xl) var(--space-md);
}

.soon-inner h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.05;
    margin: var(--space-sm) 0;
}

.soon-inner .soon-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.soon-back {
    display: inline-block;
    margin-top: var(--space-lg);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.soon-back:hover { color: var(--orange-glow); }


/* ==========================================================================
   05k-ter. Pages univers — contenu
   ========================================================================== */

/* Fonds de hero par univers (dégradés chauds, pas de photo) */
.ph-eveil  { background: radial-gradient(130% 120% at 30% 20%, #F6D38C, #E0A23C 50%, #6E4517); }
.ph-festif { background: radial-gradient(130% 120% at 70% 20%, #F7B25A, #E0552E 54%, #6E210F); }
.ph-voix   { background: radial-gradient(130% 130% at 35% 25%, #5E451F, #2A1C0E 62%, #0F0A05); }

/* Liste de domaines (doublage) — pastilles */
.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    max-width: 780px;
    margin: var(--space-md) auto 0;
}

.chip {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 0.5rem 1.15rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.05);
}

/* Étapes (déroulé festif) */
.steps {
    display: grid;
    gap: var(--space-md);
    max-width: 720px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    text-align: left;
}

.step-num {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Encart / note */
.callout {
    max-width: 640px;
    margin: var(--space-lg) auto 0;
    padding: var(--space-md) var(--space-lg);
    border-left: 3px solid var(--orange);
    background: var(--cream);
    border-radius: 0 var(--radius) var(--radius) 0;
    text-align: left;
}

.callout p { color: var(--text-light); line-height: 1.7; }
.callout .callout-accent { font-family: var(--font-signature); color: var(--orange); font-size: 1.2rem; }

/* Intro centrée d'univers */
.univ-intro { max-width: 720px; margin: 0 auto; text-align: center; }
.univ-intro h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: var(--space-sm); }
.univ-intro p { font-size: 1.08rem; color: var(--text-light); line-height: 1.8; }

/* ==========================================================================
   05l. Page premium — Fanta-éveil (le livre qui prend vie)
   Tout est scopé sous .page-eveil pour ne pas fuir sur les autres pages.
   ========================================================================== */

.page-eveil {
    background: var(--cream);
}

/* grain papier (subtil, sur toute la page) */
.page-eveil::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-eveil .ev-annot {
    font-family: var(--font-signature);
    color: var(--orange);
    font-size: 1.5rem;
    display: inline-block;
}

.page-eveil .ev-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C98A2E;
}

/* HERO clair & aéré */
.page-eveil .ev-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 5rem;
    overflow: hidden;
    background:
        radial-gradient(120% 90% at 50% 0%, #FCEFD6, transparent 55%),
        radial-gradient(90% 70% at 80% 100%, #FBE3C2, transparent 60%),
        var(--cream);
}

.page-eveil .ev-hero-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.page-eveil .ev-hero .ev-book { width: 80px; height: 80px; margin: 0 auto 1.2rem; color: var(--orange); display: block; stroke-width: 1.4; }

/* repère de défilement */
.page-eveil .ev-scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); color: var(--orange); opacity: 0.65; animation: evBounce 2s ease-in-out infinite; }
.page-eveil .ev-scroll svg { width: 28px; height: 28px; }
@keyframes evBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
.page-eveil .ev-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    color: var(--text);
    margin: 0.2rem 0 0.6rem;
}
.page-eveil .ev-hero .ev-tag { font-size: 1.15rem; color: var(--text-light); max-width: 30ch; margin: 0 auto; }


/* lignes éditoriales alternées */
.page-eveil .ev-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.page-eveil .ev-row.rev .ev-media { order: 2; }
.page-eveil .ev-body h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    line-height: 1.1;
    margin: 0.6rem 0 0.8rem;
}
.page-eveil .ev-body p { color: var(--text-light); font-size: 1.05rem; }
.page-eveil .ev-body .ev-annot { margin-top: 0.8rem; font-size: 1.3rem; }

/* cadre = emplacement photo premium */
.page-eveil .ev-frame {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    background: radial-gradient(120% 120% at 30% 20%, #F4C977, #E0A23C 55%, #9B6A23);
    box-shadow: 0 24px 60px rgba(140, 80, 20, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
}
.page-eveil .ev-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-eveil .ev-frame .ev-cap {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-family: var(--font-signature);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

/* LA FOURCHE — trois formats en cartes (colonne vertébrale) */
.page-eveil .ev-formats { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.page-eveil .ev-formats-head { text-align: center; max-width: 600px; margin: 0 auto 2.8rem; }
.page-eveil .ev-formats-head h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin: 0.3rem 0 0.5rem; }
.page-eveil .ev-formats-head p { color: var(--text-light); }
.page-eveil .ev-fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: 1000px; margin: 0 auto; }
.page-eveil .ev-fcard { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem 1.8rem; box-shadow: 0 14px 40px rgba(140, 80, 20, 0.08); transition: transform var(--transition), box-shadow var(--transition); text-decoration: none; color: inherit; text-align: left; width: 100%; font-family: inherit; cursor: pointer; }
.page-eveil .ev-fcard:hover { transform: translateY(-6px); box-shadow: 0 22px 54px rgba(140, 80, 20, 0.16); border-color: rgba(196, 90, 32, 0.4); }
.page-eveil .ev-fcard .f-go { margin-top: 1.2rem; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.88rem; color: var(--orange); }
.page-eveil .ev-fcard .f-go svg { width: 16px; height: 16px; transition: transform var(--transition); }
.page-eveil .ev-fcard:hover .f-go svg { transform: translateX(4px); }
.page-eveil .ev-fcard .f-ico { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: radial-gradient(120% 120% at 30% 20%, #F4C977, #E0A23C 60%, #C45A20); color: #fff; margin-bottom: 1.1rem; }
.page-eveil .ev-fcard .f-ico svg { width: 28px; height: 28px; }
.page-eveil .ev-fcard .f-tag { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #C98A2E; margin-bottom: 0.35rem; }
.page-eveil .ev-fcard h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.45rem; }
.page-eveil .ev-fcard p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; flex: 1; }
@media (max-width: 760px) { .page-eveil .ev-fgrid { grid-template-columns: 1fr; max-width: 420px; } }

/* MODALES détail des formats */
.page-eveil .ev-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.page-eveil .ev-modal.open { display: block; }
.page-eveil .ev-modal-backdrop { position: absolute; inset: 0; background: rgba(26, 17, 10, 0.62); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s ease; }
.page-eveil .ev-modal.open .ev-modal-backdrop { opacity: 1; }
.page-eveil .ev-modal-panel { position: relative; max-width: 560px; margin: 6vh auto; max-height: 88vh; overflow-y: auto; background: var(--cream); border-radius: 20px; padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: 0 40px 100px rgba(40, 20, 5, 0.4); transform: translateY(16px) scale(0.98); opacity: 0; transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease; }
.page-eveil .ev-modal.open .ev-modal-panel { transform: none; opacity: 1; }
.page-eveil .ev-modal-x { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(0, 0, 0, 0.06); color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.page-eveil .ev-modal-x:hover { background: rgba(0, 0, 0, 0.12); }
.page-eveil .ev-modal-x svg { width: 20px; height: 20px; }
.page-eveil .ev-modal .f-ico { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: radial-gradient(120% 120% at 30% 20%, #F4C977, #E0A23C 60%, #C45A20); color: #fff; margin-bottom: 0.9rem; }
.page-eveil .ev-modal .f-ico svg { width: 26px; height: 26px; }
.page-eveil .ev-modal .m-tag { display: block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #C98A2E; margin-bottom: 0.3rem; }
.page-eveil .ev-modal h3 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem); margin: 0.1rem 0 0.4rem; }
.page-eveil .ev-modal-lead { color: var(--text-light); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.5rem; }
.page-eveil .ev-modal-section { margin-bottom: 1.3rem; }
.page-eveil .ev-modal-section h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--text); }
.page-eveil .ev-modal-section p { color: var(--text-light); font-size: 0.95rem; line-height: 1.65; }
.page-eveil .ev-modal-section ul { padding-left: 1.1rem; color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.page-eveil .ev-ph { display: block; margin-top: 0.4rem; padding: 0.5rem 0.8rem; border: 1px dashed var(--orange); border-radius: 8px; font-size: 0.85rem !important; color: var(--orange) !important; font-style: italic; background: rgba(196, 90, 32, 0.04); }
.page-eveil .ev-modal .btn { margin-top: 0.6rem; }

/* contes — collection façon étagère */
.page-eveil .ev-contes { background: #F6E9D6; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.page-eveil .ev-contes h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 0.3rem; }
.page-eveil .ev-contes .ev-sub { text-align: center; color: var(--text-light); margin-bottom: 2.6rem; }
.page-eveil .ev-shelf { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem); justify-content: center; }
.page-eveil .ev-book-cover {
    width: 230px;
    border-radius: 6px 12px 12px 6px;
    overflow: hidden;
    box-shadow: -6px 14px 34px rgba(120, 70, 20, 0.28);
    transform: rotate(-1.5deg);
    transition: transform var(--transition);
}
.page-eveil .ev-book-cover:nth-child(2) { transform: rotate(1.5deg); }
.page-eveil .ev-book-cover:hover { transform: translateY(-8px) rotate(0); }
.page-eveil .bc-art { height: 280px; display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.92); border-left: 6px solid rgba(0, 0, 0, 0.12); }
.page-eveil .bc-art svg { width: 62px; height: 62px; stroke-width: 1.4; }
.page-eveil .bc-1 { background: radial-gradient(120% 100% at 30% 20%, #EFE6D6, #C9B79A 55%, #8C7A5E); }
.page-eveil .bc-2 { background: radial-gradient(120% 100% at 30% 20%, #F4C977, #E0552E 65%, #7A2412); }
.page-eveil .bc-foot { background: var(--white); padding: 1rem 1.1rem; }
.page-eveil .bc-foot h3 { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.15; }
.page-eveil .bc-foot span { font-size: 0.8rem; color: var(--text-light); display: block; }
.page-eveil .bc-soon { margin-top: 0.3rem; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); }

/* éco — bande pêche */
.page-eveil .ev-eco { background: linear-gradient(180deg, #FBEAD3, #F7DFC0); padding: clamp(3.5rem, 7vw, 5.5rem) 0; text-align: center; }
.page-eveil .ev-eco .ev-doodle { width: 52px; height: 52px; display: block; margin: 0 auto 1rem; color: var(--orange); stroke-width: 1.5; }
.page-eveil .ev-eco h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.6rem; }
.page-eveil .ev-eco p { max-width: 46ch; margin: 0 auto; color: var(--text-light); }
.page-eveil .ev-stamp {
    display: inline-block;
    margin-top: 1.4rem;
    padding: 0.7rem 1.4rem;
    border: 2px dashed var(--orange);
    border-radius: 50px;
    font-family: var(--font-signature);
    color: var(--orange);
    font-size: 1.4rem;
}

/* preuve */
.page-eveil .ev-proof { padding: clamp(3.5rem, 7vw, 6rem) 0; text-align: center; }
.page-eveil .ev-proof blockquote { max-width: 620px; margin: 0 auto; }
.page-eveil .ev-proof blockquote p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.4; color: var(--text); }
.page-eveil .ev-proof cite { display: block; margin-top: 1rem; font-style: normal; color: var(--text-light); font-size: 0.9rem; }
.page-eveil .ev-stats { display: flex; justify-content: center; gap: clamp(2.5rem, 6vw, 5rem); margin-top: 3rem; flex-wrap: wrap; }
.page-eveil .ev-stat b { display: block; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--orange); }
.page-eveil .ev-stat span { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }

/* cta */
.page-eveil .ev-cta { background: #FBF1E6; text-align: center; padding: clamp(4rem, 8vw, 6rem) 1.5rem; }
.page-eveil .ev-cta h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin: 0.3rem 0 0.6rem; }
.page-eveil .ev-cta p { color: var(--text-light); margin-bottom: 1.8rem; }
.page-eveil .ev-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 760px) {
    .page-eveil .ev-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .page-eveil .ev-row.rev .ev-media { order: 0; }
}

/* --- Patterns page-produit : fiche, réassurance, FAQ, barre collante --- */
.page-eveil .ev-fichesec { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.page-eveil .ev-fiche-title,
.page-eveil .ev-faq-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); text-align: center; margin-bottom: 1.8rem; }

.page-eveil .ev-fiche {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.2rem;
    max-width: 920px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 18px 50px rgba(140, 80, 20, 0.10);
}
.page-eveil .ev-fiche-item { text-align: center; }
.page-eveil .ev-fiche-item svg { width: 26px; height: 26px; color: var(--orange); margin-bottom: 0.5rem; }
.page-eveil .ev-fiche-item b { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--text); }
.page-eveil .ev-fiche-item span { font-size: 0.78rem; color: var(--text-light); }

.page-eveil .ev-reassure { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem; margin-top: 1.8rem; }
.page-eveil .ev-reassure span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.86rem; color: var(--text-light); font-weight: 500; }
.page-eveil .ev-reassure svg { width: 18px; height: 18px; color: var(--orange); }

.page-eveil .ev-faqsec { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem); }
.page-eveil .ev-faq { max-width: 720px; margin: 0 auto; }
.page-eveil .ev-faq details { border-bottom: 1px solid var(--border); padding: 1.05rem 0; }
.page-eveil .ev-faq summary { font-family: var(--font-display); font-size: 1.12rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--text); }
.page-eveil .ev-faq summary::-webkit-details-marker { display: none; }
.page-eveil .ev-faq summary::after { content: "+"; color: var(--orange); font-size: 1.5rem; line-height: 1; }
.page-eveil .ev-faq details[open] summary::after { content: "\2013"; }
.page-eveil .ev-faq p { margin-top: 0.7rem; color: var(--text-light); line-height: 1.7; }

/* barre de sous-navigation collante (façon Apple) : nom + ancres + CTA */
.ev-subnav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 55;
    display: flex; align-items: center; gap: 1rem;
    padding: 0.7rem clamp(1rem, 4vw, 3rem);
    background: rgba(26, 17, 10, 0.95); backdrop-filter: blur(12px); color: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-100%); transition: transform 0.35s ease;
}
.ev-subnav.show { transform: none; }
.ev-subnav-name { font-family: var(--font-display); font-size: 1.05rem; white-space: nowrap; }
.ev-subnav-links { display: flex; gap: 1.4rem; flex: 1; overflow-x: auto; scrollbar-width: none; }
.ev-subnav-links::-webkit-scrollbar { display: none; }
.ev-subnav-links a { font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); white-space: nowrap; transition: color 0.2s; }
.ev-subnav-links a:hover { color: var(--orange-glow); }
.ev-subnav-cta { padding: 0.55rem 1.2rem !important; font-size: 0.82rem !important; white-space: nowrap; }
@media (max-width: 600px) { .ev-subnav-name { display: none; } }

/* décalage d'ancre : la cible ne passe pas sous la barre */
.page-eveil [id] { scroll-margin-top: 84px; }

@media (prefers-reduced-motion: reduce) {
    .page-eveil .ev-scroll { animation: none !important; }
    .page-eveil .ev-book-cover { transition: none; }
    .ev-subnav { transition: none; }
}

/* ==========================================================================
   05m. Page pôle — Fanta-scène (le théâtre)
   Patterns standards (page-hero, sections, cards, timeline) + DA théâtrale.
   ========================================================================== */

.page-scene .page-hero { min-height: 78vh; }

/* hero : double entrée (pour vous / avec vous) + preuve */
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: var(--space-md); }
.page-hero-proof { margin-top: var(--space-md); font-size: 0.85rem; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.72); }
.page-hero-proof b { font-family: var(--font-display); font-weight: 400; color: var(--orange-glow); }

/* LA FOURCHE : les deux branches de Fanta-scène */
.scene-fork { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 1000px; margin: var(--space-lg) auto 0; }
.fork-card { position: relative; min-height: 320px; border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-lg); color: #fff; box-shadow: var(--shadow-lg); transition: transform var(--transition); }
.fork-card:hover { transform: translateY(-6px); }
.fork-card .fork-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transform: scale(1.04); transition: transform var(--transition); }
.fork-card:hover .fork-bg { transform: scale(1.1); }
.fork-card .fork-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(16, 9, 4, 0.95) 8%, rgba(16, 9, 4, 0.4) 60%, rgba(196, 90, 32, 0.2)); }
.fork-card .fork-in { position: relative; z-index: 2; }
.fork-card .fork-lab { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-glow); }
.fork-card h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.05; margin: 0.4rem 0; }
.fork-card p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.82); max-width: 34ch; }
.fork-card .fork-go { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--orange-glow); }
.fork-card .fork-go svg { width: 16px; height: 16px; }
@media (max-width: 680px) { .scene-fork { grid-template-columns: 1fr; } }

/* EVA : portrait + approche */
.eva-split { display: grid; grid-template-columns: minmax(0, 300px) 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; max-width: 980px; margin: 0 auto var(--space-xl); }
.eva-portrait { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); margin: 0; }
.eva-portrait img { width: 100%; display: block; aspect-ratio: 4 / 5; object-fit: cover; }
.eva-portrait.is-placeholder .ph-fill { aspect-ratio: 4 / 5; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; background: linear-gradient(150deg, var(--velvet, #1A110A), #2a1810 55%, rgba(196, 90, 32, 0.35)); color: rgba(255, 255, 255, 0.55); }
.eva-portrait.is-placeholder .ph-fill svg { width: 40px; height: 40px; stroke-width: 1.4; color: var(--orange-glow); opacity: 0.7; }
.eva-portrait.is-placeholder .ph-fill span { font-size: 0.82rem; letter-spacing: 0.04em; }
.eva-portrait figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.6rem 1rem 0.9rem; background: linear-gradient(to top, rgba(16, 9, 4, 0.9), transparent); color: #fff; }
.eva-portrait figcaption b { font-family: var(--font-display); font-size: 1.2rem; display: block; }
.eva-portrait figcaption span { font-size: 0.8rem; opacity: 0.85; }
.eva-body h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.6rem; }
.eva-body p { color: var(--text-light); font-size: 1.05rem; line-height: 1.8; }
.eva-body .sig { font-family: var(--font-signature); color: var(--orange); font-size: 1.4rem; margin-top: 0.8rem; display: inline-block; }
@media (max-width: 680px) { .eva-split { grid-template-columns: 1fr; max-width: 420px; } }

/* citation spectateur (sur velours) */
.scene-quote { max-width: 680px; margin: var(--space-2xl) auto 0; text-align: center; }
.scene-quote p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.6rem); line-height: 1.5; color: #fff; }
.scene-quote cite { display: block; margin-top: 1rem; font-style: normal; font-size: 0.85rem; color: var(--orange-glow); }

/* duo de sections : "On joue pour vous" / "On fait du théâtre avec vous" */
.scene-kicker { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem; text-align: center; }
.section-dark .scene-kicker { color: var(--orange-glow); }

/* Le Foulard : l'affiche posée comme objet (velours) */
.scene-foulard { display: grid; grid-template-columns: minmax(0, 340px) 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; max-width: 1000px; margin: 0 auto; }
.scene-foulard-poster { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); transform: rotate(-1.5deg); transition: transform var(--transition); }
.scene-foulard-poster:hover { transform: rotate(0); }
.scene-foulard-poster img { width: 100%; display: block; }
.scene-foulard h3 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.04; }
.scene-foulard .genre { color: var(--orange-glow); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.03em; margin: 0.5rem 0 1rem; }
.scene-foulard p { color: rgba(255, 255, 255, 0.8); margin-bottom: 1.5rem; max-width: 46ch; }
@media (max-width: 760px) {
    .scene-foulard { grid-template-columns: 1fr; gap: 1.8rem; }
    .scene-foulard-poster { max-width: 280px; margin: 0 auto; transform: none; }
}

.scene-presta-sub { text-align: center; color: var(--text-light); max-width: 48ch; margin: 0.7rem auto 0; }

/* bloc troupe sur velours : textes & chiffres lisibles sur fond sombre */
.scene-troupe-intro { max-width: 640px; margin: 0 auto; text-align: center; }
.scene-troupe-intro h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 0.6rem; }
.scene-troupe-intro p { color: rgba(255, 255, 255, 0.78); font-size: 1.08rem; line-height: 1.8; }
.section-dark .troupe-number-value { color: var(--orange-glow); }
.section-dark .troupe-number-label { color: rgba(255, 255, 255, 0.6); }
/* liens entre les sous-blocs du monde troupe (continuité velours) */
.scene-troupe-block + .scene-troupe-block { padding-top: 0; }

/* prestations : 2x2 de cartes contenues (pour qui + bénéfice) */
.presta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 940px; margin: var(--space-lg) auto 0; }
.presta-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.2rem); text-align: left; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.presta-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(60, 30, 10, 0.12); border-color: rgba(196, 90, 32, 0.4); }
.presta-card .p-ico { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(196, 90, 32, 0.1); color: var(--orange); margin-bottom: var(--space-sm); }
.presta-card .p-ico svg { width: 24px; height: 24px; stroke-width: 1.6; }
.presta-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.3rem; }
.presta-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }
.presta-tag { display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.4rem; color: var(--orange); }
@media (max-width: 680px) { .presta-grid { grid-template-columns: 1fr; max-width: 440px; } }

/* frise histoire : timeline horizontale (chronologie réelle) */
.scene-timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 860px; margin: var(--space-lg) auto 0; }
.scene-timeline::before { content: ""; position: absolute; top: 15px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, transparent, rgba(244, 160, 64, 0.5), transparent); }
.scene-tl { position: relative; text-align: center; padding-top: 38px; }
.scene-tl::before { content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 16px; height: 16px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(244, 160, 64, 0.18); }
.scene-tl b { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--orange-glow); line-height: 1; }
.scene-tl span { display: block; margin-top: 0.4rem; font-size: 0.95rem; color: rgba(255, 255, 255, 0.72); }
@media (max-width: 680px) {
    .scene-timeline { grid-template-columns: 1fr; gap: 1.6rem; }
    .scene-timeline::before { top: 0; bottom: 0; left: 7px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, transparent, rgba(244, 160, 64, 0.5), transparent); }
    .scene-tl { padding-top: 0; padding-left: 32px; text-align: left; }
    .scene-tl::before { top: 4px; left: 0; transform: none; }
}

/* ==========================================================================
   05n. Pages intervention (Fanta-scène) — template générique, scopé .page-interv
   Patterns standards : page-hero, sections, points, fiche, FAQ, steps (global).
   ========================================================================== */

.page-interv .page-hero { min-height: 64vh; }
.interv-crumb { font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.7); margin-bottom: 0.7rem; }
.interv-crumb a { color: rgba(255, 255, 255, 0.7); }
.interv-crumb a:hover { color: var(--orange-glow); }

/* intro */
.interv-intro { max-width: 720px; margin: 0 auto; text-align: center; }
.interv-intro h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.7rem; }
.interv-intro p { font-size: 1.08rem; color: var(--text-light); line-height: 1.8; }

/* points : pour qui + ce que ça apporte */
.interv-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); max-width: 1000px; margin: 0 auto; }
.interv-point { text-align: center; }
.interv-point .p-ico { width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: rgba(196, 90, 32, 0.1); color: var(--orange); margin: 0 auto var(--space-sm); }
.interv-point .p-ico svg { width: 26px; height: 26px; stroke-width: 1.5; }
.interv-point b { display: block; font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.3rem; }
.interv-point span { font-size: 0.95rem; color: var(--text-light); }
.section-dark .interv-point b { color: #fff; }
.section-dark .interv-point span { color: rgba(255, 255, 255, 0.72); }
.section-dark .interv-point .p-ico { background: rgba(255, 255, 255, 0.08); color: var(--orange-glow); }
@media (max-width: 680px) { .interv-points { grid-template-columns: 1fr; gap: var(--space-md); } }

/* fiche en bref */
.interv-fiche { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.2rem; max-width: 920px; margin: var(--space-lg) auto 0; background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem; }
.interv-fiche-item { text-align: center; }
.interv-fiche-item svg { width: 24px; height: 24px; color: var(--orange); margin-bottom: 0.4rem; }
.interv-fiche-item b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--text); }
.interv-fiche-item span { font-size: 0.76rem; color: var(--text-light); }

/* FAQ */
.interv-faq { max-width: 720px; margin: var(--space-lg) auto 0; }
.interv-faq details { border-bottom: 1px solid var(--border); padding: 1.05rem 0; }
.interv-faq summary { font-family: var(--font-display); font-size: 1.12rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--text); }
.interv-faq summary::-webkit-details-marker { display: none; }
.interv-faq summary::after { content: "+"; color: var(--orange); font-size: 1.5rem; line-height: 1; }
.interv-faq details[open] summary::after { content: "\2013"; }
.interv-faq p { margin-top: 0.7rem; color: var(--text-light); line-height: 1.7; }

/* ==========================================================================
   05p. Page pôle — Doublage / voix off
   La fourche = le duo de voix (cartes cliquables -> modales partagées .fz-modal)
   ========================================================================== */

.page-voix .voix-duo-sub { text-align: center; max-width: 50ch; margin: 0 auto var(--space-lg); color: var(--text-light); }

.page-voix .voix-duo { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 760px; margin: 0 auto; }

.page-voix .voix-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 14px 40px rgba(140, 80, 20, 0.07);
}
.page-voix .voix-card:hover { box-shadow: 0 22px 54px rgba(140, 80, 20, 0.14); border-color: rgba(196, 90, 32, 0.4); }
.page-voix .voix-avatar {
    width: 84px; height: 84px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(120% 120% at 30% 20%, #F4C977, #E0A23C 60%, #C45A20);
    color: #fff; margin-bottom: var(--space-sm);
}
.page-voix .voix-avatar svg { width: 36px; height: 36px; }
.page-voix .voix-card h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 0.2rem; }
.page-voix .voix-timbre { font-size: 0.9rem; color: var(--text-light); }
.page-voix .voix-card .vc-more { color: var(--orange); }

/* bloc démo placeholder (honnête : à venir) */
.page-voix .voix-demo-ph {
    max-width: 560px;
    margin: var(--space-lg) auto 0;
    display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    border: 1.5px dashed var(--orange);
    border-radius: var(--radius-lg);
    background: rgba(196, 90, 32, 0.04);
}
.page-voix .voix-demo-ph svg { width: 42px; height: 42px; color: var(--orange); }
.page-voix .voix-demo-ph span { font-family: var(--font-signature); font-size: 1.5rem; color: var(--orange); }

/* ondes animées dans le hero (identité sonore) */
.page-voix .voix-hero-wave { display: flex; align-items: center; justify-content: center; gap: 4px; height: 40px; margin-top: var(--space-md); }
.page-voix .voix-hero-wave span { display: block; width: 4px; border-radius: 4px; background: rgba(244, 160, 64, 0.7); height: 30%; animation: voixWave 1.3s ease-in-out infinite; }

/* showreel : l'écoute au cœur */
.page-voix .voix-reel-sub { text-align: center; max-width: 52ch; margin: 0 auto var(--space-lg); color: rgba(255, 255, 255, 0.7); }
.page-voix .reel { display: flex; align-items: center; gap: 1.4rem; justify-content: center; max-width: 640px; margin: 0 auto; flex-wrap: wrap; }
.page-voix .reel-play { width: 74px; height: 74px; border-radius: 50%; border: none; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 12px 30px rgba(196, 90, 32, 0.4); transition: transform var(--transition); flex-shrink: 0; }
.page-voix .reel-play:hover { transform: scale(1.06); }
.page-voix .reel-play.is-soon { background: rgba(255, 255, 255, 0.12); cursor: not-allowed; box-shadow: none; color: rgba(255, 255, 255, 0.5); }
.page-voix .reel-play svg { width: 30px; height: 30px; }
.page-voix .reel-wave { display: flex; align-items: center; gap: 4px; height: 52px; flex: 1; min-width: 160px; }
.page-voix .reel-wave span { display: block; flex: 1; max-width: 5px; border-radius: 4px; background: linear-gradient(var(--orange-glow), var(--orange)); height: 30%; animation: voixWave 1.2s ease-in-out infinite; opacity: 0.55; }
.page-voix .reel-soon { font-family: var(--font-signature); color: var(--orange-glow); font-size: 1.4rem; }
@keyframes voixWave { 0%, 100% { height: 22%; } 50% { height: 92%; } }
.page-voix .voix-hero-wave span:nth-child(3n) { animation-delay: 0.15s; }
.page-voix .voix-hero-wave span:nth-child(4n) { animation-delay: 0.35s; }
.page-voix .voix-hero-wave span:nth-child(5n) { animation-delay: 0.5s; }
.page-voix .reel-wave span:nth-child(2n) { animation-delay: 0.2s; }
.page-voix .reel-wave span:nth-child(3n) { animation-delay: 0.4s; }
.page-voix .reel-wave span:nth-child(5n) { animation-delay: 0.1s; }
.page-voix .reel-wave span:nth-child(7n) { animation-delay: 0.55s; }

/* playlist des démos */
.page-voix .demo-list { list-style: none; padding: 0; max-width: 620px; margin: var(--space-xl) auto 0; display: grid; gap: 0.7rem; }
.page-voix .demo-track { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1.1rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; }
.page-voix .demo-track > div { flex: 1; min-width: 0; }
.page-voix .demo-play { width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(255, 255, 255, 0.1); color: var(--orange-glow); display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background var(--transition); }
.page-voix .demo-play:hover { background: rgba(255, 255, 255, 0.18); }
.page-voix .demo-play svg { width: 18px; height: 18px; }
.page-voix .demo-track.is-soon .demo-play { cursor: default; opacity: 0.45; }
.page-voix .demo-track.is-soon .demo-play:hover { background: rgba(255, 255, 255, 0.1); }
.page-voix .demo-track b { display: block; color: #fff; font-family: var(--font-display); font-size: 1.05rem; }
.page-voix .demo-track span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); }
.page-voix .demo-dur { font-size: 0.76rem; color: rgba(255, 255, 255, 0.4); white-space: nowrap; flex-shrink: 0; }
.page-voix .demo-track.playing { border-color: rgba(196, 90, 32, 0.55); background: rgba(196, 90, 32, 0.12); }

/* specs / réassurance */
.page-voix .voix-specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.2rem; max-width: 920px; margin: var(--space-xl) auto 0; }
.page-voix .voix-spec { text-align: center; }
.page-voix .voix-spec svg { width: 26px; height: 26px; color: var(--orange); margin-bottom: 0.5rem; }
.page-voix .voix-spec b { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--text); }
.page-voix .voix-spec span { font-size: 0.8rem; color: var(--text-light); }

@media (max-width: 600px) {
    .page-voix .voix-duo { grid-template-columns: 1fr; max-width: 360px; }
}
@media (prefers-reduced-motion: reduce) {
    .page-voix .voix-hero-wave span, .page-voix .reel-wave span { animation: none; height: 45%; }
}

/* ==========================================================================
   05q. Page pôle — Fanta-festif (le ludique)
   Cartes-fourche premium, thèmes (centerpiece), réassurance, confettis.
   ========================================================================== */

/* --- LA FOURCHE : donner une vraie surface aux cartes (sur fond sombre) --- */
.page-festif .values-grid { max-width: 1000px; margin: 0 auto; gap: 1.4rem; }
.page-festif .vc-btn.value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
}
.page-festif .vc-btn.value-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(244, 160, 64, 0.45);
}
.page-festif .values-grid .value-icon {
    width: 60px; height: 60px;
    background: radial-gradient(120% 120% at 30% 20%, #F7B25A, #E0552E 60%, #6E210F);
    color: #fff;
}
.page-festif .value-card .vc-more { color: var(--orange-glow); }

/* --- Confettis dans le hero (identité festive, discrète) --- */
.page-festif .festif-confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.page-festif .festif-confetti span { position: absolute; top: -14px; width: 9px; height: 9px; border-radius: 2px; opacity: 0; animation: confFall 7s linear infinite; }
@keyframes confFall {
    0% { transform: translateY(-14px) rotate(0); opacity: 0; }
    12% { opacity: 0.7; }
    88% { opacity: 0.7; }
    100% { transform: translateY(440px) rotate(380deg); opacity: 0; }
}
.page-festif .festif-confetti span:nth-child(1)  { left: 6%;  background: #F4A040; animation-delay: 0s;    animation-duration: 7s; }
.page-festif .festif-confetti span:nth-child(2)  { left: 14%; background: #F7C65A; animation-delay: 1.2s;  animation-duration: 8s; }
.page-festif .festif-confetti span:nth-child(3)  { left: 22%; background: #C45A20; animation-delay: 2.5s;  animation-duration: 6.5s; }
.page-festif .festif-confetti span:nth-child(4)  { left: 30%; background: #FDEFD6; animation-delay: 0.6s;  animation-duration: 7.5s; }
.page-festif .festif-confetti span:nth-child(5)  { left: 38%; background: #F4A040; animation-delay: 3.2s;  animation-duration: 8.5s; }
.page-festif .festif-confetti span:nth-child(6)  { left: 46%; background: #F7C65A; animation-delay: 1.8s;  animation-duration: 7s; }
.page-festif .festif-confetti span:nth-child(7)  { left: 54%; background: #C45A20; animation-delay: 4s;    animation-duration: 6.8s; }
.page-festif .festif-confetti span:nth-child(8)  { left: 62%; background: #FDEFD6; animation-delay: 0.3s;  animation-duration: 8s; }
.page-festif .festif-confetti span:nth-child(9)  { left: 70%; background: #F4A040; animation-delay: 2.2s;  animation-duration: 7.2s; }
.page-festif .festif-confetti span:nth-child(10) { left: 78%; background: #F7C65A; animation-delay: 3.6s;  animation-duration: 9s; }
.page-festif .festif-confetti span:nth-child(11) { left: 86%; background: #C45A20; animation-delay: 1s;    animation-duration: 6.6s; }
.page-festif .festif-confetti span:nth-child(12) { left: 92%; background: #FDEFD6; animation-delay: 4.5s;  animation-duration: 8.2s; }
.page-festif .festif-confetti span:nth-child(13) { left: 18%; background: #F4A040; animation-delay: 5s;    animation-duration: 7.8s; }
.page-festif .festif-confetti span:nth-child(14) { left: 74%; background: #C45A20; animation-delay: 5.5s;  animation-duration: 7.4s; }

/* --- Centerpiece : thèmes d'anniversaire --- */
.page-festif .festif-themes-sub { text-align: center; max-width: 52ch; margin: 0 auto var(--space-lg); color: var(--text-light); }
.page-festif .festif-themes { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; max-width: 780px; margin: 0 auto; }
.page-festif .theme-chip {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.7rem 1.2rem; border-radius: 50px;
    background: var(--white); border: 1px solid var(--border);
    font-weight: 600; font-size: 0.95rem; color: var(--text);
    box-shadow: 0 6px 18px rgba(140, 80, 20, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}
.page-festif .theme-chip:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(140, 80, 20, 0.13); }
.page-festif .theme-chip svg { width: 18px; height: 18px; color: var(--orange); }
.page-festif .theme-chip-cta { background: var(--orange); color: #fff; border-color: var(--orange); text-decoration: none; }
.page-festif .theme-chip-cta svg { color: #fff; }

/* --- Réassurance : en pratique --- */
.page-festif .festif-reassure { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.2rem; max-width: 960px; margin: 0 auto; }
.page-festif .festif-re { text-align: center; }
.page-festif .festif-re svg { width: 26px; height: 26px; color: var(--orange); margin-bottom: 0.5rem; }
.page-festif .festif-re b { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--text); }
.page-festif .festif-re span { font-size: 0.8rem; color: var(--text-light); }
.page-festif .festif-devis-note { text-align: center; max-width: 52ch; margin: var(--space-lg) auto 0; color: var(--text-light); font-size: 0.95rem; }

@media (prefers-reduced-motion: reduce) {
    .page-festif .festif-confetti span { animation: none; opacity: 0; }
}

/* ==========================================================================
   05r. Pages éditoriales — légal (prose) + À propos
   ========================================================================== */

/* --- Pages légales : colonne de lecture --- */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 2rem 0 0.6rem; color: var(--text); }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--text-light); line-height: 1.8; margin-bottom: 0.9rem; }
.legal a { color: var(--orange); text-decoration: underline; }
.legal strong { color: var(--text); font-weight: 600; }
.legal-ph { padding: 0.7rem 1rem; border: 1px dashed var(--orange); border-radius: 8px; background: rgba(196, 90, 32, 0.04); color: var(--orange) !important; font-style: italic; font-size: 0.92rem; }
.legal-updated { margin-top: 2rem; font-size: 0.85rem; color: var(--text-muted); }

/* --- À propos : récap des 4 univers --- */
.apropos-univers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; max-width: 880px; margin: var(--space-lg) auto 0; }
.ap-univ { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.3rem; padding: var(--space-lg) var(--space-sm); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); text-decoration: none; color: var(--text); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.ap-univ:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(140, 80, 20, 0.12); border-color: rgba(196, 90, 32, 0.4); }
.ap-univ svg { width: 30px; height: 30px; color: var(--orange); margin-bottom: 0.4rem; }
.ap-univ b { font-family: var(--font-display); font-size: 1.15rem; }
.ap-univ span { font-size: 0.82rem; color: var(--text-light); }

/* formulaire : case de consentement RGPD */
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: var(--space-md); }
.form-consent input { margin-top: 0.25rem; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--orange); }
.form-consent label { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.form-consent a { color: var(--orange); text-decoration: underline; }

/* footer : liens légaux discrets */
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 0.9rem; justify-content: center; align-items: center; margin-top: 0.6rem; font-size: 0.82rem; opacity: 0.8; }
.footer-legal a { color: inherit; }

@media (max-width: 680px) {
    .apropos-univers { grid-template-columns: repeat(2, 1fr); max-width: 420px; }
}

/* ==========================================================================
   Curtain loader
   ========================================================================== */

.curtain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    display: flex;
}

.curtain-left,
.curtain-right {
    width: 50%;
    height: 100%;
    background: var(--dark);
    transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.curtain.open .curtain-left {
    transform: translateX(-100%);
}

.curtain.open .curtain-right {
    transform: translateX(100%);
}


/* ==========================================================================
   Micro-interactions
   ========================================================================== */

/* Hover cards — lift + glow */
.value-card,
.date-card,
.info-card,
.gallery-item,
.fiche-item {
    transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.35s ease;
}

.value-card:hover,
.date-card:hover,
.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Custom cursor gallery */
.affiche-gallery img,
.gallery-item {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='14' fill='none' stroke='%23C45A20' stroke-width='2'/%3E%3Cpath d='M12 16h8M16 12v8' stroke='%23C45A20' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 16 16, zoom-in;
}

/* Text split animation */
.split-text-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(-40deg);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.split-text-char.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* Parallax container */
.parallax-bg img {
    will-change: transform;
}


/* ==========================================================================
   26. Page — 404
   ========================================================================== */

.page-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
}

.page-404-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.page-404-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.65;
}

.page-404-code {
    font-family: var(--font-display);
    font-size: clamp(5rem, 12vw, 8rem);
    color: var(--border);
    line-height: 1;
    margin-bottom: var(--space-sm);
}



/* ==========================================================================
   06. Composant modale partagé (.fz-modal) + carte-bouton (.vc-btn)
   Réutilisable sur toutes les pages. JS : initDetailModals() dans main.js.
   ========================================================================== */

/* carte-bouton : une value-card cliquable qui ouvre une modale */
.vc-btn {
    width: 100%;
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    border-radius: var(--radius-lg);
    color: inherit;
    transition: transform var(--transition), background var(--transition);
}
.vc-btn:hover { transform: translateY(-5px); }
.section-dark .vc-btn:hover { background: rgba(255, 255, 255, 0.04); }
.vc-more { margin-top: var(--space-sm); display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.88rem; color: var(--orange-glow); }
.vc-more svg { width: 16px; height: 16px; transition: transform var(--transition); }
.vc-btn:hover .vc-more svg { transform: translateX(4px); }

/* la modale */
.fz-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.fz-modal.open { display: block; }
.fz-modal-backdrop { position: absolute; inset: 0; background: rgba(26, 17, 10, 0.62); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s ease; }
.fz-modal.open .fz-modal-backdrop { opacity: 1; }
.fz-modal-panel {
    position: relative;
    max-width: 560px;
    margin: 6vh auto;
    max-height: 88vh;
    overflow-y: auto;
    background: var(--cream);
    border-radius: 20px;
    padding: clamp(1.8rem, 4vw, 2.8rem);
    box-shadow: 0 40px 100px rgba(40, 20, 5, 0.4);
    transform: translateY(16px) scale(0.98);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.fz-modal.open .fz-modal-panel { transform: none; opacity: 1; }
.fz-modal-x { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(0, 0, 0, 0.06); color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.fz-modal-x:hover { background: rgba(0, 0, 0, 0.12); }
.fz-modal-x svg { width: 20px; height: 20px; }

.fz-ico { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: radial-gradient(120% 120% at 30% 20%, #F4C977, #E0A23C 60%, #C45A20); color: #fff; margin-bottom: 0.9rem; }
.fz-ico svg { width: 26px; height: 26px; }
.fz-tag { display: block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #C98A2E; margin-bottom: 0.3rem; }
.fz-modal h3 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem); margin: 0.1rem 0 0.4rem; }
.fz-lead { color: var(--text-light); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.5rem; }
.fz-sec { margin-bottom: 1.3rem; }
.fz-sec h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--text); }
.fz-sec p { color: var(--text-light); font-size: 0.95rem; line-height: 1.65; }
.fz-ph { display: block; margin-top: 0.4rem; padding: 0.5rem 0.8rem; border: 1px dashed var(--orange); border-radius: 8px; font-size: 0.85rem; color: var(--orange); font-style: italic; background: rgba(196, 90, 32, 0.04); }
.fz-modal .btn { margin-top: 0.6rem; }

/* sous-titre de la section formats (sur fond sombre) */
.festif-formats-sub { text-align: center; max-width: 52ch; margin: 0 auto var(--space-lg); color: rgba(255, 255, 255, 0.7); }

@media (prefers-reduced-motion: reduce) {
    .fz-modal-panel { transition: opacity 0.2s; transform: none; }
}

/* ==========================================================================
   27. Animations
   ========================================================================== */

@keyframes pageTurn {
    0%    { transform: scaleX(0); transform-origin: right center; }
    50%   { transform: scaleX(1); transform-origin: right center; }
    50.1% { transform: scaleX(1); transform-origin: left center; }
    100%  { transform: scaleX(0); transform-origin: left center; }
}

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

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(10px); }
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.2); opacity: 0.4; }
}

.fade-target {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-target.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   Mobile nav (default: hidden)
   ========================================================================== */

.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9990;
    background: rgba(26, 17, 10, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    transition: color 0.2s ease;
}

.mobile-nav-item svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
}

.mobile-nav-item.active {
    color: var(--orange);
}

.mobile-nav-item:hover {
    color: var(--white);
}


/* ==========================================================================
   28. Responsive
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms;
        transition-duration: 0.01ms;
    }
}

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

    .topbar.scrolled {
        padding: 0.7rem 1rem;
    }

    .topbar-name {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
    }

    .topbar-tagline {
        font-size: 0.65rem;
    }

    .menu-btn span {
        font-size: 0.7rem;
    }

    .menu-overlay {
        width: 100%;
    }

    body.menu-open .site-wrapper {
        transform: scale(0.85) translateX(-25%);
    }

    .hero {
        min-height: 500px;
    }

    .hero-logo {
        max-width: 280px;
        width: 70vw;
    }

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

    .hero-now {
        padding: 0.6rem 1.2rem;
    }

    .immersive-content {
        padding: var(--space-xl) var(--space-md);
    }

    .split-content,
    .troupe-intro-grid,
    .contact-grid,
    .affiche-inner {
        grid-template-columns: 1fr;
    }

    .split-content.reverse .split-visual {
        order: -1;
    }

    .affiche-header h2 {
        font-size: 2.5rem;
    }

    .affiche-fiche {
        flex-wrap: wrap;
        gap: var(--space-md) var(--space-lg);
        justify-content: center;
    }

    .fiche-divider {
        display: none;
    }

    .fiche-item-inline {
        text-align: center;
        min-width: 80px;
    }

    .play-btn {
        width: 64px;
        height: 64px;
    }

    .affiche-gallery img {
        width: 200px;
        min-width: 200px;
        height: 135px;
    }

    .fiche-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid,
    .testimonials-row,
    .troupe-numbers {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .closing-stats {
        gap: var(--space-md);
    }

    .stat-divider {
        display: none;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer {
        padding-bottom: calc(var(--space-2xl) + 70px);
    }

    .mobile-nav {
        display: flex;
    }
}

@media (max-width: 480px) {
    .menu-content nav a {
        font-size: 1.8rem;
    }

    .tab-meta {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* ==========================================================================
   29. Print
   ========================================================================== */

@media print {
    /* Hide navigation, decorative overlays, interactive elements, footer */
    .topbar,
    .menu-overlay,
    .menu-btn,
    .menu-close,
    .page-transition,
    .hero-overlay,
    .page-hero-overlay,
    .immersive-overlay,
    .closing-overlay,
    .hero-scroll,
    .hero-cta,
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-outline-white,
    .btn-ghost,
    .link-arrow,
    .play-btn,
    .skip-link,
    .footer {
        display: none;
    }

    /* Reset colors: black text on white */
    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
        line-height: 1.5;
    }

    .site-wrapper {
        background: #fff;
    }

    .hero,
    .page-hero,
    .section-dark,
    .section-affiche,
    .section-closing,
    .section-immersive {
        background: #fff;
        color: #000;
    }

    .section-dark h2,
    .section-dark .value-card,
    .section-dark .value-card p,
    .affiche-content,
    .affiche-content h2,
    .closing-content h2,
    .closing-content p,
    .immersive-content h2,
    .immersive-content p,
    .tab-panel p,
    .tab-meta strong {
        color: #000;
    }

    /* Images print naturally */
    img {
        max-width: 100%;
        page-break-inside: avoid;
    }

    .hero-logo {
        opacity: 1;
        transform: none;
        animation: none;
        filter: none;
    }

    .hero-signature,
    .hero-now {
        opacity: 1;
        animation: none;
        color: #333;
    }

    /* Remove shadows, rounded corners, transforms for clean print */
    * {
        box-shadow: none;
        text-shadow: none;
    }

    a {
        color: #000;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    .topbar-logo a[href]::after,
    .footer-nav a[href]::after,
    .hero-now::after {
        content: none;
    }

    /* Grids collapse for single-column print */
    .split-content,
    .contact-grid,
    .troupe-intro-grid,
    .affiche-inner {
        grid-template-columns: 1fr;
    }

    /* Page breaks */
    h1, h2, h3 {
        page-break-after: avoid;
    }

    .section,
    .section-dark,
    .section-cream {
        page-break-inside: avoid;
        padding: 1rem 0;
    }
}

