.rajdhani-light { font-family: "Rajdhani", sans-serif; font-weight: 300; font-style: normal; }
.rajdhani-regular { font-family: "Rajdhani", sans-serif; font-weight: 400; font-style: normal; }
.rajdhani-medium { font-family: "Rajdhani", sans-serif; font-weight: 500; font-style: normal; }
.rajdhani-semibold { font-family: "Rajdhani", sans-serif; font-weight: 600; font-style: normal; }
.rajdhani-bold { font-family: "Rajdhani", sans-serif; font-weight: 700; font-style: normal; }

:root {
  --blue-deep: #01539e;
  --blue-night: #2a385c;
  --white: #ffffff;
  --black: #0a0a0a;
  --grey-fade: rgba(255, 255, 255, 0.6);
  --line: rgba(255, 255, 255, 0.14);

  /* Palette de fond bleu-nuit subtile */
  --bg-deep:   #0a1220;   /* base la plus sombre */
  --bg-mid:    #0c1626;   /* nuance médiane */
  --bg-light:  #0d1828;   /* nuance la plus lumineuse */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  background: var(--bg-deep);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: #01539e;
    color: white;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #01539e;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #004281;
}

/* ==================== NAVIGATION ==================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0) 100%);
  transition: background 0.3s ease, padding 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 16px 56px;
  border-bottom: 1px solid var(--line);
}

.nav__logo { display: flex; align-items: center; text-decoration: none; color: var(--white); }
.nav__logo svg { width: 105px; height: auto; display: block; transition: width 0.3s ease; }

.nav__panel { display: contents; }

.nav__menu { display: flex; gap: 44px; list-style: none; }

.nav__menu a {
  color: var(--white);
  text-decoration: none;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--blue-deep);
  transition: width 0.35s cubic-bezier(0.65,0,0.35,1);
}

.nav__menu a:hover { color: var(--blue-deep); }
.nav__menu a:hover::after { width: 100%; }

/* État actif (page en cours) */
.nav__menu a.is-active { color: var(--blue-deep); }
.nav__menu a.is-active::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 26px;
  background: var(--blue-deep);
  color: var(--white);
  text-decoration: none;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.nav__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue-night);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
  z-index: 0;
}

.nav__cta span, .nav__cta svg, .nav__cta i { position: relative; z-index: 1; }
.nav__cta:hover::before { transform: translateX(0); }

/* ---- Burger (mobile) ---- */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  z-index: 120;
}
.nav__burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.65,0,0.35,1), opacity 0.25s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Voile derrière le menu mobile */
.nav__backdrop {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 90;
}
.nav__backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 78% 22%, rgba(1, 83, 158, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 12% 78%, rgba(42, 56, 92, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-light) 0%, var(--bg-mid) 50%, var(--bg-deep) 100%);
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }

.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: contrast(1.08) saturate(1.05) brightness(0.85);
  animation: slowZoom 18s ease-out forwards;
}

.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.15) 0%, transparent 40%, rgba(10,10,10,0.45) 100%);
  z-index: 1;
}

.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(1,83,158,0.28) 0%, transparent 50%);
  z-index: 2;
  mix-blend-mode: screen;
}

.hero__watermark {
  position: absolute;
  top: 50%; right: 2%;
  transform: translateY(-50%);
  z-index: 3;
  width: 55%; max-width: 750px;
  pointer-events: none;
  animation: watermarkFade 1.5s ease 0.6s both;
}

.hero__watermark svg { width: 100%; height: auto; display: block; opacity: 0.10; }

.hero__content {
  position: relative; z-index: 5;
  width: 100%;
  padding: 0 56px;
  max-width: 1500px;
  margin: 0 auto;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white);
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero__label-dot {
  width: 8px; height: 8px;
  background: var(--blue-deep);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--blue-deep);
  animation: pulse 2s ease-in-out infinite;
}

.hero__label-divider { width: 32px; height: 1px; background: var(--white); opacity: 0.4; }

.hero__title {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-weight: 900; font-size: clamp(52px, 11vw, 130px);
  line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 36px; max-width: 1100px;
  overflow-wrap: break-word;
}

.hero__title-row { display: block; overflow: hidden; }
.hero__title-row span { display: inline-block; animation: titleReveal 1s cubic-bezier(0.65,0,0.35,1) both; }
.hero__title-row:nth-child(1) span { animation-delay: 0.45s; font-style: italic; }
.hero__title-row:nth-child(2) span { animation-delay: 0.6s; font-style: italic; color: #ffffff; }

.hero__lede {
  max-width: 540px;
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.85s both;
}

.hero__actions { display: flex; align-items: center; gap: 28px; animation: fadeUp 0.8s ease 1s both; }

.hero__btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px;
  background: var(--white); color: var(--black);
  text-decoration: none;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background 0.3s ease, color 0.3s ease;
}

.hero__btn-primary:hover { background: var(--blue-deep); color: var(--white); }

.hero__btn-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--white); text-decoration: none;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 18px 4px; position: relative;
  transition: color 0.3s ease;
}

.hero__btn-secondary::after {
  content: "";
  position: absolute; left: 4px; bottom: 12px;
  width: calc(100% - 30px); height: 1px;
  background: var(--white);
  transition: width 0.35s ease;
}

.hero__btn-secondary:hover { color: var(--blue-deep); }
.hero__btn-secondary:hover::after { background: var(--blue-deep); }

