/* ═══════════════════════════════════════════════
   REVUE BONNE GARDE — main.css
   Variables · Reset · Nav · Hero · Sections · Footer
═══════════════════════════════════════════════ */

/* ── Variables & Thèmes ─────────────────────── */
:root {
  --gold:        #C9A44E;
  --gold-light:  #E8C97A;
  --gold-dim:    rgba(201, 164, 78, 0.15);
  --crimson:     #7A1A2E;
  --crimson-bright: #A0253E;
  --cream:       #F2E8D5;
  --transition:  0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg:          #080808;
  --bg2:         #0f0f0f;
  --bg3:         #161616;
  --bg4:         #1c1c1c;
  --surface:     rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.08);
  --border:      rgba(201, 164, 78, 0.18);
  --text:        #F2E8D5;
  --text-dim:    rgba(242, 232, 213, 0.55);
  --text-xdim:   rgba(242, 232, 213, 0.3);
  --nav-bg:      rgba(8, 8, 8, 0.92);
  --footer-bg:   #050505;
  /* Fond des cartes du tunnel de billetterie et de l'espace compte.
     Ces deux variables n'étaient définies qu'en local dans auth/ et
     account-styles : partout ailleurs var(--card) retombait sur
     transparent, d'où des cartes noires sur fond noir. */
  --card:        #141414;
  --text-muted:  rgba(242, 232, 213, 0.5);
}

[data-theme="light"] {
  --bg:          #F7F2EA;
  --bg2:         #EFE8DA;
  --bg3:         #E6DDD0;
  --bg4:         #DDD3C3;
  --surface:     rgba(0,0,0,0.04);
  --surface-hover: rgba(0,0,0,0.08);
  --border:      rgba(122, 26, 46, 0.2);
  --text:        #1A0E08;
  --text-dim:    rgba(26, 14, 8, 0.6);
  --text-xdim:   rgba(26, 14, 8, 0.35);
  --nav-bg:      rgba(247, 242, 234, 0.94);
  --footer-bg:   #E6DDD0;
  --card:        #FFFFFF;
  --text-muted:  rgba(26, 14, 8, 0.5);
}

/* ── Reset & Base ───────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

::selection { background: var(--gold); color: #000; }

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

a { color: inherit; }

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

/* ── Boutons ────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transition: left 0.4s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,164,78,0.3); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── Section base ───────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── Flash messages ─────────────────────────── */
.flash {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  margin: 1rem auto;
  max-width: 700px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  position: relative;
  z-index: 500;
}
.flash-success { background: rgba(40,120,60,0.15); border: 1px solid rgba(40,120,60,0.4); color: #6fcf6f; }
.flash-error   { background: rgba(180,40,40,0.15); border: 1px solid rgba(180,40,40,0.4); color: #ef9090; }
.flash-info    { background: rgba(201,164,78,0.1);  border: 1px solid rgba(201,164,78,0.3); color: var(--gold); }
.flash span { flex: 1; }
.flash-close { background: none; border: none; cursor: pointer; color: inherit; opacity: 0.6; font-size: 0.9rem; margin-left: auto; }
.flash-close:hover { opacity: 1; }

/* ════════════════════════════════════════════
   RIDEAU INTRO
════════════════════════════════════════════ */
.curtain-left, .curtain-right {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100vh;
  z-index: 9999;
  transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(120,20,30,0.06) 40px, rgba(120,20,30,0.06) 41px),
    linear-gradient(180deg, #1a0808 0%, #0d0505 100%);
}
.curtain-left { left: 0; }
.curtain-right { right: 0; }
.curtain-left::after, .curtain-right::after {
  content: '';
  position: absolute;
  top: 0;
  width: 8px; height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 30%, var(--gold) 60%, var(--gold-light) 100%);
  opacity: 0.6;
}
.curtain-left::after  { right: 0; }
.curtain-right::after { left: 0; }

.curtain-logo {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  text-align: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease 0.8s;
}
.curtain-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-shadow: 0 0 60px rgba(201,164,78,0.8);
  animation: pulseGlow 2s ease-in-out infinite;
}
.curtain-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(201,164,78,0.5);
  margin-top: 0.5rem;
}
@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 40px rgba(201,164,78,0.6); }
  50% { text-shadow: 0 0 80px rgba(201,164,78,1), 0 0 120px rgba(201,164,78,0.3); }
}

