/* OLYMP Agency — Design System v4 */
/* Helvetica Neue | #0A0A0A #FAFAFA #5F0202 */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --r: #5F0202;
  --rl: #8B1A1A;
  --bk: #0A0A0A;
  --w: #FAFAFA;
  --g: #888;
  --g2: #555;
  --line: rgba(0,0,0,0.08);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--bk);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* === NAV === */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 40px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav__left { display: flex; align-items: center; gap: 22px; }
.nav__left a { font-size: 11px; color: var(--g); letter-spacing: 0.4px; transition: color 0.3s; line-height: 1; }
.nav__left a:hover { color: var(--bk); }
.nav__left a.active { color: var(--bk); }
.nav__center { display: flex; justify-content: center; align-items: center; }
.nav__center a { display: flex; align-items: center; color: var(--bk); }
.nav__logo { height: 11px; width: auto; display: block; }
.nav__right { display: flex; justify-content: flex-end; align-items: center; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.4px;
  color: var(--g);
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
  text-transform: none;
  line-height: 1;
  transition: color 0.3s;
}
.nav__cta:hover { color: var(--bk); background: transparent; }
.nav__toggle {
  display: none;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
}
.nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--bk); margin: 0; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 48px 80px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: 70% center; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.6) 40%, rgba(10,10,10,0.15) 70%, transparent 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 600px; }
.hero__tag { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: #fff; margin-bottom: 24px; opacity: 0.6; }
.hero__title { font-size: clamp(42px, 5vw, 58px); font-weight: 300; line-height: 1.1; color: #fff; margin-bottom: 20px; letter-spacing: -1px; }
.hero__rule { width: 50px; height: 2px; background: var(--r); margin-bottom: 20px; }
.hero__sub { font-size: 17px; color: #bbb; line-height: 1.6; margin-bottom: 32px; font-weight: 300; }
.hero__cta {
  display: inline-block; padding: 14px 34px;
  border: 1px solid rgba(255,255,255,0.4); color: #fff;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 8px; transition: all 0.3s;
}
.hero__cta:hover { background: #fff; color: var(--bk); border-color: #fff; }

/* === TRANSITION === */
.transition-fade { height: 100px; background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, #fff 100%); }

/* === STATEMENT === */
.statement { padding: 140px 48px; text-align: center; background: #fff; }
.statement__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300; line-height: 1.2; letter-spacing: -0.5px;
  margin-bottom: 24px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.statement__title strong { font-weight: 600; }
.statement__sub { font-size: 16px; color: var(--g); max-width: 500px; margin: 0 auto 28px; line-height: 1.7; font-weight: 300; }
.statement__cta { font-size: 13px; color: var(--r); letter-spacing: 0.5px; transition: opacity 0.3s; }
.statement__cta:hover { opacity: 0.7; }

/* === STATEMENT STATS === */
.statement-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: #fff;
  padding: 80px 48px 60px;
  gap: 0;
  margin-bottom: 60px;
}
.statement-stats__text { display: flex; flex-direction: column; justify-content: center; padding-right: 60px; }
.statement-stats__text .statement__title { text-align: left; margin-left: 0; }
.statement-stats__text .statement__cta { text-align: left; }
.statement-stats__numbers {
  display: flex; flex-direction: column; justify-content: center; gap: 48px;
  padding-left: 60px; border-left: 1px solid rgba(0,0,0,0.06);
}
.stat-item__num {
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 200; line-height: 1; letter-spacing: -4px;
  color: var(--bk);
}
.stat-item__label {
  font-size: 13px; color: var(--g);
  letter-spacing: 1.8px; text-transform: uppercase;
  margin-top: 8px;
}

/* === SPLIT === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: #fff;
  overflow: hidden;
}
/* Override la fade-in par défaut pour cette section : on anime image + texte séparément */
.split.fade-in {
  opacity: 1;
  transform: none;
}
.split__image {
  background-size: cover;
  background-position: center top;
  min-height: 500px;
  transform: translateX(80px) scale(1.08);
  opacity: 0;
  transition:
    transform 1.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.2s ease;
  will-change: transform, opacity;
}
.split.fade-in.visible .split__image {
  transform: translateX(0) scale(1);
  opacity: 1;
}
.split__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 56px;
}
.split__content > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.split.fade-in.visible .split__content > * {
  opacity: 1;
  transform: translateY(0);
}
.split.fade-in.visible .split__content > *:nth-child(1) { transition-delay: 0.35s; }
.split.fade-in.visible .split__content > *:nth-child(2) { transition-delay: 0.45s; }
.split.fade-in.visible .split__content > *:nth-child(3) { transition-delay: 0.55s; }
.split.fade-in.visible .split__content > *:nth-child(4) { transition-delay: 0.65s; }
.split.fade-in.visible .split__content > *:nth-child(5) { transition-delay: 0.75s; }

.split__tag { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--r); margin-bottom: 16px; }
.split__headline { font-size: clamp(30px, 4vw, 48px); font-weight: 300; letter-spacing: -0.5px; margin-bottom: 22px; line-height: 1.2; }
.split__text { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 14px; font-weight: 300; white-space: nowrap; }
.split__text:last-of-type { margin-bottom: 28px; }
.split__cta { font-size: 13px; color: var(--r); letter-spacing: 0.5px; align-self: flex-start; margin-top: 6px; }
.split__cta:hover { opacity: 0.7; }

/* Réduire l'animation pour les utilisateurs qui demandent moins de mouvement */
@media (prefers-reduced-motion: reduce) {
  .split__image,
  .split__content > * {
    transform: none !important;
    transition-duration: 0.3s !important;
  }
}

/* === TRANSITION LIGHT === */
.transition-light { height: 60px; background: linear-gradient(to bottom, #fff 0%, #f8f8f8 50%, #fff 100%); }

/* === ROSTER === */
.roster { padding: 100px 48px; background: #fff; }
.roster__header { text-align: center; margin-bottom: 48px; }
.roster__title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 10px; }
.roster__title strong { font-weight: 600; }
.roster__sub { font-size: 15px; color: var(--g); font-weight: 300; }
.roster__scroll {
  display: flex; gap: 20px; overflow-x: auto;
  padding: 12px 0 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.roster__scroll::-webkit-scrollbar { display: none; }
.roster__card {
  flex: 0 0 280px; scroll-snap-align: start; cursor: pointer;
  transition: transform 0.4s ease;
  text-decoration: none; color: inherit;
}
.roster__card:hover { transform: translateY(-8px); }

/* === ROSTER PIN · pinned horizontal scroll === */
.roster-pin {
  position: relative;
  background: #fff;
  width: 100%;
}
.roster-pin__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.roster-pin__header {
  text-align: center;
  padding: 0 48px 36px;
  flex: 0 0 auto;
}
.roster-pin__header .roster__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.roster-pin__header .roster__title strong { font-weight: 600; }
.roster-pin__header .roster__sub {
  font-size: 15px;
  color: var(--g);
  font-weight: 300;
}
.roster-pin__track-wrap {
  flex: 0 0 auto;
  overflow: hidden;
  width: 100%;
}
.roster-pin__track {
  display: flex;
  gap: 20px;
  padding: 12px 48px 20px;
  will-change: transform;
  transition: transform 0s linear;
  width: max-content;
}
.roster-pin__track .roster__card {
  flex: 0 0 320px;
  scroll-snap-align: none;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease;
}
.roster-pin__track .roster__card:hover { transform: translateY(-8px); }
.roster-pin__track .roster__card-wrap {
  width: 320px;
  height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #0a0a0a;
}

/* FIX: roster image fills completely, no gray showing */
.roster__card-wrap {
  position: relative;
  width: 280px;
  height: 380px;
  overflow: hidden;
  border-radius: 12px;
  background: #0a0a0a;
}
.roster__card-img {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 0.5s ease;
  will-change: transform;
}
.roster__card:hover .roster__card-img { transform: scale(1.08); }
.roster__card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.2) 38%, transparent 58%);
  pointer-events: none;
}
.roster__card-info { position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 2; }
.roster__card-name { font-size: 21px; font-weight: 500; color: #fff; margin-bottom: 4px; letter-spacing: -0.2px; }
.roster__card-desig { font-size: 10px; color: rgba(255,255,255,0.85); letter-spacing: 2px; text-transform: uppercase; }
.roster__card-palmares { font-size: 10.5px; color: rgba(255,255,255,0.65); margin-top: 6px; font-style: italic; }

/* === CTA FINAL === */
.cta-final { padding: 140px 48px; text-align: center; background: #fff; }
.cta-final__title { font-size: clamp(26px, 3.5vw, 38px); font-weight: 300; line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 32px; }
.cta-final__title strong { font-weight: 600; }
.cta-final__btn {
  display: inline-block; padding: 16px 40px;
  background: var(--bk); color: #fff;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 8px; border: none; cursor: pointer;
  transition: background 0.3s;
}
.cta-final__btn:hover { background: var(--r); }
.cta-final__email { display: block; margin-top: 20px; font-size: 14px; color: var(--g); }

/* === FOOTER === */
.footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 48px;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 11px; color: var(--g);
}
.footer__pure { color: var(--r); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; font-size: 10px; }
.footer__social { display: flex; gap: 20px; }
.footer__social a { color: var(--g); transition: color 0.3s; }
.footer__social a:hover { color: var(--bk); }

/* === PAGE HEADER (athletes grid) === */
.page-header { padding: 140px 48px 60px; text-align: center; position: relative; overflow: hidden; }
.page-header__bg {
  position: absolute; left: 50%; top: 55%;
  transform: translate(-50%,-50%);
  font-size: 240px; font-weight: 900;
  color: rgba(0,0,0,0.03);
  letter-spacing: -8px; pointer-events: none;
  font-style: italic; line-height: 0.8;
}
.page-header__title { font-size: clamp(36px, 5vw, 64px); font-weight: 300; line-height: 1.05; letter-spacing: -1px; position: relative; z-index: 2; margin-bottom: 12px; }
.page-header__title strong { font-weight: 600; }
.page-header__sub { font-size: 16px; color: var(--g); max-width: 420px; margin: 0 auto; font-weight: 300; position: relative; z-index: 2; }

/* === ATHLETES GRID === */
.athletes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 40px 48px 100px; }
.athlete-card { cursor: pointer; transition: transform 0.3s; text-decoration: none; color: inherit; }
.athlete-card:hover { transform: translateY(-6px); }
.athlete-card__wrap { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; border-radius: 12px; background: #0a0a0a; }
.athlete-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}
.athlete-card:hover .athlete-card__img { transform: scale(1.08); }
.athlete-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 40%, transparent 58%); }
.athlete-card__info { position: absolute; bottom: 18px; left: 18px; right: 18px; z-index: 2; }
.athlete-card__name { font-size: 18px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.athlete-card__desig { font-size: 10px; color: rgba(255,255,255,0.8); letter-spacing: 2px; text-transform: uppercase; }

/* === PROFILE HERO (enlarged typography, fill space) === */
.profile-hero { position: relative; width: 100%; margin-top: 0; padding-top: 0; }
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: #fff;
  align-items: start;
}
/* Image fixe au ratio 4:5 (portrait). Images : 1200 × 1500 px (ou 1600 × 2000 px). */
.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f2f2f2;
}
.profile-details {
  align-self: stretch;
}
.profile-details {
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 80px 72px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.profile-details__bg {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-size: clamp(260px, 30vw, 420px);
  font-weight: 900;
  color: rgba(0,0,0,0.035);
  letter-spacing: -16px;
  pointer-events: none;
  font-style: italic;
  line-height: 0.8;
  z-index: 0;
  white-space: nowrap;
}

.profile-slogan {
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: var(--g2);
  margin-bottom: 42px;
  position: relative;
  z-index: 2;
  line-height: 1.4;
  max-width: 560px;
  letter-spacing: -0.2px;
}
.profile-slogan::before {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  background: var(--r);
  margin-bottom: 18px;
}

.profile-name {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  color: var(--bk);
  white-space: nowrap;
}

.profile-desig {
  font-size: clamp(14px, 1vw, 16px);
  color: var(--r);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.profile-meta {
  display: flex;
  gap: 40px;
  font-size: 12px;
  color: var(--g);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.profile-meta a { color: var(--r); text-decoration: none; transition: opacity 0.3s; }
.profile-meta a:hover { opacity: 0.7; }

.profile-palmares { margin-top: 0; margin-bottom: 20px; position: relative; z-index: 2; display: flex; flex-direction: column; gap: 36px; }
.profile-palmares__item {
  padding-left: 24px;
  border-left: 2px solid var(--r);
}
.profile-palmares__rank {
  font-size: clamp(96px, 11vw, 148px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -5px;
  color: var(--bk);
}
.profile-palmares__rank span {
  font-size: clamp(36px, 4vw, 52px);
  margin-left: 2px;
  letter-spacing: -1px;
  font-weight: 300;
  color: var(--g);
}
.profile-palmares__event {
  font-size: 12px;
  color: var(--bk);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-top: 12px;
  font-weight: 500;
}
.profile-palmares__year {
  font-size: 12px;
  color: var(--g);
  font-style: italic;
  margin-top: 4px;
  letter-spacing: 1px;
}

/* === PROFILE BIO === */
.profile-bio-wrap {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 100px 48px;
  margin-top: 60px;
  position: relative;
}
.profile-bio-wrap::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--r);
}
.profile-bio {
  max-width: 780px;
  margin: 0 auto;
  font-size: 19px;
  color: #2a2a2a;
  line-height: 1.85;
  font-weight: 300;
  position: relative;
}
.profile-bio__label {
  display: block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 32px;
  font-weight: 600;
}
.profile-bio p { margin-bottom: 24px; }
.profile-bio p:first-of-type::first-letter {
  float: left;
  font-size: 68px;
  line-height: 0.9;
  font-weight: 600;
  padding: 6px 14px 0 0;
  color: var(--r);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.profile-bio p:last-child { margin-bottom: 0; }

/* === PROFILE CTA === */
.profile-cta {
  text-align: center;
  padding: 80px 48px 120px;
  background: #fff;
}
.profile-cta__title { font-size: clamp(28px, 3vw, 38px); font-weight: 300; letter-spacing: -0.3px; margin-bottom: 24px; }
.profile-cta__btn {
  display: inline-block; padding: 16px 40px;
  background: var(--bk); color: #fff;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 8px; transition: background 0.3s;
}
.profile-cta__btn:hover { background: var(--r); }

/* === ABOUT === */
.about-hero {
  padding: 160px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 22px;
}
.about-hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 840px;
  margin: 0 auto 24px;
}
.about-hero__title strong { font-weight: 600; }
.about-hero__lead {
  font-size: 18px;
  color: var(--g2);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* === PILLARS (3 colonnes, version épurée) === */
.pillars-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px 80px;
  text-align: center;
}
.pillars-section__label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--r);
  font-weight: 600;
  margin-bottom: 24px;
}
.pillars-section__intro {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--g2);
  line-height: 1.7;
  font-weight: 300;
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  text-align: left;
}
.pillar {
  position: relative;
  padding-top: 24px;
  border-top: 2px solid var(--bk);
}
.pillar__num {
  font-size: 56px;
  font-weight: 200;
  color: var(--bk);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 18px;
}
.pillar__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  color: var(--bk);
}
.pillar__text {
  font-size: 15px;
  color: var(--g2);
  line-height: 1.7;
  font-weight: 300;
}

