/* ══════════════════════════════════════════════
   DJ ONETIDD — styles.css v4 CLUB
   Neon · Energy · Motion · Dark
══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg: #050304;
  --surface: #0a0706;
  --card: #120d0b;
  --border: #1f1512;
  --border-2: #2d1f1a;
  --text: #fff8f5;
  --text-2: #e8d0c0;
  --muted: #b09080;
  --muted-2: #7a6055;
  --accent: #ff7b35;
  --accent-2: #ffa552;
  --accent-dim: rgba(255, 123, 53, 0.1);
  --accent-glow: rgba(255, 123, 53, 0.5);
  --neon: #ff4d00;
  --nav-h: 72px;
  --r-sm: 4px;
  --r: 8px;
  --r-lg: 14px;
  --r-pill: 100px;
  --ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Space Grotesk", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul[role="list"] {
  list-style: none;
}

/* ── Accessible hidden ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  background: var(--accent);
  color: #000;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  border: none;
  transition: all var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:hover {
  background: var(--accent-2);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 40px var(--accent-glow),
    0 0 80px rgba(255, 123, 53, 0.2);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 5px 20px var(--accent-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
  box-shadow: inset 0 0 20px rgba(255, 123, 53, 0);
}

.btn--outline:hover {
  background: rgba(255, 123, 53, 0.05);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow:
    inset 0 0 30px rgba(255, 123, 53, 0.1),
    0 10px 40px rgba(0, 0, 0, 0.4);
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  transition: all var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5, 3, 4, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: var(--border);
}

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

.nav-logo {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  transition: all var(--ease);
  position: relative;
}

.nav-logo::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--ease-out);
  box-shadow: 0 0 10px var(--accent);
}

.nav-logo:hover {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

.nav-logo:hover::after {
  width: 100%;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  transition: all var(--ease);
  position: relative;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--accent-dim), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link.is-active {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

.nav-link--cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent-dim), transparent);
  border: 1px solid rgba(255, 123, 53, 0.3);
  color: var(--accent);
  overflow: hidden;
}

.nav-link--cta::before {
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--ease);
}

.nav-link--cta:hover {
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}

.nav-link--cta:hover::before {
  opacity: 1;
  z-index: -1;
}

/* Burger */
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease-out);
  transform-origin: center;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav.open .nav-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 20px 24px 40px;
  gap: 0;
  overflow-y: auto;
}

.nav.open .nav-menu li {
  border-bottom: 1px solid var(--border);
}
.nav.open .nav-menu li:last-child {
  border: none;
  margin-top: 20px;
}
.nav.open .nav-link {
  display: block;
  padding: 20px 0;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text);
  border-radius: 0;
  background: none;
}

.nav.open .nav-link--cta {
  display: block;
  text-align: center;
  padding: 18px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #000;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
  .nav-burger {
    display: none;
  }
  .nav.open .nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    gap: 8px;
    overflow: unset;
    bottom: auto;
    inset-inline: unset;
  }
  .nav.open .nav-menu li {
    border: none;
  }
  .nav.open .nav-menu li:last-child {
    margin-top: 0;
  }
  .nav.open .nav-link {
    display: inline;
    padding: 10px 18px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .nav.open .nav-link--cta {
    display: inline-flex;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--accent-dim), transparent);
    color: var(--accent);
    border: 1px solid rgba(255, 123, 53, 0.3);
    text-align: left;
    font-size: 11px;
  }
}

/* ══════════════════════════════════════════════
   HERO v2 — NEON & TYPOGRAPHY
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(255, 123, 53, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 80% 80% at 100% 100%, rgba(150, 50, 20, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 80%, rgba(80, 30, 20, 0.1) 0%, transparent 50%), var(--bg);
}

/* Animated grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 123, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 123, 53, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateY(60px);
  }
}

/* Film grain */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  background-size: 250px;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 140px;
  height: auto;
  opacity: 0;
  margin-bottom: 40px;
  filter: drop-shadow(0 0 60px var(--accent-glow));
  animation: logoReveal 1.2s var(--ease-slow) forwards;
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    filter: drop-shadow(0 0 0 transparent);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 60px var(--accent-glow));
  }
}