body.curtain-open .curtain-left  { transform: translateX(-100%); }
body.curtain-open .curtain-right { transform: translateX(100%); }
body.curtain-open .curtain-logo  { opacity: 0; }

/* ── Particules ─────────────────────────────── */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease 1.5s;
}
body.curtain-open #particles-canvas { opacity: 1; }

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 4rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background var(--transition), border-color var(--transition);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span {
  font-style: normal;
  font-weight: 400;
  color: var(--text-dim);
  font-size: 0.72rem;
  display: block;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dim);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 2px !important;
  font-weight: 500 !important;
  transition: background 0.25s ease, transform 0.2s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login-btn, .nav-user-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s ease;
}
.nav-login-btn:hover, .nav-user-btn:hover { color: var(--gold); }

.theme-toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-dim);
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.icon-sun { display: none; }
.icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: block; }
[data-theme="light"] .icon-moon { display: none; }

/* Burger mobile */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px; height: 36px;
  z-index: 1100;
  position: relative;
}
.burger-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dim);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.2s ease, width 0.3s ease;
  transform-origin: center;
}
.burger.is-open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.burger.is-open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* ════════════════════════════════════════════
   MENU FULLSCREEN MOBILE
════════════════════════════════════════════ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  pointer-events: none;
  visibility: hidden;
}
.mobile-overlay.is-open {
  pointer-events: all;
  visibility: visible;
}

/* Backdrop sombre */
.mobile-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .4s ease;
}
.mobile-overlay.is-open::before { opacity: 1; }

/* Panneau slide depuis la droite */
.mobile-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 100vw);
  background: var(--bg);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-overlay.is-open .mobile-panel {
  transform: translateX(0);
}

/* Header panneau */
.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  min-height: 72px;
}
.mobile-panel-logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  line-height: 1.25;
}
.mobile-panel-logo em { font-style: italic; }
.mobile-close {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
  flex-shrink: 0;
}
.mobile-close:hover { border-color: var(--gold); color: var(--gold); }

/* Navigation liens */
.mobile-nav { flex: 1; padding: 1.5rem 0; }
.mobile-nav-list { list-style: none; }
.mobile-nav-item {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .4s ease calc(var(--i) * 60ms + 100ms),
              transform .4s ease calc(var(--i) * 60ms + 100ms);
  border-bottom: 1px solid var(--border);
}
.mobile-overlay.is-open .mobile-nav-item {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
  position: relative;
}
.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--gold); padding-left: 1.9rem; }
.mobile-nav-link.active::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 60%;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
}
.mobile-nav-num {
  font-family: 'DM Sans', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .1em;
  opacity: .7;
  min-width: 20px;
  font-style: normal;
}

/* Footer panneau */
.mobile-panel-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}
.mobile-cta {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; padding: .9rem;
  background: var(--gold); color: #000;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .2s;
  margin-bottom: 1.2rem;
}
.mobile-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.mobile-panel-meta {
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-socials { display: flex; gap: .8rem; }
.mobile-social-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); transition: all .2s;
  text-decoration: none;
}
.mobile-social-btn:hover { border-color: var(--gold); color: var(--gold); }
.theme-toggle-mobile {
  width: 34px; height: 34px;
  border: 1px solid var(--border); border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); transition: all .2s;
}
.theme-toggle-mobile:hover { border-color: var(--gold); color: var(--gold); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(122,26,46,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,164,78,0.06) 0%, transparent 60%),
    var(--bg);
  z-index: 0;
  transition: background var(--transition);
}
[data-theme="light"] .hero-bg {
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(122,26,46,0.08) 0%, transparent 70%),
    var(--bg);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.012) 3px, rgba(0,0,0,0.012) 4px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 1.6s forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; color: var(--gold); display: block; }