/* === BRIDGE TITLE between about and team === */
.about-bridge {
  padding: 100px 48px 40px;
  text-align: center;
}
.about-bridge__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 840px;
  margin: 0 auto;
  color: var(--bk);
}
.about-bridge__title strong { font-weight: 600; }

/* === TEAM SECTION === */
.team-section {
  background: #fff;
  padding: 40px 48px 120px;
  text-align: center;
}
.team-section__head { max-width: 720px; margin: 0 auto 64px; }
.team-section__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 22px;
}
.team-section__title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--bk);
}
.team-section__title strong { font-weight: 600; }
.team-section__sub {
  font-size: clamp(20px, 2vw, 24px);
  color: var(--bk);
  font-weight: 300;
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto;
  letter-spacing: -0.2px;
}

.team {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  padding: 0 24px;
}
.team__member { text-align: center; max-width: 240px; }
.team__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #ececec;
  margin: 0 auto 22px;
}
.team__name {
  font-size: 19px;
  font-weight: 700;
  color: var(--bk);
  letter-spacing: -0.2px;
}
.team__role {
  font-size: 14px;
  color: var(--r);
  letter-spacing: 0.3px;
  margin-top: 6px;
  font-weight: 400;
}

/* === COUNTER === */
.counter { display: inline-block; }

