/* ================================================
   MPO – Music Partners Organisation
   Style principal — Dark mode événementiel
   ================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600&family=Barlow+Condensed:wght@400;600;700&family=DM+Sans:wght@400;500&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --color-black:        #0B0B0D;
  --color-charcoal:     #1A1A1F;
  --color-orange:       #FF6A00;
  --color-orange-light: #FF8C2A;
  --color-white:        #F5F5F7;
  --color-grey-mid:     #2A2A30;
  --color-grey-text:    #9A9AA0;

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-subtitle: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --header-height: 72px;
  --max-width: 1280px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  background: var(--color-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-white); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-orange); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* --- Section backgrounds --- */
.section-black {
  background: radial-gradient(ellipse at 50% 0%, rgba(42,42,48,0.5) 0%, transparent 70%), var(--color-black);
}
.section-charcoal {
  background: radial-gradient(ellipse at 50% 100%, rgba(42,42,48,0.4) 0%, transparent 70%), var(--color-charcoal);
}

section {
  padding: 100px 0;
  position: relative;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--color-orange);
  opacity: 0.3;
}

/* --- Buttons --- */
.btn-cta {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-subtitle);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-cta:hover {
  background: var(--color-orange-light);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.4);
  color: var(--color-white);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-subtitle);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--color-white);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(11, 11, 13, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 106, 0, 0.1);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 42px;
  width: auto;
}

.nav-main { display: flex; align-items: center; gap: 8px; }

.nav-main a {
  font-family: var(--font-subtitle);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 14px;
  position: relative;
  color: var(--color-white);
  transition: color 0.3s ease;
}
.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--color-orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-main a:hover::after,
.nav-main a.active::after {
  transform: scaleX(1);
}
.nav-main a.active { color: var(--color-orange); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 26, 31, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}
.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-content a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
}
.nav-dropdown-content a::after { display: none; }
.nav-dropdown-content a:hover { background: rgba(255, 106, 0, 0.1); }

.dropdown-arrow {
  font-size: 10px;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.header-cta {
  padding: 10px 24px !important;
  font-size: 13px !important;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(11,11,13,0.7) 0%, rgba(11,11,13,0.5) 50%, rgba(11,11,13,0.9) 100%);
}

/* Ken Burns — zoom avant/arrière lent, uniquement sur le hero de la home */
.hero:not(.hero-compact) .hero-bg {
  animation: hero-kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0) scale(1);
}
@keyframes hero-kenburns {
  from { transform: translateZ(0) scale(1); }
  to   { transform: translateZ(0) scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero:not(.hero-compact) .hero-bg {
    animation: none;
    transform: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
}

.hero h1 { margin-bottom: 16px; }

.hero-subtitle {
  font-family: var(--font-subtitle);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-grey-text);
  font-style: italic;
  margin-bottom: 12px;
}

.hero-tagline {
  font-family: var(--font-subtitle);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-indicator svg {
  width: 32px; height: 32px;
  stroke: var(--color-orange);
  opacity: 0.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* Hero compact (inner pages) */
.hero-compact {
  height: 50vh;
  min-height: 360px;
}

/* ================================================
   SECTION TITLES
   ================================================ */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 { margin-bottom: 16px; }
.section-title p {
  color: var(--color-grey-text);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}
.section-title .accent-line {
  width: 60px;
  height: 3px;
  background: var(--color-orange);
  margin: 20px auto 0;
}

/* ================================================
   SERVICES CARDS
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--color-grey-mid);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: var(--color-orange);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.15);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.service-card p {
  color: var(--color-grey-text);
  font-size: 15px;
}

/* ================================================
   STATS / COUNTERS
   ================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  font-family: var(--font-subtitle);
  font-size: 15px;
  color: var(--color-grey-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================================
   MARQUEE (Trust band)
   ================================================ */
.marquee-wrap {
  overflow: hidden;
  padding: 24px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-subtitle);
  font-size: 18px;
  color: var(--color-grey-text);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================
   EVENT CARDS
   ================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.event-card {
  background: var(--color-grey-mid);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.event-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-4px);
}
.event-card-img {
  height: 280px;
  overflow: hidden;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  transition: filter 0.3s ease;
}
.event-card:hover .event-card-img img {
  filter: brightness(1) contrast(1.1);
}
.event-card-body {
  padding: 24px;
}
.event-card-body h4 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  margin-bottom: 6px;
}
.event-card-body p {
  color: var(--color-grey-text);
  font-size: 14px;
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  margin-bottom: 20px;
  color: var(--color-grey-text);
  font-size: 16px;
  line-height: 1.8;
}
.about-text p:first-of-type {
  color: var(--color-white);
  font-size: 18px;
}
.about-img img {
  border-radius: 8px;
  filter: brightness(0.85) contrast(1.05);
}

/* Studio cards */
.studios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.studio-card {
  background: var(--color-grey-mid);
  border-radius: 8px;
  padding: 36px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.studio-card:hover { border-color: var(--color-orange); }
.studio-card h3 { margin-bottom: 16px; font-family: var(--font-subtitle); font-weight: 700; }
.studio-card p { color: var(--color-grey-text); margin-bottom: 12px; }

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-grey-text);
}
.amenity svg {
  width: 20px; height: 20px;
  stroke: var(--color-orange);
}

