/* ═══════════════════════════════════════════════════════════
   TQMO — Te Quiero Mucho Orchestra
   tqmo.css — feuille de style dédiée, extraite de index.html
   L'Art-Scène · Lausanne · Suisse
   ═══════════════════════════════════════════════════════════ */

/* ── Variables & reset ───────────────────────────────────── */
:root {
  --black:   #000000;
  --white:   #ffffff;
  --cyan:    #00E5FF;
  --magenta: #FF0066;
  --yellow:  #FFE600;
  --khaki:   #8B8B4E;
  --font-display: 'Anton', Impact, sans-serif;
  --font-ui:      'Nunito', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── Filigrane vidéo ─────────────────────────────────────── */
.video-credit {
  position: absolute;
  bottom: 12px; right: 16px;
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.18);
  pointer-events: none; user-select: none;
}

/* ── Curseur custom ──────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.18s ease, height 0.18s ease, background 0.2s ease;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
}
.cursor.large { width: 48px; height: 48px; }

/* ═══════════════════════════════════════════════════════════
   BURGER NAV — centré Studio Moross
   ═══════════════════════════════════════════════════════════ */
.tqmo-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  mix-blend-mode: difference;
}
.tqmo-logo {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  opacity: 0.7;
}
.tqmo-logo img { height: 31px; width: auto; }

/* ── Spot de scène — bouton menu ─────────────────────────── */
/* Mode hero : centré en haut */
.burger-wrap {
  position: fixed; top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex; flex-direction: column;
  align-items: center; gap: 0;
  cursor: pointer; padding: 0;
  background: none; border: none;
  transition: top 0.4s var(--ease), left 0.4s var(--ease), transform 0.4s var(--ease);
}
/* ── Mode scroll : haut droite */
.burger-wrap.scrolled {
  top: 16px;
  left: auto;
  right: 36px;
  transform: none;
}

/* Disque vinyle burger */
.burger-vinyl {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #0d0d0d;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.burger-vinyl.spinning {
  animation: vinylSpin 3s linear infinite;
}

/* Label MENU dans le vinyle */
.burger-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  position: absolute;
  pointer-events: none;
  transition: opacity 0.25s;
  text-shadow: 0 0 8px rgba(0,0,0,0.9);
  font-weight: 700;
  z-index: 1;
}
.burger-wrap.open .burger-label { opacity: 0; }

/* Croix fermeture */
.burger-close {
  position: absolute;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.burger-wrap.open .burger-close { opacity: 1; }

/* ── Vinyle : visible en mode hero, masqué en mode scroll ── */
.burger-vinyl { transition: opacity 0.3s, transform 0.3s; }
.burger-wrap.scrolled .burger-vinyl { opacity: 0; pointer-events: none; transform: scale(0.7); position: absolute; }

/* ── Onde sonore burger (mode scroll) ───────────────────── */
.burger-wave {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center; gap: 3px;
  background: rgba(0,0,0,0.88);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0; pointer-events: none;
  transform: scale(0.8) translateX(10px);
  transition: opacity 0.3s, transform 0.35s var(--ease);
  box-sizing: border-box;
}
.burger-wrap.scrolled .burger-wave { opacity: 1; pointer-events: auto; transform: scale(1) translateX(0); }
.burger-wave__bar {
  display: block;
  width: 2.5px; height: 18px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transform-origin: center;
  animation: waveBar 1.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.18s);
}
@keyframes waveBar {
  0%, 100% { transform: scaleY(0.2); }
  50%       { transform: scaleY(1); }
}

/* ── Menu plein écran ────────────────────────────────────── */
.nav-overlay {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 150;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
  clip-path: polygon(50% 0%, 50% 0%, 50% 0%);
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
}
.nav-overlay.open {
  clip-path: polygon(50% -10%, 110% 110%, -10% 110%);
  pointer-events: all;
}

/* Flèche vectorielle masque */
.nav-arrow-mask {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 60px;
  opacity: 0.15;
}

