@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

@font-face {
  font-family: 'Champagne & Limousines';
  src: url('../fonts/champagne.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Champagne & Limousines';
  src: url('../fonts/champagne-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-display: 'Champagne & Limousines', 'Cormorant Garamond', serif;
  --bg:           #f7f2eb;
  --bg-2:         #ede8e0;
  --bg-3:         #e3dcd4;
  --text:         #163150;
  --text-muted:   #5c5751;
  --text-dim:     #8a837b;
  --accent:       #c4a265;
  --accent-light: #8a6d3e;
  --accent-dark:  #5a4425;
  --border:       rgba(196, 162, 101, 0.28);
  --border-soft:  rgba(26, 23, 20, 0.1);
  --nav-h:        90px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Navigation ──────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 60px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}
/* Transparent sur hero sombre : texte clair */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0ebe3;
  transition: color 0.3s;
}
.nav-logo-name em { font-style: normal; }
#nav.scrolled .nav-logo-name { color: var(--text); }
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}
#nav.scrolled .nav-logo-img {
  filter: brightness(0);
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.65);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: #f0ebe3; }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

/* Scrollée : fond clair + texte foncé */
#nav.scrolled {
  background: rgba(247, 242, 235, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 23, 20, 0.12);
}
#nav.scrolled .nav-logo { color: var(--text); }
#nav.scrolled .nav-links a { color: var(--text-muted); }
#nav.scrolled .nav-links a:hover,
#nav.scrolled .nav-links a.active { color: var(--text); }
#nav.scrolled .nav-hamburger span { background: var(--text); }

.nav-hamburger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: #f0ebe3;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(247, 242, 235, 0.99);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.8rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--text); }

/* ─── Scroll indicator ────────────────────────────────────── */
.scroll-indicator {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transition: opacity 0.5s;
  pointer-events: none;
}
.scroll-indicator.hidden { opacity: 0; }
.scroll-indicator .si-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.5);
}
.scroll-indicator .si-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: siPulse 2s ease-in-out infinite;
}
@keyframes siPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ─── Section base ────────────────────────────────────────── */
.section { position: relative; overflow: hidden; }

.section-label {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
}
.section-label::before { content: '— '; opacity: 0.55; }

/* Médiation — Pratiques corporelles */
.pratiques-inner { max-width: 860px; }
.pratique-bloc {
  padding-bottom: clamp(36px, 5vw, 56px);
  margin-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid rgba(196,162,101,0.16);
}
.pratique-bloc p,
.pratique-enseignante p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0 0 1.1rem;
}
.pratique-nom {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0 0 1.4rem;
}
.pratique-contact {
  margin-top: 1.8rem !important;
  color: var(--text);
  font-weight: 500;
}
.pratique-contact a { color: var(--accent); text-decoration: none; white-space: nowrap; }
.pratique-contact a:hover { text-decoration: underline; }

.section-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 60px);
}

/* Photo backgrounds — filtre uniforme */
.bg-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(18%) contrast(1.07) brightness(0.8);
  transform: scale(1.05);
  transition: transform 0.1s linear;
  will-change: transform;
}
#hero .bg-photo {
  filter: grayscale(0%) contrast(1.08) brightness(0.78) saturate(1.4) hue-rotate(20deg);
  transform: scale(1.08);
}
#atelier .bg-photo {
  transform: scale(1.18);
  transform-origin: center center;
}
.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,12,11,0.3)  0%,
    rgba(13,12,11,0.08) 35%,
    rgba(13,12,11,0.5)  75%,
    rgba(13,12,11,0.88) 100%
  );
}
#hero .bg-overlay {
  background:
    radial-gradient(ellipse 80% 70% at 50% 45%, transparent 30%, rgba(13,12,11,0.82) 100%),
    linear-gradient(to bottom, rgba(13,12,11,0.18) 0%, transparent 40%, rgba(13,12,11,0.55) 100%);
}
.bg-overlay-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,12,11,0.92) 0%,
    rgba(13,12,11,0.72) 38%,
    rgba(13,12,11,0.12) 65%,
    transparent         100%
  );
}
.spectacle-section .bg-overlay-side {
  background: rgba(13,12,11,0.58);
}
.bg-warm {
  position: absolute;
  inset: 0;
  background: rgba(196, 162, 101, 0.035);
  mix-blend-mode: multiply;
}
.bg-overlay-text {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(13, 12, 11, 0.76);
}