/* Pricing card */
.pricing-card {
  background: var(--color-grey-mid);
  border-radius: 8px;
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(255, 106, 0, 0.2);
}
.pricing-card ul { margin: 24px 0; }
.pricing-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-grey-text);
  font-size: 16px;
  padding-left: 20px;
  position: relative;
}
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
}

/* ================================================
   TECHNIQUE / EQUIPMENT
   ================================================ */
.equipment-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.equipment-category {
  background: var(--color-grey-mid);
  border-radius: 8px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.equipment-category:hover { border-color: var(--color-orange); }

.equipment-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}
.equipment-header:hover { background: rgba(255, 106, 0, 0.05); }
.equipment-header svg {
  width: 28px; height: 28px;
  stroke: var(--color-orange);
  flex-shrink: 0;
}
.equipment-header h3 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 1.2rem;
  flex: 1;
}
.equipment-toggle {
  width: 24px; height: 24px;
  stroke: var(--color-grey-text);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.equipment-category.open .equipment-toggle { transform: rotate(180deg); }

.equipment-list {
  padding: 0 32px 28px;
  display: none;
}
.equipment-category.open .equipment-list { display: block; }

.equipment-list ul { margin: 0; }
.equipment-list li {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-grey-text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-left: 16px;
  position: relative;
}
.equipment-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: bold;
}

/* Equipment images */
.equipment-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.equipment-images img {
  border-radius: 8px;
  filter: brightness(0.85) contrast(1.05);
  transition: filter 0.3s ease;
}
.equipment-images img:hover {
  filter: brightness(1) contrast(1.1);
}

/* Pro banner */
.pro-banner {
  background: var(--color-grey-mid);
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 8px;
  padding: 48px;
  text-align: center;
}
.pro-banner h3 { margin-bottom: 16px; }
.pro-banner p { color: var(--color-grey-text); margin-bottom: 24px; }

/* ================================================
   PROFESSIONNEL
   ================================================ */
.pro-services-list li {
  font-size: 16px;
  color: var(--color-grey-text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 20px;
  position: relative;
}
.pro-services-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
}

.pro-contact-card {
  background: var(--color-grey-mid);
  border-radius: 8px;
  padding: 36px;
  border: 1px solid rgba(255, 106, 0, 0.2);
}
.pro-contact-card h4 { margin-bottom: 16px; }
.pro-contact-card p {
  color: var(--color-grey-text);
  margin-bottom: 8px;
}

.pro-references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.pro-ref-item {
  background: var(--color-grey-mid);
  padding: 20px 24px;
  border-radius: 6px;
  font-size: 15px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.pro-ref-item:hover { border-color: var(--color-orange); }
.pro-ref-item .ref-location {
  color: var(--color-grey-text);
  font-size: 13px;
  display: block;
  margin-top: 4px;
}

.legal-info {
  background: var(--color-grey-mid);
  border-radius: 8px;
  padding: 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-grey-text);
  line-height: 2;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.gallery-item.loaded {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.gallery-item:hover img {
  filter: brightness(1) contrast(1.1);
  transform: scale(1.03);
}
.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(11,11,13,0.9), transparent);
  font-size: 13px;
  color: var(--color-grey-text);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11, 11, 13, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 4px;
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 32px;
  cursor: pointer;
  padding: 16px;
  transition: color 0.3s ease;
  z-index: 2001;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--color-orange); }