.nav-items {
  list-style: none; width: 100%;
  display: flex; flex-direction: column;
  align-items: center;
}
.nav-item {
  width: 100%; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.nav-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-item a {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  padding: 18px 60px;
  font-family: var(--font-display);
  color: var(--white); text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-item:nth-child(1) a { font-size: clamp(32px, 5.5vw, 58px); }
.nav-item:nth-child(2) a { font-size: clamp(28px, 4.8vw, 50px); }
.nav-item:nth-child(3) a { font-size: clamp(24px, 4.2vw, 44px); }
.nav-item:nth-child(4) a { font-size: clamp(20px, 3.5vw, 38px); }
.nav-item:nth-child(5) a { font-size: clamp(18px, 3vw, 32px); }
.nav-item:nth-child(1) a:hover { color: var(--cyan); }
.nav-item:nth-child(2) a:hover { color: var(--magenta); }
.nav-item:nth-child(3) a:hover { color: var(--yellow); }
.nav-item:nth-child(4) a:hover { color: var(--khaki); }
.nav-item:nth-child(5) a:hover { color: var(--cyan); }
.nav-num {
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.3); letter-spacing: 0.2em;
}
.nav-footer {
  position: absolute; bottom: 40px; left: 60px;
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.25); letter-spacing: 0.2em;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.tqmo-hero {
  position: relative; width: 100%; height: 100vh;
  min-height: 600px; overflow: hidden;
  background: #000;
}
#heroCanvas {
  background: #000;
}
.tqmo-hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  filter: brightness(0.5) contrast(1.3) saturate(0.15);
}
.tqmo-hero__layer {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}

/* ── RGB SPLIT — décalages fixes ─────────────────────────── */
.tqmo-hero__layer--c {
  mix-blend-mode: screen; opacity: 0.85;
  filter: sepia(1) hue-rotate(155deg) saturate(22) brightness(0.7) contrast(1.4);
  transform: translateX(44px);
}
.tqmo-hero__layer--m {
  mix-blend-mode: screen; opacity: 0.78;
  filter: sepia(1) hue-rotate(285deg) saturate(22) brightness(0.65) contrast(1.4);
  transform: translateX(-42px);
}
.tqmo-hero__layer--y {
  mix-blend-mode: screen; opacity: 0.55;
  filter: grayscale(1) brightness(1.4) contrast(1.2);
  transform: translateX(34px);
  background-color: #FFE600;
}
.tqmo-hero__layer--w {
  mix-blend-mode: screen; opacity: 0.55;
  filter: sepia(1) hue-rotate(200deg) saturate(20) brightness(0.6) contrast(1.3);
  transform: translateX(-30px);
}

/* Overlay dégradé bas */
.tqmo-hero__grain {
  position: absolute; inset: 0;
  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)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: 0.4;
}
.tqmo-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}

/* Filtre jaune hero */
.tqmo-hero__yellow {
  position: absolute; inset: 0;
  background: #FFE600;
  mix-blend-mode: multiply;
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
}

/* ── Typo draw-on ────────────────────────────────────────── */
#heroTypeCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 4;
}

/* ── Indicateur scroll — vinyle filaire, sillons qui se tracent ── */
.hero-vinyl {
  position: absolute;
  bottom: 52px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: none; border: none; padding: 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease);
}
.hero-vinyl:hover { transform: translateX(-50%) scale(1.08); }
.hero-vinyl__svg { display: block; }
.hero-vinyl__groove {
  transition: stroke-dashoffset 0.4s ease;
  animation: grooveTrace 3.2s ease-in-out infinite;
}
.hero-vinyl__groove[data-r="16"] { animation-delay: 0s; }
.hero-vinyl__groove[data-r="12"] { animation-delay: 0.25s; }
.hero-vinyl__groove[data-r="8"]  { animation-delay: 0.5s; }
@keyframes grooveTrace {
  0%   { stroke-dashoffset: var(--dash, 100); }
  50%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: var(--dash, 100); }
}
.hero-vinyl__groove[data-r="16"] { --dash: 100.5; }
.hero-vinyl__groove[data-r="12"] { --dash: 75.4; }
.hero-vinyl__groove[data-r="8"]  { --dash: 50.3; }

