/* ============================================================
   SMT FIGHT — CSS COMPLET + RESPONSIVE
   Thème clair · Nav/Footer anthracite · Sections contrastées
   Mobile-first · Photo hero responsive
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@300;400;500;600&display=swap');

/* ════════════════════════════════════
   CSS VARIABLES
   ════════════════════════════════════ */
:root {
  /* Rouge — identité SMT */
  --red:        #CC0000;
  --red-dark:   #8B0000;
  --red-glow:   rgba(204, 0, 0, 0.25);

  /* Fonds */
  --black:      #F4F4F5;   /* Fond principal clair                */
  --black-2:    #1A1A1E;   /* Nav + Footer anthracite (identiques)*/
  --black-3:    #0D0D0F;   /* Sections sombres, hero, parallax    */
  --black-4:    #FFFFFF;   /* Cards sur fond clair                */

  /* Textes */
  --white:      #FFFFFF;   /* Sur fonds sombres                   */
  --grey-light: #1E1E20;   /* Texte principal sur fond clair      */
  --grey-mid:   #6B6B72;   /* Texte secondaire / méta             */
  --grey-dark:  #D0D0D4;   /* Bordures sur fond clair             */

  /* Accent */
  --gold:       #C9A227;

  /* Typo */
  --font-display: 'Bebas Neue', sans-serif;
  --font-title:   'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Layout */
  --nav-h:      130px;
  --banner-h:   40px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--grey-light);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Images globales responsive */
img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ════════════════════════════════════
   BANNER
   ════════════════════════════════════ */
.banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--banner-h);
  background-color: yellow;
  overflow: hidden;
  display: flex;
  align-items: center;
  
}
.banner-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;

}
.banner-track:hover { animation-play-state: paused; }
.banner-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black-3);
  cursor: pointer;
  transition: color var(--transition);
}
.banner-item:hover { color: rgba(255,255,255,0.75); }
.banner-sep {
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  padding: 0 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════
   NAVBAR — Anthracite (= footer)
   ════════════════════════════════════ */
.navbar {
  position: fixed;
  top: var(--banner-h);
  left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: var(--black);
  border-bottom: 3px solid var(--red);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 230px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-logo:hover .logo-icon { transform: scale(1.05); }
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--white);
}
.nav-logo .logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 13px;
  color: var(--black-2);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 13px; right: 13px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 16px;
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: background var(--transition), transform var(--transition) !important;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--red);;
  transition: var(--transition);
  
  
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--banner-h) + var(--nav-h));
  left: 0; right: 0;
  background: var(--black-2);
  border-top: 2px solid var(--red);
  padding: 20px 5%;
  z-index: 899;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - var(--banner-h) - var(--nav-h));
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.70);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu a:hover { color: var(--red); padding-left: 8px; }

/* ════════════════════════════════════
   HERO — RESPONSIVE
   ════════════════════════════════════ */
.hero {
  position: relative;
  /* Hauteur dynamique selon l'écran */
  height: 100svh;
  min-height: 560px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Décalage pour nav + banner */
  padding-top: calc(var(--banner-h) + var(--nav-h));
}

/* Fond dégradé sombre */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a0005 45%, #0A0A0A 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 68% 42%, rgba(204,0,0,0.22) 0%, transparent 68%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect width='80' height='80' fill='none'/%3E%3Cpath d='M0 40h80M40 0v80' stroke='rgba(204,0,0,0.04)' stroke-width='1'/%3E%3C/svg%3E");
}

/* Photo hero — responsive et couvrant */
.hero-bg-img {
  position: absolute;
  /* Couvre tout le hero */
  inset: 0;
  z-index: 1;
  /* La photo remplit la zone sans déformation */
  background-size: cover;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  /* Opacité pour laisser le texte lisible */
  opacity: 0.22;
  /* Optimisation performance */
  will-change: transform;
}



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

