:root {
  --navy: #001930;
  --navy2: #002a4e;
  --river: #0077b6;
  --river2: #00b4d8;
  --orange: #f4722b;
  --orange2: #ff9a4a;
  --yellow: #c9a24a;
  --yellow2: #d4b870;
  --cream: #f5f0e8;
  --white: #fff;
  --dark: #0a1628;
  --mid: #4a5568;
  --light: #8fa3b8;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(0, 25, 48, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 82px
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none
}

.nav-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 3px solid var(--orange);
  border-radius: 100%;
}

.nav-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.1
}

.nav-brand-sub {
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.8
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent
}

.nav-links a:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow)
}

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 162, 74, 0.4)
}

.nav-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.28s ease, opacity 0.2s ease, background 0.2s ease
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 7px))
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, -50%)
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 7px))
}

.nav-toggle.is-open {
  background: rgba(244, 114, 43, 0.12);
  border-color: rgba(244, 114, 43, 0.45)
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg)
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0)
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg)
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  transition: all 0.2s;
  display: inline-block
}

.nav-cta:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-1px)
}

body.nav-open {
  overflow: hidden
}

/* ── HERO ── */
#accueil {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  z-index: 0
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 20, 40, 0.4) 0%, rgba(0, 20, 40, 0.58) 45%, rgba(0, 20, 40, 0.97) 100%);
  z-index: 1
}

.hero-top-bar {
  display: none
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 88px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  gap: 3rem
}

.hero-left {
  flex: 1;
  max-width: 640px
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 162, 74, 0.1);
  border: 1px solid rgba(201, 162, 74, 0.25);
  border-radius: 3px;
  padding: 0.38rem 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.75rem
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0
}

h1.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem
}

h1.hero-h1 .accent {
  color: var(--orange)
}

h1.hero-h1 .yellow {
  color: var(--yellow)
}

h2.hero-h2 {
  color: var(--orange);
  margin-bottom: 10px;
}

.hero-tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.1;
  max-width: 520px;
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--yellow);
  padding-left: 1.25rem
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: all 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer
}

.btn-orange:hover {
  background: #e0621f;
  transform: translateY(-1px)
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
  display: inline-block
}

.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow)
}

/* Hero stats — PARTICIPANTS EN EMPHASE */
.hero-stats {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  flex-wrap: wrap
}

.hstat {
  flex: 1;
  min-width: 120px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07)
}

.hstat.hstat-orang {
  background: rgba(255, 170, 0, 0.25);
}

.hstat:last-child {
  border-right: none
}

.hstat.featured {
  background: rgba(255, 205, 40, 0.08);
  border-right: 1px solid rgba(255, 205, 40, 0.15)
}

.hstat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--white)
}

.hstat-num .u {
  font-size: 1.2rem;
  color: var(--orange)
}

.hstat.featured .hstat-num {
  font-size: 2.6rem;
  color: var(--white)
}

.hstat.featured .hstat-num .u {
  font-size: 1.8rem;
  color: var(--orange)
}

.hstat-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 4px
}

.hstat.featured .hstat-lbl {
  color: var(--yellow);
  opacity: 0.75;
  font-size: 0.65rem
}

/* Hero right */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  width: 380px
}

.cd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.cd-box {
  background: rgba(255, 205, 40, 0.06);
  border: 1px solid rgba(255, 205, 40, 0.15);
  border-radius: 14px;
  padding: 1.4rem 0.75rem;
  text-align: center
}

.cd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--white)
}

.cd-lbl {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 5px;
  opacity: 0.65
}

.hero-info-card {
  background: rgba(0, 25, 48, 0.7);
  border: 1px solid rgba(255, 205, 40, 0.15);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem
}

.hero-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0
}

.hero-info-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white)
}

.hero-info-card span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5)
}

.hero-logo-card {
  margin-top: 1.5rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-medallion {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--orange);
  box-shadow: 0 12px 40px rgba(244, 114, 43, 0.45), 0 0 0 3px rgba(255, 255, 255, 0.08), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative
}

.hero-logo-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 0%, rgba(244, 114, 43, 0.08) 0%, transparent 60%);
  pointer-events: none
}

.hero-logo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: relative;
  border-radius: 100%;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5))
}

.hero-countdown-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.5rem;
  font-family: 'DM Serif Display', serif;
  font-style: italic
}

/* ── ORANGE STRIPE ── */
.orange-stripe {
  background: var(--orange);
  padding: 0.85rem 2rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white)
}

.orange-stripe a {
  color: var(--white);
  text-decoration: underline
}

/* ── ABOUT ── */
#about {
  background: var(--navy2);
  padding: 7rem 2rem
}

.about-inner {
  max-width: 1300px;
  margin: 0 auto
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center
}

/* RUNNERS — centrée, bien cadrée, pas de décalage */
.about-visual {
  display: none
}

.about-runners-wrap {
  position: relative;
  width: 100%;
  background: rgba(0, 15, 35, 0.6);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 205, 40, 0.12);
  padding: 2.5rem 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-runners-wrap img {
  width: 92%;
  max-width: 480px;
  height: auto;
  display: block;
  /* Crop the bottom-right whale area by showing main runners centered */
  object-fit: cover;
  object-position: center top;
}

