/* ====================================================================
   THE JAMMERZ — Stylesheet
   Funk / Soul / Groove · Pays Basque
   ==================================================================== */

/* ----- 1. RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #f4f4f8;
  background: #0a0a14;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ----- 2. CSS VARS — CHARTE ----- */
:root {
  --c-bg: #0a0a14;
  --c-bg-2: #14132b;
  --c-bg-3: #1a1840;
  --c-text: #f4f4f8;
  --c-text-dim: #b4b4c4;
  --c-red: #ff3d2e;
  --c-orange: #ff6b4a;
  --c-magenta: #e91e63;
  --c-pink: #ff1493;
  --c-purple: #7b2cbf;
  --c-deep-purple: #5b2e91;
  --c-blue: #2b1b6b;
  --c-indigo: #1a1b4b;
  --grad-primary: linear-gradient(135deg, #ff3d2e 0%, #e91e63 50%, #7b2cbf 100%);
  --grad-soft: linear-gradient(135deg, #ff6b4a 0%, #ff1493 50%, #5b2e91 100%);
  --grad-deep: linear-gradient(180deg, #0a0a14 0%, #14132b 60%, #1a1840 100%);

  --f-display: 'Bungee', 'Anton', sans-serif;
  --f-display-alt: 'Anton', sans-serif;
  --f-body: 'Montserrat', sans-serif;

  --container: 1280px;
  --pad: clamp(16px, 4vw, 64px);
  --radius: 16px;
  --radius-lg: 28px;
}

/* ----- 3. UTILITIES ----- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.accent { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px; border-radius: 100px;
  font-family: var(--f-body); font-weight: 700; font-size: 15px;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  cursor: pointer; position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 40px rgba(255, 61, 46, 0.35), 0 4px 12px rgba(123, 44, 191, 0.25);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 50px rgba(255, 61, 46, 0.5), 0 6px 16px rgba(123, 44, 191, 0.4);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); }
.btn-block { width: 100%; justify-content: center; }
.btn .btn-arrow { transition: transform .35s ease; }
.btn:hover .btn-arrow { transform: translateX(6px); }

/* ----- 4. LOADER ----- */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--c-bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--f-body); font-weight: 300; letter-spacing: 0.5em;
  font-size: clamp(18px, 3vw, 28px); color: var(--c-text-dim);
}
.loader-logo span {
  font-family: var(--f-display); font-weight: 400; letter-spacing: 0.05em;
  background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: inline-block; margin-left: 14px;
  animation: pulseGlow 1.6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.97); }
}

/* ----- 5. CUSTOM CURSOR ----- */
.cursor, .cursor-follower {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease;
  mix-blend-mode: difference;
}
.cursor {
  width: 8px; height: 8px; background: #fff; border-radius: 50%;
}
.cursor-follower {
  width: 36px; height: 36px; border: 1.5px solid rgba(255,255,255,.7); border-radius: 50%;
  transition: width .3s, height .3s, background .3s, border .3s, opacity .3s;
}
.cursor-follower.hover { width: 64px; height: 64px; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,1); }
@media (max-width: 1024px), (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ----- 6. BACKGROUND BLOBS ----- */
.bg-blobs {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background: var(--grad-deep);
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.55;
  will-change: transform;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--c-red); top: -10%; left: -10%;
  animation: blobFloat1 18s ease-in-out infinite;
}
.blob-2 {
  width: 500px; height: 500px;
  background: var(--c-purple); bottom: -10%; right: -10%;
  animation: blobFloat2 22s ease-in-out infinite;
}
.blob-3 {
  width: 400px; height: 400px;
  background: var(--c-pink); top: 40%; left: 50%;
  animation: blobFloat3 20s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(150px, 100px) scale(1.15); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-180px, -120px) scale(0.85); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-30%, -60%) scale(1.2); }
}