/* Contenu texte du hero */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 8%;
  /* Limite la largeur du bloc texte */
  max-width: 860px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.8s 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Impossible - 1000', sans-serif;
  /* Taille fluide : de 3.5rem (mobile) à 9rem (desktop) */
  font-size: clamp(2rem, 9vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title .line-red { color: var(--red); display: block; }
.hero-title .line-outline {
  display: block;
  -webkit-text-stroke: 2px rgba(255,255,255,0.18);
  color: transparent;
}

.hero-subtitle {
  margin-top: 22px;
  font-family: var(--font-title);
  font-weight: 400;
  /* Taille fluide */
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.70);
  max-width: 480px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeIn 1s 0.9s forwards;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  animation: bounce 2s 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--red), transparent);
}

.hero-badge {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 110px; height: 110px;
  opacity: 0;
  animation: spinIn 1s 1.5s forwards;
}
.hero-badge svg { width: 100%; height: 100%; animation: rotateBadge 20s linear infinite; }
.hero-badge-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--red);
}

/* ════════════════════════════════════
   BUTTONS
   ════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  transform: translateX(-100%);
  transition: transform var(--transition);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

/* Outline : adapté selon le contexte de fond */
.btn-outline {
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* Outline sur fond clair */
.section .btn-outline,
.section-alt .btn-outline {
  border-color: var(--grey-light);
  color: var(--grey-light);
}
.section .btn-outline:hover,
.section-alt .btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ════════════════════════════════════
   SECTIONS & LAYOUT
   ════════════════════════════════════ */
.section {
  padding: clamp(60px, 8vw, 100px) 8%;
  position: relative;
  background: var(--black);
}

/* Section alternée : gris très léger */
.section-alt {
  background: var(--grey-dark);
}

/* Section sombre : anthracite → textes blancs */
.section-dark {
  background: var(--grey-dark);
}
.section-dark .section-title,
.section-dark .section-subtitle,
.section-dark .section-label,
.section-dark p,
.section-dark li { color: var(--white)}
.section-dark .section-subtitle,
.section-dark p { color: rgba(255,255,255,0.68); }
.section-dark .section-label { color: var(--red); }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--grey-light);
}
.section-title span { color: var(--red); }

.section-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--grey-mid);
  max-width: 540px;
  line-height: 1.75;
}
.section-header { margin-bottom: 50px; }

.divider {
  height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
  margin: 0 8%;
}

/* ════════════════════════════════════
   STATS BAR
   ════════════════════════════════════ */
.stats-bar {
  background: var(--red);
  padding: clamp(28px, 4vw, 40px) 8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='none'/%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(0,0,0,0.1)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.stat-item {
  text-align: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
}
.stat-label {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(0.65rem, 1.2vw, 0.78rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-top: 5px;
}

/* ════════════════════════════════════
   DISCIPLINES
   ════════════════════════════════════ */
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3px;
}
.discipline-card {
  position: relative;
  /* Hauteur responsive */
  height: clamp(260px, 28vw, 360px);
  overflow: hidden;
  cursor: pointer;
}
.discipline-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 13, 13, 0.88) 0%, transparent 58%);
  z-index: 1;
  transition: opacity var(--transition);
}
.discipline-card:hover::before { opacity: 0.75; }
.discipline-img {
  position: absolute;
  width: 100%; height: auto;
  inset: 0;
  background-size: cover;
  background-position: center ;
  background-size: contain;
  background-repeat: no-repeat;  
  transition: transform 0.65s cubic-bezier(.4,0,.2,1);
}
.discipline-card:hover .discipline-img { transform: scale(1.07); }
.discipline-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 28px);
  z-index: 2;
  transform: translateY(8px);
  transition: transform var(--transition);
}
.discipline-card:hover .discipline-content { transform: translateY(0); }
.discipline-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.discipline-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}
.discipline-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.discipline-card:hover .discipline-desc { max-height: 80px; opacity: 1; }
.discipline-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 8px;
  clip-path: polygon(5px 0%,100% 0%,calc(100% - 5px) 100%,0% 100%);
}