/* Big typography */
.hero-title {
  font-size: clamp(48px, 12vw, 120px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 24px;
  opacity: 0;
  animation: titleReveal 1s var(--ease-slow) 0.3s forwards;
  position: relative;
}

.hero-title-main {
  display: block;
  background: linear-gradient(180deg, var(--text) 0%, var(--text-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title-accent {
  display: block;
  color: var(--accent);
  text-shadow:
    0 0 20px var(--accent-glow),
    0 0 40px var(--accent-glow),
    0 0 80px rgba(255, 123, 53, 0.3);
  animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
  0%,
  100% {
    text-shadow:
      0 0 20px var(--accent-glow),
      0 0 40px var(--accent-glow),
      0 0 80px rgba(255, 123, 53, 0.3);
  }
  50% {
    text-shadow:
      0 0 30px var(--accent-glow),
      0 0 60px var(--accent-glow),
      0 0 100px rgba(255, 123, 53, 0.5);
  }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-slow) 0.6s forwards;
}

.hero-tagline span {
  color: var(--accent);
  font-weight: 600;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 1s var(--ease-slow) 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted-2);
  animation: bounce 2s ease-in-out infinite;
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll::before {
  content: "SCROLL";
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 600;
}

.hero-scroll:hover {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

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

/* Animated orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

.hero-orb--1 {
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: rgba(255, 123, 53, 0.12);
  top: -10%;
  left: 10%;
  animation: orbFloat 15s ease-in-out infinite alternate;
}

.hero-orb--2 {
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  background: rgba(200, 80, 40, 0.1);
  bottom: -5%;
  right: 5%;
  animation: orbFloat 18s ease-in-out infinite alternate-reverse;
}

.hero-orb--3 {
  width: 25vw;
  height: 25vw;
  max-width: 300px;
  max-height: 300px;
  background: rgba(255, 77, 0, 0.08);
  top: 50%;
  left: -5%;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  to {
    transform: translate(30px, 20px) scale(1.1) rotate(5deg);
  }
}

/* Sound wave animation */
.hero-soundwave {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  opacity: 0.3;
}

.soundwave-bar {
  width: 3px;
  height: 20px;
  background: var(--accent);
  border-radius: 2px;
  animation: soundwave 1s ease-in-out infinite;
}

.soundwave-bar:nth-child(2) {
  animation-delay: 0.1s;
  height: 30px;
}
.soundwave-bar:nth-child(3) {
  animation-delay: 0.2s;
  height: 25px;
}
.soundwave-bar:nth-child(4) {
  animation-delay: 0.3s;
  height: 40px;
}
.soundwave-bar:nth-child(5) {
  animation-delay: 0.15s;
  height: 20px;
}

@keyframes soundwave {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1.5);
    opacity: 1;
  }
}

/* ══════════════════════════════════════════════
   SECTIONS (shared)
══════════════════════════════════════════════ */
.section {
  padding: 120px 0;
  position: relative;
}

.section--alt {
  background: var(--surface);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: "";
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.section-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 64px;
  background: linear-gradient(135deg, var(--text) 20%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .section {
    padding: 160px 0;
  }
}

/* ══════════════════════════════════════════════
   BIO v2 — Premium Cards
══════════════════════════════════════════════ */
.bio-grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

.bio-text {
  display: flex;
  flex-direction: column;
}

.bio-text p {
  font-size: 18px;
  line-height: 2;
  color: var(--text-2);
}

.bio-text p + p {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 16px;
}

.bio-text p:first-child {
  padding-left: 24px;
  border-left: 3px solid var(--accent);
  position: relative;
}

.bio-text p:first-child::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), transparent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.bio-photo {
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--border);
}

.bio-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 123, 53, 0.1), transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.bio-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.bio-photo:hover img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .bio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bio-photo {
    max-width: 100%;
    aspect-ratio: 4/5;
    margin: 0;
  }
}

/* ══════════════════════════════════════════════
   MUSIC v2 — Immersive Player
══════════════════════════════════════════════ */
.music-header {
  text-align: center;
  margin-bottom: 48px;
}

.sc-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 123, 53, 0.1);
  transition: all var(--ease);
}

.sc-wrap:hover {
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 123, 53, 0.2),
    0 0 60px rgba(255, 123, 53, 0.1);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all var(--ease-out);
  background: var(--card);
}

