/* ============================================================
   LES APACHES 2 — MAIN STYLESHEET
   Design blanc · carré · pur · éditorial 2026
   Version statique HTML/CSS/JS
   ============================================================ */


/* ============================================================
   0. FONTS — Molitor PDE (Custom)
   ============================================================ */

@supports (font-variation-settings: normal) {
    @font-face {
        font-family: 'Molitor';
        src: url('../fonts/MolitorPDEVariableGX.ttf') format('truetype');
        font-weight: 100 900;
        font-style: normal;
        font-display: swap;
    }
    @font-face {
        font-family: 'Molitor';
        src: url('../fonts/MolitorPDEVariableItalicGX.ttf') format('truetype');
        font-weight: 100 900;
        font-style: italic;
        font-display: swap;
    }
}

@font-face {
    font-family: 'Molitor';
    src: url('../fonts/MolitorPDE-DisplayLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Molitor';
    src: url('../fonts/MolitorPDE-DisplayLightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Molitor';
    src: url('../fonts/MolitorPDE-DisplayRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Molitor';
    src: url('../fonts/MolitorPDE-DisplayItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Molitor';
    src: url('../fonts/MolitorPDE-DisplayBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Molitor';
    src: url('../fonts/MolitorPDE-DisplayBoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Molitor Text';
    src: url('../fonts/MolitorPDE-TextLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Molitor Text';
    src: url('../fonts/MolitorPDE-TextRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Molitor Text';
    src: url('../fonts/MolitorPDE-TextBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
    --white:        #FFFFFF;
    --paper:        #F9F7F4;
    --stone:        #EDEAE4;
    --stone-light:  #F4F2EE;
    --ink:          #0A0A0A;
    --ink-70:       rgba(10,10,10,.70);
    --ink-50:       rgba(10,10,10,.50);
    --ink-30:       rgba(10,10,10,.30);
    --ink-10:       rgba(10,10,10,.10);
    --ink-05:       rgba(10,10,10,.05);
    --border:       rgba(10,10,10,.12);
    --border-strong:rgba(10,10,10,.22);

    --font-serif:   'Molitor', 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --nav-h:        68px;
    --container:    1280px;
    --gap:          clamp(24px, 4vw, 60px);

    --ease:         cubic-bezier(.4,0,.2,1);
    --dur:          .3s;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
svg { display: block; }

::selection { background: var(--ink); color: var(--white); }


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.01em;
}

.t-display {
    font-family: var(--font-serif);
    font-size: clamp(56px, 10vw, 140px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.02em;
}

.t-hero {
    font-family: var(--font-serif);
    font-size: clamp(48px, 8vw, 108px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.02em;
}

.t-h1 {
    font-size: clamp(40px, 5vw, 72px);
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.0;
}

.t-h2 {
    font-size: clamp(28px, 3.5vw, 52px);
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
}

.t-h3 {
    font-size: clamp(22px, 2.5vw, 36px);
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

.t-h4 {
    font-size: clamp(18px, 2vw, 26px);
    font-family: var(--font-serif);
    font-weight: 400;
}

.t-body-lg { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.7; }
.t-body     { font-size: 16px; line-height: 1.65; }
.t-small    { font-size: 13px; line-height: 1.5; }

.t-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-50);
}

.t-label-dark {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink);
}

.t-quote {
    font-family: var(--font-serif);
    font-size: clamp(22px, 2.8vw, 38px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.35;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.container--wide {
    max-width: 1440px;
    padding: 0 var(--gap);
    margin: 0 auto;
}

.container--narrow {
    max-width: 800px;
    padding: 0 var(--gap);
    margin: 0 auto;
}

.section {
    padding: clamp(80px, 10vw, 140px) 0;
}

.section--sm {
    padding: clamp(48px, 6vw, 80px) 0;
}

.section--xs {
    padding: clamp(32px, 4vw, 56px) 0;
}

.section--paper { background: var(--paper); }
.section--stone { background: var(--stone-light); }
.section--ink   { background: var(--ink); color: var(--white); }

.grid { display: grid; }
.flex { display: flex; }

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(40px, 6vw, 80px);
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.section-header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
}


/* ============================================================
   5. NAVIGATION
   ============================================================ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

.site-nav.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,.08);
}

.site-nav.nav--transparent {
    background: transparent;
    border-bottom-color: rgba(255,255,255,.2);
}

.site-nav.nav--transparent .nav__logo-text,
.site-nav.nav--transparent .nav__link,
.site-nav.nav--transparent .nav__burger span {
    color: var(--white);
}

.site-nav.nav--transparent .nav__burger span {
    background: var(--white);
}

/* Logo switching */
.nav__logo-img { display: block; }
.nav--transparent .nav__logo-img--noir  { display: none; }
.nav--transparent .nav__logo-img--blanc { display: block; }
.nav__logo-img--noir  { display: block; }
.nav__logo-img--blanc { display: none; }

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav__logo img,
.nav__logo-img {
    height: auto;
    max-height: 52px;
    width: auto;
    max-width: 200px;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--ink);
    transition: color var(--dur);
}

.nav__logo-subtitle {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-50);
    display: block;
    margin-top: 1px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    list-style: none;
}

.nav__item { position: relative; list-style: none; }

.nav__link {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
    padding-bottom: 2px;
    transition: color var(--dur);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--ink);
    transition: width var(--dur) var(--ease);
}

.nav__link:hover::after,
.nav__link.current::after { width: 100%; }

.nav__cta {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: transparent;
    transition: background var(--dur), color var(--dur);
    white-space: nowrap;
}

.nav__cta:hover { background: var(--ink); color: var(--white); }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--ink);
    transition: transform var(--dur), opacity var(--dur);
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav__overlay {
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 48px var(--gap);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    border-top: 1px solid var(--border);
    overflow-y: auto;
}

.nav__overlay.is-open { transform: translateX(0); }

.nav__overlay .nav__link {
    font-size: 24px;
    font-family: var(--font-serif);
    letter-spacing: 0;
    text-transform: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 400;
}

.nav__overlay .nav__link::after { display: none; }

body.menu-open { overflow: hidden; }

/* Desktop dropdown */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: inherit;
    line-height: 1;
    vertical-align: middle;
}

.nav__sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 2px solid var(--ink);
    padding: 6px 0;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s var(--ease);
    z-index: 200;
}

.nav__item--has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

.nav__item--has-children.is-open > .nav__sub {
    opacity: 1;
    pointer-events: auto;
}

.nav__sub-link {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
    transition: background var(--dur);
    white-space: nowrap;
}

.nav__sub-link:hover,
.nav__sub-link.current { background: var(--stone); }

/* Mobile overlay list */
.nav__overlay-list { list-style: none; width: 100%; }

.nav__overlay-list .nav__item {
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.nav__overlay-list .nav__link {
    flex: 1;
    font-size: 24px;
    font-family: var(--font-serif);
    letter-spacing: 0;
    text-transform: none;
    padding: 16px 0;
    font-weight: 400;
    border-bottom: none;
}

.nav__overlay-list .nav__link::after { display: none; }

.nav__overlay-list .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    transition: transform .25s var(--ease);
}

.nav__overlay-list .nav__item--has-children.is-open > .nav__toggle {
    transform: rotate(180deg);
}

.nav__overlay-list .nav__sub {
    position: static;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: none;
    border-top: 1px solid var(--border);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

.nav__overlay-list .nav__item--has-children.is-open > .nav__sub {
    max-height: 600px;
    pointer-events: auto;
}

.nav__overlay-list .nav__sub-link {
    padding: 12px 16px;
    font-size: 14px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ink-70);
    border-bottom: 1px solid var(--border);
    background: var(--paper);
    white-space: normal;
}

.nav__overlay-list .nav__sub-link:last-child { border-bottom: none; }
.site-nav.nav--transparent .nav__toggle { color: var(--white); }
.nav__item--active .nav__link { opacity: 1; font-weight: 600; }


/* ============================================================
   6. HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero--slider {
    height: 100vh;
    min-height: 600px;
}

.hero__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
}

.hero__slide.is-active { opacity: 1; }

.hero__slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.06);
    transition: transform 8s linear;
}

.hero__slide.is-active .hero__slide-bg { transform: scale(1); }

.hero__slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,.05) 40%,
        rgba(0,0,0,.55) 80%,
        rgba(0,0,0,.75) 100%
    );
}

.hero__pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    padding: 0;
    border: none;
    cursor: pointer;
    transition: background var(--dur), transform var(--dur);
}

.hero__dot.is-active {
    background: var(--white);
    transform: scale(1.5);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0.55) 80%,
        rgba(0,0,0,0.75) 100%
    );
}

.hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 var(--gap) clamp(48px, 8vh, 100px);
    max-width: var(--container);
    margin: 0 auto;
    color: var(--white);
}

.hero__label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,.6);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(52px, 9vw, 130px);
    font-weight: 400;
    line-height: .93;
    letter-spacing: -.02em;
    margin-bottom: 32px;
    max-width: 14ch;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 28px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,.80);
    letter-spacing: .04em;
}

.hero__meta-sep { opacity: .4; font-size: 10px; }

.hero__scroll {
    position: absolute;
    bottom: 36px;
    right: var(--gap);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    writing-mode: vertical-rl;
}

/* Hero content inside slider slides */
.hero__slide .hero__content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 0 var(--gap) clamp(80px, 10vh, 120px);
    max-width: none;
    margin: 0;
}

.hero--split {
    height: auto;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.hero--split .hero__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: calc(var(--nav-h) + 80px) var(--gap) 80px;
    background: var(--white);
}

.hero--split .hero__right {
    position: relative;
    overflow: hidden;
}

.hero--split .hero__right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero--split .hero__title { color: var(--ink); }
.hero--split .hero__label { color: var(--ink-50); }
.hero--split .hero__meta  { color: var(--ink-70); }


/* ============================================================
   7. TICKER
   ============================================================ */
.ticker {
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
    padding: 14px 0;
    border-top: 1px solid var(--ink);
}

.ticker__track {
    display: flex;
    gap: 0;
    animation: ticker-scroll 40s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker__item {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 0 32px;
    opacity: .75;
    display: flex;
    align-items: center;
    gap: 32px;
}

.ticker__item::after {
    content: '·';
    opacity: .4;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.ticker:hover .ticker__track { animation-play-state: paused; }


/* ============================================================
   8. SECTION SAISON
   ============================================================ */
.saison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.spectacle-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background var(--dur) var(--ease);
}

.spectacle-card:hover { background: var(--paper); }

.spectacle-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: var(--stone);
}

.spectacle-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.spectacle-card:hover .spectacle-card__image img { transform: scale(1.04); }

.spectacle-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.spectacle-card__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: 12px;
}

.spectacle-card__title {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 12px;
    flex: 1;
}

.spectacle-card__meta {
    font-size: 13px;
    color: var(--ink-50);
    line-height: 1.5;
    margin-bottom: 20px;
}

.spectacle-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: gap var(--dur);
}

.spectacle-card__link:hover { gap: 14px; }
.spectacle-card__link svg { flex-shrink: 0; }

.spectacle-card--featured {
    grid-column: span 2;
    grid-row: span 2;
    display: grid;
    grid-template-rows: 1fr auto;
}

.spectacle-card--featured .spectacle-card__image {
    aspect-ratio: unset;
    flex: 1;
    height: auto;
    min-height: 420px;
}


/* ============================================================
   9. MANIFESTE
   ============================================================ */
.manifeste {
    background: var(--ink);
    color: var(--white);
    padding: clamp(80px, 10vw, 160px) 0;
}

.manifeste__eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 48px;
}