/* ==================== TICKER ==================== */
.ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 6;
  border-top: 1px solid var(--line);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeUp 0.8s ease 1.2s both;
}

.ticker__inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr auto;
  align-items: center;
}

.ticker__title {
  padding: 22px 28px;
  background: var(--blue-deep);
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
}

.ticker__title-dot { width: 7px; height: 7px; background: var(--white); border-radius: 50%; animation: pulse 1.4s ease-in-out infinite; }

.ticker__item { padding: 18px 32px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.ticker__item:last-of-type { border-right: 1px solid var(--line); }
.ticker__label { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-fade); }
.ticker__value { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.5px; color: var(--white); }
.ticker__value em { font-style: italic; color: var(--blue-deep); }

.ticker__cta {
  padding: 22px 32px;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.3s ease;
}

.ticker__cta:hover { color: var(--blue-deep); }
.ticker__cta svg { transition: transform 0.3s ease; }
.ticker__cta:hover svg { transform: translateX(4px); }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes titleReveal { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.85); } }
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes watermarkFade { from { opacity: 0; transform: translateY(-50%) translateX(40px); } to { opacity: 1; transform: translateY(-50%) translateX(0); } }

/* ==================== RESPONSIVE HERO ==================== */
@media (max-width: 1100px) {
  .hero__watermark { width: 90%; right: -10%; }
  .hero__watermark svg { opacity: 0.06; }
  .ticker__inner { grid-template-columns: auto 1fr 1fr auto; }
  .ticker__item:nth-child(4) { display: none; }
}

@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav.is-scrolled { padding: 12px 20px; }

  /* Le burger apparaît, le panneau devient un tiroir coulissant */
  .nav__burger { display: flex; }

  .nav__panel {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(78vw, 340px);
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 96px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
    z-index: 110;
    overflow-y: auto;
  }
  .nav__panel.is-open { transform: translateX(0); }

  .nav__menu {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }
  .nav__menu li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav__menu a {
    display: block;
    width: 100%;
    padding: 18px 0;
    font-size: 18px;
    letter-spacing: 2px;
  }
  .nav__menu a::after { display: none; }

  .nav__cta {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
    padding: 16px 26px;
    font-size: 13px;
  }

  .hero__content { padding: 0 20px; }
  .ticker__inner { grid-template-columns: 1fr; }
  .ticker__title { clip-path: none; padding: 14px 20px; }
  .ticker__item { padding: 14px 20px; border-right: none; border-top: 1px solid var(--line); }
  .ticker__cta { padding: 16px 20px; border-top: 1px solid var(--line); justify-content: space-between; }
}

/* ==================== BANDE PARTENAIRES ==================== */
.partners { background: #f5f5f2; color: var(--black); padding: 64px 56px; position: relative; }

.partners__inner {
  max-width: 1500px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}

.partners__left { display: flex; flex-direction: column; gap: 12px; }

.partners__label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue-deep);
}

.partners__label::before { content: ""; width: 28px; height: 1px; background: var(--blue-deep); }

.partners__text {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700; line-height: 1.15;
  color: var(--black); letter-spacing: -0.5px;
  max-width: 720px;
}

.partners__text em { font-style: italic; color: var(--blue-deep); }

.partners__btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px;
  background: var(--blue-deep); color: var(--white);
  text-decoration: none;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  overflow: hidden; position: relative;
  transition: transform 0.3s ease; white-space: nowrap;
}

.partners__btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--blue-night);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
  z-index: 0;
}

.partners__btn span, .partners__btn svg { position: relative; z-index: 1; }
.partners__btn:hover::before { transform: translateX(0); }

/* ==================== NOTRE ÉQUIPE ==================== */
.squad {
  padding: 140px 56px;
  position: relative;
  overflow: hidden;
  background:#0a0a0a62;
}

.squad__inner { max-width: 1500px; margin: 0 auto; position: relative; z-index: 1; }

.squad__header { margin-bottom: 56px; }

/* labels/titres conservés (réutilisés ailleurs) */
.section-label {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue-deep);
}
.section-label::before { content: ""; width: 32px; height: 1px; background: var(--blue-deep); }

.section-title {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-weight: 900; font-size: clamp(38px, 8vw, 80px);
  line-height: 0.96; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--white);
}
.section-title em { font-style: italic; color: transparent; -webkit-text-stroke: 1.5px var(--white); }

/* ---- Bandeau stats animées ---- */
.squad__stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 64px;
}
.sstat {
  position: relative;
  padding: 32px 28px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
}
.sstat:last-child { border-right: none; }
.sstat.is-in { opacity: 1; transform: translateY(0); }
.sstat::after {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s ease;
}
.sstat.is-in::after { transform: scaleX(1); }
.sstat__icon { width: 30px; height: 30px; color: var(--blue-deep); margin-bottom: 18px; }
.sstat__icon svg { width: 100%; height: 100%; }
.sstat__value {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-style: italic; font-weight: 900;
  font-size: clamp(40px, 4vw, 56px); line-height: 0.95;
  letter-spacing: -1.5px; color: var(--white);
}
.sstat__label {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

/* ---- Onglets ---- */
.squad__tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.squad__tab {
  display: flex; align-items: baseline; gap: 12px;
  background: none; border: none; cursor: pointer;
  padding: 0 28px 22px; margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.45);
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.squad__tab:first-child { padding-left: 0; }
.squad__tab-idx { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--blue-deep); opacity: 0.6; transition: opacity 0.3s ease; }
.squad__tab-name { font-family: 'Rajdhani'; font-size: clamp(20px, 2.4vw, 30px); font-weight: 800; letter-spacing: -0.5px; text-transform: uppercase; }
.squad__tab:hover { color: rgba(255,255,255,0.8); }
.squad__tab.is-active { color: var(--white); border-bottom-color: var(--blue-deep); }
.squad__tab.is-active .squad__tab-idx { opacity: 1; }