.about-runners-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--yellow);
  color: var(--navy);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 205, 40, 0.35);
}

.about-runners-badge .big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  display: block
}

.about-runners-badge .sml {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
  font-weight: 700
}

.about-eyebrow-label {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

/* About text */
.sec-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  display: block
}

.sec-h-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.75rem
}

.sec-h-big .orange {
  color: var(--orange)
}

.sec-h-big .yellow {
  color: var(--yellow)
}

.about-intro {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem
}

.about-body p {
  font-size: 0.9rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem
}

.about-body p strong {
  color: var(--yellow);
  font-weight: 700
}

.about-body p a {
  color: var(--river2);
  text-decoration: underline
}

.about-body .cta-para {
  background: rgba(255, 205, 40, 0.07);
  border-left: 3px solid var(--yellow);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-top: 1.25rem
}

.about-body .cta-para strong {
  color: var(--yellow)
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem
}

.about-detail-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6)
}

.about-detail-row strong {
  color: var(--white);
  min-width: 110px;
  font-size: 0.82rem
}

.about-detail-icon {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0
}

.about-detail-row a {
  color: var(--river2);
  text-decoration: underline
}

/* ── PARTICIPANTS SECTION ── */
#participants {
  background: var(--navy);
  padding: 5rem 2rem
}

.participants-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center
}

.participants-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: block
}

.participants-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem
}

.participants-big .plus {
  color: var(--orange)
}

.participants-sub {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3rem
}

.participants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto
}

.participants-stat {
  background: var(--navy2);
  padding: 2rem 1.5rem;
  text-align: center
}

.participants-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--yellow)
}

.participants-stat-num .u {
  font-size: 1.4rem;
  color: var(--orange)
}

.participants-stat-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px
}

.inscri-cta-bar {
  margin-top: 3rem;
  background: var(--orange);
  border-radius: 6px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 3rem auto 0
}

.inscri-cta-bar strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px
}

.inscri-cta-bar span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7)
}

.btn-yellow {
  background: var(--white);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  transition: all 0.2s;
  display: inline-block;
  white-space: nowrap
}

.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 205, 40, 0.35)
}

/* ── FACEBOOK LIVE ── */
#facebook {
  display: block;
  background: var(--navy);
  padding: 7rem 2rem
}

.facebook-inner {
  max-width: 1300px;
  margin: 0 auto
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem
}

.section-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3.5rem
}

/* Shared section copy and text accents */
.section-copy {
  margin: 0 auto
}

.section-copy--parcours,
.section-copy--faq,
.section-copy--commanditaires {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45)
}

.section-copy--parcours,
.section-copy--dons {
  max-width: 600px
}

.section-copy--faq,
.section-copy--commanditaires {
  max-width: 580px
}

.section-copy--dons {
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5)
}

.text-accent--yellow {
  color: var(--yellow)
}

.text-accent--orange {
  color: var(--orange)
}

.sec-intro-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.4);
  max-width: 540px
}

/* Facebook feed live */
.fb-feed-container {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.fb-feed-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.fb-icon {
  width: 44px;
  height: 44px;
  background: #1877f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center
}

.fb-icon svg {
  width: 24px;
  height: 24px;
  fill: white
}

.fb-page-info strong {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white)
}

.fb-page-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4)
}

.fb-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(24, 119, 242, 0.2);
  border: 1px solid rgba(24, 119, 242, 0.4);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5bc4ff;
  margin-left: auto
}

.fb-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5bc4ff
}

/* iframe / embedded feed */
.fb-iframe-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fb-iframe-wrap iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  display: block;
}

.fb-iframe-placeholder {
  text-align: center;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.fb-iframe-placeholder .fb-logo {
  width: 80px;
  height: 80px;
  background: #1877f2;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.fb-placeholder-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--navy);
  letter-spacing: 0.04em
}

.fb-placeholder-sub {
  font-size: 0.88rem;
  color: var(--mid);
  max-width: 400px;
  line-height: 1.6
}

/* Fallback: posts grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem
}

.post-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06)
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4)
}

.post-card img {
  width: 100%;
  height: auto;
  display: block
}

.post-card-label {
  background: rgba(0, 25, 48, 0.95);
  padding: 0.7rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.post-card-label span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35)
}

.post-card-label strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow)
}

.fb-cta-bar {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: rgba(24, 119, 242, 0.06);
  border: 1px solid rgba(24, 119, 242, 0.15);
  border-radius: 6px
}

.fb-cta-bar p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5)
}

.fb-cta-bar strong {
  color: var(--white);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px
}

.btn-fb {
  background: #1877f2;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 1.75rem;
  border-radius: 4px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap
}

.btn-fb:hover {
  background: #1565d8;
  transform: translateY(-1px)
}

/* ── PARCOURS ── */
#parcours {
  background: var(--navy);
  padding: 7rem 2rem
}

.parcours-inner {
  max-width: 1300px;
  margin: 0 auto
}

.table-scroll-shell {
  position: relative;
  overflow: hidden
}

.table-scroll-shell--parcours {
  border-radius: 6px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3)
}

.table-scroll-shell--services,
.table-scroll-shell--inscri {
  border-radius: 16px;
  margin-top: 3rem;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.25)
}