/* ─── Reveal animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.32s; }
.reveal-d4 { transition-delay: 0.48s; }

/* ─── Hero — fond photo sombre, texte clair ───────────────── */
#hero {
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Logo dans le hero */
.hero-logo {
  height: clamp(200px, 28vw, 260px);
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 5vw, 60px) clamp(60px, 8vh, 100px);
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8.5vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #f0ebe3;
  margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; color: rgba(240, 235, 227, 0.78); }
.hero-sub {
  font-size: clamp(0.85rem, 1.4vw, 0.96rem);
  color: rgba(240, 235, 227, 0.62);
  font-weight: 300;
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0ebe3;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: color 0.25s, gap 0.25s;
}
.hero-cta:hover { color: var(--accent); gap: 18px; }

.hero-actu {
  position: absolute;
  bottom: clamp(60px, 8vh, 100px);
  right: clamp(20px, 5vw, 60px);
  z-index: 3;
  max-width: 270px;
  border-left: 1px solid var(--accent);
  padding-left: 1.2rem;
}
.hero-actu-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.hero-actu-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: #f0ebe3;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}
.hero-actu-date { font-size: 0.76rem; color: rgba(240, 235, 227, 0.55); }


/* ─── Compagnie — bloc teaser (vidéo + histoire) ─────────── */
.compagnie-histoire {
  margin-top: clamp(60px, 8vw, 100px);
  padding-top: clamp(40px, 5vw, 70px);
  border-top: 1px solid rgba(196,162,101,0.18);
}
.compagnie-histoire .compagnie-section-titre { margin: 0 0 1.8rem; }
.compagnie-histoire-text {
  columns: 2;
  column-gap: clamp(40px, 6vw, 80px);
}
.compagnie-histoire-text p {
  font-size: clamp(0.84rem, 1.3vw, 0.94rem);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.85;
  margin: 0 0 1.1rem;
  text-align: justify;
  break-inside: avoid;
}

.yt-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--bg-3);
}
.yt-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.yt-credit {
  margin-top: 0.8rem;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}
.compagnie-teaser-text {
  padding-top: 0;
}
.compagnie-teaser-text p {
  font-size: clamp(0.84rem, 1.3vw, 0.94rem);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.1rem;
  text-align: justify;
}
.compagnie-section-titre {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.2rem 0;
  line-height: 1;
}

/* ─── Compagnie ───────────────────────────────────────────── */
#compagnie { background: var(--bg-2); }
.compagnie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.compagnie-quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.compagnie-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.compagnie-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.compagnie-photos .ph { overflow: hidden; background: var(--bg-3); }
.compagnie-photos .ph:first-child { grid-column: 1 / -1; aspect-ratio: 16/7; }
.compagnie-photos .ph:not(:first-child) { aspect-ratio: 1; }
.compagnie-photos .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.02) brightness(1.0);
  transition: filter 0.5s, transform 0.6s var(--ease);
}
.compagnie-photos .ph:hover img {
  filter: grayscale(3%) brightness(1.04);
  transform: scale(1.03);
}