/* ----- 7. NAV ----- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all .4s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad); padding-right: var(--pad);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 56px; width: auto;
  display: block;
  transition: transform .35s cubic-bezier(.22,1,.36,1), filter .35s ease;
  filter: drop-shadow(0 4px 16px rgba(255, 61, 46, 0.35));
}
.nav-logo:hover .nav-logo-img { transform: scale(1.06) rotate(-1deg); filter: drop-shadow(0 6px 24px rgba(255, 61, 46, 0.5)); }
.nav.scrolled .nav-logo-img { height: 44px; }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-menu a {
  display: inline-block; padding: 10px 16px;
  font-size: 14px; font-weight: 500; color: var(--c-text-dim);
  transition: color .3s ease;
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--c-text); }
.nav-menu a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 1px; background: var(--grad-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.nav-menu a:not(.nav-cta):hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--grad-primary); color: #fff !important;
  border-radius: 100px; font-weight: 700;
  margin-left: 8px;
  padding: 10px 22px !important;
  box-shadow: 0 6px 20px rgba(255, 61, 46, 0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 61, 46, 0.45); }
.nav-burger { display: none; width: 36px; height: 36px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: #fff; transition: transform .3s ease, opacity .3s ease; }
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- 8. HERO ----- */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; padding: 120px var(--pad) 80px;
  text-align: center;
}
.hero-content { max-width: 1100px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.hero-logo {
  width: clamp(280px, 60vw, 720px);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 30px 80px rgba(255, 61, 46, 0.4));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-tag {
  font-family: var(--f-body); font-weight: 600;
  font-size: clamp(11px, 1.2vw, 14px); letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--c-text-dim); margin-bottom: 0;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 22px); color: var(--c-text);
  margin-bottom: 18px; font-weight: 400;
}
.hero-actions { margin-top: 40px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll span { font-size: 11px; letter-spacing: 0.5em; color: var(--c-text-dim); }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, var(--c-text-dim), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ----- 9. SECTIONS ----- */
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section-head { margin-bottom: clamp(48px, 8vw, 96px); text-align: center; }
.section-num {
  display: inline-block;
  font-family: var(--f-display); font-size: 14px;
  letter-spacing: 0.3em; color: var(--c-text-dim);
  margin-bottom: 16px; opacity: 0.6;
}
.section-num::before { content: '— '; }
.section-num::after { content: ' —'; }
.section-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.95; letter-spacing: -0.01em;
  color: var(--c-text);
}
.section-sub {
  margin-top: 16px; font-size: clamp(15px, 1.5vw, 18px);
  color: var(--c-text-dim); font-weight: 300;
  max-width: 640px; margin-left: auto; margin-right: auto;
}

/* ----- 10. ABOUT ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.about-text .lead {
  font-size: clamp(18px, 2vw, 22px); font-weight: 400;
  color: var(--c-text); margin-bottom: 24px; line-height: 1.5;
}
.about-text p { color: var(--c-text-dim); margin-bottom: 20px; line-height: 1.75; }
.about-text strong { color: var(--c-text); font-weight: 600; }
.about-text em { font-style: normal; color: var(--c-pink); font-weight: 500; }
.about-quote {
  font-family: var(--f-display-alt);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.3; padding: 28px 0 28px 28px;
  border-left: 3px solid;
  border-image: var(--grad-primary) 1;
  margin-top: 32px; font-style: italic;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 20px; text-align: center;
  backdrop-filter: blur(10px);
  transition: transform .4s ease, border-color .4s ease, background .4s ease;
}
.stat:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 61, 46, 0.5);
  background: rgba(255, 61, 46, 0.06);
}
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--c-text-dim); font-weight: 500; }

/* ----- 11. MARQUEE ----- */
.marquee-wrap {
  overflow: hidden; padding: 32px 0; margin: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.marquee {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee span {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: 0.02em;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.marquee span:nth-child(even) {
  background: none; -webkit-text-fill-color: var(--c-text-dim);
  font-size: clamp(20px, 3vw, 40px);
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----- 12. MEMBERS ----- */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.member-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .5s cubic-bezier(.22,1,.36,1), border-color .5s ease;
  isolation: isolate;
}
.member-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--grad-primary);
  opacity: 0; transition: opacity .5s ease;
}
.member-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 61, 46, 0.4);
}
.member-photo {
  aspect-ratio: 4/5; overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--c-bg-2), var(--c-indigo));
}
.member-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .8s cubic-bezier(.22,1,.36,1), filter .5s ease;
  filter: saturate(0.9);
}
.member-card:hover .member-photo img { transform: scale(1.08); filter: saturate(1.2); }
.member-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,20,0.95) 100%);
  pointer-events: none;
}
.member-info { padding: 24px 28px 32px; position: relative; }
.member-name {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1; letter-spacing: 0.02em;
  margin-bottom: 4px;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.member-role {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-text-dim); font-weight: 600;
  margin-bottom: 16px;
}
.member-bio {
  font-size: 14px; line-height: 1.6; color: var(--c-text-dim);
  margin-bottom: 16px;
}
.member-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.member-tags li {
  font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--c-text-dim); font-weight: 500;
}
.member-guest .guest-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--grad-primary); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  padding: 6px 12px; border-radius: 100px;
  box-shadow: 0 4px 12px rgba(255, 61, 46, 0.4);
}

/* ----- 13. LIVE ----- */
.live-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.video-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}
.video-vertical { aspect-ratio: 9/16; }
.video-thumb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .6s ease;
}
.video-thumb::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.video-wrap:hover .video-thumb { transform: scale(1.04); }
.video-play {
  position: relative; z-index: 2;
  width: 96px; height: 96px;
  transition: transform .35s ease;
}
.video-play svg { width: 100%; height: 100%; fill: rgba(255,255,255,0.95); filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5)); }
.video-play svg circle { fill: rgba(255, 61, 46, 0.95); }
.video-play svg polygon { fill: #fff; }
.video-wrap:hover .video-play { transform: scale(1.15); }
.video-label {
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--f-body); font-weight: 700; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(0,0,0,0.7); border-radius: 100px;
  backdrop-filter: blur(10px);
  z-index: 2;
}
.video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-caption {
  margin-top: 14px;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: var(--c-text-dim);
  text-align: center;
}

/* Reels Instagram secondaires (plus petits) */
.reels-grid { margin-top: 64px; }
.reels-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  text-align: center;
  margin-bottom: 32px;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.reels-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.reel-wrap {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.reel-wrap:hover { transform: translateY(-6px); }
.reel-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
@media (max-width: 600px) {
  .reels-row { grid-template-columns: 1fr; max-width: 320px; }
}

/* ----- 14. REPERTOIRE ----- */
.repertoire-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 40px; flex-wrap: wrap;
}
.tab {
  padding: 14px 28px; border-radius: 100px;
  font-family: var(--f-body); font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--c-text-dim);
  transition: all .3s ease;
}
.tab:hover { color: var(--c-text); border-color: rgba(255,255,255,0.3); }
.tab.tab-active {
  background: var(--grad-primary); color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(255, 61, 46, 0.3);
}
.songs {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.songs.songs-active { display: grid; }
.songs li {
  padding: 18px 24px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 14px; font-weight: 500;
  color: var(--c-text);
  transition: all .35s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
  cursor: default;
}
.songs li::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--grad-primary);
  transition: width .4s ease;
}
.songs li:hover {
  transform: translateX(8px);
  border-color: rgba(255, 61, 46, 0.3);
  background: rgba(255, 61, 46, 0.05);
  padding-left: 32px;
}
.songs li:hover::before { width: 4px; }

/* ----- 15. TARIFS ----- */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.tarif-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .4s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
.tarif-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-primary);
  opacity: 0; transition: opacity .4s ease;
  z-index: 0;
}
.tarif-card > * { position: relative; z-index: 1; }
.tarif-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  border-color: transparent;
  box-shadow: 0 30px 80px rgba(255, 61, 46, 0.3);
}
.tarif-card:hover::before { opacity: 0.95; }
.tarif-card:hover .tarif-price,
.tarif-card:hover .tarif-price span,
.tarif-card:hover h3 { color: #fff !important; -webkit-text-fill-color: #fff; }
.tarif-card:hover .tarif-desc { color: rgba(255,255,255,0.9); }
.tarif-icon { font-size: 36px; margin-bottom: 16px; }
.tarif-card h3 {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--c-text);
}
.tarif-desc { color: var(--c-text-dim); font-size: 14px; line-height: 1.6; margin-bottom: 24px; min-height: 64px; }
.tarif-price {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 38px);
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 0.01em;
}
.tarif-price span {
  font-size: 0.6em;
  background: none; -webkit-text-fill-color: var(--c-text-dim);
}
.tarif-price-quote {
  font-size: clamp(22px, 2.5vw, 30px) !important;
  letter-spacing: 0.05em;
}
.tarif-card-featured {
  background: linear-gradient(135deg, rgba(255, 61, 46, 0.1), rgba(123, 44, 191, 0.08));
  border-color: rgba(255, 61, 46, 0.3);
}
.tarif-card-featured::after {
  content: 'POPULAIRE';
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  padding: 4px 10px; border-radius: 100px;
  background: var(--grad-primary); color: #fff;
  z-index: 2;
}
.tarif-card-info { background: rgba(123, 44, 191, 0.06); border-color: rgba(123, 44, 191, 0.2); }
.tarif-cta {
  display: inline-block; margin-top: 12px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.05em;
  color: var(--c-text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ----- 16. CONTACT ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-info h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
  color: var(--c-text);
}
.contact-info > p { color: var(--c-text-dim); line-height: 1.7; margin-bottom: 32px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-list li { display: flex; flex-direction: column; gap: 4px; }
.contact-label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--c-text-dim); font-weight: 600;
}
.contact-list a, .contact-list span:not(.contact-label) {
  font-family: var(--f-display-alt);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--c-text);
}
.contact-list a:hover {
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.socials { display: flex; gap: 12px; }
.social {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--c-text-dim);
  transition: all .35s ease;
}
.social svg { width: 20px; height: 20px; }
.social:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(255, 61, 46, 0.4);
}

.contact-form {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field span {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-text-dim); font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--c-text);
  font-family: var(--f-body); font-size: 15px;
  transition: border-color .3s ease, background .3s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(180,180,196,0.4); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 61, 46, 0.6);
  background: rgba(255, 61, 46, 0.05);
}
.form-field textarea { resize: vertical; min-height: 120px; font-family: var(--f-body); }
.form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%23b4b4c4' stroke-width='2' d='m1 1 5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-field select option { background: var(--c-bg-2); color: var(--c-text); }
.form-note {
  text-align: center; font-size: 12px; color: var(--c-text-dim);
  margin-top: 4px;
}

/* ----- 17. FOOTER ----- */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--f-body); font-weight: 200; letter-spacing: 0.4em;
  font-size: 14px; margin-bottom: 16px;
}
.footer-logo span {
  font-family: var(--f-display); font-weight: 400; letter-spacing: 0.02em;
  font-size: 26px; margin-left: 10px;
  background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-brand p { color: var(--c-text-dim); font-size: 14px; line-height: 1.8; }
.footer-col h4 {
  font-family: var(--f-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-text); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--c-text-dim); font-size: 14px; transition: color .3s ease; }
.footer-col a:hover { color: var(--c-pink); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--c-text-dim); }
.footer-credit { font-style: italic; }

/* ----- 18. TOAST ----- */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translate(-50%, 200%);
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; border-radius: 100px;
  background: var(--grad-primary); color: #fff;
  box-shadow: 0 16px 40px rgba(255, 61, 46, 0.45);
  z-index: 9999;
  font-weight: 600; font-size: 14px;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.toast.show { transform: translate(-50%, 0); }
.toast-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900;
}

/* ----- 19. REVEAL ANIMATIONS ----- */
/* Default: visible (fallback if GSAP n'est pas chargé). */
/* Si JS active la classe .gsap-ready sur <html>, on cache pour animer. */
.gsap-ready [data-reveal] { opacity: 0; transform: translateY(40px); }

/* ----- 20. RESPONSIVE ----- */
@media (max-width: 1024px) {
  .nav-menu { display: none; position: fixed; inset: 70px 0 0 0; flex-direction: column; align-items: stretch; padding: 32px var(--pad); background: rgba(10,10,20,0.98); backdrop-filter: blur(30px); gap: 8px; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 18px 24px; font-size: 18px; }
  .nav-burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: 1fr; }
  .video-vertical { max-width: 360px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .members-grid { grid-template-columns: 1fr; }
}

/* ----- 21. SCROLLBAR ----- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--c-red), var(--c-purple)); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--c-orange), var(--c-pink)); }

/* ----- 22. SELECTION ----- */
::selection { background: var(--c-pink); color: #fff; }

/* ----- 23. REDUCED MOTION ----- */
@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; }
  [data-reveal] { opacity: 1; transform: none; }
}