.parcours-table-wrap,
.services-table-wrap,
.inscri-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 162, 74, 0.5) rgba(255, 255, 255, 0.08);
  border-radius: inherit
}

.parcours-table-wrap::-webkit-scrollbar,
.services-table-wrap::-webkit-scrollbar,
.inscri-table-wrap::-webkit-scrollbar {
  height: 10px
}

.parcours-table-wrap::-webkit-scrollbar-track,
.services-table-wrap::-webkit-scrollbar-track,
.inscri-table-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06)
}

.parcours-table-wrap::-webkit-scrollbar-thumb,
.services-table-wrap::-webkit-scrollbar-thumb,
.inscri-table-wrap::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(201, 162, 74, 0.65) 0%, rgba(244, 114, 43, 0.75) 100%);
  border-radius: 999px
}

.table-scroll-shell::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 10px;
  width: 60px;
  background: linear-gradient(270deg, rgba(0, 25, 48, 0.98) 0%, rgba(0, 25, 48, 0.7) 35%, rgba(0, 25, 48, 0) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease
}

.table-scroll-shell.can-scroll::after {
  opacity: 1
}

.table-scroll-shell.is-scroll-end::after {
  opacity: 0
}

.parcours-table-wrap {
  border-radius: inherit
}

.relay-table-heading {
  margin-top: 1.75rem;
  margin-bottom: 0.9rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--yellow)
}

.relay-table-wrap {
  margin-bottom: 1.2rem
}

.parcours-table {
  width: 100%;
  border-collapse: collapse
}

.parcours-table thead {
  background: var(--orange)
}

.parcours-table thead th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-align: center;
  color: var(--white)
}

.parcours-table thead th:first-child {
  text-align: left
}

.parcours-table tbody tr {
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.18s
}

.parcours-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.06)
}

.parcours-table tbody tr:hover {
  background: rgba(255, 205, 40, 0.06)
}

.parcours-table td {
  padding: 1.1rem 1.25rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center
}

.parcours-table td:first-child {
  text-align: left
}

.sponsor-cell {
  min-width: 180px
}

.sponsor-logo {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 140px;
  object-fit: contain
}

.sponsor-logo-square {
  height: 52px
}

.sponsor-logo-tall {
  height: 62px
}

.sponsor-logo-wide {
  height: 34px
}

.sponsor-logo-jean-coutu {
  height: 62px;
  max-width: 170px
}

.sponsor-logo-lefebvre {
  max-width: 150px
}

.sponsor-logo-omax {
  height: 40px;
  max-width: 150px
}

.sponsor-logo-chateau {
  height: 38px;
  max-width: 165px
}

.sponsor-name {
  margin-top: 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1.4
}

.dist-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.9rem;
  border-radius: 8px;
  line-height: 1.2;
  border-bottom: 3px solid var(--orange)
}

.dist-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 6px
}

.dist-sponsor {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow2);
  margin-top: 5px
}

.dist-age {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px
}

.dist-type {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.6rem;
  border-radius: 3px;
  margin-top: 5px
}

.dist-type.course {
  background: rgba(0, 180, 216, 0.18);
  color: #5bc8f0
}

.dist-type.marche {
  background: rgba(0, 119, 182, 0.18);
  color: #7ad4f5
}

.dist-type.famille {
  background: rgba(255, 205, 40, 0.18);
  color: var(--yellow)
}

.price-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1
}

.price-main.best {
  color: var(--yellow)
}

.price-sub {
  font-size: 0.6rem;
  color: var(--yellow);
  margin-top: 2px;
  opacity: 0.7
}

.price-faded {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.1rem
}

.price-onsite {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.1rem
}

.price-unavailable {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange2)
}

.limit-pill {
  display: inline-block;
  background: rgba(26, 122, 74, 0.3);
  color: #5de898;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.2rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(93, 232, 152, 0.25)
}

.price-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1.75rem;
  font-style: italic;
  line-height: 1.6
}

.cta-strip {
  background: var(--orange);
  border-radius: 6px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem
}

.cta-strip strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px
}

.cta-strip span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72)
}

/* ── SERVICES ── */
#services {
  background: var(--navy2);
  padding: 7rem 2rem
}

.services-inner {
  max-width: 1300px;
  margin: 0 auto
}

.services-table-wrap {
  border-radius: inherit
}

.services-table {
  width: 100%;
  border-collapse: collapse
}

.services-table thead {
  background: rgba(0, 25, 48, 0.8)
}

.services-table thead th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-align: center;
  color: var(--white)
}

.services-table thead th:first-child {
  text-align: left
}

.km-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 8px;
  padding: 0.3rem 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.06em;
  min-width: 60px
}

.services-table tbody tr {
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.15s
}

.services-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.05)
}

.services-table tbody tr:hover {
  background: rgba(255, 205, 40, 0.04)
}

.services-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center
}

.services-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--white)
}

.services-table-note {
  color: rgba(241, 167, 6, 0.8);
  font-weight: 400
}

.dot-yes {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2a9d5c;
  display: inline-block
}

.dot-maybe {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #cfac37;
  display: inline-block
}

.dot-conditional {
  background: #cfac37;
  box-shadow: 0 0 0 3px rgba(207, 172, 55, 0.18)
}

.dash-no {
  width: 14px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block
}