.manifeste__title {
    font-family: var(--font-serif);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.02em;
    margin-bottom: 60px;
    color: var(--white);
}

.manifeste__body {
    columns: 2;
    column-gap: clamp(40px, 6vw, 80px);
    max-width: 1100px;
}

.manifeste__body p {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.75;
    color: rgba(255,255,255,.78);
    margin-bottom: 1.4em;
    break-inside: avoid;
}

.manifeste__body p:first-child {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2vw, 28px);
    font-style: italic;
    color: rgba(255,255,255,.92);
    column-span: all;
    margin-bottom: 40px;
}

.manifeste__signature {
    margin-top: 48px;
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    gap: 16px;
}

.manifeste__signature::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(255,255,255,.3);
}

.manifeste__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 56px;
}

.manifeste__partenaires {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.manifeste__partners-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 24px;
    text-align: center;
}

.manifeste__logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.manifeste__logo-box {
    background: var(--white);
    padding: 14px 22px;
    min-height: 60px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--dur);
}

.manifeste__logo-box:hover { opacity: .85; }

.manifeste__logo-box img {
    max-height: 32px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(40%);
    transition: filter var(--dur);
}

.manifeste__logo-box:hover img { filter: grayscale(0%); }

.manifeste__logo-box--text {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-70);
}