.equipe-bloc {
  margin-top: clamp(60px, 8vw, 100px);
  padding-top: clamp(40px, 5vw, 70px);
  border-top: 1px solid rgba(196,162,101,0.18);
}
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px;
  margin-top: clamp(50px, 7vw, 90px);
}
.equipe-card {
  background: var(--bg-3);
  padding: 1.8rem 2rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  min-width: 0;
}
.equipe-card:hover { background: var(--bg); }
.equipe-role {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.equipe-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.equipe-contact {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
  overflow-wrap: break-word;
  word-break: break-all;
}
.equipe-phone {
  word-break: normal;
  white-space: nowrap;
}
.equipe-siret {
  margin-top: 2.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  color: rgba(22,49,80,0.4);
  text-transform: uppercase;
  text-align: center;
}

.equipe-contact a:hover { color: var(--accent); }

/* ─── Équipe permanente : cartes « signature » (photo + accent doré) ─── */
.equipe-grid--perm {
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}
.equipe-card--perm {
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}
.equipe-card--perm .equipe-photo {
  flex: 0 0 38%;
  max-width: 135px;
  overflow: hidden;
  background: var(--bg-2);
}
.equipe-card--perm .equipe-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(22%) contrast(1.05);
  transition: filter 0.3s, transform 0.3s;
}
.equipe-card--perm:hover .equipe-photo img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.equipe-photo--mono {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.equipe-card--perm .equipe-body {
  flex: 1 1 auto;
  min-width: 0;
  padding: 1.35rem 1.5rem;
  border-left: 3px solid var(--accent);
}
.equipe-card--perm .equipe-role {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}
.equipe-card--perm .equipe-name { margin-bottom: 0.25rem; }
.equipe-cie {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.56rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.equipe-affil {
  font-style: italic;
  word-break: normal;
}

/* ─── Spectacles ──────────────────────────────────────────── */
#spectacles { background: var(--bg); }
.spectacle-section {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.spectacle-section .bg-photo {
  transform: none;
  background-position: center 35%;
}
.spectacle-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 5vw, 60px);
  max-width: 600px;
}
.spectacle-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 300;
  color: rgba(196, 162, 101, 0.12);
  line-height: 1;
  margin-bottom: -1.2rem;
  letter-spacing: -0.05em;
  user-select: none;
}
.spectacle-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: #f0ebe3;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.spectacle-title em { font-style: italic; }
.spectacle-subtitle {
  display: block;
  text-transform: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.4em;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(240, 235, 227, 0.72);
  margin-top: 0.5rem;
}
.spectacle-excerpt {
  font-size: 0.87rem;
  color: rgba(240, 235, 227, 0.65);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 1.8rem;
}
.spectacle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.meta-item .meta-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}
.meta-item .meta-val { font-size: 0.8rem; color: rgba(240, 235, 227, 0.62); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid rgba(196, 162, 101, 0.35);
  padding: 12px 22px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, gap 0.25s;
}
.btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #163150;
  gap: 16px;
}
/* btn-outline sur fond photo sombre (spectacles) */
.spectacle-section .btn-outline {
  color: #f0ebe3;
  border-color: rgba(196, 162, 101, 0.4);
}
.spectacle-section .btn-outline:hover { color: #163150; }

/* ─── Calendrier ──────────────────────────────────────────── */
#calendrier { background: var(--bg-2); }
.calendrier-table {
  display: grid;
  gap: 1px;
  background: var(--border-soft);
}
.date-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.4rem 2rem;
  background: var(--bg-2);
  transition: background 0.2s;
}
.date-row:hover { background: var(--bg-3); }
.dr-date {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1;
}
.dr-date small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 3px;
}
.dr-info .dr-show {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2px;
}
.dr-info .dr-venue { font-size: 0.78rem; color: var(--text-muted); }
.dr-badge {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid;
  white-space: nowrap;
}
.dr-badge.confirme { color: var(--accent); border-color: var(--accent); }
.dr-badge.option { color: var(--text-dim); border-color: var(--border-soft); }
.dr-badge.passe { color: var(--text-muted); border-color: var(--border-soft); opacity: 0.55; }
.date-row:has(.dr-badge.passe) { opacity: 0.6; }