/* ---- Panneaux ---- */
.squad__panel { display: none; }
.squad__panel.is-active { display: block; }
@keyframes squadIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.squad__panel--anim { animation: squadIn 0.5s cubic-bezier(0.22,1,0.36,1); }
/* premier rendu animé aussi */
.squad__panel.is-active { animation: squadIn 0.5s cubic-bezier(0.22,1,0.36,1); }

.squad__panel-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: center;
}

.squad__media {
  position: relative;
  aspect-ratio: 3 / 2;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
}
.squad__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.squad__media-tag {
  position: absolute; left: 0; bottom: 0;
  background: var(--blue-deep); color: var(--white);
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 20px;
}

.squad__content { display: flex; flex-direction: column; }
.squad__lede {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600; line-height: 1.25;
  color: var(--white); margin-bottom: 32px; letter-spacing: -0.3px;
}
.squad__lede em { font-style: italic; color: var(--blue-deep); }

/* ---- Liste en tirets ---- */
.squad__points { list-style: none; display: flex; flex-direction: column; }
.squad__points li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.82); font-weight: 300;
}
.squad__points li::before {
  content: "—"; color: var(--blue-deep); font-weight: 700; flex-shrink: 0;
}
.squad__points li strong { font-weight: 600; color: var(--white); }

.squad__sign { display: flex; align-items: center; margin-top: 36px; }
.squad__sign-img { width: 110px; height: 56px; display: flex; align-items: center; }
.squad__sign-img img { max-width: 140%; max-height: 140%; }
.squad__sign-name { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 16px; font-weight: 700; color: var(--white); }
.squad__sign-role { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-fade); margin-top: 2px; }

.squad__actions { display: flex; align-items: center; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.squad__btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px;
  background: var(--blue-deep); color: var(--white); text-decoration: none;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  overflow: hidden; position: relative; transition: transform 0.3s ease;
}
.squad__btn-primary::before {
  content: ""; position: absolute; inset: 0; background: var(--blue-night);
  transform: translateX(-101%); transition: transform 0.4s cubic-bezier(0.65,0,0.35,1); z-index: 0;
}
.squad__btn-primary span, .squad__btn-primary i { position: relative; z-index: 1; }
.squad__btn-primary:hover::before { transform: translateX(0); }

@media (max-width: 1100px) {
  .squad__panel-grid { grid-template-columns: 1fr; gap: 48px; }
  .squad__media { aspect-ratio: 3 / 2; max-width: 560px; }
  .squad__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .squad { padding: 100px 24px 80px; }
  .squad__header { margin-bottom: 40px; }
}

@media (max-width: 600px) {
  .squad__stats { grid-template-columns: 1fr 1fr; }
  .squad__tabs { gap: 0; }
  .squad__tab { padding: 0 16px 18px; }
  .squad__sign { flex-wrap: wrap; }
  .squad__actions { flex-direction: column; align-items: flex-start; }
}

/* ==================== CONTACT ==================== */
.contact { position: relative; background:#ffffff; overflow: hidden; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: stretch;
}

.contact__left {
  position: relative;
  padding: 120px 64px 100px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 56px;
}

.contact__heading { position: relative; z-index: 1; }

.contact__title {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-weight: 900; font-size: clamp(36px, 6.5vw, 70px);
  line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--black);
}

.contact__title em { font-style: italic; color: transparent; -webkit-text-stroke: 2px var(--black); }

.contact__lede { margin-top: 32px; font-size: 16px; line-height: 1.75; color: var(--black); font-weight: 300; max-width: 420px; }

.contact__info { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 28px; padding-top: 32px; border-top: 1px solid var(--line); }
.contact__info-item { display: flex; flex-direction: column; gap: 6px; }
.contact__info-label { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue-deep); }
.contact__info-value { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 16px; font-weight: 500; color: var(--black); letter-spacing: 0.3px; }
.contact__info-value a { color: var(--black); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s ease, color 0.3s ease; }
.contact__info-value a:hover { color: var(--blue-deep); border-color: var(--blue-deep); }