/* Short presentation text */
.manifeste__body--short p { text-align: justify; }

.manifeste__body--short p:first-child {
    font-family: var(--font-sans);
    font-size: clamp(15px, 1.3vw, 18px);
    font-style: normal;
    color: rgba(255,255,255,.78);
    column-span: unset;
    margin-bottom: 1.4em;
}


/* ============================================================
   10. PRESSE QUOTES (archive page)
   ============================================================ */
.presse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
}

.presse-card {
    background: var(--white);
    padding: clamp(32px, 4vw, 56px);
    display: flex;
    flex-direction: column;
}

.presse-card__quote {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2vw, 26px);
    font-style: italic;
    line-height: 1.45;
    flex: 1;
    margin-bottom: 28px;
    color: var(--ink);
}

.presse-card__quote::before {
    content: '\201C';
    font-size: 4em;
    line-height: .2;
    vertical-align: -.4em;
    color: var(--ink-10);
    font-family: var(--font-serif);
    display: inline-block;
    margin-right: .05em;
}

.presse-card__source {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.presse-card__media {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink);
}

.presse-card__detail { font-size: 12px; color: var(--ink-50); }
.presse-card__sep { color: var(--ink-30); font-size: 10px; }

.presse-card--featured {
    grid-column: span 2;
    background: var(--stone-light);
    padding: clamp(48px, 6vw, 80px);
}