.services-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--yellow);
  border-radius: 0 10px 10px 0;
  background: rgba(201, 162, 74, 0.08);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78)
}

/* ── INSCRIPTIONS ── */
#inscriptions {
  background: var(--navy);
  padding: 7rem 2rem
}

.inscri-inner {
  max-width: 1300px;
  margin: 0 auto
}

.inscri-table-wrap {
  display: block;
  border-radius: inherit
}

.inscri-table {
  width: 100%;
  border-collapse: collapse
}

.inscri-table thead {
  background: var(--orange)
}

.inscri-table thead th {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem;
  text-align: center;
  color: var(--white);
  line-height: 1.4
}

.inscri-table thead th:first-child {
  text-align: left
}

.inscri-table tbody tr {
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.15s
}

.inscri-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.06)
}

.inscri-table tbody tr:hover {
  background: rgba(255, 205, 40, 0.05)
}

.inscri-table td {
  padding: 1rem;
  font-size: 0.88rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.45)
}

.inscri-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem
}

.inscri-table td.price-unavailable {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange2)
}

.age-pill {
  display: inline-block;
  background: rgba(26, 122, 74, 0.25);
  color: #5de898;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  border: 1px solid rgba(93, 232, 152, 0.15)
}

.price-active {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--yellow)
}

.modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem
}

.mode-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 1.75rem;
  border-left: 3px solid var(--river2)
}

.mode-card.m2 {
  border-left-color: var(--orange)
}

.mode-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem
}

.mode-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45)
}

.mode-card a {
  color: var(--river2);
  text-decoration: underline
}

/* Inscriptions helpers */
.inscri-cta-button {
  padding: 1rem 2.75rem
}

.inscri-note {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.3)
}

.inscri-schedule-card {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: rgba(0, 180, 216, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.18);
  border-radius: 10px
}

.inscri-schedule-label {
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--river2);
  margin-bottom: 0.6rem
}

.inscri-schedule-copy,
.inscri-schedule-meta {
  line-height: 1.7
}

.inscri-schedule-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.7)
}

.inscri-schedule-meta {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.45)
}

/* ── FAQ ── */
#faq {
  background: var(--navy2);
  padding: 7rem 2rem
}

.faq-inner {
  max-width: 1300px;
  margin: 0 auto
}

.faq-list {
  margin-top: 3rem
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07)
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  user-select: none;
  transition: color 0.2s
}

.faq-q:hover {
  color: var(--yellow)
}

.faq-q.open {
  color: var(--orange)
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5)
}

.faq-q.open .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg)
}

.faq-a {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.42);
  padding: 0 0 1.35rem 0;
  display: none
}

.faq-a.open {
  display: block
}

.faq-a a {
  color: var(--river2);
  text-decoration: underline
}

/* ── DONS ── */
#dons {
  background: var(--navy);
  padding: 7rem 2rem
}

.dons-inner {
  max-width: 1300px;
  margin: 0 auto
}

.dons-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 5rem;
  align-items: start
}

.dons-left-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2.5rem
}

.impact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.impact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06)
}

.impact-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  color: var(--yellow);
  line-height: 1
}

.impact-num span {
  color: var(--orange)
}

.impact-num--support {
  font-size: 1.6rem;
  line-height: 1.1
}

.impact-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5
}

.impact-desc strong {
  color: var(--white)
}

.don-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03)
}

.don-form-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--yellow);
  margin-bottom: 0.5rem
}

.don-form-sub {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 2rem
}

.don-amts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem
}

.don-btn {
  padding: 1.1rem 1rem;
  border-radius: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.2s
}

.don-btn:hover {
  border-color: var(--yellow);
  background: rgba(255, 205, 40, 0.08)
}

.don-btn.active {
  border-color: var(--yellow);
  background: rgba(255, 205, 40, 0.12)
}

.don-btn .amt {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  display: block;
  line-height: 1
}

.don-btn.active .amt {
  color: var(--yellow)
}

.don-btn .freq {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28)
}

.don-custom label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 8px
}

.don-custom input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 1.5rem;
  font-family: 'DM Sans', sans-serif
}

.don-custom input:focus {
  border-color: var(--yellow)
}

.btn-full-yellow {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  text-align: center;
  font-family: 'DM Sans', sans-serif
}

.btn-full-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 205, 40, 0.3)
}

.don-secure {
  text-align: center;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 1rem
}

/* ── COMMANDITAIRES ── */
#commanditaires {
  background: var(--navy2);
  padding: 7rem 2rem
}

.cmd-inner {
  max-width: 1300px;
  margin: 0 auto
}

.sponsor-tier {
  margin-bottom: 3.5rem
}

.tier-hdr {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem
}

.tier-medal {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0
}

.t-or {
  background: #b8901e;
  color: #3a2800
}

.t-ag {
  background: #8a9eb0;
  color: #1a2e3a
}

.t-br {
  background: #8a3d1a;
  color: #fff
}

.t-pr {
  background: var(--river2);
  color: var(--navy)
}

.tier-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  white-space: normal
}

.tier-rule {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07)
}

.sponsors-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  align-items: stretch;
  justify-content: center
}

.sponsors-row-presenter {
  grid-template-columns: minmax(280px, 420px);
  justify-content: center
}

.sponsors-row-event {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr))
}

.sponsors-row-support {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr))
}