/* ─── Spectacles passés (ne tournent plus) ────────────────── */
.spectacles-archive {
  padding: clamp(30px, 5vw, 50px) 0 clamp(50px, 7vw, 80px);
  background: var(--bg);
}
.spectacles-archive .archive-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.spectacles-archive .archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-soft);
}
.spectacles-archive .archive-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.95rem;
  color: var(--text-dim);
}
.spectacles-archive .archive-title { color: var(--text); font-weight: 500; }
.spectacles-archive .archive-sub { color: var(--text-muted); }

/* ─── Galerie ─────────────────────────────────────────────── */
#galerie { background: var(--bg); }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.g-item {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 4/3;
}
.g-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.04) brightness(0.97);
  transition: filter 0.5s, transform 0.6s var(--ease);
}
.g-item:hover img {
  filter: grayscale(3%) contrast(1.03) brightness(1.0);
  transform: scale(1.025);
}
.g-credit {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 0.8rem 0.5rem;
  background: linear-gradient(to top, rgba(13,12,11,0.8), transparent);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: rgba(240, 235, 227, 0.75);
  opacity: 0;
  transition: opacity 0.3s;
}
.g-item:hover .g-credit { opacity: 1; }

.spectacle-section::after {
  content: '';
  position: absolute;
  bottom: 24px;
  right: 28px;
  width: 110px;
  height: 110px;
  background-image: url('../../../../uploads/logo-daki.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
  z-index: 3;
}
.spectacle-section:hover::after { opacity: 0.65; }

.g-item::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 80px;
  height: 80px;
  background-image: url('../../../../uploads/logo-daki.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}
.g-item:hover::after { opacity: 0.65; }

/* Lightbox — toujours sombre */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 12, 11, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(90vw, 1200px);
  max-height: 82vh;
  object-fit: contain;
  filter: grayscale(5%) contrast(1.02) brightness(1.0);
}
.lb-close {
  position: absolute;
  top: 20px; right: 20px;
  color: rgba(240, 235, 227, 0.6);
  font-size: 1.4rem;
  padding: 8px;
  transition: color 0.2s;
}
.lb-close:hover { color: #f0ebe3; }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(240, 235, 227, 0.6);
  font-size: 1.2rem;
  padding: 16px 20px;
  transition: color 0.2s;
}
.lb-nav:hover { color: var(--accent); }
.lb-prev { left: 0; }
.lb-next { right: 0; }
.lb-caption {
  position: absolute;
  bottom: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(240, 235, 227, 0.4);
}

/* ─── Atelier — sous-section distincte ───────────────────── */
#atelier {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
}
.atelier-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.atelier-wrapper {
  border: 1px solid var(--border-soft);
  background: var(--bg-2);
  padding: clamp(36px, 5vw, 72px);
}
.atelier-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border-soft);
  padding: 4px 12px;
  margin-bottom: 1.8rem;
}
.atelier-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.atelier-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.atelier-photo { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-3); }
.atelier-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.02) brightness(0.95);
  transition: filter 0.5s, transform 0.6s var(--ease);
}
.atelier-photo:hover img {
  filter: grayscale(5%) brightness(1.0);
  transform: scale(1.03);
}

/* ─── Presse ──────────────────────────────────────────────── */
#presse { background: var(--bg-2); }
.presse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2px;
}
.p-item {
  background: var(--bg-3);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background 0.25s;
  border-bottom: 1px solid var(--border-soft);
}
.p-item:hover { background: var(--bg); }
.p-source {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.p-titre {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}
.p-extrait {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
}
.p-dl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 3px;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}
.p-dl:hover { color: var(--accent); border-color: var(--accent); }

/* ─── Contact ─────────────────────────────────────────────── */
#contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-block { margin-bottom: 2.5rem; }
.c-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.c-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.c-detail { font-size: 0.95rem; color: var(--text); line-height: 1.9; }
.c-detail a:hover { color: var(--accent); }

/* Section contact sur photo sombre : textes de la colonne gauche en clair */
#contact .c-name,
#contact .c-detail,
#contact .c-detail a { color: #fff; }
#contact .c-legals p { color: rgba(255, 255, 255, 0.62); }
#contact .c-legals { border-top-color: rgba(255, 255, 255, 0.18); }
.c-legals {
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-soft);
}
.c-legals p { font-size: 0.7rem; color: var(--text-dim); line-height: 1.8; }