/* === SCROLL FADE IN === */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .profile-palmares__rank { font-size: clamp(80px, 9vw, 120px); }
  .profile-name { font-size: clamp(46px, 5.2vw, 72px); }
  .profile-details { padding: 50px 48px; }
}

@media (max-width: 900px) {
  /* === NAV mobile : burger gauche, logo centre, contact droite (texte) === */
  .nav { padding: 14px 18px; align-items: center; }
  .nav__toggle {
    display: flex;
    grid-column: 1;
    justify-self: start;
    align-self: center;
    z-index: 1001;
    width: 22px;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 5px;
    padding: 0;
    background: none;
    border: none;
    transform: translateY(-5px);
  }
  .nav__toggle span { width: 22px; height: 1.5px; background: var(--bk); display: block; margin: 0; }
  .nav__center {
    grid-column: 2;
    justify-self: center;
    align-self: center;
    line-height: 0;
    font-size: 0;
    transform: translateY(3px);
  }
  .nav__right {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    transform: translateY(3px);
  }
  .nav__cta {
    font-size: 11px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--g);
    line-height: 1;
    display: inline-flex;
    align-items: center;
  }

  .nav__left {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 8px 18px 14px;
    text-align: left;
  }
  .nav__left.show { display: flex; }
  .nav__left a {
    padding: 12px 0;
    font-size: 14px;
    color: var(--bk);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    text-align: left;
    width: auto;
    align-self: flex-start;
  }
  .nav__left a:last-child { border-bottom: none; }

  /* === HERO mobile : tout visible (CTA inclus) === */
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: 110px 24px 90px;
    align-items: flex-end;
  }
  .hero__bg { background-position: center center; }
  .hero__title { font-size: 36px; white-space: normal; }
  .hero__sub { margin-bottom: 24px; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.85) 100%);
  }

  .statement { padding: 100px 24px; }
  .statement-stats { grid-template-columns: 1fr; padding: 60px 24px; text-align: center; }
  .statement-stats__text { padding-right: 0; margin-bottom: 40px; text-align: center; align-items: center; }
  .statement-stats__text .statement__title { text-align: center; margin-left: auto; margin-right: auto; }
  .statement-stats__text .statement__cta { text-align: center; display: block; }
  .statement-stats__numbers { padding-left: 0; border-left: none; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 40px; gap: 36px; align-items: center; text-align: center; }
  .stat-item__num { font-size: 82px; letter-spacing: -3px; }

  .split { grid-template-columns: 1fr; }
  .split__image { min-height: 380px; }
  .split__content { padding: 56px 24px; }
  .split__text { white-space: normal; }

  .roster { padding: 60px 24px; }

  /* === ROSTER PIN mobile : on garde le pinned scroll, juste cartes plus petites === */
  .roster-pin__header { padding: 0 24px 24px; }
  .roster-pin__track { padding: 12px 24px 20px; }
  .roster-pin__track .roster__card { flex: 0 0 240px; }
  .roster-pin__track .roster__card-wrap { width: 240px; height: 340px; }

  .cta-final { padding: 80px 24px; }

  /* === FOOTER mobile : ligne 1 = slogan + copyright, ligne 2 = liens === */
  .footer {
    padding: 20px 24px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    text-align: center;
  }
  .footer__pure,
  .footer > span:not(.footer__pure) {
    flex: 0 0 auto;
  }
  .footer__social {
    flex-basis: 100%;
    justify-content: center;
    margin-top: 6px;
    gap: 18px;
  }

  .page-header { padding: 100px 24px 40px; }
  .page-header__bg { font-size: 100px; letter-spacing: -4px; top: 58%; }
  .athletes-grid { grid-template-columns: repeat(2, 1fr); padding: 20px 24px 60px; }

  .profile-layout { grid-template-columns: 1fr; }
  .profile-photo { aspect-ratio: 4 / 5; }
  .profile-details { padding: 56px 28px; justify-content: flex-start; }
  .profile-name { font-size: 38px; letter-spacing: -1.2px; white-space: normal; line-height: 1.05; }
  .profile-slogan { font-size: 18px; }
  .profile-palmares__rank { font-size: 72px; letter-spacing: -3px; }
  .profile-palmares__rank span { font-size: 28px; }
  .profile-meta { gap: 20px; margin-bottom: 40px; }

  .profile-bio-wrap { padding: 70px 24px; }
  .profile-bio { font-size: 17px; }
  .profile-bio p:first-of-type::first-letter { font-size: 54px; padding-right: 10px; }

  .about-hero { padding: 110px 24px 50px; }
  .pillars-section { padding: 20px 24px 60px; }
  .pillars-section__label { margin-bottom: 18px; }
  .pillars-section__intro { font-size: 16px; margin-bottom: 40px; }
  .pillars { grid-template-columns: 1fr; gap: 36px; }
  .pillar__num { font-size: 44px; }
  .about-bridge { padding: 60px 24px 30px; }
  .team-section { padding: 50px 24px 90px; }
  .team-section__head { margin-bottom: 48px; }
  .team { flex-direction: column; align-items: center; gap: 48px; }
  .team__photo { width: 150px; height: 150px; }
}

@media (max-width: 600px) {
  .athletes-grid { grid-template-columns: 1fr; }
  .page-header__bg { font-size: 80px; letter-spacing: -3px; }
  .profile-details__bg { font-size: 200px; letter-spacing: -8px; }
}