.hero-title .outline {
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
  display: block;
}

.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

.hero-sub {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.hero-date-badge {
  display: inline-flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--crimson);
  padding: 0.8rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 2.5rem;
}
.hero-date-badge .date-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-xdim);
  margin-bottom: 0.2rem;
}
.hero-date-badge .date-value {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-xdim);
  margin-top: 0.3rem;
}

/* Affiche */
.hero-poster {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  animation: fadeUp 0.9s ease 1.9s forwards;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Halo scintillant derrière l'affiche */
.hero-poster::before {
  content: '';
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,164,78,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(122,26,46,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: posterGlow 3s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

/* Rayons de lumière latéraux */
.hero-poster::after {
  content: '';
  position: absolute;
  inset: -60px;
  background:
    
    
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(122,26,46,0.12) 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
  animation: posterGlow 3s ease-in-out infinite reverse;
}

@keyframes posterGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.04); }
}

.poster-spotlight {
  position: absolute;
  top: 0px; left: 52%;
  transform: translateX(-50%);
  width: 300px; height: 500px;
  background: conic-gradient(from 180deg at 50% 0%, transparent 55deg, rgba(255,210,80,0.08) 90deg, transparent 125deg);
  pointer-events: none;
  z-index: 1;
  animation: spotlightPulse 4s ease-in-out infinite;
}
@keyframes spotlightPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

.poster-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 2/3;
  max-height: 78vh;
  background: linear-gradient(135deg, #1a0a10 0%, #2a0f1a 40%, #1a0808 100%);
  border: 1px solid rgba(201,164,78,0.3);
  box-shadow:
    0 0 0 1px rgba(201,164,78,0.15),
    0 0 30px rgba(201,164,78,0.12),
    0 0 60px rgba(122,26,46,0.2),
    0 0 100px rgba(122,26,46,0.1),
    0 40px 80px rgba(0,0,0,0.6);
  z-index: 2;
  animation: framePulse 3s ease-in-out infinite;
}
@keyframes framePulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(201,164,78,0.15), 0 0 30px rgba(201,164,78,0.12), 0 0 60px rgba(122,26,46,0.2), 0 0 100px rgba(122,26,46,0.1), 0 40px 80px rgba(0,0,0,0.6); }
  50%       { box-shadow: 0 0 0 1px rgba(201,164,78,0.3),  0 0 50px rgba(201,164,78,0.22), 0 0 90px rgba(122,26,46,0.35), 0 0 140px rgba(122,26,46,0.15), 0 40px 80px rgba(0,0,0,0.6); }
}

.poster-frame::before, .poster-frame::after {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
  z-index: 2;
}
.poster-frame::before { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
.poster-frame::after  { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }

.poster-img { width: 100%; height: 100%; object-fit: cover; }
.poster-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  position: relative;
}
.poster-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(122,26,46,0.4) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 50% 80%, rgba(201,164,78,0.1) 0%, transparent 60%);
}
.poster-ornament { font-size: 4rem; margin-bottom: 1rem; position: relative; z-index: 1; filter: drop-shadow(0 0 20px rgba(201,164,78,0.6)); }
.p-year { font-family: 'DM Sans', sans-serif; font-size: 0.65rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; position: relative; z-index: 1; }
.p-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; font-style: italic; color: var(--cream); line-height: 1; position: relative; z-index: 1; text-shadow: 0 0 40px rgba(201,164,78,0.3); }
.p-sub { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: rgba(242,232,213,0.5); margin-top: 0.8rem; position: relative; z-index: 1; }
.p-note { font-family: 'DM Sans', sans-serif; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(201,164,78,0.35); position: absolute; bottom: 1.2rem; z-index: 1; }