/* ── Label Découvrir — cliquable ─────────────────────────── */
.hero-discover {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: none; border: none; padding: 4px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  cursor: pointer;
}
.hero-discover__label {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.35em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.hero-discover:hover .hero-discover__label { color: rgba(255,255,255,0.7); }
.hero-discover__chevron { animation: chevronBounce 1.6s ease-in-out infinite; }
@keyframes chevronBounce {
  0%, 100% { transform: translateY(0);   opacity: 0.35; }
  50%       { transform: translateY(5px); opacity: 0.8; }
}

/* ═══════════════════════════════════════════════════════════
   BANDES TITRE — sous le hero
   ═══════════════════════════════════════════════════════════ */
.tqmo-title-bands {
  width: 100%; background: var(--black);
  overflow: hidden;
}
.tqmo-title-bands .tqmo-hero__band {
  transform: translateX(0) !important;
  animation: none !important;
  opacity: 1 !important;
  transition: background 0.4s ease;
}
/* Survol individuel par bande — chaque bande change sa propre couleur */
.tqmo-hero__band--te:hover     { background: var(--magenta) !important; }
.tqmo-hero__band--quiero:hover { background: var(--yellow)  !important; }
.tqmo-hero__band--mucho:hover  { background: var(--cyan)    !important; }
/* Orchestra reste fixe — pas de changement au survol */
.tqmo-hero__title-wrap { display: none !important; }
.tqmo-hero__sub { display: none !important; }

/* Titre hero — bandes */
.tqmo-hero__band {
  display: flex; align-items: center;
  border-top: 2px solid rgba(255,255,255,0.12);
  padding: 4px 0;
  overflow: hidden;
  transform: translateX(-100%);
  animation: slideIn 0.8s var(--ease) forwards;
}
.tqmo-hero__band:nth-child(1) { animation-delay: 0.1s; }
.tqmo-hero__band:nth-child(2) { animation-delay: 0.25s; }
.tqmo-hero__band:nth-child(3) { animation-delay: 0.4s; }
.tqmo-hero__band:nth-child(4) { animation-delay: 0.55s; }
.tqmo-hero__band--te    { background: var(--cyan);    border-color: var(--cyan); }
.tqmo-hero__band--quiero { background: var(--magenta); border-color: var(--magenta); }
.tqmo-hero__band--mucho  { background: var(--yellow);  border-color: var(--yellow); }
.tqmo-hero__band--orch   { background: transparent; }

.tqmo-hero__word {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 140px);
  letter-spacing: -0.02em; line-height: 0.95;
  padding: 0 40px;
  white-space: nowrap; display: block; width: 100%;
}
.tqmo-hero__band--te     .tqmo-hero__word { color: var(--black); }
.tqmo-hero__band--quiero .tqmo-hero__word { color: var(--black); }
.tqmo-hero__band--mucho  .tqmo-hero__word { color: var(--black); }
.tqmo-hero__band--orch   .tqmo-hero__word { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   PASTILLE VINYLE BACK-TO-TOP — bas droite, filaire SVG
   Décalée pour ne pas chevaucher d'autres éléments fixes
   ═══════════════════════════════════════════════════════════ */
.vinyl-top {
  position: fixed; bottom: 32px; right: 64px;
  transform: translateY(20px);
  z-index: 200;
  cursor: pointer; background: none; border: none; padding: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.vinyl-top.visible {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}

/* Halo de contraste — visible même sur fonds clairs/colorés */
.vinyl-top__halo {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: -1;
}

.vinyl-top__svg { display: block; }

/* Sillons fixes en repos — tournent ensemble au survol */
.vinyl-top__grooves {
  transform-origin: 26px 26px;
}
.vinyl-top:hover .vinyl-top__grooves {
  animation: vinylTopSpin 2s linear infinite;
}
@keyframes vinylTopSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Bras de lecture — reste fixe, ne tourne pas avec les sillons */
.vinyl-top__arm { transform-origin: 40px 40px; }

@media (max-width: 768px) {
  .vinyl-top { right: 20px; bottom: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   BANDES COULEUR — The Outline style
   ═══════════════════════════════════════════════════════════ */
.tqmo-section { padding: 80px 40px; }
.tqmo-section--cyan    { background: var(--cyan);    color: var(--black); }
.tqmo-section--magenta { background: var(--magenta); color: var(--black); }
.tqmo-section--yellow  { background: var(--yellow);  color: var(--black); }
.tqmo-section--dark    { background: #0a0a0a;        color: var(--white); }
.tqmo-section--black   { background: var(--black);   color: var(--white); }

.section-label {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; letter-spacing: 0.5em;
  text-transform: uppercase; opacity: 0.5;
  margin-bottom: 32px; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: -0.02em; line-height: 0.95;
  margin-bottom: 40px;
}

/* ═══════════════════════════════════════════════════════════
   GENÈSE
   ═══════════════════════════════════════════════════════════ */
.genese-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.genese-text p {
  font-size: 16px; line-height: 1.9;
  margin-bottom: 20px; opacity: 0.85; font-weight: 300;
}
.genese-text p strong { font-weight: 700; }
.genese-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.5em; text-transform: uppercase;
  opacity: 0.4; display: block; margin-bottom: 16px;
}

/* Stats */
.tqmo-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 40px;
}
.stat { background: rgba(255,255,255,0.04); padding: 24px 20px; }
.tqmo-section--cyan .stat,
.tqmo-section--yellow .stat { background: rgba(0,0,0,0.08); }
.stat-value {
  font-family: var(--font-display); font-size: 36px;
  display: block; line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════
   GALERIE — grille 3 colonnes
   ═══════════════════════════════════════════════════════════ */
.tqmo-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1.05fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  min-height: 600px;
}
.tqmo-gallery__item {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
}
/* La photo du milieu (haut, 2e enfant de la grille) ne doit pas garder un
   ratio fixe : elle doit s'étirer sur toute la hauteur réelle de sa ligne
   de grille, qui peut être dictée par la mosaïque voisine (colonne 3) —
   sinon : vide noir résiduel sous la photo. */
.tqmo-gallery > .tqmo-gallery__item:nth-child(2) {
  aspect-ratio: auto;
}
/* Grande photo gauche — 2 lignes */
.tqmo-gallery__item--main { grid-row: span 2; aspect-ratio: auto; }

/* Zone mosaïque typographique TQMO — col 3, ligne 1 */
.tqmo-gallery__item--label {
  background: var(--black);
  padding: 0;
  aspect-ratio: auto;
  overflow: hidden;
  display: flex;
}
#tqmo-mosaic-cell {
  width: 100%;
  height: 100%;
}
.tqmo-gallery__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease); filter: saturate(0.7);
}
.tqmo-gallery__item:hover .tqmo-gallery__img { transform: scale(1.04); filter: saturate(1); }