/* ---- Bloc droit : fond blanc ---- */
.contact__right {
  padding: 120px 56px 100px;
  background: #ffffff;
  color: var(--black);
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ---- Champ : structure ---- */
.contact__right .field { display: flex; flex-direction: column; gap: 10px; position: relative; }

.contact__right .field__label {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.8px; text-transform: uppercase;
  color: rgba(10,10,10,0.75);
  display: flex; align-items: center; gap: 12px;
}

/* ---- Inputs / textarea / select sur fond blanc ---- */
.contact__right .field input,
.contact__right .field textarea,
.contact__right .field select {
  background: #fafafa;
  border: 1px solid rgba(10,10,10,0.15);
  border-radius: 2px;
  padding: 14px 18px;
  color: var(--black);
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 16px; font-weight: 400;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none; width: 100%;
}

.contact__right .field input:hover,
.contact__right .field textarea:hover,
.contact__right .field select:hover {
  border-color: rgba(10,10,10,0.28);
  background: #ffffff;
}

.contact__right .field textarea {
  resize: vertical; min-height: 140px;
  line-height: 1.55;
}

.contact__right .field select {
  appearance: none; -webkit-appearance: none;
  background-position: right 16px center;
  background-size: 12px 12px;
  padding-right: 44px;
  cursor: pointer;
}

/* ---- Focus : juste un gris un peu plus marqué, pas d'accent bleu ---- */
.contact__right .field input:focus,
.contact__right .field textarea:focus,
.contact__right .field select:focus {
  border-color: rgba(10,10,10,0.42);
  background: #ffffff;
  box-shadow: none;
}

.contact__right .field select option { background: #ffffff; color: var(--black); }

.contact__right .field input::placeholder,
.contact__right .field textarea::placeholder {
  color: rgba(10,10,10,0.35);
  font-style: italic;
  font-weight: 300;
}

/* ---- Checkbox / consentement sur fond blanc ---- */
.contact__right .field-check {
  display: flex; align-items: flex-start; gap: 14px;
  margin-top: 8px; cursor: pointer; user-select: none;
}
.contact__right .field-check input { position: absolute; opacity: 0; pointer-events: none; }

.contact__right .field-check__box {
  flex-shrink: 0; width: 18px; height: 18px;
  border: 1px solid rgba(10,10,10,0.25);
  background: #ffffff;
  margin-top: 2px;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact__right .field-check__box::after {
  content: "";
  position: absolute; top: 3px; left: 6px;
  width: 4px; height: 8px;
  border: solid var(--white); border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.25s ease;
}

.contact__right .field-check input:checked + .field-check__box {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}
.contact__right .field-check input:checked + .field-check__box::after { transform: rotate(45deg) scale(1); }

.contact__right .field-check__text {
  font-size: 14px; line-height: 1.6;
  color: rgba(10,10,10,0.65);
}
.contact__right .field-check__text a {
  color: var(--blue-deep); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.contact__right .field-check__text a:hover { border-color: var(--blue-deep); }

/* ---- Bouton submit ---- */
.contact__right .contact-form__submit {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 36px;
  background: var(--blue-deep); color: var(--white);
  border: none; cursor: pointer;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  overflow: hidden; position: relative;
  transition: transform 0.3s ease;
  align-self: flex-start; margin-top: 0;
}

.contact__right .contact-form__submit::before {
  content: ""; position: absolute; inset: 0;
  background: var(--blue-night);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
  z-index: 0;
}

.contact__right .contact-form__submit span,
.contact__right .contact-form__submit svg { position: relative; z-index: 1; }
.contact__right .contact-form__submit:hover::before { transform: translateX(0); }

.contact-form .g-recaptcha { display: inline-block; }

.contact__right .contact-form__footer {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(10,10,10,0.1);
}

/* ==================== FOOTER ==================== */
.footer {
  background: #000000;
  color: var(--white);
  padding: 100px 56px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.footer__inner {
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 80px;
}

.footer__brand-logo svg { width: 180px; height: auto; display: block; margin-bottom: 28px; }
.footer__brand-logo svg path { fill: var(--white); }

.footer__tagline { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.6); font-weight: 300; max-width: 360px; }

.footer__col-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue-deep); margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
}

.footer__col-title::before { content: ""; width: 20px; height: 1.5px; background: var(--blue-deep); }

.footer__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.footer__list a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 16px; font-weight: 500; letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer__list a:hover { color: var(--white); transform: translateX(4px); }

.footer__socials { display: flex; gap: 22px; }

.footer__social {
  width: 32px; height: 32px;
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__social:hover { color: var(--blue-deep); transform: translateY(-2px); }
.footer__social svg { width: 100%; height: 100%; display: block; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0; max-width: 1500px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.footer__copy { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.footer__copy span { color: var(--blue-deep); margin: 0 12px; }

.footer__back-top {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color 0.3s ease;
}

.footer__back-top:hover { color: var(--blue-deep); }
.footer__back-top svg { transition: transform 0.3s ease; }
.footer__back-top:hover svg { transform: translateY(-3px); }

@media (max-width: 1100px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__left { border-right: none; border-bottom: 1px solid var(--line); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .contact__left { padding: 80px 24px 60px; }
  .contact__right { padding: 80px 24px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .footer { padding: 72px 24px 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
  .footer__bottom { flex-direction: column; gap: 14px; padding: 20px 0; text-align: center; }
}

/* ==================== CALENDRIER ==================== */
.calendar-section { background: transparent; padding: 80px 0 60px; position: relative; margin-top: 80px; }

.calendar-section__inner {
  max-width: 1300px; margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
}

.calendar__info { display: flex; flex-direction: column; gap: 48px; padding-top: 8px; }

.calendar__info-title {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-weight: 900; font-size: clamp(40px, 4.8vw, 68px);
  line-height: 0.96; letter-spacing: -1px;
  text-transform: uppercase; color: var(--white);
}

.calendar__info-title em { font-style: italic; color: transparent; -webkit-text-stroke: 1.5px var(--white); }

.calendar__info-lede { margin-top: 18px; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.65); font-weight: 300; max-width: 380px; }

.upcoming { padding-top: 32px; border-top: 1px solid var(--line); }

.upcoming__title {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white); margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}

.upcoming__title::before { content: ""; width: 24px; height: 1px; background: var(--blue-deep); }

.upcoming__list { display: flex; flex-direction: column; gap: 10px; }

.upcoming__item {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-left: 2px solid var(--blue-deep);
  border-radius: 2px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.upcoming__item-date { flex-shrink: 0; text-align: center; padding-right: 18px; border-right: 1px solid var(--line); }
.upcoming__item-day { font-family: "Sofia Sans Semi Condensed", sans-serif; font-style: italic; font-weight: 800; font-size: 26px; line-height: 1; color: var(--white); white-space: nowrap; }
.upcoming__item-month { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-top: 4px; }
.upcoming__item-body { flex: 1; min-width: 0; }
.upcoming__item-title { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 16px; font-weight: 700; color: var(--white); letter-spacing: 0.2px; margin-bottom: 4px; }
.upcoming__item-meta { font-size: 16px; color: rgba(255,255,255,0.55); font-weight: 300; }

.upcoming__empty { display: flex; flex-direction: column; gap: 14px; padding: 28px 24px; background: rgba(255,255,255,0.025); border: 1px dashed var(--line); border-radius: 2px; text-align: center; }
.upcoming__empty-icon { width: 36px; height: 36px; margin: 0 auto; color: rgba(255,255,255,0.3); }
.upcoming__empty-text { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.55); font-weight: 300; }
.upcoming__empty-text strong { display: block; color: var(--white); font-family: "Sofia Sans Semi Condensed", sans-serif; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; font-size: 12px; margin-bottom: 6px; }

.calendar { background: rgba(255,255,255,0.025); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

.calendar__nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.02); }

.calendar__month { font-family: "Sofia Sans Semi Condensed", sans-serif; font-weight: 800; font-size: 20px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--white); display: flex; align-items: baseline; gap: 12px; }
.calendar__month-year { font-style: italic; font-weight: 700; color: var(--blue-deep); font-size: 17px; }

.calendar__nav-arrows { display: flex; gap: 10px; }

.calendar__arrow {
  width: 38px; height: 38px;
  background: transparent; border: 1px solid var(--line); border-radius: 2px;
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.calendar__arrow:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.calendar__arrow svg { display: block; }

.calendar__today {
  background: transparent; border: 1px solid var(--line);
  color: var(--white);
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
  padding: 0 16px; height: 38px; cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.calendar__today:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.3); }

.calendar__weekdays { display: grid; grid-template-columns: repeat(7, 1fr); border-bottom: 1px solid var(--line); }

.calendar__weekday { padding: 10px 12px; font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); text-align: center; border-right: 1px solid var(--line); }
.calendar__weekday:last-child { border-right: none; }

.calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); grid-auto-rows: minmax(82px, auto); }

.calendar__day {
  position: relative;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 8px 10px;
  transition: background 0.25s ease;
  display: flex; flex-direction: column; gap: 4px;
  min-height: 82px; text-align: left;
  background: transparent; color: var(--white);
  font-family: inherit; border-top: none; border-left: none;
}

.calendar__day:nth-child(7n) { border-right: none; }
.calendar__day--out { color: rgba(255,255,255,0.2); }
.calendar__day--today .calendar__day-number { background: var(--blue-deep); color: var(--white); }

.calendar__day-number { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 13px; font-weight: 600; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }

.calendar__event { display: flex; align-items: flex-start; gap: 6px; font-size: 11px; line-height: 1.3; color: var(--white); padding: 4px 6px; border-radius: 2px; background: rgba(1,83,158,0.15); border-left: 2px solid var(--blue-deep); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: left; }
.calendar__event-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-deep); flex-shrink: 0; margin-top: 4px; }
.calendar__event-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }

@media (max-width: 1100px) { .calendar-section__inner { grid-template-columns: 1fr; gap: 48px; } .calendar__info-lede { max-width: none; } }
@media (max-width: 768px) {
  .calendar-section { padding: 60px 0 40px; margin-top: 60px; }
  .calendar__nav { padding: 14px 16px; flex-wrap: wrap; gap: 12px; }
  .calendar__month { font-size: 16px; } .calendar__month-year { font-size: 14px; }
  .calendar__weekday { padding: 8px 4px; font-size: 9px; letter-spacing: 1px; }
  .calendar__day { padding: 6px; min-height: 60px; }
  .calendar__grid { grid-auto-rows: minmax(60px, auto); }
  .calendar__day-number { font-size: 11px; width: 20px; height: 20px; }
  .calendar__event { font-size: 9px; padding: 2px 4px; }
}

/* ==================== ACTIVITÉS ==================== */
.activities {
  padding: 140px 56px 120px;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-light) 50%, var(--bg-mid) 100%);
}

.activities::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 12% 22%, rgba(1, 83, 158, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 88% 78%, rgba(42, 56, 92, 0.45) 0%, transparent 60%);
  pointer-events: none;
}

.activities__inner { max-width: 1500px; margin: 0 auto; position: relative; z-index: 1; }

.activities__header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 100px; }