.sponsors-row-support .slot {
  min-height: 126px;
  padding: 0.9rem 1.1rem
}

.sponsors-row-support .slot-logo-wrap {
  min-height: 68px
}

.sponsors-row-support .slot-name {
  font-size: 0.92rem
}

.slot {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 140px;
  padding: 1rem 1.25rem;
  width: 100%;
  min-width: 0;
  max-width: none;
  border: 1px solid rgba(255, 205, 40, 0.14);
  transition: all 0.2s;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22)
}

.slot:hover {
  border-color: rgba(255, 205, 40, 0.3);
  background: linear-gradient(180deg, rgba(244, 114, 43, 0.12) 0%, rgba(255, 205, 40, 0.06) 100%);
  transform: translateY(-2px)
}

.slot.lg {
  min-height: 164px;
  min-width: 200px
}

.slot-presenter {
  min-height: 220px;
  padding: 1.35rem 1.5rem
}

.slot-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.2
}

.slot.lg .slot-name {
  font-size: 1.05rem
}

.slot-meta {
  margin-top: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42)
}

.slot-logo-wrap {
  width: 100%;
  flex: 1;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center
}

.slot.lg .slot-logo-wrap {
  min-height: 108px
}

/* Partner logo sizing */
.partner-logo {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain
}

.partner-logo--event-wide {
  max-height: 86px
}

.partner-logo--event-tall {
  max-height: 92px
}

.partner-logo--event-standard {
  max-height: 82px
}

.partner-logo--support {
  max-height: 40px
}

.sponsor-tier-flat {
  margin-top: 2.25rem
}

.sponsor-card {
  position: relative;
  overflow: hidden
}

.sponsor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(244, 114, 43, 0.16), transparent 42%),
    radial-gradient(circle at bottom right, rgba(255, 205, 40, 0.12), transparent 38%);
  pointer-events: none
}

.sponsor-card>* {
  position: relative;
  z-index: 1
}

.support-partner-link {
  color: inherit;
  text-decoration: none
}

.support-partner-link:hover .slot-name,
.support-partner-link:focus-visible .slot-name {
  color: var(--yellow)
}

.slot-placeholder {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%)
}

.slot-placeholder:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%)
}

.slot-placeholder-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5)
}

.sponsor-cta {
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center
}

.scta-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.75rem
}

.scta-h .yellow {
  color: var(--yellow)
}

.scta-p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  max-width: 500px;
  margin-bottom: 1.5rem
}

.tier-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.tier-pill {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4)
}

.tier-pill.or {
  border-color: rgba(255, 205, 40, 0.4);
  color: var(--yellow)
}

/* ── ARCHIVES ── */
#archives {
  background: var(--navy);
  padding: 7rem 2rem
}

.arch-inner {
  max-width: 1300px;
  margin: 0 auto
}

.first-ed {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden
}

.first-ed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange)
}

.fed-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.05)
}

.fed-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem
}

.fed-title .yellow {
  color: var(--yellow)
}

.fed-meta {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.72
}

.fed-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  margin-top: 1rem
}

.fed-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: right
}

.fed-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: 0.01em
}

.fed-stat-num sup {
  font-size: 1.1rem;
  color: var(--orange)
}

.fed-stat-lbl {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 3px
}

.future-rows {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.future-row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s
}

.future-row:hover {
  background: rgba(255, 205, 40, 0.03)
}

.fy-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.07)
}

.fy-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.1)
}

/* ── FOOTER ── */
footer {
  background: rgba(0, 8, 18, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 5rem 2rem 3rem
}

.social-strip {
  background: var(--navy2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 2rem;
  text-align: center
}

/* Footer social strip */
.social-strip-copy {
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem
}

.social-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1877f2;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.65rem 1.75rem;
  border-radius: 4px;
  transition: background 0.2s
}

.social-strip-link:hover {
  background: #1664d1
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.footer-logo {
  width: 110px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 100%;
  border: 3px solid var(--orange);
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.42);
  max-width: 300px
}

.footer-col-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
  opacity: 0.65
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  margin-bottom: 0.65rem;
  transition: color 0.2s
}

.footer-col a:hover {
  color: var(--yellow)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.32);
  flex-wrap: wrap;
  gap: 1rem
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s ease
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: var(--yellow)
}

.footer-credit-logo {
  height: 26px;
  width: auto;
  display: block;
  object-fit: contain
}

.f-orange {
  color: var(--orange)
}

.f-yellow {
  color: var(--yellow)
}