/* Effet offset print tramé */
.tqmo-gallery__item.offset::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.8) 1px, transparent 1px);
  background-size: 3px 3px; mix-blend-mode: multiply; pointer-events: none;
}
.tqmo-gallery__item.offset .tqmo-gallery__img {
  filter: grayscale(0.6) contrast(1.3) brightness(0.9);
}
.tqmo-gallery__item.duotone-cyan .tqmo-gallery__img {
  filter: grayscale(1) sepia(1) hue-rotate(160deg) saturate(4) brightness(0.8);
}
.tqmo-gallery__item.duotone-magenta .tqmo-gallery__img {
  filter: grayscale(1) sepia(1) hue-rotate(290deg) saturate(5) brightness(0.85);
}

/* ═══════════════════════════════════════════════════════════
   DATES — agenda
   ═══════════════════════════════════════════════════════════ */
.dates-list { list-style: none; }
.date-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  align-items: center; gap: 32px; padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08); transition: background 0.3s;
}
.tqmo-section--cyan .date-item { border-color: rgba(0,0,0,0.12); }
.date-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.tqmo-section--cyan .date-item:first-child { border-color: rgba(0,0,0,0.12); }
.date-day {
  font-family: var(--font-display); font-size: 48px;
  line-height: 1; letter-spacing: -0.02em;
}
.date-info { display: flex; flex-direction: column; gap: 4px; }
.date-venue { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.02em; }
.date-location {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.5;
}
.date-badge {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  padding: 6px 12px; border: 1px solid currentColor; white-space: nowrap;
}
.badge--dispo  { color: var(--black); background: rgba(0,0,0,0.1); }
.badge--option { opacity: 0.5; }

/* ═══════════════════════════════════════════════════════════
   FORMULAIRE — Bacs vinyle profil
   ═══════════════════════════════════════════════════════════ */
.contact-profiles {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; margin-bottom: 48px;
}
.profile-card {
  padding: 32px 24px;
  border: 2px solid rgba(255,255,255,0.08);
  cursor: none; transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.profile-card::before {
  content: ''; position: absolute; inset: 0;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}
.profile-card--prog::before   { background: var(--cyan); }
.profile-card--public::before  { background: var(--magenta); }
.profile-card--mecene::before  { background: var(--yellow); }
.profile-card:hover::before,
.profile-card.active::before   { transform: scaleY(1); }
.profile-card:hover *,
.profile-card.active *         { color: var(--black) !important; position: relative; z-index: 1; }
.profile-icon {
  display: block; width: 32px; height: 32px;
  margin-bottom: 16px; color: rgba(255,255,255,0.4); transition: color 0.3s;
}
.profile-card:hover .profile-icon,
.profile-card.active .profile-icon { color: rgba(0,0,0,0.6); }
.profile-title {
  font-family: var(--font-display); font-size: 24px;
  display: block; margin-bottom: 8px; color: var(--white);
}
.profile-desc {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); line-height: 1.6;
}

/* Formulaire champs */
.tqmo-form { display: none; }
.tqmo-form.active { display: block; }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-bottom: 2px;
}
.form-field { position: relative; background: rgba(255,255,255,0.04); }
.form-field--full { grid-column: span 2; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%; padding: 20px 20px 8px;
  background: transparent; border: none; outline: none;
  color: var(--white); font-family: var(--font-ui);
  font-size: 15px; font-weight: 300; resize: none;
}
.form-field textarea { min-height: 120px; }
.form-field select { cursor: none; appearance: none; }
.form-field select option { background: var(--black); }
.form-label {
  position: absolute; top: 8px; left: 20px;
  font-family: var(--font-mono); font-size: 9px;
  font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.form-field:focus-within { background: rgba(255,255,255,0.07); }
.hp { display: none !important; }
.form-submit {
  display: flex; align-items: center; justify-content: space-between; margin-top: 2px;
}
.form-note {
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.25); letter-spacing: 0.15em;
}
.btn-send {
  font-family: var(--font-display); font-size: 20px; letter-spacing: 0.05em;
  background: var(--white); color: var(--black);
  border: none; padding: 16px 40px; cursor: none;
  position: relative; overflow: hidden; transition: color 0.3s;
}
.btn-send--prog   { background: var(--cyan); }
.btn-send--public { background: var(--magenta); color: var(--white); }
.btn-send--mecene { background: var(--yellow); }
.btn-send::before {
  content: ''; position: absolute; inset: 0;
  background: var(--black); transform: scaleX(0);
  transform-origin: right; transition: transform 0.4s var(--ease);
}
.btn-send:hover::before { transform: scaleX(1); }
.btn-send:hover { color: var(--white); }
.btn-send span { position: relative; z-index: 1; }
.form-confirm, .form-error {
  display: none; padding: 32px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase; line-height: 2;
}
.form-confirm { background: rgba(0,229,255,0.08);  color: var(--cyan); }
.form-error   { background: rgba(255,0,102,0.08);  color: var(--magenta); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.tqmo-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 40px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  align-items: end; gap: 40px;
}
.footer-brand img { height: 52px; width: auto; opacity: 0.4; }
.footer-copy {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.15);
  text-align: center; line-height: 2;
}
.footer-back {
  text-align: right;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.3s;
  padding-right: 80px;
}
.footer-back:hover { color: var(--yellow); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .tqmo-header { padding: 16px 20px; }
  .tqmo-section { padding: 60px 20px; }
  .genese-grid { grid-template-columns: 1fr; gap: 40px; }
  .tqmo-gallery { grid-template-columns: 1fr 1fr; }
  .tqmo-gallery__item--main { grid-row: auto; }
  .tqmo-gallery__item--label { min-height: 200px; }
  .contact-profiles { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: span 1; }
  .tqmo-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-back { text-align: center; }
  .date-item { grid-template-columns: 60px 1fr; }
  .date-badge { display: none; }
  .nav-item a { padding: 16px 30px; font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes slideIn { to { transform: translateX(0); } }

/* ═══════════════════════════════════════════════════════════
   TOOLTIPS MEMBRES
   ═══════════════════════════════════════════════════════════ */

/* Nom cliquable dans le texte */
.membre-link {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.membre-link:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

/* Container tooltip — positionné en JS */
.membre-tooltip {
  position: fixed;
  z-index: 500;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.membre-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: none;
}

/* Bulle texte rectangulaire style BD */
.membre-tooltip__bubble {
  position: relative;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 16px 18px 14px;
  width: 280px;
  border-radius: 4px;
}
.membre-tooltip__nom {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--yellow);
  margin: 0 0 2px;
}
.membre-tooltip__role {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 10px;
}
.membre-tooltip__bio {
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* Flèche BD pointant vers le bas (vers la pastille) */
.membre-tooltip__arrow {
  position: absolute;
  bottom: -9px;
  left: 28px;
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid rgba(255,255,255,0.18);
}
.membre-tooltip__arrow::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -8px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--black);
}

/* Pastille photo ronde */
.membre-tooltip__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.25);
  margin-left: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.membre-tooltip__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   EXTERNALISATION + SIGNATURE HEADER
   ═══════════════════════════════════════════════════════════ */
