:root {
  --lime: #c8ff00;
  --black: #000000;
  --white: #ffffff;
  --font: 'League Spartan', sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 255, 0, 0.35) transparent;
}

/* ===================== BARRE DE DÉFILEMENT PERSONNALISÉE ===================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(200, 255, 0, 0.35);
  border-radius: 999px;
  border: 3px solid var(--black);
  background-clip: padding-box;
  transition: background-color 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(226, 255, 102, 0.5);
}

body.youth-page ::-webkit-scrollbar-thumb {
  border-color: #f4f4f1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  min-height: 100%;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================== HERO ===================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--black);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 0;
}

/* voile noir supplémentaire pour garder la vidéo lisible derrière le texte */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0.15;
  z-index: 1;
}

/* dégradé noir en bas de la vidéo pour transitionner vers la section suivante */
.hero-gradient-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.95) 75%, #000 100%);
  z-index: 2;
  pointer-events: none;
}

/* ===================== HEADER ===================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 48px;
  transition: transform 0.35s ease;
}

.site-header.header-hidden {
  transform: translateY(-130%);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 24px;
  opacity: 0.92;
}

.main-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 8px 6px;
}

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

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  border-radius: 999px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--lime);
}

.main-nav a.active {
  color: var(--lime);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.btn-contact {
  background: var(--lime);
  color: var(--black);
  font-weight: 600;
  padding: 12px 22px;
}

/* ===================== HERO CONTENT ===================== */

.hero-content {
  position: absolute;
  left: 48px;
  bottom: 90px;
  z-index: 5;
  max-width: 760px;
}

.hero-title {
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(38px, 5.4vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--white);
  mix-blend-mode: difference;
}