.activities__title { font-family: "Sofia Sans Semi Condensed", sans-serif; font-weight: 900; font-size: clamp(38px, 8vw, 80px); line-height: 0.96; letter-spacing: -0.02em; text-transform: uppercase; color: var(--white); }
.activities__title em { font-style: italic; color: transparent; -webkit-text-stroke: 1.5px var(--white); }

.activities__lede { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.65); font-weight: 300; max-width: 480px; }

.activities__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.activity { padding: 56px 48px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 24px; position: relative; transition: background 0.4s ease; }
.activity:last-child { border-right: none; }
.activity:hover { background: rgba(1,83,158,0.04); }

.activity__index { font-family: "Sofia Sans Semi Condensed", sans-serif; font-style: italic; font-weight: 700; font-size: 12px; letter-spacing: 2.5px; color: var(--blue-deep); display: flex; align-items: center; gap: 12px; }
.activity__index::after { content: ""; width: 32px; height: 1px; background: var(--blue-deep); }

.activity__icon { width: 64px; height: 64px; color: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; transition: color 0.4s ease, transform 0.4s cubic-bezier(0.65,0,0.35,1); }
.activity:hover .activity__icon { color: var(--blue-deep); transform: translateY(-4px); }
.activity__icon svg { width: 100%; height: 100%; }

.activity__title { font-family: "Sofia Sans Semi Condensed", sans-serif; font-weight: 800; font-size: 24px; line-height: 1.15; letter-spacing: -0.3px; color: var(--white); text-transform: uppercase; }
.activity__desc { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.7); font-weight: 300; }

.activity__features { list-style: none; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; margin-top: 8px; border-top: 1px solid var(--line); }
.activity__features li { display: flex; align-items: flex-start; gap: 12px; font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 16px; font-weight: 500; letter-spacing: 0.3px; color: rgba(255,255,255,0.8); line-height: 1.4; }
.activity__features li::before { content: ""; width: 6px; height: 6px; background: var(--blue-deep); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

/* ---- Lien "Voir le règlement" (carte activité) ---- */
.activity__link {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start; margin-top: 4px;
  color: var(--white); text-decoration: none;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding-bottom: 4px; position: relative;
  transition: color 0.3s ease;
}
.activity__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--blue-deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.65,0,0.35,1);
}
.activity__link:hover { color: var(--blue-deep); }
.activity__link:hover::after { transform: scaleX(1); }
.activity__link i { transition: transform 0.3s ease; }
.activity__link:hover i { transform: translateX(3px); }

@media (max-width: 1100px) {
  .activities__header { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .activities__list { grid-template-columns: 1fr; }
  .activity { border-right: none; border-bottom: 1px solid var(--line); }
  .activity:last-child { border-bottom: none; }
}

@media (max-width: 900px) {
  .activities { padding: 100px 24px 100px; }
  .activity { padding: 48px 24px; }
  .activities__header { margin-bottom: 64px; }
}

body.modal-open { overflow: hidden; }

/* ========== STATS ========== */
.stats { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.stat { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.stat__icon { width: 36px; height: 36px; color: var(--blue-deep); }
.stat__icon svg { width: 100%; height: 100%; }
.stat__value { font-family: "Sofia Sans Semi Condensed", sans-serif; font-style: italic; font-weight: 900; font-size: clamp(42px, 4.5vw, 58px); line-height: 0.95; letter-spacing: -1.5px; color: var(--white); }
.stat__value sup { font-size: 0.45em; font-weight: 700; color: var(--blue-deep); margin-left: 2px; vertical-align: super; font-style: normal; }
.stat__label { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); line-height: 1.4; }
@media (max-width: 900px) { .stats { grid-template-columns: 1fr; gap: 32px; } }

/* ========== MENTION MEMBRES ========== */
.members-notice { margin-top: 48px; padding: 28px 40px; background: rgba(255,0,0,0.131); border-left: 3px solid var(--white); display: flex; align-items: center; gap: 24px; }
.members-notice__icon { flex-shrink: 0; width: 44px; height: 44px; color: var(--white); }
.members-notice__icon svg { width: 100%; height: 100%; }
.members-notice__label { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.members-notice__text { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 18px; font-weight: 500; color: var(--white); line-height: 1.4; }
.members-notice__text strong { font-weight: 700; font-style: italic; }
@media (max-width: 900px) { .members-notice { flex-direction: column; align-items: flex-start; padding: 24px; gap: 16px; } }

/* ========== MODALE ADHÉRER ========== */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; pointer-events: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.65); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); cursor: pointer; opacity: 0; transition: opacity 0.5s ease; }
.modal__box { position: relative; z-index: 1; width: 100%; max-width: 620px; background: #ffffff; border: 1px solid var(--line); border-top: 2px solid var(--blue-deep); padding: 56px 56px 48px; opacity: 0; transform: translateY(24px) scale(0.97); transition: opacity 0.4s ease 0.1s, transform 0.4s cubic-bezier(0.65,0,0.35,1) 0.1s; max-height: calc(100vh - 48px); overflow-y: auto; }
.modal.is-open { pointer-events: auto; }
.modal.is-open .modal__overlay { opacity: 1; }
.modal.is-open .modal__box { opacity: 1; transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 20px; right: 20px; width: 38px; height: 38px; background: transparent; border: 1px solid var(--line); color: var(--black); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.modal__close:hover { color: var(--blue-deep); }
.modal__label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--blue-deep); }
.modal__label::before { content: ""; width: 28px; height: 1px; background: var(--blue-deep); }
.modal__title { font-family: "Sofia Sans Semi Condensed", sans-serif; font-weight: 900; font-size: clamp(30px, 7vw, 44px); line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; color: var(--black); margin-bottom: 24px; }
.modal__title em { font-style: italic; color: var(--black); }
.modal__text { font-size: 16px; line-height: 1.75; color: rgb(0,0,0); font-weight: 300; margin-bottom: 16px; }
.modal__text strong { color: var(--black); font-weight: 600; }
.modal__text a { color: var(--blue-deep); text-decoration: none; border-bottom: 1px solid var(--blue-deep); }
.modal__steps { list-style: none; margin: 28px 0 36px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px; }
.modal__step { display: flex; align-items: flex-start; gap: 16px; }
.modal__step-num { flex-shrink: 0; font-family: "Sofia Sans Semi Condensed", sans-serif; font-style: italic; font-weight: 800; font-size: 20px; color: var(--black); width: 28px; }
.modal__step-text { font-size: 15px; line-height: 1.6; color: rgb(0,0,0); }
.modal__step-text strong { color: var(--blue-deep); font-weight: 700; }
.modal__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.modal__btn-download { display: inline-flex; align-items: center; gap: 14px; padding: 16px 28px; background: var(--blue-deep); color: var(--white); text-decoration: none; font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%); position: relative; overflow: hidden; }
.modal__btn-download::before { content: ""; position: absolute; inset: 0; background: var(--blue-night); transform: translateX(-101%); transition: transform 0.4s cubic-bezier(0.65,0,0.35,1); z-index: 0; }
.modal__btn-download span, .modal__btn-download i { position: relative; z-index: 1; }
.modal__btn-download:hover::before { transform: translateX(0); }
.modal__btn-mail { display: inline-flex; align-items: center; gap: 10px; color: var(--black); text-decoration: none; font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 16px 4px; transition: color 0.3s; }
.modal__btn-mail:hover { color: var(--blue-deep); }