/* ════════════════════════════════════
   COACHES — Cards sur fond clair
   ════════════════════════════════════ */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.coach-card {
  background: var(--black-4);
  border: 1px solid var(--grey-dark);
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.coach-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.14);
}
.coach-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.coach-card:hover::after { transform: scaleX(1); }
.coach-img-wrap {
  position: relative;
  /* Hauteur proportionnelle */
  padding-top: 110%;
  overflow: hidden;
}
.coach-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(15%);
}
.coach-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EAEAEC, #D0D0D4);
  font-size: 4.5rem;
}
.coach-card:hover .coach-img-wrap img { transform: scale(1.04); filter: grayscale(0); }
.coach-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 45%);
}
.coach-socials {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  gap: 7px;
  opacity: 0;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.coach-card:hover .coach-socials { opacity: 1; transform: translateY(0); }
.coach-social-btn {
  width: 32px; height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--white);
  transition: background var(--transition);
}
.coach-social-btn:hover { background: var(--red-dark); }
.coach-body { padding: 18px 20px 20px; }
.coach-role {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.coach-name {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--grey-light);
}
.coach-bio {
  font-size: 0.83rem;
  color: var(--grey-mid);
  margin-top: 8px;
  line-height: 1.6;
  font-weight: 600;
}

.diplomes{
  font-style: italic;
  color: var(--grey-mid);
  font-size: 0.7rem;
}

.diplomes li{
  list-style:circle;
}

.coach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}
.coach-tag {
  background: #EAEAEC;
  border: 1px solid var(--grey-dark);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  color: var(--grey-mid);
}

/* ════════════════════════════════════
   PLANNING
   ════════════════════════════════════ */
.planning-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--grey-dark);
  border-radius: 2px;
  -webkit-overflow-scrolling: touch;
}
.planning-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.planning-table th {
  background: var(--red);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 10px;
  text-align: center;
  color: var(--white);
}
.planning-table th:first-child {
  background: #EAEAEC;
  width: 90px;
  color: var(--grey-light);
}
.planning-table td {
  padding: 8px 7px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey-light);
  border: 1px solid var(--grey-dark);
  vertical-align: top;
  background: var(--white);
}
.planning-table tr:nth-child(even) td { background: #FAFAFA; }
.planning-table tr td:first-child {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--grey-light);
  background: #EAEAEC;
  letter-spacing: 0.05em;
}
.planning-slot {
  background: #F4F4F5;
  border-left: 3px solid var(--red);
  padding: 5px 7px;
  margin: 2px 0;
  text-align: left;
  font-family: var(--font-title);
  font-size: 0.76rem;
  cursor: pointer;
  transition: background var(--transition);
}
.planning-slot:hover { background: rgba(204,0,0,0.07); }
.planning-slot .slot-time { font-size: 0.65rem; color: var(--grey-mid); display: block; margin-bottom: 2px; }
.planning-slot .slot-name { font-weight: 700; color: var(--grey-light); }
.planning-slot .slot-coach { font-size: 0.65rem; color: var(--red); }
.slot-kids { border-color: var(--gold); }
.slot-kids .slot-coach { color: var(--gold); }
.slot-lady { border-color: #E91E8C; }
.slot-lady .slot-coach { color: #E91E8C; }
.planning-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.legend-dot { width: 12px; height: 12px; border-left: 3px solid; flex-shrink: 0; }

/* ════════════════════════════════════
   REVIEWS
   ════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--black-4);
  border: 1px solid var(--grey-dark);
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  padding: clamp(22px, 3vw, 32px) clamp(18px, 2.5vw, 28px);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 18px;
  font-family: var(--font-display);
  font-size: 7rem;
  color: rgba(204,0,0,0.07);
  line-height: 1;
  pointer-events: none;
}
.review-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.92rem;
  color: var(--grey-mid);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 18px;
}
.review-author { display: flex; align-items: center; gap: 13px; }
.review-avatar {
  width: 42px; height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--white);
}
.review-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-light);
}
.review-since { font-size: 0.73rem; color: var(--grey-mid); margin-top: 2px; }

/* ── Reviews Summary ── */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.reviews-score {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.reviews-stars span {
  color: #FBBC05;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.reviews-stars small {
  display: block;
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 2px;
}

.reviews-link {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.reviews-link:hover { opacity: 1; }

/* ── Reviews Grid ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-stars {
  color: #FBBC05;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
  flex: 1;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: auto;
}

/* ════════════════════════════════════
   ABOUT
   ════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-img-block { position: relative; }
.about-img-main {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position:center ;
  z-index: 1;
  display: block;
}

.about-img-badge {
  position: absolute;
  top: 24px; left: -16px;
  background: var(--red);
  padding: 16px 20px;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.about-img-badge .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1; }
.about-img-badge .lbl { font-family: var(--font-title); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.about-values { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.value-item { display: flex; gap: 18px; align-items: flex-start; }
.value-icon {
  height: 46px;
  background: rgba(204,0,0,0.10);
  border: 1px solid rgba(204,0,0,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
}
.value-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
  color: var(--grey-light);
}
.value-desc { font-size: 0.85rem; color: var(--grey-mid); line-height: 1.6; }


/* ════════════════════════════════════
   CONTACT
   ════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(30px, 5vw, 60px);
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-block { display: flex; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--white);
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
}
.contact-block-label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3px;
}
.contact-block-val { font-size: 0.92rem; color: var(--grey-light); line-height: 1.6; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: clamp(24px, 4vw, 40px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #F4F4F5;
  border: 1px solid var(--grey-dark);
  color: var(--grey-light);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-mid); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.form-group select option { background: var(--white); color: var(--grey-light); }

/* ════════════════════════════════════
   INFOS PAGE
   ════════════════════════════════════ */
.infos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--grey-dark);
  border-top: 3px solid var(--red);
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  padding: clamp(22px, 3vw, 32px) clamp(18px, 2.5vw, 28px);
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(204,0,0,0.10); }
.info-card-icon { font-size: 1.9rem; margin-bottom: 14px; }
.info-card-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--grey-light);
}
.info-card-body { font-size: 0.86rem; color: var(--grey-mid); line-height: 1.72; }
.info-card-body ul { padding-left: 16px; list-style: disc; }
.info-card-body li { margin-bottom: 5px; }
.info-card-body strong { color: var(--grey-light); }
.tariffs-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.tariffs-table td, .tariffs-table th { padding: 9px 13px; border: 1px solid var(--grey-dark); font-size: 0.83rem; }
.tariffs-table th {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.73rem;
}
.tariffs-table td { color: var(--grey-light); background: var(--white); }
.tariffs-table tr:hover td { background: rgba(204,0,0,0.05); }
.tariffs-table .price { font-family: var(--font-title); font-weight: 900; font-size: 0.98rem; color: var(--red); }