.lightbox-close { top: 20px; right: 24px; font-size: 40px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ================================================
   VIDEO EMBED — spinner de chargement (partagé)
   ================================================ */
.video-embed .video-spinner {
  position: absolute;
  top: 50%; left: 50%;
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--color-orange);
  border-radius: 50%;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  animation: video-spin 0.9s linear infinite;
}
.video-embed.playing:not(.ready) .video-spinner { opacity: 1; }
@keyframes video-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .video-embed .video-spinner { animation: none; }
}

/* ================================================
   VIDEO FEATURE (home)
   ================================================ */
.video-feature .video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-charcoal);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  margin-top: 48px;
}
.video-feature .video-embed::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--thumb);
  background-size: cover;
  background-position: center;
  transition: transform 0.9s ease;
  z-index: 0;
}
.video-feature .video-embed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,13,0.25) 0%, rgba(11,11,13,0.45) 55%, rgba(11,11,13,0.92) 100%);
  transition: opacity 0.4s ease;
  z-index: 1;
}
.video-feature .video-embed:hover::before { transform: scale(1.04); }
.video-feature .play-button {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.35s ease;
  animation: play-pulse 2.6s ease-out infinite;
}
.video-feature .video-embed:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--color-orange-light);
}
.video-feature .play-button svg {
  width: 38px; height: 38px;
  fill: var(--color-white);
  margin-left: 5px;
}
@keyframes play-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,106,0,0.55); }
  70%  { box-shadow: 0 0 0 28px rgba(255,106,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,106,0,0); }
}
.video-feature .video-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 40px;
  z-index: 2;
  pointer-events: none;
}
.video-feature .video-caption h3 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  margin-bottom: 6px;
  color: var(--color-white);
}
.video-feature .video-caption p {
  color: var(--color-grey-text);
  font-size: 14px;
  margin: 0;
}
.video-feature .video-embed.playing .play-button,
.video-feature .video-embed.playing .video-caption { display: none; }
.video-feature .video-embed.ready::before,
.video-feature .video-embed.ready::after { display: none; }
.video-feature .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.video-feature .video-embed.ready iframe { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .video-feature .play-button { animation: none; }
  .video-feature .video-embed::before { transition: none; }
}
@media (max-width: 768px) {
  .video-feature .video-embed { margin-top: 32px; border-radius: 8px; }
  .video-feature .play-button { width: 72px; height: 72px; }
  .video-feature .play-button svg { width: 28px; height: 28px; }
  .video-feature .video-caption { padding: 20px 22px; }
}

/* Video gallery cards */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px 32px;
}
.videos-grid .video-card { display: flex; flex-direction: column; }
.videos-grid .video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-charcoal);
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.videos-grid .video-embed::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--thumb);
  background-size: cover;
  background-position: center;
  transition: transform 0.9s ease;
  z-index: 0;
}
.videos-grid .video-embed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,13,0.15) 0%, rgba(11,11,13,0.55) 100%);
  z-index: 1;
}
.videos-grid .video-embed:hover { border-color: var(--color-orange); }
.videos-grid .video-embed:hover::before { transform: scale(1.05); }
.videos-grid .video-embed .play-button {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.35s ease, background 0.3s ease;
  animation: play-pulse 2.6s ease-out infinite;
}
.videos-grid .video-embed:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-orange-light);
}
.videos-grid .video-embed .play-button svg {
  width: 28px; height: 28px;
  fill: var(--color-white);
  margin-left: 3px;
}
.videos-grid .video-embed.playing .play-button { display: none; }
.videos-grid .video-embed.ready::before,
.videos-grid .video-embed.ready::after { display: none; }
.videos-grid .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.videos-grid .video-embed.ready iframe { opacity: 1; }
.videos-grid .video-card-body { padding: 20px 4px 0; }
.videos-grid .video-card-body h4 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  margin-bottom: 6px;
}
.videos-grid .video-card-body p { color: var(--color-grey-text); font-size: 14px; margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .videos-grid .video-embed .play-button { animation: none; }
  .videos-grid .video-embed::before { transition: none; }
}

/* ================================================
   REFERENCES
   ================================================ */