/* Formulaire de contact */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { display: flex; flex-direction: column; gap: 5px; }
.f-group label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.f-group input,
.f-group select,
.f-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 300;
  padding: 11px 15px;
  outline: none;
  transition: border-color 0.25s;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus { border-color: var(--accent); }
.f-group textarea { min-height: 110px; resize: vertical; }
.f-group select { appearance: none; cursor: pointer; }
.f-honeypot { display: none !important; }
.f-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #163150;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1px solid var(--accent);
  transition: background 0.25s, color 0.25s;
  width: fit-content;
}
.f-submit:hover { background: transparent; color: var(--accent); }
.f-status {
  font-size: 0.8rem;
  min-height: 24px;
  padding: 4px 0;
  transition: color 0.3s;
}
.f-status.success { color: var(--accent-light); }
.f-status.error { color: #c4615a; }

/* ─── Footer ──────────────────────────────────────────────── */

.footer-logo-img {
  height: clamp(480px, 67vw, 630px);
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
#footer {
  background: var(--bg-2);
  padding: 2.2rem clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--border-soft);
}
.footer-logo { mix-blend-mode: normal; }
.footer-logo img {
  height: clamp(120px, 17vw, 200px);
  width: auto;
  display: block;
  filter: opacity(0.75) brightness(0.7);
}
.footer-top {
  flex-basis: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 60px);
  padding-bottom: 1.4rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-soft);
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.5vw, 32px);
}
.footer-menu a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-menu a:hover { color: var(--accent); }
.footer-copy { font-size: 0.66rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ─── Dashboard ───────────────────────────────────────────── */
#daki-dashboard {
  background: var(--bg);
  min-height: 100vh;
  padding: calc(var(--nav-h) + 48px) clamp(20px, 4vw, 60px) 80px;
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
  flex-wrap: wrap;
  gap: 1rem;
}
.dash-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
}
.dash-nav { display: flex; gap: 3px; flex-wrap: wrap; }
.dash-nav-btn {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  transition: all 0.2s;
}
.dash-nav-btn:hover,
.dash-nav-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #163150;
}
.dash-section { display: none; }
.dash-section.active { display: block; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2px;
  margin-bottom: 2rem;
}
.dash-stat {
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  padding: 1.4rem;
  text-align: center;
}
.dash-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.dash-stat-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.dash-card {
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  padding: 1.5rem 2rem;
  margin-bottom: 2px;
}
.dash-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.dash-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.dash-table th {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: left;
  padding: 8px 12px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border-soft);
}
.dash-table td {
  padding: 10px 12px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
}
.dash-table tr:hover td { background: rgba(22, 49, 80, 0.035); }
.ct-badge {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid;
}
.ct-badge.particulier { color: var(--accent); border-color: var(--accent); }
.ct-badge.institution { color: #5a8fa0; border-color: #5a8fa0; }
.nl-badge { color: var(--accent); font-size: 0.75rem; }

.dash-actions { display: flex; gap: 5px; }
.d-btn {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  transition: all 0.2s;
}
.d-btn:hover { border-color: var(--accent); color: var(--accent); }
.d-btn.del:hover { border-color: #c4615a; color: #c4615a; }

.dash-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 840px;
}
.dash-form .fw { grid-column: 1 / -1; }
.dash-form label {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.dash-form input,
.dash-form select,
.dash-form textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-soft);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  padding: 10px 13px;
  outline: none;
  transition: border-color 0.2s;
}
.dash-form input:focus,
.dash-form select:focus,
.dash-form textarea:focus { border-color: var(--accent); }
.dash-form textarea { min-height: 80px; resize: vertical; }