.tqmo-header__brand { display: flex; align-items: center; gap: 16px; }
.tqmo-header__sep   { width: 1px; height: 30px; background: rgba(255,255,255,0.28); }
.tqmo-header__sign  { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.tqmo-header__pres  { font-family: var(--font-ui); font-style: italic; font-size: 11px; letter-spacing: 0.18em; color: rgba(255,255,255,0.55); text-transform: lowercase; }
.tqmo-header__tag   { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.34em; color: rgba(255,255,255,0.92); text-transform: uppercase; }

.burger-vinyl__svg { position: absolute; inset: 0; }
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.tqmo-hero__grain   { z-index: 2; }
.tqmo-hero__overlay { z-index: 2; }
.tqmo-section--flush { padding: 2px; }
.tqmo-gallery__item--main .tqmo-gallery__img { object-position: center 30%; }
.burger-wave__bar:nth-child(1) { --i: 0; }
.burger-wave__bar:nth-child(2) { --i: 1; }
.burger-wave__bar:nth-child(3) { --i: 2; }

@media (max-width: 520px) {
  .tqmo-header__pres, .tqmo-header__sep { display: none; }
  .tqmo-header__tag { font-size: 10px; letter-spacing: 0.2em; }
}

/* ═══════════════════════════════════════════════════════════
   BANDEAU HEADER — fond de lecture en mode défilement
   ═══════════════════════════════════════════════════════════ */
.tqmo-header { transition: background 0.35s ease; }
.tqmo-header.scrolled {
  mix-blend-mode: normal;
  background: rgba(10,10,10,0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.tqmo-header.scrolled .tqmo-header__tag { color: rgba(255,255,255,0.92); }

/* ═══════════════════════════════════════════════════════════
   FOOTER — liens légaux + bouton "Participer à l'aventure"
   ═══════════════════════════════════════════════════════════ */
.footer-copy__link { color: rgba(255,255,255,0.4); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.18); transition: color 0.25s, border-color 0.25s; }
.footer-copy__link:hover { color: var(--yellow); border-color: var(--yellow); }
.footer-copy__sep { color: rgba(255,255,255,0.2); margin: 0 6px; }

.footer-cta {
  justify-self: end;
  align-self: center;
  margin-right: 80px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.03em;
  color: var(--black);
  background: var(--yellow);
  text-decoration: none;
  padding: 14px 30px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  white-space: nowrap;
}
.footer-cta::before { content: ''; position: absolute; inset: 0; background: var(--black); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.footer-cta:hover::before { transform: scaleX(1); }
.footer-cta:hover { color: var(--white); }
.footer-cta span { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .footer-brand { display: none; }
  .footer-cta { justify-self: center; margin-right: 0; }
}