/* ════════════════════════════════════════════
   TICKER
════════════════════════════════════════════ */
.ticker-band {
  background: var(--crimson);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ticker-inner {
  display: flex;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 2.5rem;
  flex-shrink: 0;
}
.ticker-sep { color: rgba(255,255,255,0.4); padding: 0 0.5rem; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   SECTION SPECTACLE
════════════════════════════════════════════ */
.section-spectacle {
  padding: 8rem 0;
  background: var(--bg2);
  transition: background var(--transition);
}
.spectacle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}
.spectacle-text p {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.spectacle-text p strong { color: var(--text); font-weight: 600; }

.spectacle-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.2rem;
  transition: all 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.pillar:hover { background: var(--surface-hover); border-color: rgba(201,164,78,0.35); transform: translateY(-2px); }
.pillar-icon  { display: flex; align-items: center; margin-bottom: 0.5rem; }
.pillar-name  { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.pillar-desc  { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; color: var(--text-xdim); letter-spacing: 0.05em; }

.spectacle-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 0.8rem;
}
.gallery-item {
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg3);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main { grid-row: span 2; }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  border: 1px solid var(--border);
  border-radius: 3px;
}
.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(122,26,46,0.12) 0%, transparent 70%);
}
.gallery-placeholder-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-xdim);
  z-index: 1;
  text-align: center;
}

/* ════════════════════════════════════════════
   SECTION PROGRAMME
════════════════════════════════════════════ */
.section-programme {
  padding: 8rem 0;
  background: var(--bg);
  transition: background var(--transition);
}
.programme-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.date-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.date-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--crimson);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}
.date-card:hover { background: var(--surface-hover); border-color: rgba(201,164,78,0.25); transform: translateX(3px); }
.date-card:hover::before { transform: scaleY(1); }
.date-card.full { opacity: 0.45; pointer-events: none; cursor: default; }
.date-card.promo { border-color: rgba(201,164,78,0.3); }
.date-card.promo::before { background: var(--gold); }

.date-info { display: flex; flex-direction: column; gap: 0.2rem; }
.date-day {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: capitalize;
}
.date-full {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  color: var(--text-xdim);
  letter-spacing: 0.1em;
}
.date-time {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.date-badge-promo {
  position: absolute;
  top: 0.4rem; right: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: #000;
  padding: 0.15rem 0.4rem;
  border-radius: 1px;
}
.date-badge-complet {
  position: absolute;
  top: 0.4rem; right: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--crimson);
  color: #fff;
  padding: 0.15rem 0.4rem;
  border-radius: 1px;
}

.programme-footer {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.tarif-info { display: flex; gap: 3rem; flex-wrap: wrap; }
.tarif-item { display: flex; flex-direction: column; }
.tarif-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-xdim);
}
.tarif-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.tarif-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-dim); }
.tarif-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--text-xdim);
  margin-top: 0.2rem;
}

/* ════════════════════════════════════════════
   SECTION TROUPE
════════════════════════════════════════════ */
.section-troupe {
  padding: 8rem 0;
  background: var(--bg2);
  transition: background var(--transition);
}
.troupe-intro { max-width: 580px; margin-bottom: 4rem; }
.troupe-intro p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-top: 1.5rem;
}
.troupe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.troupe-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.troupe-card:hover { border-color: rgba(201,164,78,0.4); box-shadow: 0 12px 32px rgba(0,0,0,0.2); transform: translateY(-4px); }
.troupe-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.tv-1 { background: linear-gradient(135deg, rgba(122,26,46,0.3), rgba(122,26,46,0.08)); }
.tv-2 { background: linear-gradient(135deg, rgba(201,164,78,0.2), rgba(201,164,78,0.04)); }
.tv-3 { background: linear-gradient(135deg, rgba(60,30,80,0.3),  rgba(60,30,80,0.08)); }
.tv-4 { background: linear-gradient(135deg, rgba(20,60,40,0.3),  rgba(20,60,40,0.08)); }
.troupe-body { padding: 1.2rem; }
.troupe-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.troupe-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--text-xdim);
  line-height: 1.5;
}