.artists-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.artist-tag {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--color-orange);
  border-radius: 4px;
  font-family: var(--font-subtitle);
  font-size: 14px;
  color: var(--color-white);
  transition: all 0.3s ease;
  background: transparent;
}
.artist-tag:hover,
a.artist-tag:hover {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.3);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-orange), var(--color-grey-mid));
}
.timeline-year {
  position: relative;
  margin-bottom: 40px;
}
.timeline-year h3 {
  font-family: var(--font-display);
  color: var(--color-orange);
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
}
.timeline-year h3::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--color-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
}
.timeline-events {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.timeline-event {
  font-size: 15px;
  color: var(--color-grey-text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.timeline-event strong { color: var(--color-white); }
.timeline-event .event-location {
  color: var(--color-grey-text);
  font-size: 13px;
}

/* Partners grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.partner-item {
  background: var(--color-grey-mid);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.partner-item:hover { border-color: var(--color-orange); }
.partner-item a { color: var(--color-orange); font-size: 12px; display: block; margin-top: 6px; }

/* Affiches grid */
.affiches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.affiche-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.affiche-card:hover { border-color: var(--color-orange); transform: translateY(-4px); }
.affiche-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  transition: filter 0.3s ease;
}
.affiche-card:hover img { filter: brightness(1) contrast(1.1); }
.affiche-card .affiche-info {
  padding: 16px;
  background: var(--color-grey-mid);
}
.affiche-card .affiche-info h4 {
  font-family: var(--font-subtitle);
  font-weight: 600;
  font-size: 1rem;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form {
  background: var(--color-grey-mid);
  border-radius: 8px;
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-subtitle);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-grey-text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-charcoal);
  border: 1px solid var(--color-grey-mid);
  border-radius: 4px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--color-charcoal); }

.contact-info-card {
  background: var(--color-grey-mid);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 106, 0, 0.15);
}
.contact-info-card h4 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.contact-info-card p {
  color: var(--color-grey-text);
  margin-bottom: 8px;
  font-size: 15px;
}
.contact-info-card a { color: var(--color-orange); }
.contact-info-card .info-label {
  color: var(--color-white);
  font-weight: 500;
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 24px;
}
.contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  filter: grayscale(0.8) brightness(0.7) contrast(1.2);
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-grey-mid);
  padding: 16px 28px;
  border-radius: 8px;
  font-family: var(--font-subtitle);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  margin-top: 24px;
}
.facebook-link:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}
.facebook-link svg { width: 24px; height: 24px; fill: currentColor; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--color-charcoal);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .footer-logo { height: 60px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  color: var(--color-grey-text);
  font-style: italic;
  font-size: 15px;
}

.footer-col h4 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  color: var(--color-grey-text);
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--color-orange); }
.footer-col p {
  color: var(--color-grey-text);
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid var(--color-orange);
  border-top-width: 1px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--color-grey-text);
  font-size: 13px;
}
.footer-bottom a { color: var(--color-orange); }

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .studios-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile menu */
@media (max-width: 768px) {
  .burger { display: flex; }

  .nav-main {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-charcoal);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0,0,0,0.5);
  }
  .nav-main.open { right: 0; }

  .nav-main a {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-main a::after { display: none; }

  .header-cta-desktop { display: none; }
  .nav-cta-mobile { display: block !important; }

  .nav-dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    backdrop-filter: none;
    padding: 0 0 0 16px;
    box-shadow: none;
  }

  .services-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-logo { width: 80px; height: 80px; }
  .hero-compact { min-height: 300px; height: 40vh; }
  .hero-buttons { flex-direction: column; align-items: center; }

  section { padding: 60px 0; }
  .section-title { margin-bottom: 40px; }

  .pricing-card { padding: 32px 24px; }

  .affiches-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 375px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  .stat-item .stat-number { font-size: 2rem; }
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11, 11, 13, 0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* Hidden utilities */
.nav-cta-mobile { display: none; }

/* ================================================
   MISC
   ================================================ */
/* ================================================
   PHOTO STRIP (homepage ambiance)
   ================================================ */
.photo-strip {
  padding: 0;
  overflow: hidden;
}
.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.photo-strip-item {
  height: 320px;
  overflow: hidden;
  position: relative;
}
.photo-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 13, 0.3);
  transition: background 0.4s ease;
  pointer-events: none;
}
.photo-strip-item:hover::after {
  background: rgba(11, 11, 13, 0.1);
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.photo-strip-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.1);
}

@media (max-width: 768px) {
  .photo-strip-grid { grid-template-columns: 1fr; }
  .photo-strip-item { height: 220px; }
}

.text-orange { color: var(--color-orange); }
.text-grey { color: var(--color-grey-text); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }
