/* =========================================================
   Tap Dance Paris — Design System v2
   Palette officielle : #0F2751 · #EF4135 · #FFD700
   ========================================================= */

:root {
  /* Brand palette (fallbacks — overridden by content-loader via theme JSON) */
  --primary-color: #0F2751;
  --primary-light: #1a3a73;
  --primary-dark: #081a36;
  --secondary-color: #EF4135;
  --secondary-hover: #c8342a;
  --accent-color: #ffffff;
  --accent-hover: #f3f3f3;
  --button-text-color: #ffffff;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #fafaf7;
  --cream: #f7f3ec;
  --bg-warm: #fbf9f4;
  --text-dark: #0F2751;
  --text-body: #2a3a58;
  --text-muted: #6c7a96;
  --border: #e3e7ef;
  --shadow-sm: 0 2px 8px rgba(15, 39, 81, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 39, 81, 0.10);
  --shadow-lg: 0 20px 60px rgba(15, 39, 81, 0.15);
  --shadow-primary: 0 10px 40px rgba(15, 39, 81, 0.25);

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Timings */
  --ease: cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition: 250ms var(--ease);
  --transition-slow: 500ms var(--ease);

  /* Layout */
  --container: 1280px;
  --container-sm: 960px;
  --header-h: 88px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { border: 0; background: transparent; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.15; color: var(--text-dark); font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-sm { width: 100%; max-width: var(--container-sm); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.section-bg-cream { background: var(--cream); }
.section-bg-dark { background: var(--primary-color); color: var(--white); }
.section-bg-dark h1, .section-bg-dark h2, .section-bg-dark h3 { color: var(--white); }
.section-bg-dark p { color: rgba(255, 255, 255, 0.8); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1.5px solid var(--secondary-color);
  border-radius: var(--radius-full);
}
.eyebrow-light { color: var(--accent-color); border-color: var(--accent-color); }
.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 20px;
}
.section-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header { text-align: center; margin-bottom: 72px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn i { font-size: 14px; }
.btn-primary {
  background: var(--secondary-color);
  color: var(--button-text-color);
  box-shadow: 0 6px 20px rgba(239, 65, 53, 0.35);
}
.btn-primary:hover { background: var(--secondary-hover); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(239, 65, 53, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary-color); transform: translateY(-2px); }
.btn-dark { background: var(--primary-color); color: var(--white); }
.btn-dark:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-gold { background: var(--accent-color); color: var(--primary-color); }
.btn-gold:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-ghost { padding: 10px 0; color: var(--secondary-color); text-transform: uppercase; font-weight: 700; font-size: 13px; letter-spacing: 0.15em; }
.btn-ghost::after { content: '→'; margin-left: 8px; transition: transform var(--transition); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
  display: flex;
  align-items: center;
}
.header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,39,81,0.85) 0%, rgba(15,39,81,0) 100%);
  backdrop-filter: blur(0px);
  transition: background var(--transition), backdrop-filter var(--transition);
  pointer-events: none;
}
.header.scrolled { height: 72px; }
.header.scrolled::before { background: rgba(15, 39, 81, 0.95); backdrop-filter: blur(12px); }
.header-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; }
.brand img {
  height: 44px;
  width: auto;
  display: block;
  padding: 6px 10px;
  background: #fff;
  border-radius: var(--radius-md);
  box-sizing: content-box;
  transition: height var(--transition);
}
.brand .brand-name { display: none; }
.header.scrolled .brand img { height: 36px; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  color: var(--white);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px;
  bottom: 2px;
  height: 2px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 250ms var(--ease);
}
.nav a:not(.nav-cta):hover::after { transform: scaleX(0.6); }
.nav a:not(.nav-cta).active::after { transform: scaleX(1); }
.nav a.active { color: var(--white); font-weight: 600; }
.nav .nav-cta {
  background: var(--secondary-color);
  color: var(--white);
  margin-left: 12px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(239, 65, 53, 0.35);
}
.nav .nav-cta:hover { background: var(--secondary-hover); transform: translateY(-1px); }
.nav .nav-cta.active { background: var(--secondary-hover); box-shadow: 0 4px 14px rgba(239, 65, 53, 0.55), inset 0 0 0 2px rgba(255,255,255,0.4); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  align-items: center;
  justify-content: center;
}
.nav-toggle i { font-size: 22px; }

/* ---------- Hero (generic) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 64px) 0 64px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--hero-bg, linear-gradient(135deg, #0F2751 0%, #1a3a73 100%));
  background-size: cover;
  background-position: var(--hero-bg-position, center);
  z-index: 0;
}
.hero.hero-bg-top::before { --hero-bg-position: center 20%; }
.hero.hero-bg-lower::before { --hero-bg-position: center 35%; }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,39,81,0.60) 0%, rgba(15,39,81,0.85) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 20px;
  padding: 8px 18px;
  border: 1.5px solid var(--accent-color);
  border-radius: var(--radius-full);
}
.hero-title {
  font-size: clamp(40px, 6.2vw, 84px);
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 18px;
  max-width: 900px;
}
.hero-title em {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  margin-top: 10px;
  letter-spacing: 0.01em;
  max-width: 640px;
}
.hero-subtitle {
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin-bottom: 28px;
  line-height: 1.5;
}
.hero-slogan {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(239, 65, 53, 0.6);
  border-radius: var(--radius-full);
}
.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.hero-highlight i { color: var(--secondary-color); font-size: 12px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* Page hero (shorter than home hero) */
.page-hero { min-height: 60vh; padding: calc(var(--header-h) + 80px) 0 80px; }
.page-hero .hero-title { font-size: clamp(36px, 5.5vw, 68px); }

/* ---------- Intro block ---------- */
.intro {
  padding: 120px 0;
  text-align: center;
}
.intro-eyebrow { margin-bottom: 24px; }
.intro-title { font-size: clamp(32px, 4.5vw, 56px); margin-bottom: 28px; }
.intro-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
}
.feature-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--accent-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}
.feature-title { font-size: 22px; margin-bottom: 12px; color: var(--primary-color); }
.feature-text { font-size: 15px; color: var(--text-muted); margin: 0; }

/* ---------- Poles (home grid) ---------- */
.poles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.pole-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: block;
  color: var(--white);
  transition: transform var(--transition-slow);
  isolation: isolate;
}
.pole-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,39,81,0) 35%, rgba(15,39,81,0.9) 100%);
  z-index: 1;
  transition: background var(--transition);
}
.pole-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.pole-card:hover img { transform: scale(1.06); }
.pole-card:hover::after { background: linear-gradient(180deg, rgba(15,39,81,0.1) 0%, rgba(15,39,81,0.95) 100%); }
.pole-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 32px 28px;
}
.pole-title { font-size: 28px; color: var(--white); margin-bottom: 8px; }
.pole-text { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.pole-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-color);
}
.pole-cta::after { content: '→'; transition: transform var(--transition); }
.pole-card:hover .pole-cta::after { transform: translateX(6px); }

/* ---------- Spectacle cards ---------- */
.spectacles-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 80px;
}
.spectacle-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.spectacle-card:nth-child(even) .spectacle-media { order: 2; }
.spectacle-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.spectacle-media img, .spectacle-media iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.spectacle-media .play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(239, 65, 53, 0.95);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  transition: transform var(--transition), background var(--transition);
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(239, 65, 53, 0.5);
}
.spectacle-media .play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.spectacle-body { padding: 20px 0; }
.spectacle-name { font-size: clamp(32px, 3.5vw, 48px); margin-bottom: 8px; color: var(--primary-color); }
.spectacle-partner { display: inline-block; font-size: 14px; font-weight: 600; color: var(--secondary-color); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 20px; }
.spectacle-tagline { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--text-muted); margin-bottom: 24px; }
.spectacle-description { font-size: 16px; line-height: 1.7; color: var(--text-body); margin-bottom: 24px; }
.spectacle-points { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 10px; }
.spectacle-points li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-body);
}
.spectacle-points li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  margin-top: 10px;
  flex-shrink: 0;
}

/* ---------- Offers grid (Événementiel) ---------- */
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.offer-media { aspect-ratio: 16/10; overflow: hidden; }
.offer-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.offer-card:hover .offer-media img { transform: scale(1.08); }
.offer-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.offer-name { font-size: 22px; margin-bottom: 8px; color: var(--primary-color); }
.offer-format { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--secondary-color); margin-bottom: 14px; }
.offer-description { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; flex: 1; }

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.price-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--secondary-color); }
.price-label { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary-color); margin-bottom: 18px; min-height: 32px; }
.price-value { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--secondary-color); line-height: 1; margin-bottom: 14px; }
.price-note { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ---------- Levels ---------- */
.levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.level-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--secondary-color);
  box-shadow: var(--shadow-sm);
}
.level-name { font-size: 20px; margin-bottom: 4px; color: var(--primary-color); }
.level-duration { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--secondary-color); margin-bottom: 14px; }
.level-description { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ---------- Studios / teachers list ---------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.person-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.person-name { font-size: 22px; margin-bottom: 6px; color: var(--primary-color); }
.person-role { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--secondary-color); margin-bottom: 14px; }
.person-bio { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ---------- Videos grid ---------- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.video-frame {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  background: var(--primary-color);
  overflow: hidden;
  cursor: pointer;
}
.video-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.video-frame:hover img { transform: scale(1.05); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame .play-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 12px 36px rgba(239, 65, 53, 0.5);
  transition: transform var(--transition), background var(--transition);
  pointer-events: none;
  padding-left: 4px;
}
.video-frame:hover .play-overlay { transform: translate(-50%, -50%) scale(1.1); background: var(--secondary-hover); }
.video-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,39,81,0) 40%, rgba(15,39,81,0.6) 100%);
  pointer-events: none;
}
.video-meta { padding: 22px 24px; }
.video-title { font-size: 18px; margin-bottom: 4px; color: var(--primary-color); }
.video-caption { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ---------- Press quotes (editorial strip) ---------- */
.press-quotes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px 48px;
  margin: 56px auto 0;
  max-width: 1200px;
}
.press-quote {
  flex: 0 1 200px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-align: center;
  position: relative;
}
.press-quote::before {
  content: '“';
  display: block;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.7;
  color: var(--secondary-color);
  margin-bottom: 12px;
}
.press-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  line-height: 1.4;
  margin: 0 auto 16px;
  max-width: 220px;
}
.press-quote-source {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  font-style: normal;
}
@media (max-width: 1000px) {
  .press-quotes { gap: 40px 32px; }
  .press-quote { flex-basis: 180px; }
  .press-quote-text { font-size: 18px; }
}
@media (max-width: 560px) {
  .press-quotes { gap: 32px; }
  .press-quote { flex-basis: 100%; }
}

/* ---------- References (logo bar, centered wrap) ---------- */
.references {
  list-style: none;
  padding: 0;
  margin: 48px auto 0;
  max-width: 1040px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 44px;
}
.references li {
  list-style: none;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-color);
  opacity: 0.72;
  transition: opacity 200ms var(--ease);
  white-space: nowrap;
}
.references li:hover { opacity: 1; }
.section-bg-dark .references li { color: rgba(255,255,255,0.85); opacity: 0.9; }
.section-bg-dark .references li:hover { color: var(--white); opacity: 1; }

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  counter-reset: step;
}
.process-step { position: relative; padding-top: 16px; }
.process-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  display: inline-block;
  position: relative;
}
.process-num::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  margin-top: 8px;
}
.process-title { font-size: 20px; margin-bottom: 8px; color: var(--primary-color); }
.process-text { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ---------- Agenda list ---------- */
.agenda-list { display: flex; flex-direction: column; gap: 20px; margin-top: 56px; }
.agenda-item {
  display: grid;
  grid-template-columns: 200px 160px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.agenda-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.agenda-date { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--secondary-color); }
.agenda-type { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary-color); padding: 6px 12px; background: rgba(15,39,81,0.08); border-radius: var(--radius-full); text-align: center; }
.agenda-title { font-size: 18px; font-family: var(--font-display); color: var(--primary-color); margin-bottom: 4px; }
.agenda-location { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ---------- Archives ---------- */
.archives {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.archive-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.archive-date { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--secondary-color); margin-bottom: 10px; }
.archive-title { font-size: 18px; font-family: var(--font-display); color: var(--primary-color); margin-bottom: 10px; }
.archive-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  margin-top: 56px;
}
.contact-infos { display: flex; flex-direction: column; gap: 20px; }
.contact-info {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.contact-info:hover { transform: translateY(-2px); }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-color);
  color: var(--accent-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-value { font-size: 16px; color: var(--primary-color); font-weight: 600; }
.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--primary-color); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  background: var(--bg-warm);
  transition: border-color var(--transition), background var(--transition);
  font-family: inherit;
}
.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: var(--white);
}
textarea.form-control { min-height: 140px; resize: vertical; }
.form-submit { width: 100%; margin-top: 8px; }

/* ---------- CTA band (light, breathes before footer) ---------- */
.cta-band {
  padding: 96px 0;
  background: var(--bg-warm);
  color: var(--primary-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(239, 65, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(15, 39, 81, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .section-title { color: var(--primary-color); }
.cta-band .eyebrow-light { color: var(--secondary-color); border-color: var(--secondary-color); }
.cta-band-text { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 36px; }
.cta-band-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band .btn-outline { color: var(--primary-color); border-color: var(--primary-color); }
.cta-band .btn-outline:hover { background: var(--primary-color); color: var(--white); }
.cta-band .btn-gold { background: var(--secondary-color); color: var(--white); }
.cta-band .btn-gold:hover { background: var(--secondary-hover); }

/* ---------- Footer ---------- */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand { max-width: 360px; }
.footer-brand-name { color: var(--white); font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 14px; }
.footer-brand-name img { height: 44px; width: auto; padding: 6px 10px; background: #fff; border-radius: var(--radius-md); box-sizing: content-box; }
.footer-tagline { font-size: 14px; line-height: 1.65; margin-bottom: 16px; color: rgba(255,255,255,0.65); }
.footer-slogan { display: inline-block; padding: 8px 18px; border: 1px solid var(--accent-color); color: var(--accent-color); border-radius: var(--radius-full); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; }
.footer-col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent-color); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--accent-color); }

/* ---------- Reveal on scroll (like AOS) ---------- */
.reveal { transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
html:not(.js-reveal) .reveal { opacity: 1; transform: none; }
.js-reveal .reveal { opacity: 0; transform: translateY(32px); }
.js-reveal .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js-reveal .reveal-left { transform: translateX(-40px); }
.js-reveal .reveal-right { transform: translateX(40px); }
.js-reveal .reveal-zoom { transform: scale(0.94); }
.js-reveal .reveal-left.is-visible,
.js-reveal .reveal-right.is-visible,
.js-reveal .reveal-zoom.is-visible { transform: none; }
.js-reveal .reveal[data-delay="100"] { transition-delay: 100ms; }
.js-reveal .reveal[data-delay="200"] { transition-delay: 200ms; }
.js-reveal .reveal[data-delay="300"] { transition-delay: 300ms; }
.js-reveal .reveal[data-delay="400"] { transition-delay: 400ms; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .poles { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .levels { grid-template-columns: repeat(2, 1fr); }
  .offers { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .themes-grid { grid-template-columns: repeat(2, 1fr); }
  .themes-grid .theme-card { grid-column: auto; }
  .themes-grid .theme-card:nth-child(4):nth-last-child(2),
  .themes-grid .theme-card:nth-child(5):nth-last-child(1) { grid-column: auto; }
  .archives { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > :nth-child(4) { grid-column: 1 / -1; }
}

/* ---------- Planning (cours) ---------- */
.planning-block {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(15, 39, 81, 0.1);
}
.planning-header { margin-bottom: 40px; }
.planning-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 36px);
  color: var(--primary-color);
  margin: 10px 0 8px;
}
.planning-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}
.planning-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 39, 81, 0.08);
  box-shadow: 0 10px 32px rgba(15, 39, 81, 0.06);
}
.planning-row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.6fr 1.4fr;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(15, 39, 81, 0.06);
  gap: 16px;
}
.planning-row:last-child { border-bottom: 0; }
.planning-row-head {
  background: var(--primary-color);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.planning-row-head span { color: rgba(255, 255, 255, 0.85); }
.planning-day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
}
.planning-time {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  letter-spacing: 0.02em;
}
.planning-level {
  font-size: 15px;
  color: var(--text-color);
}
.planning-studio {
  font-size: 13px;
  color: var(--text-muted);
}
.planning-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ---------- Châtelet highlight (cours) ---------- */
.chatelet-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 39, 81, 0.08);
  box-shadow: 0 16px 48px rgba(15, 39, 81, 0.08);
}
.chatelet-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.chatelet-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.chatelet-card:hover .chatelet-media img { transform: scale(1.03); }
.chatelet-body { padding: 48px 48px 48px 0; }
.chatelet-title { font-size: clamp(24px, 2.6vw, 34px) !important; margin: 10px 0 16px !important; }
.chatelet-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0 0 24px;
}