.social-btn:hover {
  transform: translateY(-3px);
  color: var(--text);
  border-color: var(--border-2);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--ease);
}

.social-btn:hover .social-icon {
  transform: scale(1.2);
}

.social-btn--sc:hover {
  color: #ff5500;
  border-color: rgba(255, 85, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 85, 0, 0.1);
}
.social-btn--ig:hover {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.4);
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.1);
}
.social-btn--fb:hover {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.4);
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.1);
}

/* ══════════════════════════════════════════════
/* ══════════════════════════════════════════════
   GALLERY PREMIUM — Slider Stylé
══════════════════════════════════════════════ */

.gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
}

.gallery-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--card);
  flex: 1;
  padding: 20px 10px;
  margin: -20px -10px;
}

.gallery-track::-webkit-scrollbar {
  height: 3px;
}

.gallery-track::-webkit-scrollbar-track {
  background: var(--card);
  border-radius: 3px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.gallery-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r-lg);
  position: relative;
  cursor: zoom-in;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--card);
}

/* Cadre premium */
.gallery-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 123, 53, 0.3),
    transparent 50%,
    rgba(255, 123, 53, 0.1)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  transition: opacity 0.5s ease;
  z-index: 2;
  pointer-events: none;
}

/* Overlay gradient */
.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 3, 4, 0.9) 0%,
    rgba(5, 3, 4, 0.4) 30%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s ease;
  filter: brightness(0.95);
}

/* Numéro de slide */
.gallery-slide .slide-number {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 123, 53, 0.3);
  line-height: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  font-family: var(--font);
}

/* Hover states */
.gallery-slide:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 123, 53, 0.2),
    0 0 40px rgba(255, 123, 53, 0.1);
}

.gallery-slide:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, var(--accent), transparent 60%, rgba(255, 123, 53, 0.3));
}

.gallery-slide:hover::after {
  opacity: 1;
}

.gallery-slide:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.05);
}

.gallery-slide:hover .slide-number {
  opacity: 1;
  transform: translateY(0);
}

/* Flèches premium */
.slider-btn {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: 1px solid var(--border-2);
  background: var(--card);
  color: var(--muted);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.slider-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--accent), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slider-btn svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.slider-btn:hover {
  border-color: var(--accent);
  color: #000;
  transform: scale(1.15);
  box-shadow:
    0 0 30px var(--accent-glow),
    0 0 60px rgba(255, 123, 53, 0.2);
}

.slider-btn:hover::before {
  opacity: 1;
}

.slider-btn:hover svg {
  transform: translateX(-3px);
}

.slider-btn.slider-btn--next:hover svg {
  transform: translateX(3px);
}

.slider-btn:active {
  transform: scale(0.95);
}