/* ── ANIMS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-eyebrow {
  animation: fadeUp .55s ease forwards
}

h1.hero-h1 {
  animation: fadeUp .65s .1s ease both
}

.hero-tagline {
  animation: fadeUp .65s .18s ease both
}

.hero-ctas {
  animation: fadeUp .65s .26s ease both
}

.hero-stats {
  animation: fadeUp .65s .34s ease both
}

.cd-box:nth-child(1) {
  animation: fadeUp .45s .28s ease both
}

.cd-box:nth-child(2) {
  animation: fadeUp .45s .42s ease both
}

.cd-box:nth-child(3) {
  animation: fadeUp .45s .56s ease both
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {

  .section-header,
  .dons-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .hero-inner {
    flex-direction: column;
    padding-top: 96px;
    gap: 2.5rem
  }

  .hero-right {
    width: 100%
  }

  .hero-logo-medallion {
    width: 220px;
    height: 220px
  }

  .posts-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .modes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem
  }

  .sponsor-cta {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem
  }

  .first-ed {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem
  }

  .fed-stats {
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .participants-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .nav-inner {
    position: relative;
    height: auto;
    min-height: 82px;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem
  }

  .nav-brand {
    gap: 12px;
    max-width: calc(100% - 72px)
  }

  .nav-logo {
    width: 56px;
    height: 56px
  }

  .nav-brand-name {
    font-size: 1rem;
  }

  .nav-brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.14em
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    flex-shrink: 0
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 1rem;
    background:
      linear-gradient(180deg, rgba(0, 42, 78, 0.98) 0%, rgba(0, 25, 48, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 50px rgba(0, 8, 18, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0)
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0.95rem;
    border: 1px solid transparent;
    border-radius: 12px;
    border-bottom-width: 1px
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 162, 74, 0.18)
  }

  .nav-menu .nav-cta {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.4rem
  }
}

@media(max-width:640px) {
  .nav-inner {
    padding-left: 1rem;
    padding-right: 1rem
  }

  .nav-brand {
    max-width: calc(100% - 64px)
  }

  .nav-brand-name {
    font-size: 0.92rem
  }

  .nav-brand-sub {
    font-size: 0.5rem
  }

  .nav-menu {
    left: 1rem;
    right: 1rem
  }

  .inscri-cta-bar {
    padding: 1.5rem
  }

  .sponsors-row-presenter,
  .sponsors-row-event,
  .sponsors-row-support {
    grid-template-columns: 1fr
  }
}

@media(max-width:900px) {
  .table-scroll-shell {
    border-radius: 18px;
  }

  .parcours-table-wrap,
  .services-table-wrap,
  .inscri-table-wrap {
    padding-bottom: 0.35rem
  }

  .parcours-table {
    min-width: 980px
  }

  .services-table {
    min-width: 720px
  }

  .inscri-table {
    min-width: 940px
  }
}

@media(max-width:768px) {

  .nav-inner,
  .hero-inner,
  #about,
  #parcours,
  #services,
  #inscriptions,
  #faq,
  #dons,
  #commanditaires,
  .orange-stripe,
  .social-strip,
  footer {
    padding-left: 1rem;
    padding-right: 1rem
  }

  .hero-inner {
    padding-top: 104px;
    gap: 2rem
  }

  .hero-ctas {
    gap: 0.75rem;
    margin-bottom: 2.5rem
  }

  .hero-ctas .btn-orange,
  .hero-ctas .btn-ghost,
  .inscri-cta-button,
  .social-strip-link {
    width: 100%;
    text-align: center;
    justify-content: center
  }

  .hero-stats {
    width: 100%
  }

  .hstat {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
    padding: 1rem 0.9rem
  }

  .hstat.featured {
    flex-basis: 100%
  }

  .hero-logo-card {
    margin: 2rem 0;
    padding: 0
  }

  .hero-logo-medallion {
    width: min(72vw, 232px);
    height: min(72vw, 232px);
    border-width: 5px
  }

  .orange-stripe {
    font-size: 0.76rem;
    line-height: 1.5
  }

  .section-centered {
    margin-bottom: 2rem
  }

  .table-scroll-shell {
    width: 100%
  }

  .table-scroll-shell::after {
    width: 36px;
    bottom: 6px
  }

  .parcours-table thead th,
  .services-table thead th {
    padding: 0.85rem 0.75rem
  }

  .parcours-table td,
  .services-table td {
    padding: 0.85rem 0.75rem
  }

  .cta-strip,
  .mode-card,
  .inscri-schedule-card,
  .impact-card,
  .don-card-simple,
  .slot,
  .sponsor-cta {
    padding: 1.35rem
  }

  .dons-grid,
  .footer-top {
    gap: 2rem
  }

  .footer-desc {
    max-width: none
  }

  .footer-top {
    padding-bottom: 2.5rem
  }

  .footer-bottom {
    align-items: flex-start;
    padding-top: 1.5rem
  }
}

/* ── ONGLETS PARCOURS / MAPS ── */
.parcours-maps {
  margin-top: 2.5rem
}

.map-tabs-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem
}

.map-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.25rem
}

.map-tab {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.18s
}

.map-tab:hover {
  border-color: var(--orange);
  color: var(--white)
}

.map-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white)
}

.map-panel {
  display: none
}

.map-panel.active {
  display: block
}

.map-route-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  align-items: center
}

.map-route-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
  padding: 0.2rem 0.9rem;
  border-radius: 4px;
  line-height: 1.2
}

.map-route-details {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7
}

.map-route-details strong {
  color: var(--white)
}

.map-iframe-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07)
}

.map-iframe-wrap--image {
  background: #fff;
  padding: 1rem
}

.map-iframe-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  background: #fff
}

.map-image-brand-wrap {
  position: relative
}

.map-image-brand-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  width: clamp(220px, 36%, 440px);
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  padding: 0.65rem 0.9rem;
  box-shadow: 0 12px 28px rgba(10, 31, 51, 0.18);
  pointer-events: none
}

.map-image-brand-overlay img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  background: transparent
}