.nl-grid { display: grid; grid-template-columns: 1fr 360px; gap: 1.5rem; align-items: start; }
.nl-panel { background: var(--bg-2); border: 1px solid var(--border-soft); }
.nl-panel-head {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-soft);
}

.dash-filter-bar {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.dash-filter-bar input,
.dash-filter-bar select {
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  padding: 7px 12px;
  outline: none;
}
.dash-filter-bar input:focus,
.dash-filter-bar select:focus { border-color: var(--accent); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .compagnie-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nl-grid { grid-template-columns: 1fr; }
  .footer-top { justify-content: center; text-align: center; }
  .footer-menu { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .galerie-grid { columns: 2; }
  .f-row { grid-template-columns: 1fr; }
  .atelier-grid { grid-template-columns: 1fr; }
  .date-row { grid-template-columns: 80px 1fr; }
  .date-row .dr-badge { display: none; }
  .dash-form { grid-template-columns: 1fr; }
  .compagnie-photos .ph:not(:first-child) { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .galerie-grid { columns: 1; }
  .hero-actu { display: none; }
  .compagnie-histoire-text { columns: 1; }
  .presse-grid { grid-template-columns: 1fr; }
}

/* ─── Dossier de diffusion (single-daki_spectacle) ─────────── */
.dossier-page { background: var(--bg-2); color: var(--text); min-height: 100vh; }

.dossier-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.dossier-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 6vw, 80px) clamp(40px, 6vh, 70px);
  width: 100%;
}
.dossier-back {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.dossier-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  opacity: 0.8;
}
.dossier-titre {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #f0ebe3;
  margin-bottom: 0.5rem;
}
.dossier-sous-titre {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(240,235,227,0.6);
  margin-bottom: 1rem;
}
.dossier-meta-hero {
  display: flex;
  gap: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(240,235,227,0.5);
}

.dossier-body {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(50px, 8vh, 90px) clamp(20px, 6vw, 80px);
}

.dossier-section {
  margin-bottom: clamp(50px, 7vw, 80px);
  padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(196,162,101,0.12);
}
.dossier-section:last-of-type { border-bottom: none; }

.dossier-section-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.8rem;
}

.dossier-desc p {
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.dossier-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(22,49,80,0.18);
}
.dossier-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.dossier-video-credit {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-align: center;
}