.slider-btn:disabled {
  opacity: 0.15;
  cursor: default;
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

.slider-btn:disabled::before {
  display: none;
}

/* Indicateur de progression */
.gallery-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.gallery-progress-dot {
  width: 40px;
  height: 3px;
  background: var(--border-2);
  border-radius: 2px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery-progress-dot.active {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-slide {
    flex: 0 0 calc((100% - 48px) / 3);
  }
  .gallery-slide .slide-number {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .gallery-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  .slider-btn {
    width: 48px;
    height: 48px;
  }
  .slider-btn svg {
    width: 18px;
    height: 18px;
  }
  .gallery-slider {
    gap: 16px;
  }
  .gallery-track {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .gallery-slide {
    flex: 0 0 70%;
  }
  .gallery-slide .slide-number {
    font-size: 28px;
    bottom: 15px;
    left: 15px;
  }
}

/* ══════════════════════════════════════════════
   CONTACT v2 — Glow CTA
══════════════════════════════════════════════ */
.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 100% at 50% 120%, rgba(255, 123, 53, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(150, 50, 30, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.contact .section-title {
  margin-bottom: 24px;
}

.contact-lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0 auto 56px;
  line-height: 1.9;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.contact-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 255, 100, 0.1);
  border: 1px solid rgba(0, 255, 100, 0.3);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00ff64;
  margin-top: 32px;
}

.contact-status::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #00ff64;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff64;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  background: linear-gradient(to top, rgba(255, 123, 53, 0.03) 0%, transparent 100%);
}

.footer a {
  color: var(--muted);
  transition: all var(--ease);
  position: relative;
}

.footer a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--ease);
}

.footer a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

.footer a:hover::after {
  width: 100%;
}

/* ══════════════════════════════════════════════
   LIGHTBOX v2
══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.lightbox.open {
  display: flex;
  animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox img {
  max-width: min(94vw, 1400px);
  max-height: 88vh;
  border-radius: var(--r);
  box-shadow: 0 50px 150px rgba(0, 0, 0, 0.8);
  animation: lightboxImgIn 0.4s var(--ease-out);
}

@keyframes lightboxImgIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lb-close,
.lb-nav {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-2);
  background: var(--card);
  color: var(--text);
  border-radius: var(--r);
  cursor: pointer;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}

.lb-close {
  top: 24px;
  right: 24px;
  border-radius: var(--r-pill);
}

.lb-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-close:hover,
.lb-nav:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

@media (max-width: 640px) {
  .lb-prev,
  .lb-next {
    width: 44px;
    height: 44px;
    font-size: 24px;
    bottom: 24px;
    top: auto;
    transform: none;
  }
  .lb-prev {
    left: 24px;
  }
  .lb-next {
    right: 24px;
  }
}

/* ══════════════════════════════════════════════
   GALLERY ENHANCEMENTS
══════════════════════════════════════════════ */

/* Transition douce entre les slides */
.gallery-slide {
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Effet de scale sur les slides non-actives */
.gallery-track:hover .gallery-slide:not(:hover) {
  opacity: 0.7;
  transform: scale(0.98);
}

/* Slide active plus grande */
.gallery-slide:hover {
  transform: translateY(-12px) scale(1.03);
  z-index: 2;
}

/* Indicateurs de pagination améliorés */
.gallery-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.gallery-progress-dot {
  width: 32px;
  height: 4px;
  background: var(--border-2);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-progress-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-progress-dot:hover {
  background: var(--border);
}

.gallery-progress-dot.active {
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.gallery-progress-dot.active::before {
  transform: scaleX(1);
}

/* Compteur de slides */
.gallery-counter {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.gallery-counter span {
  color: var(--accent);
  font-weight: 600;
}

/* Animation au scroll pour les slides */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gallery-slide.visible {
  animation: slideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ══════════════════════════════════════════════
   HERO v3 — DYNAMIC & PARALLAX
══════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  perspective: 1000px;
}

/* Animated gradient background */
.hero-bg-gradient {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 123, 53, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(200, 80, 40, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 80% 60%, rgba(255, 77, 0, 0.08) 0%, transparent 50%);
  animation: heroGradient 15s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroGradient {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(5deg) scale(1.1);
  }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 20s infinite;
}

.hero-particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}
.hero-particle:nth-child(2) {
  left: 20%;
  top: 80%;
  animation-delay: 2s;
}
.hero-particle:nth-child(3) {
  left: 30%;
  top: 40%;
  animation-delay: 4s;
}
.hero-particle:nth-child(4) {
  left: 50%;
  top: 10%;
  animation-delay: 6s;
}
.hero-particle:nth-child(5) {
  left: 70%;
  top: 60%;
  animation-delay: 8s;
}
.hero-particle:nth-child(6) {
  left: 80%;
  top: 30%;
  animation-delay: 10s;
}
.hero-particle:nth-child(7) {
  left: 90%;
  top: 70%;
  animation-delay: 12s;
}
.hero-particle:nth-child(8) {
  left: 15%;
  top: 50%;
  animation-delay: 14s;
}
.hero-particle:nth-child(9) {
  left: 60%;
  top: 90%;
  animation-delay: 16s;
}
.hero-particle:nth-child(10) {
  left: 40%;
  top: 70%;
  animation-delay: 18s;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  50% {
    transform: translateY(-100px) translateX(50px);
  }
}

/* Animated grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Hero content with parallax */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 1000px;
  transform-style: preserve-3d;
}

.hero-logo {
  width: 160px;
  height: auto;
  opacity: 0;
  margin-bottom: 48px;
  filter: drop-shadow(0 0 80px var(--accent-glow));
  animation: logoReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: translateZ(50px);
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.8) translateZ(50px);
    filter: drop-shadow(0 0 0 transparent);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) translateZ(50px);
    filter: drop-shadow(0 0 80px var(--accent-glow));
  }
}