.hero-subtext {
  font-family: var(--font);
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-light {
  background: var(--white);
  color: var(--black);
  padding: 15px 30px;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 14px 30px;
}

/* ===================== SCROLL INDICATOR ===================== */

.scroll-indicator {
  position: absolute;
  right: 36px;
  bottom: 50px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.scroll-arrow {
  font-size: 15px;
  animation: bounce 1.8s infinite ease-in-out;
}

.scroll-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: 0.15em;
}

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

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

@media (max-width: 1100px) {
  .main-nav a { padding: 8px 11px; font-size: 10.5px; }
}

@media (max-width: 900px) {
  .site-header { flex-wrap: wrap; padding: 20px 20px; }
  .main-nav { order: 3; width: 100%; overflow-x: auto; }
  .main-nav ul { justify-content: flex-start; }
  .hero-content { left: 20px; right: 20px; bottom: 80px; }
  .hero-ctas { flex-wrap: wrap; }
  .scroll-indicator { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-arrow { animation: none; }
}

/* ===================== SECTION NOS OEUVRES ===================== */

.oeuvres {
  background: var(--black);
  padding: 110px 48px 140px;
}

.oeuvres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 1600px;
  margin: 0;
  align-items: stretch;
}

.oeuvre-card {
  display: flex;
  flex-direction: column;
}

.oeuvre-thumb {
  position: relative;
  display: block;
  border: 1.5px solid var(--white);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 28px;
}

.oeuvre-thumb img,
.oeuvre-thumb video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oeuvre-thumb img {
  transition: opacity 0.4s ease;
}

.oeuvre-thumb video {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.oeuvre-thumb.is-playing img {
  opacity: 0;
}

.oeuvre-thumb.is-playing video {
  opacity: 1;
}

.oeuvre-title {
  font-family: var(--font);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.oeuvre-text {
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 26px;
  max-width: 480px;
}

.btn-regarder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  gap: 8px;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 12px 20px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-regarder:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.play-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
}

@media (max-width: 1100px) {
  .oeuvres-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}

@media (max-width: 700px) {
  .oeuvres { padding: 80px 24px 100px; }
  .oeuvres-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ===================== SECTION STATS ===================== */

.stats {
  background: var(--black);
  padding: 100px 48px;
}

.stats-intro {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(20px, 2.3vw, 34px);
  line-height: 1.4;
  color: var(--white);
  max-width: 1000px;
  margin: 0 0 64px;
  text-align: left;
}

.stats-intro .highlight {
  background: var(--lime);
  color: var(--black);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 2px 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1600px;
  margin: 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
}

.stat-number {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(48px, 5vw, 76px);
  color: var(--white);
  line-height: 1;
  text-align: left;
}

.stat-label {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  text-align: left;
}

@media (max-width: 900px) {
  .stats { padding: 70px 24px; }
  .stats-intro { margin-bottom: 40px; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .stat-card { min-height: 200px; padding: 28px 24px; }
}

/* ===================== SECTION CONTACT ===================== */

.contact {
  background: var(--black);
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 110px 48px 24px;
}

.contact-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  max-width: 1600px;
  margin: 0;
  align-items: start;
}

.contact-intro {
  padding-top: 40px;
}

.contact-title {
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.contact-subtext {
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  max-width: 380px;
}

.contact-form {
  background: rgba(81, 81, 81, 0.55);
  border-radius: 28px;
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.form-field label {
  display: block;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 12px;
}

.label-optional {
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 14px;
  padding: 14px 18px;
  appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.6' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.form-field-full {
  margin-bottom: 32px;
}

.form-field textarea {
  resize: vertical;
  min-height: 160px;
  font-family: var(--font);
}

.btn-envoyer {
  width: 100%;
  border: none;
  cursor: pointer;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 12px;
  padding: 18px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-envoyer:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.btn-envoyer[disabled] {
  opacity: 0.6;
  cursor: default;
}

.form-feedback {
  margin-top: 14px;
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  min-height: 18px;
  color: var(--lime);
}

.form-feedback.is-error {
  color: #ff6b6b;
}

@media (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-intro { padding-top: 0; }
}

@media (max-width: 600px) {
  .contact { padding: 60px 24px 100px; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }
}

/* ===================== FOOTER ===================== */

.site-footer {
  background: transparent;
  color: var(--white);
  padding: 14px 48px;
  flex-shrink: 0;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.site-footer::-webkit-scrollbar {
  display: none;
}

.footer-logo-img {
  height: 16px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.footer-links a {
  font-family: var(--font);
  font-weight: 400;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copy {
  font-family: var(--font);
  font-weight: 400;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-left: auto;
  flex-shrink: 0;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-socials a svg {
  width: 10px;
  height: 10px;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

@media (max-width: 700px) {
  .site-footer {
    padding: 12px 16px;
    gap: 10px;
    row-gap: 8px;
    flex-wrap: wrap;
    white-space: normal;
    overflow-x: visible;
  }
  .footer-logo-img {
    order: 1;
  }
  .footer-socials {
    order: 2;
    margin-left: auto;
  }
  .footer-links {
    order: 3;
    flex-basis: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-copy {
    order: 4;
    margin-left: 0;
  }
  .footer-links a,
  .footer-copy {
    font-size: 9px;
  }
}

/* ===================== ANIMATIONS D'APPARITION ===================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1.is-visible { transition-delay: 0.12s; }
.reveal-delay-2.is-visible { transition-delay: 0.24s; }

.oeuvre-card.reveal:nth-child(2).is-visible { transition-delay: 0.12s; }
.oeuvre-card.reveal:nth-child(3).is-visible { transition-delay: 0.24s; }

.stat-card.reveal:nth-child(2).is-visible { transition-delay: 0.1s; }
.stat-card.reveal:nth-child(3).is-visible { transition-delay: 0.2s; }

.works-thumb-card.reveal:nth-child(2).is-visible { transition-delay: 0.08s; }
.works-thumb-card.reveal:nth-child(3).is-visible { transition-delay: 0.16s; }
.works-thumb-card.reveal:nth-child(4).is-visible { transition-delay: 0.24s; }
.works-thumb-card.reveal:nth-child(5).is-visible { transition-delay: 0.32s; }

.pricing-card.reveal:nth-child(2).is-visible { transition-delay: 0.1s; }
.pricing-card.reveal:nth-child(3).is-visible { transition-delay: 0.2s; }
.pricing-card.reveal:nth-child(4).is-visible { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===================== PAGE NOS OEUVRES ===================== */

.works-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 780px;
  overflow: hidden;
  background: var(--black);
}

.works-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.works-hero-gradient-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 32%, rgba(0,0,0,0.1) 58%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.works-hero-inner {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 170px 48px 56px;
}

.works-hero-text {
  max-width: 640px;
}

.works-title {
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(38px, 5.2vw, 80px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 22px;
}

.works-text {
  font-family: var(--font);
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.55;
  color: var(--white);
  max-width: 520px;
  min-height: 130px;
  margin-bottom: 30px;
}

/* ===================== MINIATURES DES OEUVRES ===================== */

.works-thumbs {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  max-width: 1600px;
}

.works-thumbs-track {
  display: flex;
  gap: 24px;
  overflow: visible;
}

.works-thumb-card {
  flex: 0 0 220px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.works-thumb {
  position: relative;
  display: block;
  border: 1.5px solid var(--white);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
  transition: border-color 0.2s ease;
}

.works-thumb-card.is-active .works-thumb {
  border-color: var(--lime);
}

.works-thumb img,
.works-thumb video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-thumb img {
  transition: filter 0.3s ease;
}

.works-thumb video {
  opacity: 0;
}

.works-thumb-card:hover .works-thumb img {
  filter: brightness(0.55);
}

.works-thumb-title {
  display: block;
  font-family: var(--font);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--white);
}

.works-thumb-card.is-active .works-thumb-title {
  color: var(--lime);
}

@media (max-width: 1100px) {
  .works-thumb-card { flex-basis: 180px; }
}

.works-swipe-hint {
  display: none;
}

@media (max-width: 900px) {
  .works-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: var(--lime);
    z-index: 4;
    pointer-events: none;
    animation: worksSwipeHint 1.6s ease-in-out infinite;
  }

  @keyframes worksSwipeHint {
    0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.55; }
    50% { transform: translateY(-50%) translateX(6px); opacity: 1; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .works-swipe-hint {
    animation: none;
  }
}

@media (max-width: 900px) {
  body.oeuvres-page {
    min-height: 100vh;
    overflow-y: auto;
  }

  .oeuvres-page .site-footer {
    display: flex;
  }

  .works-hero {
    height: 100vh;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .works-hero-inner {
    padding: 84px 20px 14px;
    flex: 1;
    min-height: 0;
    justify-content: center;
    gap: 28px;
  }
  .works-hero-text {
    max-width: 100%;
    text-align: center;
    flex: 0 0 auto;
  }
  .works-title {
    text-align: center;
    font-size: clamp(30px, 8vw, 44px);
    margin-bottom: 0;
  }
  .works-text {
    display: none;
  }
  .btn-regarder {
    margin-top: 14px;
    margin-bottom: 0;
  }

  .works-thumbs {
    flex: 0 0 auto;
    height: 42vh;
    align-items: stretch;
    position: relative;
  }
  .works-thumbs-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 14vw;
    scroll-padding: 0 14vw;
  }
  .works-thumbs-track::-webkit-scrollbar {
    display: none;
  }
  .works-thumb-card {
    flex: 0 0 72vw;
    scroll-snap-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    touch-action: pan-x;
    user-select: none;
    -webkit-user-drag: none;
  }
  .works-thumb {
    flex: none;
    width: 100%;
    aspect-ratio: 16 / 11;
    margin-bottom: 12px;
  }
  .works-thumb-title {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    display: block;
    width: 100%;
  }
}

/* ===================== PAGE YOUTH PROGRAM ===================== */

body.youth-page {
  background: #f4f4f1;
  color: var(--black);
}

.youth-page .main-nav {
  background: rgba(0, 0, 0, 0.35);
}

.youth-page .logo img {
  filter: invert(1);
}

.youth-page .header-divider {
  background: rgba(0, 0, 0, 0.4);
}

.youth-hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 48px 60px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.youth-deco {
  position: absolute;
  pointer-events: none;
}

.youth-deco-scribble {
  top: 150px;
  left: 3%;
  width: 180px;
}

.youth-deco-cloud-tr {
  top: 140px;
  right: 4%;
  width: 190px;
}

.youth-deco-chevron {
  top: 470px;
  right: -60px;
  width: 200px;
}

.youth-deco-cloud-bl {
  bottom: 60px;
  left: 4%;
  width: 150px;
}

@keyframes youthFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.youth-title-lockup {
  position: relative;
  z-index: 2;
  width: min(560px, 42vw);
  min-width: 280px;
  height: auto;
  margin-bottom: 8px;
}

.youth-intro {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto 14px;
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
}

.btn-brochure {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 999px;
  padding: 16px 28px;
  cursor: pointer;
}

/* ===================== CONTACT YOUTH PROGRAM ===================== */

.youth-contact {
  padding: 60px 48px 60px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  max-width: 1600px;
  margin: 0;
  align-items: center;
}

.youth-contact-intro {
  display: flex;
  align-items: center;
  gap: 24px;
}

.youth-getintouch-lockup {
  width: min(560px, 100%);
  height: auto;
}

.youth-arrows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.youth-arrow {
  width: 70px;
}

.youth-arrow-2 { margin-left: 20px; width: 60px; }
.youth-arrow-3 { margin-left: 40px; width: 50px; }

.youth-contact-form {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 28px;
  padding: 44px;
}

.youth-contact-form .form-field label {
  color: var(--white);
}

.youth-contact-form .btn-envoyer {
  background: var(--lime);
}

.youth-footer {
  background: var(--black);
  color: var(--white);
}

.youth-footer .footer-logo,
.youth-footer .footer-links a,
.youth-footer .footer-copy {
  color: var(--white);
}

.youth-footer .footer-socials a {
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1000px) {
  .youth-contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .youth-contact-intro {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .youth-hero { padding: 140px 24px 60px; }
  .youth-title-lockup { width: 88vw; min-width: 0; }
  .youth-deco { width: 110px !important; }
  .youth-contact { padding: 40px 24px 80px; }
  .youth-contact-form { padding: 24px; }
}

/* ===================== PAGE NOUS SOUTENIR ===================== */

.support-hero {
  padding: 110px 48px 24px;
  text-align: center;
}

.support-title {
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 14px;
}

.support-subtext {
  font-family: var(--font);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: #a0a0a0;
  max-width: 700px;
  margin: 0 auto 22px;
}

.support-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid #a0a0a0;
  border-radius: 999px;
  padding: 4px;
  gap: 0;
}

.support-toggle-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: #a0a0a0;
  border-radius: 999px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.support-toggle-btn {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  padding: 9px 20px;
  border-radius: 999px;
  transition: color 0.2s ease;
}

.support-toggle-btn.is-active {
  color: var(--black);
}

/* ===================== PRICING ===================== */

.pricing {
  padding: 10px 48px 24px;
}

.pricing-tabs {
  display: none;
}

.btn-helloasso {
  display: none;
  align-items: center;
  justify-content: center;
  max-width: 420px;
  margin: 40px auto 0;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 18px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-helloasso:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

body.libre-mode .pricing-tabs,
body.libre-mode .pricing-grid {
  display: none;
}

body.libre-mode .btn-helloasso {
  display: flex;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 26px 22px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.pricing-card.is-selected {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.4);
}

.pricing-card[data-tier="gold"].is-selected {
  background: linear-gradient(160deg, rgba(255, 205, 90, 0.28), rgba(255, 205, 90, 0.04));
  border-color: rgba(255, 205, 90, 0.6);
}

.pricing-card[data-tier="premium"].is-selected {
  background: linear-gradient(160deg, rgba(200, 255, 0, 0.28), rgba(200, 255, 0, 0.04));
  border-color: rgba(200, 255, 0, 0.6);
}

.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.pricing-name {
  font-family: var(--font);
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-badge {
  background: var(--lime);
  color: var(--black);
  font-family: var(--font);
  font-weight: 600;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.pricing-amount {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(32px, 2.6vw, 42px);
  color: var(--white);
}

.pricing-period {
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.btn-don {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 999px;
  padding: 14px;
  margin-bottom: 24px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-don:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-don-light {
  background: var(--white);
  color: var(--black);
}

.pricing-card.is-selected .btn-don {
  background: var(--white);
  color: var(--black);
}

.pricing-card[data-tier="gold"].is-selected .btn-don {
  background: #ffcd5a;
  color: var(--black);
}

.pricing-card[data-tier="premium"].is-selected .btn-don {
  background: var(--lime);
  color: var(--black);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-features li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--white);
  font-weight: 600;
  font-size: 11px;
}

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  body.support-page {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .pricing-tabs::-webkit-scrollbar {
    display: none;
  }

  .pricing-tab {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font);
    font-weight: 600;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .pricing-tab.is-active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
  }

  .support-page .site-header {
    padding: 10px 20px;
  }

  .logo img {
    height: 16px;
  }

  .support-hero {
    padding: 56px 20px 4px;
  }

  .support-title {
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 4px;
  }

  .support-subtext {
    font-size: 9.5px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .support-toggle-btn {
    padding: 4px 10px;
    font-size: 9.5px;
  }

  .pricing {
    padding: 2px 20px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .pricing-grid {
    display: block;
    flex: 1;
    min-height: 0;
    position: relative;
  }

  .pricing-card {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 26px 22px;
    justify-content: space-between;
  }

  .pricing-card.is-shown {
    display: flex;
  }

  .pricing-card-header {
    margin-bottom: 16px;
  }

  .pricing-name {
    font-size: 20px;
  }

  .pricing-badge {
    font-size: 10px;
    padding: 4px 12px;
  }

  .pricing-price {
    margin-bottom: 20px;
  }

  .pricing-amount {
    font-size: 38px;
  }

  .pricing-period {
    font-size: 13px;
  }

  .btn-don {
    font-size: 13.5px;
    padding: 15px;
    margin-bottom: 20px;
  }

  .pricing-features {
    gap: 12px;
  }

  .pricing-features li {
    font-size: 13px;
    padding-left: 20px;
  }

  /* Sur mobile, Premium et Gold gardent toujours leur couleur, sans avoir besoin d'être sélectionnées */
  .pricing-card[data-tier="premium"] {
    background: linear-gradient(160deg, rgba(200, 255, 0, 0.28), rgba(200, 255, 0, 0.04));
    border-color: rgba(200, 255, 0, 0.6);
  }

  .pricing-card[data-tier="premium"] .btn-don {
    background: var(--lime);
    color: var(--black);
  }

  .pricing-card[data-tier="gold"] {
    background: linear-gradient(160deg, rgba(255, 205, 90, 0.28), rgba(255, 205, 90, 0.04));
    border-color: rgba(255, 205, 90, 0.6);
  }

  .pricing-card[data-tier="gold"] .btn-don {
    background: #ffcd5a;
    color: var(--black);
  }
}

/* ===================== PAGE EVENTS ===================== */

body.events-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.events-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: -2;
}

.events-bg-gradient {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.55) 100%);
  z-index: -1;
}

.events-main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 48px 40px;
}

.events-title {
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 0.94;
  color: var(--white);
  margin-bottom: 32px;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1500px;
  margin: 0;
  width: 100%;
}

.event-card {
  display: flex;
  gap: 20px;
  padding: 18px;
  border-radius: 16px;
}

.event-card-upcoming {
  background: #f0f0ee;
  align-items: flex-start;
}

.event-card-past {
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--lime);
  align-items: flex-start;
  position: relative;
}

.event-thumb {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background: #0a0a0a;
}

.event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  font-size: 0;
  color: transparent;
}

.event-thumb-empty {
  background: #0a0a0a;
}

.event-body {
  display: flex;
  flex-direction: column;
  padding-top: 2px;
  justify-content: center;
}

.event-title {
  font-family: var(--font);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 10px;
}

.event-tag {
  font-family: var(--font);
  font-weight: 400;
  color: var(--black);
}

.event-title-past {
  color: rgba(255, 255, 255, 0.5);
}

.event-tag-past {
  color: var(--lime);
}

.event-meta {
  font-family: var(--font);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 14px;
}

.event-meta-past {
  color: rgba(255, 255, 255, 0.5);
}

.btn-billetterie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 10px 20px;
}

.event-status-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 999px;
}

.event-attendance {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--white);
}

.event-attendance svg {
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
  width: 15px;
  height: 15px;
}

@media (max-width: 900px) {
  .events-main { padding: 120px 24px 32px; }
  .event-card { flex-direction: column; padding: 16px; gap: 14px; }
  .event-thumb { width: 100%; height: 160px; }
  .event-status-badge { top: 14px; right: 14px; }
}

.events-page .site-footer {
  position: relative;
  z-index: 1;
  background: var(--black);
}

/* ===================== PAGE DEVENIR PARTENAIRE ===================== */

.partner-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 220px 24px 60px;
  background: var(--black);
  overflow-x: hidden;
}

.partner-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}

.partner-word {
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(40px, 7vw, 108px);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: -6px;
}

.partner-highlight {
  position: absolute;
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(30px, 5.2vw, 78px);
  line-height: 1;
  color: var(--black);
  background: var(--lime);
  padding: 6px 20px;
  white-space: nowrap;
}

.partner-highlight-1 {
  top: 6%;
  left: 50%;
  animation: partnerDrift1 6.5s ease-in-out infinite;
}

.partner-highlight-2 {
  bottom: 4%;
  left: 50%;
  animation: partnerDrift2 7.5s ease-in-out infinite;
}

@keyframes partnerDrift1 {
  0%, 100% { transform: translateX(-50%) rotate(-4deg); }
  50% { transform: translateX(calc(-50% + 22px)) rotate(-2deg); }
}

@keyframes partnerDrift2 {
  0%, 100% { transform: translateX(-50%) rotate(-4deg); }
  50% { transform: translateX(calc(-50% - 22px)) rotate(-6deg); }
}

.partner-text {
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 28px;
}

.partner-handle {
  display: inline-block;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  transition: color 0.2s ease;
}

.partner-handle:hover {
  color: var(--lime);
}

@media (max-width: 700px) {
  .partner-hero { padding: 120px 20px 60px; }
  .partner-highlight { padding: 4px 12px; }
  .partner-stack { margin-bottom: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .partner-highlight-1,
  .partner-highlight-2 {
    animation: none;
    transform: translateX(-50%) rotate(-4deg);
  }
}

/* ===================== MENU MOBILE (BURGER) ===================== */

.nav-burger {
  display: none;
  position: relative;
  z-index: 201;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--lime);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.nav-burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}

.mobile-nav-list ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.mobile-nav-list a {
  font-family: var(--font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 22px;
  color: var(--white);
}

.mobile-nav-list a.active {
  color: var(--lime);
}

body.mobile-nav-open .site-header {
  z-index: 250;
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .site-header {
    justify-content: space-between;
    padding: 20px 24px;
  }

  .logo img {
    height: 18px;
  }

  .header-divider {
    display: none;
  }

  .header-right {
    gap: 14px;
  }

  .btn-contact {
    padding: 10px 16px;
    font-size: 11px;
  }
}

/* ===================== MODALE TÉLÉCHARGEMENT BROCHURE ===================== */

.brochure-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.brochure-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0s linear 0s;
}

.brochure-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--black);
  border-radius: 24px;
  padding: 36px 32px;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.brochure-modal-overlay.is-open .brochure-modal {
  transform: translateY(0);
}

.brochure-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brochure-modal-title {
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}

.brochure-modal-text {
  font-family: var(--font);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.brochure-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brochure-form .form-field label {
  display: block;
  font-family: var(--font);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--white);
  margin-bottom: 6px;
}

.brochure-form .form-field input {
  width: 100%;
  border: none;
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 14px;
  padding: 12px 16px;
}

.brochure-form .btn-envoyer {
  margin-top: 6px;
}

@media (max-width: 500px) {
  .brochure-modal {
    padding: 28px 22px;
  }
}