/* ---------- Themes grid (evenementiel — mosaïque 3+2 centrée pour 5 items) ---------- */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}
.theme-card { grid-column: span 2; }
/* 5e item : centre les 2 dernières cartes sur la 2e rangée */
.themes-grid .theme-card:nth-child(4):nth-last-child(2) { grid-column: 2 / span 2; }
.themes-grid .theme-card:nth-child(5):nth-last-child(1) { grid-column: 4 / span 2; }
.theme-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid rgba(15, 39, 81, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 39, 81, 0.08);
  border-color: rgba(239, 65, 53, 0.25);
}
.theme-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(239, 65, 53, 0.08);
  color: var(--secondary-color);
  font-size: 26px;
  margin-bottom: 22px;
}
.theme-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--primary-color);
  margin: 0 0 12px;
}
.theme-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-color);
  margin: 0;
}

/* ---------- Spectacle actions (multi-button row) ---------- */
.spectacle-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.btn-outline-dark {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-outline-dark:hover { background: var(--primary-color); color: var(--white); transform: translateY(-2px); }
.btn-outline-dark i { font-size: 12px; }

/* ---------- Bios (spectacles.html — artistes) ---------- */
.bios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: stretch;
}
.bio-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 39, 81, 0.08);
  box-shadow: 0 10px 40px rgba(15, 39, 81, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.bio-name {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
  color: var(--primary-color);
  margin: 0 0 6px;
}
.bio-role {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 18px;
}
.bio-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0 0 24px;
  flex: 1 0 auto;
}
.bio-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 4px;
  transition: color var(--transition), border-color var(--transition);
}
.bio-link:hover { color: var(--secondary-hover); border-bottom-color: var(--secondary-hover); }
.bio-link i { font-size: 12px; }

/* ---------- Booking block ---------- */
.booking-block {
  background: var(--white);
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 39, 81, 0.08);
  box-shadow: 0 16px 48px rgba(15, 39, 81, 0.08);
  text-align: center;
}
.booking-block .eyebrow { margin-bottom: 14px; }
.booking-block .section-title { font-size: 36px; margin-bottom: 10px; }
.booking-block .intro-lead { margin-bottom: 28px; }
.booking-details {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.booking-details li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-color);
}
.booking-details li i {
  color: var(--secondary-color);
  font-size: 14px;
  width: 20px;
  text-align: center;
}
.booking-details li a { color: var(--primary-color); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color var(--transition); }
.booking-details li a:hover { border-color: var(--secondary-color); }
.booking-details li strong { font-weight: 700; letter-spacing: 0.02em; color: var(--primary-color); }

@media (max-width: 880px) {
  .section { padding: 72px 0; }
  .intro { padding: 80px 0; }
  .nav { position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: var(--primary-color); flex-direction: column; align-items: stretch; padding: 100px 28px 28px; gap: 8px; transition: right var(--transition); box-shadow: -20px 0 60px rgba(0,0,0,0.3); }
  .nav.open { right: 0; }
  .nav a { padding: 14px 20px; border-radius: var(--radius-md); }
  .nav .nav-cta { margin-left: 0; margin-top: 12px; text-align: center; }
  .nav-toggle { display: flex; z-index: 110; }
  .hero-title { font-size: clamp(36px, 10vw, 60px); }
  .spectacle-card { grid-template-columns: 1fr; gap: 32px; }
  .spectacle-card:nth-child(even) .spectacle-media { order: 0; }
  .spectacles-list { gap: 88px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .agenda-item { grid-template-columns: 1fr; gap: 12px; padding: 24px; text-align: left; }
  .agenda-date, .agenda-type { justify-self: start; }
}

@media (max-width: 880px) {
  .bios { grid-template-columns: 1fr; gap: 32px; }
  .bio-card { padding: 32px; }
  .booking-block { padding: 40px 28px; }
  .booking-block .section-title { font-size: 28px; }
  .chatelet-card { grid-template-columns: 1fr; gap: 0; }
  .chatelet-body { padding: 32px; }
}

@media (max-width: 720px) {
  .planning-row { grid-template-columns: 1fr 1fr; gap: 8px 16px; padding: 18px; }
  .planning-row-head { display: none; }
  .planning-day { grid-column: 1; }
  .planning-time { grid-column: 2; text-align: right; }
  .planning-level { grid-column: 1 / -1; font-weight: 600; }
  .planning-studio { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .feature-grid, .poles, .offers, .pricing, .levels, .people-grid, .videos-grid, .themes-grid, .archives, .process { grid-template-columns: 1fr; }
  .themes-grid .theme-card { grid-column: 1 / -1; }
  .hero { min-height: 85vh; padding-top: calc(var(--header-h) + 48px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .btn { padding: 14px 26px; font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