/* Massive typography */
.hero-title {
  font-size: clamp(64px, 18vw, 200px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  margin-bottom: 32px;
  opacity: 0;
  animation: titleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  transform-style: preserve-3d;
}

.hero-title-main {
  display: block;
  background: linear-gradient(180deg, var(--text) 0%, var(--text-2) 50%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateZ(30px);
}

.hero-title-accent {
  display: block;
  font-size: 0.6em;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-shadow:
    0 0 20px var(--accent-glow),
    0 0 40px var(--accent-glow),
    0 0 80px rgba(255, 123, 53, 0.4),
    0 0 120px rgba(255, 123, 53, 0.2);
  animation: neonPulse 3s ease-in-out infinite;
  transform: translateZ(60px);
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(80px) rotateX(20deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

/* Tagline with animated separator */
.hero-tagline {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 2;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  position: relative;
}

.hero-tagline::before,
.hero-tagline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: lineExpand 1.5s ease-out 1s forwards;
  opacity: 0;
}

.hero-tagline::before {
  right: calc(100% + 20px);
  transform-origin: right;
}

.hero-tagline::after {
  left: calc(100% + 20px);
  transform-origin: left;
}

@keyframes lineExpand {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 0.6;
  }
}

.hero-tagline span {
  color: var(--accent);
  font-weight: 700;
  display: inline-block;
  animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
  from {
    text-shadow: 0 0 10px rgba(255, 123, 53, 0.3);
  }
  to {
    text-shadow:
      0 0 20px rgba(255, 123, 53, 0.6),
      0 0 40px rgba(255, 123, 53, 0.3);
  }
}

/* Enhanced CTA */
.hero-cta {
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero-cta .btn {
  padding: 18px 40px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.hero-cta .btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
  background-size: 200% 100%;
  border-radius: var(--r-pill);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientRotate 3s linear infinite;
}

.hero-cta .btn:hover::after {
  opacity: 1;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Mouse scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted-2);
  transition: all 0.4s ease;
  z-index: 10;
}

.hero-scroll::before {
  content: "SCROLL";
  font-size: 11px;
  letter-spacing: 0.4em;
  font-weight: 600;
}

.hero-scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--muted-2);
  border-radius: 13px;
  position: relative;
  transition: all 0.4s ease;
}

.hero-scroll-mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(8px);
  }
}

.hero-scroll:hover {
  color: var(--accent);
}

.hero-scroll:hover .hero-scroll-mouse {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* Parallax scroll effect */
@media (min-width: 768px) {
  .hero-logo {
    transform: translateZ(50px);
  }
  .hero-title {
    transform: translateZ(0);
  }
  .hero-title-accent {
    transform: translateZ(60px);
  }
  .hero-tagline {
    transform: translateZ(30px);
  }
  .hero-cta {
    transform: translateZ(40px);
  }
}

/* ══════════════════════════════════════════════
   BIO v3 — TIMELINE & STATS
══════════════════════════════════════════════ */

.bio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
  padding: 32px;
  background: var(--card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}

.bio-stat {
  text-align: center;
}

.bio-stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 30px var(--accent-glow);
}

.bio-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.bio-quote {
  position: relative;
  padding: 40px;
  margin: 48px 0;
  background: linear-gradient(135deg, rgba(255, 123, 53, 0.05), transparent);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r) var(--r) 0;
}

.bio-quote::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.bio-quote-text {
  font-size: 22px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.bio-quote-author {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

/* Timeline */
.bio-timeline {
  margin-top: 64px;
  position: relative;
}

.bio-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.bio-timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
}

.bio-timeline-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-glow);
}

.bio-timeline-year {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.bio-timeline-text {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .bio-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bio-quote {
    padding: 32px 24px;
  }

  .bio-quote::before {
    font-size: 80px;
  }
}

/* ══════════════════════════════════════════════
   GLOBAL ENHANCEMENTS
══════════════════════════════════════════════ */

/* Custom cursor */
@media (pointer: fine) {
  body {
    cursor: none;
  }

  .cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition:
      transform 0.15s ease,
      opacity 0.15s ease;
    mix-blend-mode: difference;
  }

  .cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.05s ease;
  }

  .cursor.hover {
    transform: scale(2);
    background: rgba(255, 123, 53, 0.1);
  }

  a,
  button,
  .gallery-slide,
  .slider-btn {
    cursor: none;
  }
}