.presse-card--featured .presse-card__quote {
    font-size: clamp(24px, 3vw, 42px);
    max-width: 900px;
}


/* ============================================================
   11. ENSEMBLE
   ============================================================ */
.ensemble {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 0;
    min-height: 640px;
}

.ensemble__content {
    padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ensemble__image {
    position: relative;
    overflow: hidden;
    background: var(--stone);
}

.ensemble__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ensemble__body {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.75;
    color: var(--ink-70);
    margin: 24px 0 32px;
    max-width: 54ch;
}

.ensemble__valeurs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 4px;
    margin-bottom: 40px;
}

.ensemble__valeur {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--border-strong);
    color: var(--ink-70);
    transition: background var(--dur), border-color var(--dur), color var(--dur);
}

.ensemble__valeur:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.ensemble__ctas { display: flex; flex-wrap: wrap; gap: 12px; }


/* ============================================================
   12. ARTISTES
   ============================================================ */
.artistes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}

.artiste-card {
    background: var(--white);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.artiste-card__image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--stone);
}

.artiste-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .6s var(--ease);
    filter: grayscale(20%);
}

.artiste-card:hover .artiste-card__image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.artiste-card__body {
    padding: 20px 22px 24px;
    border-top: 1px solid var(--border);
}

.artiste-card__name {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 4px;
    line-height: 1.2;
}

.artiste-card__role { font-size: 12px; color: var(--ink-50); letter-spacing: .04em; }


/* ============================================================
   13. VIDEOS
   ============================================================ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.video-card {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    cursor: pointer;
}

.video-card__thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .75;
    transition: opacity .4s var(--ease), transform .6s var(--ease);
}

.video-card:hover .video-card__thumb img {
    opacity: .9;
    transform: scale(1.04);
}

.video-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card__play {
    width: 56px;
    height: 56px;
    border: 1.5px solid rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--dur), border-color var(--dur);
}

.video-card:hover .video-card__play {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.9);
}

.video-card__body {
    padding: 20px 22px;
    background: var(--ink);
    color: var(--white);
}

.video-card__title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 6px;
}

.video-card__meta { font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .04em; }

.video-card--soon { cursor: default; }
.video-card--soon .video-card__thumb img { opacity: .45; }

.video-card__soon-badge {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.3);
    padding: 6px 14px;
}


/* ============================================================
   14. PARTENAIRES
   ============================================================ */
.partenaires {
    background: var(--paper);
    padding: clamp(60px, 8vw, 100px) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partenaires__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 60px;
    margin-top: 40px;
}

.partenaire-item { display: flex; align-items: center; }

.partenaire-item img {
    max-height: 48px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .6;
    transition: opacity var(--dur), filter var(--dur);
}

.partenaire-item:hover img { filter: grayscale(0%); opacity: 1; }

.partenaire-item--text {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-50);
    transition: color var(--dur);
}

.partenaire-item--text:hover { color: var(--ink); }


/* ============================================================
   15. DISCOGRAPHIE
   ============================================================ */
.disque-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    align-items: start;
}

.disque-card__cover {
    width: 200px;
    height: 200px;
    background: var(--stone);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.disque-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.disque-card__cover-placeholder { width: 100%; height: 100%; background: var(--stone); }

.disque-card__info { padding-top: 8px; }

.disque-card__title {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2vw, 28px);
    margin-bottom: 8px;
}

.disque-card__meta { font-size: 13px; color: var(--ink-50); margin-bottom: 16px; line-height: 1.6; }

.disque-card__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-30);
    margin-bottom: 16px;
    display: block;
}

.disque-card__desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-70);
    max-width: 60ch;
    margin-bottom: 24px;
}

.disque-card__ecouter { display: flex; flex-wrap: wrap; gap: 10px; }

.disque-card__prix-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }

.disque-card__prix-badge {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border: 1px solid var(--border-strong);
    color: var(--ink);
}

.disque-card__prix {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.disque-card--upcoming { opacity: .72; }
.disque-card--upcoming .disque-card__cover { position: relative; }

.disque-card__upcoming-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 5px 10px;
}

.btn-stream {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 9px 18px;
    border: 1px solid var(--border-strong);
    color: var(--ink);
    transition: background var(--dur), border-color var(--dur), color var(--dur);
}

.btn-stream:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.btn-stream__logo {
    height: 14px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    transition: filter var(--dur);
}

.btn-stream:hover .btn-stream__logo { filter: brightness(0) invert(1); }


/* ============================================================
   16. PAGE SINGLE SPECTACLE
   ============================================================ */
.spectacle-hero {
    height: 80vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.spectacle-hero__bg { position: absolute; inset: 0; }
.spectacle-hero__bg img { width: 100%; height: 100%; object-fit: cover; }

.spectacle-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.7) 100%);
}

.spectacle-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 var(--gap) 60px;
    max-width: var(--container);
    margin: 0 auto;
    color: var(--white);
}

.spectacle-meta-bar { background: var(--paper); border-bottom: 1px solid var(--border); padding: 24px 0; }

.spectacle-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px 40px;
}

.spectacle-meta-item__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-30);
    margin-bottom: 4px;
}

.spectacle-meta-item__value { font-size: 15px; color: var(--ink); font-weight: 500; }

.spectacle-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: clamp(40px, 5vw, 80px);
    padding-top: clamp(48px, 6vw, 80px);
    padding-bottom: clamp(80px, 8vw, 120px);
}

.spectacle-body__text { font-size: clamp(15px, 1.3vw, 18px); line-height: 1.8; color: var(--ink-70); }
.spectacle-body__text p { margin-bottom: 1.4em; }
.spectacle-sidebar { padding-top: 4px; }

.spectacle-sidebar__block { padding: 24px 0; border-top: 1px solid var(--border); }
.spectacle-sidebar__block:first-child { border-top: none; }

.spectacle-sidebar__title {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-30);
    margin-bottom: 10px;
}

.spectacle-sidebar__value { font-size: 15px; color: var(--ink); line-height: 1.6; }
.spectacle-sidebar__btns { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }


/* ============================================================
   17. PAGE CONTACT
   ============================================================ */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-split__info {
    padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
    background: var(--stone-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-split__form { padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px); }

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail:first-of-type { border-top: 1px solid var(--border); }

.contact-detail__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-30);
}

.contact-detail__value { font-size: 17px; font-weight: 500; color: var(--ink); }

.form-field { margin-bottom: 24px; }

.form-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-strong);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: border-color var(--dur);
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--ink); }

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

.form-message { padding: 14px 20px; font-size: 14px; margin-top: 16px; display: none; }
.form-message--success { background: #e8f5e9; color: #1b5e20; }
.form-message--error   { background: #fce4ec; color: #b71c1c; }


/* ============================================================
   18. PAGE MÉCÉNAT
   ============================================================ */
.mecenat-header {
    padding: calc(var(--nav-h) + 80px) 0 80px;
    background: var(--ink);
    color: var(--white);
}

.mecenat-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-top: 60px;
}

.tier-card { background: var(--white); padding: clamp(40px, 5vw, 64px); }
.tier-card--premium { background: var(--ink); color: var(--white); }
.tier-card--premium .tier-card__price { color: var(--white); }
.tier-card--premium .tier-card__benefit { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.8); }
.tier-card--premium .tier-card__benefit-icon { color: rgba(255,255,255,.4); }
.tier-card--premium .tier-card__label { color: rgba(255,255,255,.4); }
.tier-card--premium .tier-card__fiscal { color: rgba(255,255,255,.4); }

.tier-card__label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-30);
    margin-bottom: 12px;
}

.tier-card__name {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    margin-bottom: 8px;
}

.tier-card__price {
    font-size: 48px;
    font-family: var(--font-serif);
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--ink);
    line-height: 1;
}

.tier-card__price-unit { font-size: 14px; font-family: var(--font-sans); color: var(--ink-50); margin-bottom: 32px; }
.tier-card__benefits { margin-bottom: 32px; }

.tier-card__benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    font-size: 15px;
    color: var(--ink-70);
    line-height: 1.5;
}

.tier-card__benefit-icon { color: var(--ink-30); margin-top: 2px; flex-shrink: 0; }

.tier-card__fiscal {
    font-size: 12px;
    color: var(--ink-30);
    margin-bottom: 28px;
    padding: 12px;
    background: var(--paper);
    border-left: 2px solid var(--ink-10);
    font-style: italic;
}

.tier-card--premium .tier-card__fiscal {
    background: rgba(255,255,255,.06);
    border-left-color: rgba(255,255,255,.15);
}


/* ============================================================
   19. PAGE PRESSE (archive)
   ============================================================ */
.presse-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1px;
    background: var(--border);
}

.presse-archive-card {
    background: var(--white);
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
}

.presse-archive-card__quote {
    font-family: var(--font-serif);
    font-size: clamp(16px, 1.5vw, 20px);
    font-style: italic;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 20px;
    color: var(--ink);
}

.presse-archive-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.presse-archive-card__media {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.presse-archive-card__date { font-size: 12px; color: var(--ink-50); }


/* ============================================================
   20. PAGE TRANSMISSION
   ============================================================ */
.transmission-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: clamp(80px, 10vw, 140px) 0;
}

.transmission-activities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.activity-card { background: var(--white); padding: 40px 36px; }

.activity-card__num {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 400;
    color: var(--ink-10);
    line-height: 1;
    margin-bottom: 20px;
}

.activity-card__title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 14px;
}

.activity-card__body { font-size: 15px; line-height: 1.7; color: var(--ink-70); }


/* ============================================================
   21. PAGE MÉDIAS
   ============================================================ */
.medias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.media-card { background: var(--ink); overflow: hidden; position: relative; cursor: pointer; }

.media-card__thumb { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.media-card__thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: opacity .4s, transform .6s var(--ease); }
.media-card:hover .media-card__thumb img { opacity: .85; transform: scale(1.04); }

.media-card__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }

.media-card__play-btn {
    width: 52px; height: 52px;
    border: 1.5px solid rgba(255,255,255,.55);
    display: flex; align-items: center; justify-content: center;
    transition: background var(--dur), border-color var(--dur);
}

.media-card:hover .media-card__play-btn { background: rgba(255,255,255,.12); border-color: white; }

.media-card__body { padding: 18px 22px 22px; color: var(--white); }
.media-card__title { font-family: var(--font-serif); font-size: 17px; margin-bottom: 4px; }
.media-card__meta { font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .05em; }


/* ============================================================
   22. PAGE CRÉATIONS (grille)
   ============================================================ */
.creations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}

.creation-card { background: var(--white); overflow: hidden; transition: background var(--dur); }
.creation-card:hover { background: var(--paper); }

.creation-card__img { aspect-ratio: 1/1; overflow: hidden; background: var(--stone); }
.creation-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); filter: grayscale(25%); }
.creation-card:hover .creation-card__img img { transform: scale(1.04); filter: grayscale(0%); }

.creation-card__body { padding: 20px 22px 24px; border-top: 1px solid var(--border); }

.creation-card__year {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-30);
    margin-bottom: 8px;
}

.creation-card__title {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 6px;
}

.creation-card__sub { font-size: 12px; color: var(--ink-50); }


/* ============================================================
   23. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 14px 28px;
    transition: background var(--dur), color var(--dur), border-color var(--dur);
    cursor: pointer;
    white-space: nowrap;
    border: none;
}

.btn--primary { background: var(--ink); color: var(--white); }
.btn--primary:hover { background: #2a2a2a; }

.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }

.btn--outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.5); }
.btn--outline-white:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn--lg { padding: 18px 36px; font-size: 12px; }
.btn--sm { padding: 10px 20px; font-size: 10px; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: gap var(--dur), border-color var(--dur);
}

.link-arrow:hover { gap: 16px; }

.link-arrow--white { color: var(--white); border-bottom-color: rgba(255,255,255,.4); }
.link-arrow--white:hover { border-bottom-color: var(--white); }


/* ============================================================
   24. DIVIDERS & UTILITIES
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.divider--strong { border-color: var(--ink); }
.divider--thick  { border-top-width: 3px; }

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js .reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }


/* ============================================================
   25. FOOTER
   ============================================================ */
.site-footer {
    background: var(--ink);
    color: var(--white);
    padding: clamp(60px, 8vw, 100px) 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.3fr;
    gap: clamp(40px, 5vw, 80px);
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand-name { font-family: var(--font-serif); font-size: 24px; font-weight: 400; margin-bottom: 8px; }

.footer__brand-sub {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 24px;
}

.footer__tagline { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; max-width: 32ch; margin-bottom: 28px; }

.footer__social { display: flex; gap: 14px; flex-wrap: wrap; }

.footer__social-link {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.55);
    transition: border-color var(--dur), color var(--dur), background var(--dur);
}

.footer__social-link:hover { border-color: rgba(255,255,255,.6); color: var(--white); }

.footer__col-title {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 20px;
}

.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav-link { font-size: 14px; color: rgba(255,255,255,.6); transition: color var(--dur); }
.footer__nav-link:hover { color: var(--white); }

.footer__contact-item { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }

.footer__contact-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
}

.footer__contact-value { font-size: 14px; color: rgba(255,255,255,.7); }

.footer__contact-link {
    color: rgba(255,255,255,.7);
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--dur);
}

.footer__contact-link:hover { color: var(--white); }

.footer__contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.2);
    padding: 9px 16px;
    transition: color var(--dur), border-color var(--dur);
}

.footer__contact-btn:hover { color: var(--white); border-color: rgba(255,255,255,.5); }

.footer__bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__copy { font-size: 12px; color: rgba(255,255,255,.3); letter-spacing: .04em; }

.footer__legal { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.footer__legal-link {
    font-size: 11px;
    color: rgba(255,255,255,.35);
    transition: color var(--dur);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer__legal-link:hover { color: rgba(255,255,255,.7); }

.footer__mentions { font-size: 11px; color: rgba(255,255,255,.2); text-align: right; }

.footer__logo-link { display: inline-block; margin-bottom: 20px; }
.footer__logo-img { max-height: 80px; width: auto; display: block; }

.footer__col { }

.footer__newsletter-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 18px; }

.footer__newsletter-form { display: flex; flex-direction: column; gap: 10px; }

.footer__newsletter-input {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 13px;
    padding: 10px 14px;
    outline: none;
    transition: border-color var(--dur);
}

.footer__newsletter-input::placeholder { color: rgba(255,255,255,.3); }
.footer__newsletter-input:focus { border-color: rgba(255,255,255,.5); }

.footer__newsletter-btn {
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    transition: background var(--dur), color var(--dur);
    align-self: flex-start;
}

.footer__newsletter-btn:hover { background: rgba(255,255,255,.85); }


/* ============================================================
   26. PAGE WRAPPER
   ============================================================ */
.page-body { padding-top: var(--nav-h); }

.page-header {
    padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 64px);
    background: var(--paper);
    border-bottom: 1px solid var(--border);
}

.page-hero-image { width: 100%; aspect-ratio: 21/9; overflow: hidden; position: relative; }
.page-hero-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }


/* ============================================================
   27. VIDEO MODAL
   ============================================================ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.video-modal.is-open { opacity: 1; pointer-events: all; }

.video-modal__inner {
    position: relative;
    width: 90vw;
    max-width: 1100px;
    aspect-ratio: 16/9;
}

.video-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    color: rgba(255,255,255,.6);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color var(--dur);
}

.video-modal__close:hover { color: var(--white); }
.video-modal__inner iframe { width: 100%; height: 100%; border: none; }


/* ============================================================
   28. MANIFESTE MODAL
   ============================================================ */
.manifeste-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manifeste-modal[hidden] { display: none; }

.manifeste-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6,6,6,.88);
    cursor: pointer;
}

.manifeste-modal__inner {
    position: relative;
    z-index: 1;
    background: var(--ink);
    color: var(--white);
    width: min(780px, calc(100vw - 40px));
    max-height: 88vh;
    overflow-y: auto;
    padding: clamp(40px, 6vw, 72px);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.2) transparent;
}

.manifeste-modal__close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 26px;
    line-height: 1;
    color: rgba(255,255,255,.45);
    cursor: pointer;
    transition: color var(--dur);
    z-index: 2;
}

.manifeste-modal__close:hover { color: var(--white); }

.manifeste-modal__content .manifeste__body { columns: 1; max-width: 100%; }


/* ============================================================
   29. SAISON (page dédiée)
   ============================================================ */
.saison-spectacle {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.saison-spectacle__img { aspect-ratio: 4/3; overflow: hidden; }
.saison-spectacle__img img { width: 100%; height: 100%; object-fit: cover; }

.saison-spectacle__dates {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.saison-spectacle__date { font-family: var(--font-sans); font-size: 14px; letter-spacing: .04em; color: var(--ink-70); }


/* ============================================================
   30. ARTISTES — PAGE DÉDIÉE
   ============================================================ */
.artistes-category {
    padding: clamp(40px, 5vw, 64px) 0;
    border-top: 1px solid var(--border);
}

.artistes-category:first-child { border-top: none; }

.artistes-category__title {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-30);
    margin-bottom: 28px;
}

.artistes-category__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1px;
    background: var(--border);
}

.artiste-card-v2 { background: var(--white); overflow: hidden; transition: background var(--dur); }
.artiste-card-v2:hover { background: var(--paper); }

.artiste-card-v2__img { aspect-ratio: 3/4; overflow: hidden; background: var(--stone); }
.artiste-card-v2__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .6s var(--ease);
}
.artiste-card-v2:hover .artiste-card-v2__img img { transform: scale(1.04); }

.artiste-card-v2__placeholder { width: 100%; height: 100%; background: var(--stone); }

.artiste-card-v2__nom { font-family: var(--font-serif); font-size: 18px; font-weight: 400; line-height: 1.2; padding: 16px 18px 4px; }
.artiste-card-v2__detail { font-size: 11px; color: var(--ink-50); padding: 0 18px 18px; letter-spacing: .03em; line-height: 1.5; }

.artistes-category__list { display: flex; flex-wrap: wrap; gap: 8px 0; }

.artiste-inline {
    padding: 14px 0;
    border-top: 1px solid var(--border);
    width: 100%;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.artiste-inline__nom { font-family: var(--font-serif); font-size: clamp(18px, 2vw, 24px); font-weight: 400; min-width: 240px; }
.artiste-inline__detail { font-size: 13px; color: var(--ink-50); letter-spacing: .02em; }

.artistes-category--featured .artiste-card-v2__img { aspect-ratio: 4/5; }
.artistes-category--featured .artiste-card-v2__nom { font-size: 26px; padding: 20px 22px 6px; }
.artistes-category--featured .artiste-card-v2__detail { font-size: 13px; padding: 0 22px 22px; }
.artistes-category--featured .artistes-category__grid { grid-template-columns: minmax(260px, 380px); }


/* ============================================================
   31. PRESSE CAROUSEL (homepage)
   ============================================================ */
.presse-carousel { position: relative; }
.presse-carousel__viewport { overflow: hidden; }

.presse-carousel__track {
    display: flex;
    transition: transform .65s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.presse-item {
    flex: 0 0 100%;
    padding: clamp(48px,6vw,80px) 0 clamp(32px,4vw,48px);
}

.presse-item__quote {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3.5vw, 48px);
    font-style: italic;
    line-height: 1.35;
    color: var(--ink);
    max-width: 78ch;
    margin-bottom: 36px;
}

.presse-item__source { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-family: var(--font-sans); }

.presse-item__media { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.presse-item__sep { color: var(--ink-30); font-size: 10px; }
.presse-item__detail { font-size: 12px; color: var(--ink-50); }

.presse-carousel__nav { display: flex; align-items: center; gap: 24px; padding-top: 24px; border-top: 1px solid var(--border); }

.presse-carousel__btn {
    width: 40px; height: 40px;
    border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink);
    flex-shrink: 0;
    transition: background var(--dur), color var(--dur);
}

.presse-carousel__btn:hover { background: var(--ink); color: var(--white); }

.presse-carousel__dots { display: flex; gap: 8px; flex: 1; }

.presse-carousel__dot {
    width: 24px; height: 2px;
    background: var(--ink-10);
    transition: background var(--dur), width var(--dur);
    cursor: pointer;
    flex-shrink: 0;
}

.presse-carousel__dot.is-active { background: var(--ink); width: 40px; }


/* ============================================================
   32. NOS COMPLICES
   ============================================================ */
.complices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1px;
    background: var(--border);
}

.complice-card {
    background: var(--white);
    min-height: 120px;
    display: flex; align-items: center; justify-content: center;
    padding: 28px 24px;
    transition: background var(--dur);
}

.complice-card:hover { background: var(--paper); }

.complice-card img { max-height: 48px; max-width: 140px; object-fit: contain; filter: grayscale(40%); transition: filter var(--dur); }
.complice-card:hover img { filter: grayscale(0%); }

.complice-card__text {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-50);
    text-align: center;
}


/* ============================================================
   33. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .saison-grid { grid-template-columns: repeat(2, 1fr); }
    .spectacle-card--featured { grid-column: span 2; }
    .artistes-grid { grid-template-columns: repeat(3, 1fr); }
    .creations-grid { grid-template-columns: repeat(3, 1fr); }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer__newsletter-form { flex-direction: row; flex-wrap: wrap; }
    .footer__newsletter-input { flex: 1 1 200px; }
}

@media (max-width: 900px) {
    .ensemble { grid-template-columns: 1fr; }
    .ensemble__image { height: 480px; position: relative; }
    .ensemble__image img { position: absolute; }
    .manifeste__body { columns: 1; }
    .presse-grid { grid-template-columns: 1fr; }
    .presse-card--featured { grid-column: span 1; }
    .mecenat-tiers { grid-template-columns: 1fr; }
    .contact-split { grid-template-columns: 1fr; }
    .spectacle-body { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
    .medias-grid { grid-template-columns: repeat(2, 1fr); }
    .transmission-intro { grid-template-columns: 1fr; gap: 40px; }
    .transmission-activities { grid-template-columns: 1fr; }
    .disque-card { grid-template-columns: 140px 1fr; gap: 24px; }
    .disque-card__cover { width: 140px; height: 140px; }
    .hero--split { grid-template-columns: 1fr; height: auto; }
    .hero--split .hero__right { height: 50vh; }
    .hero--split .hero__left { padding-top: calc(var(--nav-h) + 48px); }
    .saison-spectacle { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .nav__menu { display: none; }
    .nav__burger { display: flex; }
    .saison-grid { grid-template-columns: 1fr; }
    .spectacle-card--featured { grid-column: span 1; }
    .artistes-grid { grid-template-columns: repeat(2, 1fr); }
    .creations-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-grid { grid-template-columns: 1fr; }
    .medias-grid { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    .presse-archive-grid { grid-template-columns: 1fr; }
    .disque-card { grid-template-columns: 1fr; }
    .disque-card__cover { width: 100%; height: auto; aspect-ratio: 1/1; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .hero__title { font-size: clamp(44px, 12vw, 80px); }
    .saison-spectacle { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .artistes-grid { grid-template-columns: 1fr; }
    .creations-grid { grid-template-columns: 1fr; }
}