/* ════════════════════════════════════════════
   SECTION NEWSLETTER
════════════════════════════════════════════ */
.section-newsletter {
  padding: 7rem 0;
  background: var(--bg);
  transition: background var(--transition);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.newsletter-text p { font-size: 1.1rem; color: var(--text-dim); margin-top: 1rem; line-height: 1.7; }

.newsletter-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-xdim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1.1rem;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-xdim); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 0.3rem;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  min-width: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 2px;
  cursor: pointer;
  accent-color: var(--gold);
  margin-top: 2px;
}
.form-check label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--text-xdim);
  line-height: 1.5;
  cursor: pointer;
}
.form-check label a { color: var(--gold); text-decoration: none; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  transition: background var(--transition);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}
.footer-brand p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--text-xdim);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.8rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-xdim);
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a,
.footer-col ul li span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--text-xdim);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-col-sep { margin-top: 1rem !important; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--text-xdim);
}
.footer-bottom a { color: var(--text-xdim); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
/* ════════════════════════════════════════════
   RESPONSIVE — BREAKPOINTS COMPLETS
════════════════════════════════════════════ */

@media (max-width: 1100px) {
  #main-nav, .container { padding-left: 2rem; padding-right: 2rem; }
  .hero-inner { gap: 2.5rem; }
  .spectacle-grid { gap: 3rem; }
  .troupe-grid { grid-template-columns: repeat(2, 1fr); }
  .dates-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .newsletter-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-login-btn { display: none; }
  .burger { display: flex; }
  #main-nav { padding: 0 1.2rem; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding-top: 2rem; padding-bottom: 2rem; }
  .hero-poster { display: none; }
  .hero-stats { gap: 1.2rem; flex-wrap: wrap; }

  /* Sections */
  .spectacle-grid { grid-template-columns: 1fr; }
  .spectacle-gallery { display: none; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .programme-footer { flex-direction: column; align-items: flex-start; }
  .tarif-info { gap: 1.5rem; }
  .container { padding-left: 1.2rem; padding-right: 1.2rem; }

  /* Billetterie layout */
  .bill-layout { grid-template-columns: 1fr !important; }
  .bill-aside, .recap-card { position: static !important; }
  .seances-grid { grid-template-columns: 1fr 1fr; }

  /* Billetterie infos form */
  .form-row { grid-template-columns: 1fr !important; }

  /* Plan de salle — le SVG reste scrollable */
  .salle-layout { grid-template-columns: 1fr !important; }

  /* Steps billetterie */
  .bill-steps { gap: 0; padding: 1rem 0; }
  .bill-step-label { display: none; }
  .bill-step-sep { width: 20px; }
}

@media (max-width: 480px) {
  .dates-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .spectacle-pillars { grid-template-columns: 1fr; }
  .troupe-grid { grid-template-columns: 1fr; }
  .seances-grid { grid-template-columns: 1fr; }

  /* Hero */
  .hero h1 { font-size: 2.4rem; }
  .hero-dates-badge { font-size: .75rem; }

  /* Billetterie hero */
  .bill-hero h1 { font-size: 1.6rem !important; }
  .bill-hero .meta { font-size: .78rem; gap: .6rem; }

  /* Confirmation billet */
  .billet-header { flex-direction: column; gap: .8rem; }
  .billet-grid { grid-template-columns: 1fr !important; }
  .confirm-actions { flex-direction: column; }
  .confirm-actions a, .confirm-actions button { width: 100%; justify-content: center; }
}


/* ════════════════════════════════════════════
   ICÔNES SVG — système sprite
════════════════════════════════════════════ */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-sm  { width: 14px; height: 14px; }
.icon-md  { width: 20px; height: 20px; }
.icon-lg  { width: 24px; height: 24px; }
.icon-xl  { width: 36px; height: 36px; }
.icon-2xl { width: 48px; height: 48px; }
.icon-3xl { width: 64px; height: 64px; }

/* Overrides contextuels */

/* Breadcrumb chevron */

/* Flash close */

/* Lightbox -->*/

/* Prog date action arrow */


/* ════════════════════════════════════════════
   ICÔNES SVG — rbg-icon
════════════════════════════════════════════ */

/* Base */
.rbg-icon {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  vertical-align: middle;
  transition: color var(--transition);
}

/* Tailles */
.rbg-icon--sm  { width: 1rem;   height: 1rem; }
.rbg-icon--md  { width: 1.5rem; height: 1.5rem; }
.rbg-icon--lg  { width: 2rem;   height: 2rem; }
.rbg-icon--xl  { width: 2.8rem; height: 2.8rem; }
.rbg-icon--2xl { width: 3.5rem; height: 3.5rem; }

/* Dans les cards info (contact, programme) */
.contact-info-icon .rbg-icon,
.pratique-card-icon .rbg-icon,
.prog-info-icon .rbg-icon {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--gold);
}

/* Dans les acces-item spans (contact) */
.acces-item span .rbg-icon,
.acces-item .rbg-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--gold);
}