/* Page load animation */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader-text {
  font-size: 14px;
  letter-spacing: 0.5em;
  color: var(--accent);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* Smooth scroll for entire page */
html {
  scroll-behavior: smooth;
}

/* Text selection color */
::selection {
  background: var(--accent);
  color: #000;
}

/* Focus visible improvements */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

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

/* ══════════════════════════════════════════════
   BIO v3 — CV PRO ENHANCEMENTS
══════════════════════════════════════════════ */

.bio-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.bio-intro p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-2);
  margin-bottom: 24px;
}

.bio-intro p:last-child {
  margin-bottom: 0;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 64px 0 40px;
  color: var(--text);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* Timeline improvements */
.bio-timeline-content {
  background: var(--card);
  padding: 24px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.bio-timeline-item:hover .bio-timeline-content {
  border-color: var(--accent);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 123, 53, 0.2);
}

.bio-timeline-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.bio-timeline-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0;
}

.bio-timeline-item--current .bio-timeline-year {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px var(--accent-glow);
}

/* Clubs list */
.bio-clubs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.bio-clubs li {
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.bio-clubs li strong {
  color: var(--accent);
  font-weight: 600;
}

.bio-clubs li:last-child,
.bio-clubs li:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

@media (max-width: 640px) {
  .bio-clubs {
    grid-template-columns: 1fr;
  }

  .bio-timeline-content {
    padding: 20px;
  }

  .section-subtitle {
    font-size: 20px;
  }
}

/* Stats improvements */
.bio-stat-number {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ══════════════════════════════════════════════
   BIO PHOTO SIZE FIX
══════════════════════════════════════════════ */

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.bio-photo {
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 280px;
  width: 100%;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--border);
  margin: 0 auto;
}

.bio-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 123, 53, 0.1), transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.bio-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bio-photo:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bio-photo {
    max-width: 240px;
    order: -1;
  }
}

/* ══════════════════════════════════════════════
   EVENTS SECTION
══════════════════════════════════════════════ */

.events-grid {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-card:hover {
  transform: translateX(8px);
  border-color: var(--border-2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.event-card:hover::before {
  opacity: 1;
}

.event-card--available {
  background: linear-gradient(135deg, var(--card), rgba(255, 123, 53, 0.05));
  border-color: rgba(255, 123, 53, 0.3);
}

.event-card--available::before {
  opacity: 1;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 12px;
  background: var(--surface);
  border-radius: var(--r);
  border: 1px solid var(--border);
}

.event-day {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.event-month {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.event-content {
  flex: 1;
}

.event-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.event-venue {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 4px;
}

.event-desc {
  font-size: 13px;
  color: var(--muted);
}

.event-card .btn {
  flex-shrink: 0;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 12px;
}

.events-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
}

.events-note a {
  color: var(--accent);
  text-decoration: none;
}

.events-note a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .event-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .event-card:hover {
    transform: translateY(-4px);
  }

  .event-date {
    flex-direction: row;
    gap: 8px;
    padding: 8px 16px;
  }

  .event-day {
    font-size: 20px;
  }

  .event-month {
    margin-top: 0;
  }
}

/* ══════════════════════════════════════════════
   FLYERS GRID — 77 événements
══════════════════════════════════════════════ */

.flyer-desc {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 6px;
  margin-top: 24px;
}

.flyer-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r);
  cursor: default;
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  will-change: transform;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.flyer-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
  pointer-events: none;
}

.flyer-item:hover {
  transform: scale(1.15);
  border-color: rgba(255, 123, 53, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.flyer-item:hover::before {
  opacity: 1;
}

.flyer-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.flyer-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: brightness(0.92);
}

.flyer-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

@media (max-width: 768px) {
  .flyer-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
  }
  .flyer-item--large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 480px) {
  .flyer-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }
}

/* ══════════════════════════════════════════════
   REVEAL ON SCROLL
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease-slow),
    transform 0.7s var(--ease-slow);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 {
  transition-delay: 0.12s;
}
.reveal.delay-2 {
  transition-delay: 0.24s;
}