.map-coming-soon {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(10, 31, 51, 0.88) 0%, rgba(14, 46, 79, 0.94) 100%);
  color: rgba(255, 255, 255, 0.74)
}

.map-coming-soon strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  color: var(--yellow)
}

.map-coming-soon span {
  max-width: 28rem;
  line-height: 1.7
}

.map-note {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  font-style: italic
}

@media(max-width:768px) {
  .map-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem
  }

  .map-tab {
    width: 100%;
    padding: 0.75rem 0.85rem
  }

  .map-route-info {
    gap: 1rem;
    align-items: flex-start
  }

  .map-iframe-wrap--image {
    padding: 0.65rem
  }

  .map-coming-soon {
    min-height: 320px;
    padding: 1.5rem
  }
}

/* ── COMMANDITAIRES AMÉLIORÉS ── */
.tier-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap
}

.tier-medal {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0
}

/* ── LISIBILITÉ GLOBALE ── */
.sec-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em
}

.about-body p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.62)
}

.faq-a {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.52)
}

.participants-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem
}

.participants-sub {
  font-size: 1.05rem
}

.orange-stripe {
  font-size: 0.88rem;
  letter-spacing: 0.06em
}

.price-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38)
}

.about-intro {
  font-size: 1.22rem
}

/* ── OVERRIDES RESTRUCTURATION ── */
.participants-stat-num {
  font-size: 3.5rem
}

.price-main {
  font-size: 2.2rem
}

.price-sub {
  font-size: 0.72rem
}

.cd-num {
  font-size: 4.5rem
}

.cd-box {
  padding: 1.8rem 1rem;
  background: rgba(244, 114, 43, 0.08);
  border: 1px solid rgba(244, 114, 43, 0.25);
  border-radius: 6px
}

.cd-lbl {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.18em
}

.cd-label-above {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.6rem
}

.about-grid {
  display: block;
  max-width: 860px;
  margin: 0 auto
}

.about-mission-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.75rem
}

.about-mission-title .orange {
  color: var(--orange)
}

.faq-list {
  max-width: 900px;
  margin: 3rem auto 0
}

.faq-q {
  font-size: 1.05rem
}

.section-centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem
}

.don-card-simple {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2.5rem
}

.don-card-simple h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.04em
}

.don-card-simple p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.75rem
}

/* Donation card helpers */
.don-card-simple-note {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.75rem
}

.don-card-callout {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(244, 114, 43, 0.1);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  color: var(--white);
  font-weight: 600
}

.sponsor-tier {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem
}

.sponsor-tier:last-of-type {
  border-bottom: none;
  padding-bottom: 0
}

.sponsor-tier-final {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0
}

footer {
  background: var(--navy2)
}

.footer-desc {
  color: rgba(255, 255, 255, 0.42)
}

.footer-col a {
  color: rgba(255, 255, 255, 0.45)
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.32)
}

.inscri-modes-cta {
  margin-top: 2.5rem;
  text-align: center
}

.hero-countdown-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

/* ══════════════════════════════════════════════
   LISIBILITÉ — textes plus blancs + plus grands
   ══════════════════════════════════════════════ */

/* NAV */
.nav-brand-sub {
  font-size: 0.68rem;
  opacity: 1
}

.nav-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78)
}

/* HERO — étiquettes stats & countdown */
.hstat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72)
}

.hstat.featured .hstat-lbl {
  font-size: 0.72rem;
  opacity: 1
}

.cd-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  opacity: 1
}

.cd-label-above {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62)
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.82)
}

.hero-info-card span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72)
}

.hero-eyebrow {
  font-size: 0.75rem
}

/* ABOUT */
.sec-eyebrow {
  font-size: 0.8rem
}

.about-eyebrow-label {
  font-size: 0.72rem
}

.about-runners-badge .sml {
  font-size: 0.72rem
}

.about-intro {
  color: rgba(255, 255, 255, 0.88)
}

.about-body p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.78)
}

.about-detail-row {
  color: rgba(255, 255, 255, 0.78)
}

/* PARTICIPANTS */
.participants-sub {
  color: rgba(255, 255, 255, 0.72)
}

.participants-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65)
}

/* FACEBOOK / POSTS */
.sec-intro-text {
  color: rgba(255, 255, 255, 0.65)
}

.fb-page-info span {
  color: rgba(255, 255, 255, 0.65)
}

.fb-live-badge {
  font-size: 0.72rem
}

.post-card-label span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65)
}

.fb-cta-bar p {
  color: rgba(255, 255, 255, 0.72)
}

/* PARCOURS */
.dist-age {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65)
}

.dist-type {
  font-size: 0.7rem
}

.price-sub {
  font-size: 0.78rem;
  opacity: 1
}

.price-faded {
  color: rgba(255, 255, 255, 0.58)
}

.price-onsite {
  color: rgba(255, 255, 255, 0.65)
}

.price-note {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.62)
}

.parcours-table thead th {
  font-size: 0.78rem
}

/* SERVICES */
.services-table td {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78)
}

.services-table thead th {
  font-size: 0.78rem
}

/* INSCRIPTIONS */
.inscri-table td {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72)
}

.inscri-table thead th {
  font-size: 0.78rem
}

.mode-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72)
}

/* FAQ */
.faq-q {
  color: rgba(255, 255, 255, 0.9)
}