.dossier-intention-bloc {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(196,162,101,0.08);
}
.dossier-intention-bloc:last-child { border-bottom: none; }
.dossier-auteur {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.dossier-p { font-size: 0.9rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 0.9rem; }
.dossier-p-sm { font-size: 0.82rem; line-height: 1.75; color: var(--text-dim); margin-bottom: 0.7rem; }

.dossier-poeme {
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
}
.dossier-poeme p { margin-bottom: 1rem; }

.dossier-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.dossier-equipe-ligne {
  display: flex;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(196,162,101,0.06);
  font-size: 0.82rem;
  color: var(--text-muted);
  align-items: flex-start;
}
.eq-role {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  flex: 0 0 42%;
  word-break: normal;
  overflow-wrap: break-word;
}
.eq-noms {
  flex: 1;
  min-width: 0;
}

.dossier-pied {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196,162,101,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(22,49,80,0.4);
}
.dossier-back-bottom { color: var(--accent); font-size: 0.65rem; }

@media (max-width: 768px) {
  .dossier-footer-grid { grid-template-columns: 1fr; }
  .eq-role { min-width: 120px; }
}

.dossier-media-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.dossier-carte img {
  width: clamp(200px, 28vw, 320px);
  height: auto;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(22,49,80,0.15);
}
.dossier-download {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.dossier-btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
  align-self: flex-start;
}
.dossier-btn-dl:hover { background: var(--accent-light); color: #fff; }
.dossier-btn-dl--outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.dossier-btn-dl--outline:hover { background: var(--accent); color: #fff; }
@media (max-width: 600px) {
  .dossier-media-row { grid-template-columns: 1fr; }
  .dossier-carte img { width: 100%; }
}
/* ── Dossier galerie photos ──────────────────────────────── */
.dossier-galerie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dg-item {
  overflow: hidden;
  border-radius: 3px;
}
.dg-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}
.dg-item:hover img { transform: scale(1.04); }
.dg-wide {
  grid-column: span 3;
}
.dg-wide img {
  height: 380px;
}
@media (max-width: 768px) {
  .dossier-galerie { grid-template-columns: repeat(2, 1fr); }
  .dg-wide { grid-column: span 2; }
  .dg-item img { height: 200px; }
  .dg-wide img { height: 260px; }
}
@media (max-width: 480px) {
  .dossier-galerie { grid-template-columns: 1fr; }
  .dg-wide { grid-column: span 1; }
}
/* ════════════════════════════════════════════════════════════
   REFONTE MULTI-PAGES — déroulant Spectacles, pages dédiées
   (ajout structurel ; respecte la palette navy/crème/or existante)
   ════════════════════════════════════════════════════════════ */

/* ─── Déroulant Spectacles ─────────────────────────────────── */
.nav-links .has-dropdown { position: relative; }
.nav-links .nav-dropdown-toggle .caret { font-size: 0.7em; opacity: 0.7; transition: transform 0.25s var(--ease); }
.nav-links .has-dropdown:hover .caret,
.nav-links .has-dropdown:focus-within .caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 16px 44px rgba(22, 49, 80, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 60;
}
.nav-links .has-dropdown:hover .nav-dropdown,
.nav-links .has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown li { display: block; }
.nav-dropdown a {
  display: block;
  padding: 9px 22px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-dropdown a:hover { color: var(--accent-light); background: var(--bg-2); }
.nav-dropdown .nav-dropdown-sep { border-top: 1px solid var(--border-soft); margin-top: 6px; padding-top: 6px; }
.nav-mobile .nav-mobile-sub { padding-left: 2.4em; font-size: 0.92em; opacity: 0.85; }

/* ─── Bandeau de titre de page ─────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + clamp(40px, 8vw, 96px)) clamp(20px, 5vw, 60px) clamp(28px, 5vw, 52px);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: var(--text);
  margin: 0.3em 0 0;
}
.page-hero-sub {
  margin-top: 1rem;
  max-width: 54ch;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Variante hero avec photo de fond */
.page-hero--photo {
  position: relative;
  border-bottom: none;
  min-height: clamp(340px, 52vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero--photo .section-inner {
  width: 100%;
  padding-top: clamp(40px, 8vw, 96px);
  padding-bottom: clamp(36px, 5vw, 60px);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 32%;
}
.page-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(11,22,36,0.30) 0%,
    rgba(11,22,36,0.50) 60%,
    rgba(11,22,36,0.74) 100%);
}
.page-hero--photo .section-inner { position: relative; z-index: 2; }
.page-hero--photo .page-hero-title { color: #fff; }
.page-hero--photo .page-hero-sub { color: rgba(255,255,255,0.86); }
.page-hero--photo .section-label { color: var(--accent); }

/* ─── Nav lisible dès le haut sur pages à bandeau clair ────── */
body:has(.page-hero) #nav {
  background: rgba(247, 242, 235, 0.97);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
body:has(.page-hero) .nav-logo-name,
body:has(.page-hero) .nav-logo { color: var(--text); }
body:has(.page-hero) .nav-links a { color: var(--text-muted); }
body:has(.page-hero) .nav-links a:hover,
body:has(.page-hero) .nav-links a.active { color: var(--text); }
body:has(.page-hero) .nav-hamburger span { background: var(--text); }

/* Collaborations artistiques : présence plus discrète que l'équipe permanente */
.equipe-grid--collab { gap: 0.9rem 1.4rem; }
.equipe-card--collab { opacity: 0.86; }
.equipe-card--collab .equipe-name { font-size: 0.96em; }
.equipe-card--collab .equipe-role { font-size: 0.92em; }
.equipe-card--collab .equipe-contact { font-size: 0.82em; color: var(--text-dim); }