/* ════════════════════════════════════
   PAGE HERO (pages internes)
   ════════════════════════════════════ */
.page-hero {
  position: relative;
  height: clamp(220px, 28vw, 320px);
  display: flex;
  align-items: flex-end;
  padding: 0 8% clamp(30px, 4vw, 50px);
  overflow: hidden;
  margin-top: calc(var(--banner-h) + var(--nav-h));
  background: var(--black-2);
}
.page-hero-bg {
  position: absolute;
  inset: -10%;
  background: linear-gradient(135deg, var(--black-3) 0%, #1a0005 100%);
  will-change: transform;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black-2);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.48); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--red); }
.page-hero-title {
 font-family: 'Impossible - 1000', sans-serif;
  font-size: 60px;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.page-hero-title span { color: var(--red); }

/* ════════════════════════════════════
   PARALLAX SECTIONS
   ════════════════════════════════════ */
.parallax-section {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 120px) 8%;
}
.parallax-bg {
  position: absolute;
  inset: -30%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: var(--grey-dark);
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.parallax-content .section-title { color: var(--white); }

/* ════════════════════════════════════
   FOOTER — Anthracite identique nav
   ════════════════════════════════════ */
footer {
  background: var(--black-2);
  border-top: 3px solid var(--red);
  padding: clamp(50px, 7vw, 70px) 8% 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 50px);
  margin-bottom: 50px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer-brand .logo-text span { color: var(--red); }
.footer-tagline {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.52);
  margin-top: 10px; margin-bottom: 22px;
  line-height: 1.65;
  max-width: 290px;
}
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.52);
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-social:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.footer-col-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.73rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--red);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.52);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition), gap var(--transition);
}
.footer-links a::before { content: '›'; color: var(--red); font-size: 0.95rem; }
.footer-links a:hover { color: var(--white); gap: 11px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.42); }
.footer-copy span { color: var(--red); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.76rem; color: rgba(255,255,255,0.42); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes spinIn {
  from { opacity: 0; transform: translateY(-50%) rotate(-180deg) scale(0.5); }
  to   { opacity: 1; transform: translateY(-50%) rotate(0deg) scale(1); }
}
@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Intersection Observer reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ════════════════════════════════════
   RESPONSIVE — Breakpoints
   ════════════════════════════════════ */

/* ── Tablette large (≤ 1200px) ── */
@media (max-width: 1200px) {
  
  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .about-img-accent { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .hero-badge { display: none; }
   .nav-logo .logo-icon { width: 250px; height: 100px; }
}

/* ── Tablette (≤ 900px) ── */
@media (max-width: 900px) {
  :root {
    --nav-h:    90px;
    --banner-h: 36px;
  }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo .logo-icon { width: 72px; height: 72px; }

  /* Hero */
  .hero {
    min-height: 500px;
    align-items: flex-end;
    padding-bottom: clamp(60px, 10vw, 90px);
  }
  .hero-bg-img {
    background-position: 60% center;
    opacity: 0.20;
  }
  .hero-content { padding: 0 6% clamp(20px, 4vw, 36px); }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { gap: 10px; }

  /* Sections */
  .section { padding: 60px 6%; }
  .section-alt { padding: 60px 6%; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  /* About */
  .about-img-badge { left: 8px; top: 8px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile (≤ 640px) ── */
@media (max-width: 640px) {
  :root {
    --nav-h:    80px;
    --banner-h: 32px;
  }

  /* Hero */
  .hero {
    min-height: 480px;
    padding-bottom: 50px;
  }
  .hero-bg-img {
    background-position: 50% center;
    opacity: 0.16;
  }
  .hero-content { padding: 0 5% 24px; }
  .hero-title { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Nav */
  .nav-logo .logo-icon { width: 150px; height: 100px; }

  /* Sections */
  .section { padding: 50px 5%; }
  .section-alt { padding: 50px 5%; }

  /* Grids */
  .disciplines-grid { grid-template-columns: 1fr; }
  .coaches-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .infos-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 24px 5%; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 14px 8px; }
  .stat-item:last-child { border-bottom: none; }

  /* Form */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px 18px; }

  /* Planning */
  .planning-legend { flex-direction: column; gap: 10px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  /* About */
  .about-img-main { width:100%;}
  .about-img-badge { display: none; }
}

/* ── Très petit mobile (≤ 380px) ── */
@media (max-width: 380px) {
  .hero-title { font-size: clamp(2.6rem, 18vw, 3.8rem); }
  .coaches-grid { grid-template-columns: 1fr; }
  .section { padding: 40px 4%; }
  .btn { padding: 11px 22px; font-size: 0.78rem; }
}


/* --- Correction Accessibilité : Si JS est désactivé ou lent --- */
.reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
}

/* --- Si tu veux garder les animations, utilise cette classe via JS --- */
.js-enabled .reveal, 
.js-enabled .reveal-left, 
.js-enabled .reveal-right {
    opacity: 0;
}

/* --- Correction des cartes Valeurs (About) --- */
/* Dans ton HTML, tu as mis background: var(--black-3) qui est sombre */
/* Il faut s'assurer que le texte à l'intérieur est blanc */
.section-alt [style*="background:var(--black-3)"] {
    color: #FFFFFF !important;
}
.section-alt [style*="background:var(--black-3)"] p {
    color: rgba(255,255,255,0.7) !important;
}


/* ════════════════════════════════════════════════════════
   CORRECTIONS RESPONSIVE MOBILE — À PLACER EN FIN DE FICHIER
   Corrige : disciplines, page-hero-title, contact layout
   ════════════════════════════════════════════════════════ */

/* ── PAGE HERO TITLE : taille fluide au lieu de 60px fixe ── */
.page-hero-title {
  font-size: clamp(2rem, 10vw, 60px);
  line-height: 0.95;
  word-break: break-word;
}

/* ────────────────────────────────────────────────────────
   TABLETTE (≤ 900px)
   ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {

  /* Disciplines : 2 colonnes, ratio proportionnel */
  .disciplines-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .discipline-card {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  /* Contact : 1 colonne dès la tablette */
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ────────────────────────────────────────────────────────
   MOBILE (≤ 640px)
   ──────────────────────────────────────────────────────── */
@media (max-width: 640px) {

  /* Page hero : réduire la hauteur et le padding */
  .page-hero {
    height: auto;
    min-height: 160px;
    padding: 24px 5% 28px;
  }
  .page-hero-title {
    font-size: clamp(1.8rem, 11vw, 3rem);
  }

  /* Disciplines : 1 colonne, ratio 16/9 bien cadré */
  .disciplines-grid {
    grid-template-columns: 1fr;
  }
  .discipline-card {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* Forcer desc visible au toucher (pas de hover sur mobile) */
  .discipline-desc {
    max-height: none;
    opacity: 1;
  }

  /* Contact : 1 colonne garantie */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Map : pleine largeur */
  .contact-map,
  .contact-map iframe {
    width: 100%;
    height: 260px;
  }
}

/* ────────────────────────────────────────────────────────
   TRÈS PETIT MOBILE (≤ 380px)
   ──────────────────────────────────────────────────────── */
@media (max-width: 380px) {

  .page-hero-title {
    font-size: clamp(1.5rem, 12vw, 2.2rem);
  }

  .discipline-card {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .localisation-grid {
    grid-template-columns: 1fr !important;
  }

  .localisation-grid > div:last-child {
    height: 280px !important;
  }
}



/*=============================================================================
                    MENTIONS LÉGALES
==========================================================================*/

    .legal-layout {
      max-width: 860px;
      margin: 0 auto;
    }
    .legal-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 48px;
    }
    .legal-nav-link {
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 8px 20px;
      background: var(--black-4);
      border: 1px solid var(--grey-dark);
      color: var(--grey-light);
      text-decoration: none;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
      transition: all 0.3s;
    }
    .legal-nav-link:hover, .legal-nav-link.active {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
    }
    .legal-article {
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--black-4);
    }
    .legal-article:last-child {
      border-bottom: none;
    }
    .legal-article-num {
      font-family: var(--font-title);
      font-weight: 900;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
    }
    .legal-article-title {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      line-height: 1.1;
      margin-bottom: 20px;
      color: var(--grey-light);
    }
    .legal-article-title span { color: var(--red); }
    .legal-body p {
      color: var(--grey-light);
      font-size: 0.92rem;
      line-height: 1.85;
      margin-bottom: 14px;
    }
    .legal-body strong {
      color: var(--red);
      font-weight: 600;
    }
    .legal-body a {
      color: var(--red);
      text-decoration: none;
    }
    .legal-body a:hover { text-decoration: underline; }
    .legal-info-block {
  
      border: 1px solid var(--grey-dark);
      border-left: 4px solid var(--red);
      padding: 24px 28px;
      margin: 24px 0;
    }
    .legal-info-block .lib-row {
      display: flex;
      gap: 16px;
      margin-bottom: 10px;
      font-size: 0.88rem;
      color: var(--grey-light);
      line-height: 1.6;
    }
    .legal-info-block .lib-row:last-child { margin-bottom: 0; }
    .legal-info-block .lib-label {
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--grey-mid);
      min-width: 160px;
      flex-shrink: 0;
    }
    .legal-update-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--black-4);
      border: 1px solid var(--grey-dark);
      padding: 10px 18px;
      font-family: var(--font-title);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--grey-mid);
      margin-bottom: 40px;
    }
    .legal-update-badge span { color: var(--red); }
    @media (max-width: 600px) {
      .legal-info-block .lib-row { flex-direction: column; gap: 4px; }
      .legal-info-block .lib-label { min-width: auto; }
    }
 

/*=================================================================
                  POLITIQUE DE CONFIDENTIALITÉ
==================================================================*/

    .legal-layout {
      max-width: 860px;
      margin: 0 auto;
    }
    .legal-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 48px;
    }
    .legal-nav-link {
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 8px 20px;
      background: var(--black-4);
      border: 1px solid var(--grey-dark);
      color: var(--grey-light);
      text-decoration: none;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
      transition: all 0.3s;
    }
    .legal-nav-link:hover, .legal-nav-link.active {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
    }
    .legal-article {
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--black-4);
    }
    .legal-article:last-child { border-bottom: none; }
    .legal-article-num {
      font-family: var(--font-title);
      font-weight: 900;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
    }
    .legal-article-title {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      line-height: 1.1;
      margin-bottom: 20px;
      color: var(--black-3);
    }
    .legal-article-title span { color: var(--red); }
    .legal-body p {
      color: var(--grey-light);
      font-size: 0.92rem;
      line-height: 1.85;
      margin-bottom: 14px;
    }
    .legal-body strong { color: var(--black-3); font-weight: 600; }
    .legal-body a { color: var(--red); text-decoration: none; }
    .legal-body a:hover { text-decoration: underline; }
    .legal-info-block {
     
      border: 1px solid var(--grey-dark);
      border-left: 4px solid var(--red);
      padding: 24px 28px;
      margin: 24px 0;
    }
    .legal-info-block .lib-row {
      display: flex;
      gap: 16px;
      margin-bottom: 10px;
      font-size: 0.88rem;
      color: var(--grey-light);
      line-height: 1.6;
    }
    .legal-info-block .lib-row:last-child { margin-bottom: 0; }
    .legal-info-block .lib-label {
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--grey-mid);
      min-width: 160px;
      flex-shrink: 0;
    }
    .legal-update-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--black-4);
      border: 1px solid var(--grey-dark);
      padding: 10px 18px;
      font-family: var(--font-title);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--grey-mid);
      margin-bottom: 40px;
    }
    .legal-update-badge span { color: var(--red); }
    .data-table {
      width: 100%;
      border-collapse: collapse;
      margin: 24px 0;
      font-size: 0.85rem;
    }
    .data-table thead tr {
      background: var(--black-3);
      border-bottom: 2px solid var(--red);
    }
    .data-table th {
      padding: 12px 16px;
      text-align: left;
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--grey-mid);
    }
    .data-table td {
      padding: 12px 16px;
      color: var(--grey-light);
      border-bottom: 1px solid var(--black-4);
      vertical-align: top;
      line-height: 1.6;
    }
    .data-table tbody tr:hover { background: var(--black); }
    .rights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
      margin: 24px 0;
    }
    .right-item {
      background: var(--grey-light);
      border: 1px solid var(--grey-dark);
      border-top: 3px solid var(--red);
      padding: 20px 18px;
    }
    .right-item-icon { font-size: 1.5rem; margin-bottom: 10px; }
    .right-item-title {
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 8px;
    }
    .right-item-desc {
      font-size: 0.82rem;
      color: var(--grey-mid);
      line-height: 1.6;
    }
    .rgpd-banner {
      background: rgba(212, 0, 26, 0.08);
      border: 1px solid rgba(212, 0, 26, 0.25);
      border-left: 4px solid var(--red);
      padding: 20px 24px;
      margin-bottom: 40px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .rgpd-banner-icon { font-size: 1.5rem; flex-shrink: 0; }
    .rgpd-banner-text { font-size: 0.88rem; color: var(--grey-light); line-height: 1.7; }
    .rgpd-banner-text strong { color: var(--black-3); }
    @media (max-width: 600px) {
      .legal-info-block .lib-row { flex-direction: column; gap: 4px; }
      .legal-info-block .lib-label { min-width: auto; }
      .data-table { font-size: 0.78rem; }
      .data-table th, .data-table td { padding: 9px 10px; }
    }
  