@media (max-width: 600px) {
  .modal__box { padding: 48px 28px 32px; }
  .modal__title { font-size: 32px; }
  .modal__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .modal__btn-download { width: 100%; justify-content: center; }
}

/* ==================== CARROUSEL ==================== */
.carousel { width: 100%; position: relative; background: transparent; padding: 60px 0; overflow: hidden; margin-top: 60px;}
.carousel__track-wrap { width: 100%; overflow: hidden; cursor: grab; }
.carousel__track-wrap:active { cursor: grabbing; }
.carousel__track { display: flex; gap: 16px; padding: 0 16px; transition: transform 0.5s cubic-bezier(0.65,0,0.35,1); will-change: transform; }
.carousel__slide { flex: 0 0 auto; width: clamp(260px, 28vw, 420px); aspect-ratio: 1 / 1; overflow: hidden; background: rgba(255,255,255,0.04); position: relative; user-select: none; }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; transition: transform 0.6s ease; }
.carousel__slide:hover img { transform: scale(1.04); }

.carousel__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 52px; height: 52px; border-radius: 50%; background: rgba(10,10,10,0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--line); color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.carousel__arrow:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.carousel__arrow--prev { left: 24px; }
.carousel__arrow--next { right: 24px; }
.carousel__arrow svg { display: block; }

@media (max-width: 768px) {
  .carousel { padding: 40px 0; }
  .carousel__slide { width: 75vw; }
  .carousel__arrow { width: 44px; height: 44px; }
  .carousel__arrow--prev { left: 12px; }
  .carousel__arrow--next { right: 12px; }
}

/* ==================== HERO STATS ==================== */
.hero__stats { display: flex; gap: 56px; align-items: flex-start; animation: fadeUp 0.8s ease 1s both; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; gap: 10px; }
.hero__stat-icon { width: 32px; height: 32px; color: var(--blue-deep); }
.hero__stat-icon svg { width: 100%; height: 100%; }
.hero__stat-value { font-family: "Sofia Sans Semi Condensed", sans-serif; font-style: italic; font-weight: 900; font-size: clamp(40px, 4vw, 56px); line-height: 0.95; letter-spacing: -1.5px; color: var(--white); }
.hero__stat-value sup { font-size: 0.45em; font-weight: 700; color: var(--blue-deep); margin-left: 2px; vertical-align: super; font-style: normal; }
.hero__stat-label { font-family: "Sofia Sans Semi Condensed", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); line-height: 1.4; }
@media (max-width: 600px) { .hero__stats { gap: 32px; } }

/* ==================== STORE — BANNIÈRE (shop.html) ==================== */
.store-banner {
  position: relative;
  padding: 180px 56px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 78% 22%, rgba(1, 83, 158, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 12% 78%, rgba(42, 56, 92, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-light) 0%, var(--bg-mid) 50%, var(--bg-deep) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.store-banner__inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.store-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white);
  animation: fadeUp 0.8s ease 0.3s both;
}

.store-banner__label-dot {
  width: 8px; height: 8px;
  background: var(--blue-deep);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--blue-deep);
  animation: pulse 2s ease-in-out infinite;
}

.store-banner__label-divider { width: 32px; height: 1px; background: var(--white); opacity: 0.4; }

.store-banner__title {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.9;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s cubic-bezier(0.65,0,0.35,1) 0.45s both;
}

.store-banner__title-dot { color: var(--blue-deep); }