/* Dans les pillar-icon (homepage) */
.pillar-icon .rbg-icon {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--gold);
}

/* Dans les troupe-visual (homepage — grande icône déco) */
.troupe-visual .rbg-icon {
  width: 3rem;
  height: 3rem;
  color: var(--gold);
  opacity: 0.7;
}

/* Dans les cat-visual (troupe page — grande icône déco) */
.cat-visual .rbg-icon {
  width: 2.8rem;
  height: 2.8rem;
  color: var(--cream);
  opacity: 0.75;
}

/* Dans discipline-icon (spectacle page) */
.discipline-icon .rbg-icon {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--gold);
}

/* Dans aerienne-icon (spectacle — icône flottante) */
.aerienne-icon .rbg-icon {
  width: 5rem;
  height: 5rem;
  color: var(--gold);
  filter: drop-shadow(0 0 24px rgba(201,164,78,0.5));
}

/* Dans avantage-icon (partenaires) */
.avantage-icon .rbg-icon {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--gold);
}

/* Dans pourquoi-num (partenaires) → pas d'icône ici */

/* Dans membre-photo-placeholder (troupe) */
.membre-photo-placeholder .rbg-icon {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--text-xdim);
}

/* Dans galerie-empty-icon */
.galerie-empty-icon .rbg-icon,
.partenaires-empty-icon .rbg-icon {
  width: 3.5rem;
  height: 3.5rem;
  opacity: 0.3;
}

/* Dans error-icon */
.error-icon .rbg-icon {
  width: 4rem;
  height: 4rem;
  opacity: 0.6;
}

/* Dans video-placeholder */
.video-placeholder-icon .rbg-icon {
  width: 3.5rem;
  height: 3.5rem;
  opacity: 0.2;
}

/* Lightbox controls */
.lightbox-close .rbg-icon,
.lightbox-nav .rbg-icon {
  width: 1.3rem;
  height: 1.3rem;
}

/* Flash close */
.flash-close .rbg-icon { width: 1rem; height: 1rem; }

/* ════════════════════════════════════════════
   TROMBINOSCOPE
   Partagé par /troupe et /troupe/<catégorie>.
   Sans photo, on affiche les initiales : une grille de monogrammes
   se lit comme un motif voulu, pas comme des images manquantes.
════════════════════════════════════════════ */
.personnes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.4rem 1.2rem;
  margin-top: 1.8rem;
}
.personne { text-align: center; }
.personne-visuel {
  aspect-ratio: 1; max-width: 118px; margin: 0 auto 0.85rem;
  border-radius: 50%; overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(122,26,46,0.35), rgba(201,164,78,0.12));
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.personne:hover .personne-visuel {
  border-color: rgba(201,164,78,0.5);
  transform: translateY(-3px);
}
.personne-visuel img { width: 100%; height: 100%; object-fit: cover; }
.personne-initiales {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--gold);
}
.personne-nom {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700; color: var(--text); line-height: 1.3;
}
.personne-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.25rem;
}
.troupe-vide {
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  color: var(--text-xdim); margin-top: 2rem;
}
@media (max-width: 480px) {
  .personnes-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 1.1rem 0.8rem; }
  .personne-visuel { max-width: 92px; }
}