.faq-icon {
  color: rgba(255, 255, 255, 0.72)
}

.faq-a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72)
}

/* DONS */
.dons-left-text {
  color: rgba(255, 255, 255, 0.72)
}

.impact-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72)
}

.don-form-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65)
}

.don-btn .freq {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62)
}

.don-custom label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65)
}

.don-secure {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.52)
}

.don-card-simple p:not(.don-card-simple-note) {
  color: rgba(255, 255, 255, 0.78)
}

/* COMMANDITAIRES */
.tier-name {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72)
}

.tier-pill {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65)
}

.scta-p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65)
}

/* ARCHIVES */
.fed-meta {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.62)
}

.fed-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.58)
}

.fed-tag {
  font-size: 0.72rem
}

.fy-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.32)
}

/* CARTES PARCOURS / MAPS */
.map-tabs-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62)
}

.map-tab {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72)
}

.map-route-details {
  color: rgba(255, 255, 255, 0.78)
}

.map-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58)
}

/* FOOTER */
.footer-col-title {
  font-size: 0.72rem;
  opacity: 1
}

.footer-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.62)
}

.footer-col a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65)
}

.footer-bottom {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.52)
}

.hero-countdown-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: center
}

/* Mobile spacing refinements */
@media(max-width:768px) {

  #about,
  #parcours,
  #services,
  #inscriptions,
  #faq,
  #dons,
  #commanditaires,
  #archives,
  #facebook {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem
  }

  footer {
    padding-top: 3rem;
    padding-bottom: 2rem
  }

  .social-strip {
    padding-top: 1rem;
    padding-bottom: 1rem
  }

  .hero-eyebrow,
  h1.hero-h1,
  .hero-tagline,
  .hero-ctas,
  .section-centered,
  .parcours-maps,
  .inscri-modes-cta,
  .sponsor-cta {
    margin-bottom: 1.5rem
  }

  .hero-inner {
    gap: 1.5rem
  }

  .hero-eyebrow {
    margin-bottom: 1rem
  }

  h1.hero-h1 {
    margin-bottom: 1rem
  }

  .hero-tagline {
    margin-bottom: 1.5rem;
    font-size: 1.08rem;
    line-height: 1.2
  }

  .hero-stats {
    border-radius: 12px
  }

  .hero-countdown-wrap {
    gap: 0.75rem
  }

  .cd-box {
    padding: 1.1rem 0.65rem
  }

  .table-scroll-shell--parcours,
  .table-scroll-shell--services,
  .table-scroll-shell--inscri {
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0
  }

  .table-scroll-shell--parcours .parcours-table-wrap,
  .table-scroll-shell--services .services-table-wrap,
  .table-scroll-shell--inscri .inscri-table-wrap {
    border-radius: 0
  }

  .table-scroll-shell::after {
    right: 0;
    width: 28px
  }

  .parcours-table thead th,
  .services-table thead th,
  .inscri-table thead th {
    padding: 0.8rem 0.65rem
  }

  .parcours-table td,
  .services-table td,
  .inscri-table td {
    padding: 0.75rem 0.65rem
  }

  .price-note,
  .parcours-maps,
  .cta-strip,
  .services-note,
  .faq-list,
  .dons-grid,
  .sponsor-cta {
    margin-top: 1.5rem
  }

  .section-copy {
    line-height: 1.6
  }

  .cta-strip,
  .mode-card,
  .inscri-schedule-card,
  .impact-card,
  .don-card-simple,
  .slot,
  .sponsor-cta,
  .fb-cta-bar,
  .first-ed,
  .future-row {
    padding: 1rem
  }

  .modes-grid,
  .impact-cards,
  .future-rows {
    gap: 0.75rem
  }

  .modes-grid {
    margin-top: 1.5rem
  }

  .inscri-note {
    margin-top: 0.65rem;
    line-height: 1.55
  }

  .inscri-schedule-card {
    margin-top: 1.25rem
  }

  .faq-q {
    padding: 1rem 0;
    font-size: 0.96rem
  }

  .faq-a {
    padding-bottom: 1rem
  }

  .impact-card {
    gap: 0.9rem
  }

  .impact-num {
    font-size: 2rem
  }

  .impact-num--support {
    font-size: 1.35rem
  }

  .don-card-simple p,
  .don-card-simple-note,
  .scta-p {
    margin-bottom: 1rem
  }

  .don-card-callout {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem
  }

  .tier-hdr {
    gap: 0.85rem;
    margin-bottom: 1rem
  }

  .sponsor-tier {
    padding-bottom: 2rem;
    margin-bottom: 2rem
  }

  .slot {
    min-height: 120px;
    border-radius: 14px
  }

  .slot-presenter {
    min-height: 180px
  }

  .map-tabs-label {
    margin-bottom: 0.75rem
  }

  .map-tabs {
    margin-bottom: 0.85rem
  }

  .map-route-info {
    margin-bottom: 0.75rem
  }

  .map-coming-soon {
    min-height: 260px
  }

  .map-note {
    margin-top: 0.5rem
  }

  .footer-top {
    gap: 1.5rem;
    padding-bottom: 1.75rem
  }

  .footer-bottom {
    gap: 0.6rem;
    padding-top: 1rem
  }
}