.store-banner__lede {
  max-width: 540px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  animation: fadeUp 0.8s ease 0.65s both;
}

/* ==================== STORE — BANDE INFOS (shop.html) ==================== */
.info-band {
  background: #f5f5f2;
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.info-band__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.info-band__cell {
  padding: 36px 56px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-band__cell--first {
  border-right: 1px solid rgba(10, 10, 10, 0.1);
}

.info-band__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--blue-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.info-band__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.info-band__label {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.info-band__text {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black);
}

.info-band__mail {
  color: var(--blue-deep);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.info-band__mail:hover { border-color: var(--blue-deep); }

.info-band__text em {
  font-style: italic;
  color: var(--blue-deep);
  font-weight: 700;
}

/* ==================== STORE — CATALOGUE (shop.html) ==================== */
.catalog {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-light) 50%, var(--bg-mid) 100%);
  padding: 72px 56px 96px;
  position: relative;
  overflow: hidden;
}

.catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 12% 22%, rgba(1, 83, 158, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 88% 78%, rgba(42, 56, 92, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

.catalog__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.product {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.product:last-child { border-bottom: 1px solid var(--line); }

/* ---- Image ---- */
.product__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 2px;
  position: relative;
  padding: 0;
  cursor: zoom-in !important;
  transition: border-color 0.3s ease;
}

.product__media:hover { border-color: rgba(1, 83, 158, 0.55); }

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.65,0,0.35,1);
}

.product__media:hover img { transform: scale(1.04); }

.product__media-zoom {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: var(--blue-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.65,0,0.35,1);
  pointer-events: none;
}

.product__media:hover .product__media-zoom {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Centre : titre + liste ---- */
.product__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.product__name {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.product__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-product{
  font-size: 16px;
  color: rgba(255,255,255,0.75);
}

.product__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}

.product__features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--blue-deep);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ---- Droite : prix ---- */
.product__price-block {
  padding-left: 36px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  white-space: nowrap;
}

.product__price-label {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.product__price {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(24px, 2vw, 32px);
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.product__price-currency {
  font-style: normal;
  font-weight: 700;
  color: var(--blue-deep);
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  cursor: zoom-out !important;
}

.lightbox__img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(0.96);
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox.is-open .lightbox__img { transform: scale(1); }

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  color: var(--white);
  cursor: pointer !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.3s ease, border-color 0.3s ease;
  z-index: 1;
}

.lightbox__close:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .info-band__inner { grid-template-columns: 1fr; }
  .info-band__cell--first {
    border-right: none;
    border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  }
  .product {
    grid-template-columns: 200px 1fr auto;
    gap: 32px;
  }
  .product__price-block { padding-left: 24px; }
}

@media (max-width: 900px) {
  .store-banner { padding: 140px 24px 64px; }
  .info-band__cell { padding: 24px 28px; gap: 16px; }
  .catalog { padding: 56px 24px 80px; }
  .product {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0;
  }
  .product__media { aspect-ratio: 16 / 10; max-width: 320px; }
  .product__price-block {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    text-align: left;
    align-items: flex-start;
  }
  .lightbox { padding: 24px; }
  .lightbox__close { top: 16px; right: 16px; width: 42px; height: 42px; }
}

/* ==================== AJUSTEMENTS MOBILE GÉNÉRAUX ==================== */

/* Hero : on évite que le bandeau du bas recouvre le contenu */
@media (max-width: 760px) {
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding-top: 104px;
  }
  .hero__content { padding-top: 16px; padding-bottom: 56px; }
  .hero__title { margin-bottom: 28px; }
  .hero__lede { margin-bottom: 36px; font-size: 15px; }
  .hero__label { margin-bottom: 24px; }
  .ticker { position: static; }
  .hero__watermark { display: none; }
}

/* Bande partenaires : passe en colonne */
@media (max-width: 760px) {
  .partners { padding: 48px 24px; }
  .partners__inner { grid-template-columns: 1fr; gap: 28px; }
  .partners__btn { justify-content: center; width: 100%; }
}

/* Sections : on resserre encore l'espacement vertical */
@media (max-width: 600px) {
  .squad { padding: 80px 20px 64px; }
  .activities { padding: 80px 20px; }
  .activities__header { margin-bottom: 48px; }
  .activity { padding: 40px 20px; }
  .squad__header { margin-bottom: 32px; }
  .squad__stats { margin-bottom: 48px; }
  .sstat { padding: 24px 16px; }

  .calendar-section__inner { padding: 0 20px; }
  .contact__left { padding: 64px 20px 48px; }
  .contact__right { padding: 64px 20px; }
  .footer { padding: 64px 20px 0; }

  .members-notice__text { font-size: 16px; }
  .hero__stats { gap: 28px; }
}

/* Très petits écrans : le titre hero ne fusionne plus */
@media (max-width: 380px) {
  .hero__title { font-size: clamp(40px, 13vw, 52px); }
  .section-title,
  .activities__title { font-size: clamp(32px, 9vw, 40px); }
}

/* ==================== CURSOR ==================== */
*,
*::before,
*::after {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M3,3 L29,13 L15,18 L10,29 Z' fill='white' stroke='black' stroke-width='2.5' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 3 3, auto !important;
}

/* Conserve le curseur texte sur les champs de saisie (sinon c'est gênant pour écrire) */
input,
textarea {
  cursor: text !important;
}