/* Built: 2026-04-08T13:49:01Z */

/* ==========================================================================
   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;

    /* 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;

    /* 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: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.play-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    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;
}


/* ==========================================================================
   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 {
    background: var(--dark);
    padding: var(--space-2xl) 0;
}

.affiche-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.affiche-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.affiche-visual img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

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

.affiche-content {
    color: var(--white);
}

.affiche-content h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.affiche-genre {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.affiche-cta {
    margin-top: var(--space-lg);
}

/* Affiche gallery strip */
.affiche-gallery-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) 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: 220px;
    min-width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
    opacity: 0.85;
    transition: var(--transition);
    cursor: pointer;
}

.affiche-gallery img:hover {
    opacity: 1;
    transform: scale(1.03);
}

.gallery-hint {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-sm);
}

.gallery-hint span {
    color: rgba(255, 255, 255, 0.25);
}

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

.affiche-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.affiche-quote cite {
    font-size: 0.78rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.35);
}



/* ==========================================================================
   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);
}



/* ==========================================================================
   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);
}



/* ==========================================================================
   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);
}


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

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

@media (max-width: 768px) {
    .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;
    }

    .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-content h2 {
        font-size: 2.5rem;
    }

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

    .affiche-gallery img {
        width: 180px;
        min-width: 180px;
        height: 120px;
    }

    .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;
    }
}

@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;
    }
}

