/* ================================================================
   VANDOEUVRE INSOUMISE 2026
   La France Insoumise – Structure dynamique, bords carrés
   Polices : Space Grotesk / DM Sans
   ================================================================ */

:root {
  --red: #7b13d6;
  --red-dark: #5e0fa6;
  --red-glow: rgba(123, 19, 214, 0.15);
  --red-subtle: rgba(123, 19, 214, 0.06);
  --accent: #7b13d6;

  --dark: #0a0a0f;
  --dark-surface: #110e18;
  --dark-card: #1a1622;
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-border-hover: rgba(255, 255, 255, 0.18);

  --cream: #f9f8fc;
  --cream-warm: #f3f1f8;
  --white: #ffffff;
  --text-on-dark: #e8e6ed;
  --text-muted: #958fa0;
  --text-dark: #1a1a1a;
  --text-body: #3a3644;

  --font-title: "- Zalando Sans Semi Condensed Medium", Helvetica, Arial, Lucida, sans-serif;
  --font-body: "- Zalando Sans Semi Condensed Medium", Helvetica, Arial, Lucida, sans-serif;

  --container: 1200px;
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 6rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.3s;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1; }
a { text-decoration: none; color: inherit; transition: color var(--dur) var(--ease); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-md); }
.hidden { display: none !important; }

/* ================================================================
   HEADER / BANNIÈRE
   ================================================================ */
.main-header {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  padding: 0;
}

.header-banner {
  width: 100%;
  aspect-ratio: 4096 / 893;
  overflow: hidden;
  position: relative;
}

.header-banner-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 125%;
  transform: translateY(-10%);
  object-fit: cover;
  display: block;
}

/* ================================================================
   INTRO SECTION (Candidat + Lettre)
   ================================================================ */
.intro-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.intro-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      var(--red) 80px,
      var(--red) 81px
    );
  animation: patternSlide 40s linear infinite;
  pointer-events: none;
}

@keyframes patternSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(113px); }
}

.intro-layout {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  position: relative;
  z-index: 1;
  padding: var(--sp-lg) 0 var(--sp-xl);
}

/* --- Bloc candidat : photo + infos côte à côte --- */
.intro-left {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--sp-md);
  align-items: start;
}

.intro-photo {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}



.intro-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05);
}

.intro-candidat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0 0;
}

.intro-tagline {
  font-family: var(--font-title);
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  padding: 0.4rem 0.85rem;
  background: var(--red-glow);
  border: 1px solid rgba(123, 19, 214, 0.25);
  align-self: flex-start;
}

.intro-title {
  font-family: var(--font-title);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.intro-title-line {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
}

.intro-title-accent {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
}

.intro-name {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--red);
}

.intro-name-label {
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.intro-name-text {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.intro-cta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* --- Lettre pleine largeur --- */
.intro-lettre {
  padding-top: 0.5rem;
  text-align: justify;
  position: relative;
}

/* --- Lettre collapsible teaser --- */
.intro-lettre-body {
  position: relative;
  max-height: 460px;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-lettre-body.is-expanded {
  max-height: 5000px;
}

.intro-lettre-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.5s var(--ease);
}

.intro-lettre-body.is-expanded .intro-lettre-fade {
  opacity: 0;
}

.intro-lettre-toggle {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  background: transparent;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}

.intro-lettre-toggle:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.intro-lettre-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.4s var(--ease);
}

.intro-lettre-body.is-expanded ~ .intro-lettre-toggle svg {
  transform: rotate(180deg);
}

.intro-lettre-header {
  margin-bottom: 2rem;
}

.intro-lettre-header .section-tag {
  font-size: 0.68rem;
}

.intro-lettre-lead {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-align: justify;
}

.intro-lettre-lead strong {
  color: var(--accent);
  font-weight: 700;
}

.intro-lettre p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1.4rem;
  text-align: justify;
}

.intro-hl {
  color: var(--accent);
  font-weight: 600;
}

.intro-lettre-emphase {
  font-family: var(--font-title) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
  line-height: 1.4 !important;
  padding: 0.75rem 0 0.75rem 1.25rem;
  border-left: 4px solid var(--red);
  margin: 1rem 0 1.5rem;
  text-align: justify;
}

.intro-lettre-signature {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 3px solid var(--red);
}

.intro-lettre-closing {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-style: italic;
  color: var(--text-body) !important;
  margin-bottom: 0.5rem !important;
}

.intro-signature-name {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.intro-signature-role {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Buttons --- */
.btn-primary, .btn-outline {
  font-family: var(--font-title);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-primary svg { stroke: currentColor; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--dark-border-hover);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline svg { stroke: currentColor; }

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

/* --- Hero date band --- */
.hero-date-band {
  background: var(--red);
  color: var(--white);
  padding: 0.75rem var(--sp-md);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}

.hero-date-band strong { font-weight: 700; }

/* ================================================================
   INTRO — Grands écrans
   ================================================================ */
@media (min-width: 1580px) {
  .intro-left {
    grid-template-columns: 400px 1fr;
    gap: 3rem;
  }
}

/* ================================================================
   TICKER / SLOGAN
   ================================================================ */
.ticker {
  background: var(--cream);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  padding: 1.1rem 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}

.ticker-word {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0 0.5rem;
}

.ticker-sep {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--accent);
  padding: 0 0.75rem;
  white-space: nowrap;
  opacity: 0.5;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   SECTION COMMON
   ================================================================ */
.section-header {
  margin-bottom: var(--sp-lg);
}

.section-tag {
  font-family: var(--font-title);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  background: var(--red-subtle);
  border: 1px solid rgba(123, 19, 214, 0.15);
}

.section-tag-light {
  background: var(--red-glow);
  border-color: rgba(123, 19, 214, 0.3);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  line-height: 1.05;
}


/* --- btn-outline-dark --- */
.btn-outline-dark {
  font-family: var(--font-title);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: 2px solid var(--text-dark);
  background: transparent;
  color: var(--text-dark);
  transition: all var(--dur) var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ================================================================
   AFFICHE OFFICIELLE
   ================================================================ */
.affiche-section {
  position: relative;
  padding: var(--sp-xl) 0;
  background: var(--dark);
  overflow: hidden;
}

.affiche-stripe {
  position: absolute;
  top: -60px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: conic-gradient(
    from 180deg,
    #7b13d6 0deg,
    #e3263a 90deg,
    #f5c518 180deg,
    #1da64a 270deg,
    #7b13d6 360deg
  );
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.affiche-centered {
  display: flex;
  justify-content: center;
}

.affiche-frame {
  position: relative;
  display: flex;
  justify-content: center;
}

.affiche-frame-inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  border: 3px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.affiche-frame-inner:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 19, 214, 0.5);
}

.affiche-frame-inner img {
  display: block;
  width: 100%;
  height: auto;
}

.affiche-frame-shadow {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(123, 19, 214, 0.35), transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

@media (max-width: 768px) {
  .affiche-frame-inner {
    max-width: 320px;
  }
}

/* ================================================================
   CARROUSEL COLISTIERS
   ================================================================ */
.colistiers-section {
  position: relative;
  background: var(--dark);
  padding: var(--sp-xl) 0 var(--sp-lg);
  overflow: hidden;
}

.colistiers-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(123, 19, 214, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.colistiers-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
  position: relative;
  z-index: 1;
}

.colistiers-title {
  color: var(--text-on-dark) !important;
}

/* --- Viewport & Track --- */
.carousel-viewport {
  position: relative;
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  z-index: 1;
}

.carousel-viewport:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  padding: 0 max(calc((100vw - 1100px) / 2), 2rem);
}

.carousel-slide {
  flex: 0 0 auto;
  width: 280px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  filter: brightness(0.92) contrast(1.04);
  transition: filter 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide:hover img {
  filter: brightness(1) contrast(1.06);
  transform: scale(1.02);
}

.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.15) 0%, transparent 40%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.carousel-slide:hover::after {
  opacity: 0;
}

/* --- Controls --- */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: var(--sp-md);
  position: relative;
  z-index: 1;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--text-on-dark);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.carousel-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: scale(1.08);
}

.carousel-arrow:active {
  transform: scale(0.95);
}

/* --- Dots --- */
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  padding: 0;
  transition: all 0.35s var(--ease);
}

.carousel-dot.active {
  background: var(--red);
  width: 32px;
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.4);
}

/* --- Counter --- */
.carousel-counter {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.carousel-counter-current {
  color: var(--red);
  font-size: 1.1rem;
}

.carousel-counter-sep {
  margin: 0 0.3em;
  opacity: 0.4;
}

/* --- Responsive --- */
@media (min-width: 768px) {
  .carousel-slide {
    width: 300px;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    width: 320px;
  }
}

@media (max-width: 600px) {
  .carousel-slide {
    width: 260px;
  }
  .carousel-track {
    gap: 0.75rem;
    padding: 0 1rem;
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
  .colistiers-section {
    padding: var(--sp-lg) 0 var(--sp-md);
  }
}


/* ================================================================
   ÉQUIPE
   ================================================================ */
.equipe-section {
  padding: var(--sp-xl) 0 calc(var(--sp-xl) + 2rem);
  background: var(--white);
  color: var(--text-dark);
  position: relative;
  scroll-margin-top: 1rem;
  overflow: hidden;
}

.equipe-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #e4003b, #f7a600, #00a651, var(--red));
}

.equipe-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.equipe-header-row .section-tag {
  background: rgba(123, 19, 214, 0.08);
  border-color: rgba(123, 19, 214, 0.2);
  color: var(--red);
}

.equipe-header-row .section-title {
  color: var(--text-dark);
}

.equipe-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 400px;
  text-align: right;
}

.equipe-photo-groupe {
  margin-bottom: var(--sp-lg);
  position: relative;
  overflow: hidden;
}

.equipe-photo-groupe img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 520px;
  filter: contrast(1.05);
}

.equipe-photo-caption {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.35rem 0.75rem;
  backdrop-filter: blur(4px);
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(123, 19, 214, 0.1);
}

.equipe-card {
  background: var(--dark-surface);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  transition: all var(--dur) var(--ease);
  overflow: hidden;
}

.equipe-card::before {
  content: attr(data-num);
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(123, 19, 214, 0.1);
  line-height: 1;
  letter-spacing: -0.04em;
}

.equipe-card:hover {
  background: var(--dark-card);
  transform: translateY(-2px);
}

.equipe-card-lead {
  grid-column: 1 / -1;
  border-left: 4px solid var(--red);
}

.equipe-card-lead .equipe-avatar {
  width: 80px;
  height: 80px;
}

.equipe-card-lead .equipe-nom {
  font-size: 1.3rem;
}

.equipe-avatar {
  width: 56px;
  height: 56px;
  background: rgba(123, 19, 214, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.equipe-avatar::after {
  content: attr(data-initials);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: #c48aff;
}

.equipe-avatar:has(img)::after {
  content: none;
}

.equipe-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.equipe-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.equipe-nom {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.equipe-role {
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 600;
  color: #c48aff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.equipe-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.25rem;
}

.btn-bio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.5rem 1.2rem;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c48aff;
  background: rgba(123, 19, 214, 0.15);
  border: 1px solid rgba(123, 19, 214, 0.3);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}

.btn-bio:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}

.btn-bio svg { stroke: currentColor; }

/* Bio modal specifics */
.bio-modal-container {
  max-width: 720px;
}

.bio-modal-content {
  text-align: justify;
}

.bio-modal-content h2 {
  font-size: 1.8rem !important;
  color: var(--text-dark) !important;
  margin-bottom: 0.25rem !important;
}

.bio-modal-content .section-tag {
  margin-bottom: 1rem;
}

.bio-modal-subtitle {
  font-family: var(--font-title) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--accent) !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem !important;
  border-bottom: 3px solid var(--red);
  text-align: left;
}

.bio-modal-content h3 {
  color: var(--accent) !important;
  margin-top: 1.75rem !important;
  margin-bottom: 0.5rem !important;
  font-size: 1.1rem !important;
  padding-left: 1rem;
  border-left: 3px solid var(--red);
}

/* ================================================================
   PROGRAMME
   ================================================================ */
.programme-section {
  padding: var(--sp-xl) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 1rem;
}

.programme-bg-stripe {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: rgba(123, 19, 214, 0.04);
  transform: rotate(45deg);
  pointer-events: none;
}

.programme-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
  position: relative;
  z-index: 1;
}

.btn-programme {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}

.btn-programme-local {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-programme-local:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-programme-national {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn-programme-national:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-programme svg { stroke: currentColor; }

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}

.btn-download:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-download svg { stroke: currentColor; }

.programme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.programme-card {
  background: var(--white);
  padding: 2.5rem 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin: -0.5px;
  transition: all 0.4s var(--ease);
}

.programme-card::before {
  content: attr(data-num);
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(123, 19, 214, 0.07);
  line-height: 1;
  letter-spacing: -0.06em;
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  pointer-events: none;
}

.programme-card:hover {
  z-index: 2;
  box-shadow: 0 16px 48px rgba(123, 19, 214, 0.12);
  border-color: rgba(123, 19, 214, 0.25);
  transform: translateY(-3px);
}

.programme-card-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.25;
  padding-right: 3rem;
}

.programme-card-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
  flex: 1;
}

.programme-card-punch {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 0.75rem;
  border-top: 3px solid var(--red);
  line-height: 1.4;
}

.programme-card-full {
  grid-column: 1 / -1;
}

/* Color variants matching the PDF */
.programme-card--purple .programme-card-title { color: #7b13d6; }
.programme-card--purple::before { color: rgba(123, 19, 214, 0.10); }
.programme-card--purple .programme-card-punch { color: #7b13d6; border-color: #7b13d6; }
.programme-card--purple:hover { box-shadow: 0 16px 48px rgba(123, 19, 214, 0.12); border-color: rgba(123, 19, 214, 0.25); }

.programme-card--orange .programme-card-title { color: #e8a100; }
.programme-card--orange::before { color: rgba(232, 161, 0, 0.10); }
.programme-card--orange .programme-card-punch { color: #e8a100; border-color: #e8a100; }
.programme-card--orange:hover { box-shadow: 0 16px 48px rgba(232, 161, 0, 0.12); border-color: rgba(232, 161, 0, 0.25); }

.programme-card--red .programme-card-title { color: #e2001a; }
.programme-card--red::before { color: rgba(226, 0, 26, 0.10); }
.programme-card--red .programme-card-punch { color: #e2001a; border-color: #e2001a; }
.programme-card--red:hover { box-shadow: 0 16px 48px rgba(226, 0, 26, 0.12); border-color: rgba(226, 0, 26, 0.25); }

.programme-card--green .programme-card-title { color: #00a651; }
.programme-card--green::before { color: rgba(0, 166, 81, 0.10); }
.programme-card--green .programme-card-punch { color: #00a651; border-color: #00a651; }
.programme-card--green:hover { box-shadow: 0 16px 48px rgba(0, 166, 81, 0.12); border-color: rgba(0, 166, 81, 0.25); }

.programme-card-accent {
  grid-column: 1 / -1;
  background: var(--dark);
  color: var(--text-on-dark);
  border-color: var(--dark);
}

.programme-card-accent::before {
  color: rgba(123, 19, 214, 0.2);
}

.programme-card-accent .programme-card-title {
  color: var(--white);
}

.programme-card-accent .programme-card-text {
  color: var(--text-muted);
}

.programme-card-accent .programme-card-punch {
  color: #c48aff;
  border-color: var(--red);
}

.programme-card-accent:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border-color: var(--red);
}

.programme-download {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .programme-download {
    flex-direction: column;
    width: 100%;
  }
  .programme-download .btn-programme {
    justify-content: center;
    width: 100%;
  }
}

/* ================================================================
   LIENS / S'ENGAGER
   ================================================================ */
.liens-section {
  padding: var(--sp-xl) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.liens-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      var(--red) 60px,
      var(--red) 61px
    );
  pointer-events: none;
}

.liens-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.liens-eyebrow {
  font-family: var(--font-title);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #c48aff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  background: rgba(123, 19, 214, 0.2);
  border: 1px solid rgba(123, 19, 214, 0.35);
}

.liens-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.liens-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  line-height: 1.8;
  max-width: 480px;
}

.liens-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.liens-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.liens-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 2rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}

.liens-btn-lfi {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.liens-btn-lfi:hover {
  background: #9b3ff0;
  border-color: #9b3ff0;
  transform: translateX(6px);
}

.liens-btn-ap {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.liens-btn-ap:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateX(6px);
}

.liens-btn svg {
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.liens-btn:hover svg {
  transform: translateX(4px);
}

.liens-social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.liens-social-label {
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.liens-social-row {
  display: flex;
  gap: 0.5rem;
}

.liens-social-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all var(--dur) var(--ease);
}

.liens-social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

.liens-social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: var(--white);
  padding: var(--sp-lg) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(123, 19, 214, 0.06);
  transform: rotate(45deg);
}

.cta-band-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  position: relative;
  z-index: 1;
}

.cta-band-text h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.cta-band-text p {
  font-family: var(--font-body);
  color: var(--text-body);
  font-size: 1rem;
  max-width: 500px;
}

.cta-band-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-section {
  padding: var(--sp-xl) 0;
  background: var(--white);
  color: var(--text-body);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -18%;
  width: 620px;
  height: 620px;
  background: rgba(123, 19, 214, 0.06);
  transform: rotate(45deg);
}

.contact-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.contact-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  color: var(--text-body);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--dur) var(--ease);
  color: var(--text-dark);
}

.contact-email:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  color: var(--white);
}

.contact-email svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-social-row {
  display: flex;
  gap: 0.75rem;
}

.social-btn-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-dark);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--dur) var(--ease);
}

.social-btn-contact:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.social-btn-contact svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ================================================================
   SOCIAL SIDEBAR
   ================================================================ */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}

.social-sidebar-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.social-sidebar-btn:hover {
  background: var(--accent);
  transform: translateX(-4px);
}

.social-sidebar-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* ===== SOCIAL BOTTOM BAR (mobile only) ===== */
.social-bottombar {
  display: none;
}

@media (max-width: 768px) {
  .social-bottombar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid var(--red);
    padding: 0.5rem 0;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
  }

  .social-bottombar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: var(--white);
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
    border-radius: 12px;
  }

  .social-bottombar-btn:active {
    background: var(--red);
    transform: scale(0.92);
  }

  .social-bottombar-btn svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
  }

  /* Add bottom padding to body so content isn't hidden behind the bar */
  body {
    padding-bottom: 68px;
  }

  /* Hide bottom bar when printing */
  @media print {
    .social-bottombar { display: none !important; }
  }
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--white);
  border-top: 2px solid var(--red-subtle);
  padding: var(--sp-md) 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-body);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-md);
}

.footer-brand {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.footer-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer-sep { color: var(--dark-border-hover); }

footer a {
  color: var(--text-body);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 0, 0, 0.15);
}

footer a:hover { color: var(--red); text-decoration-color: var(--red); }

.footer-right {
  display: flex;
  gap: 0.5rem;
}

.footer-social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--dur) var(--ease);
  text-decoration: none !important;
}

.footer-social:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--text-on-dark);
  transition: fill var(--dur) var(--ease);
}

.footer-social:hover svg { fill: var(--white); }

/* ================================================================
   MODAL
   ================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.93);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--sp-md);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.25s ease;
}

.modal-container {
  background: var(--white);
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s;
}

.modal-close:hover { color: var(--red); }

.modal-body {
  display: flex;
  align-items: center;
  height: 100%;
  padding: var(--sp-md);
  overflow: hidden;
}

.modal-content {
  flex: 1;
  padding: 0 var(--sp-md);
  overflow-y: auto;
  max-height: 70vh;
  display: grid;
  align-items: start;
}

.modal-content h2, .modal-content h3 {
  font-family: var(--font-title);
  color: var(--red);
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.modal-content h2 { font-size: 1.6rem; }
.modal-content h3 { font-size: 1.2rem; margin-top: 1.25rem; }

.modal-content h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.modal-content p { margin-bottom: 0.85rem; line-height: 1.8; }
.modal-content ul { list-style: none; padding-left: 0; margin-bottom: 0.85rem; }

.modal-content .modal-slide ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.modal-content .modal-slide ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: var(--red);
}

.modal-slide { display: none; }
.modal-slide.active { display: block; animation: slideIn 0.35s ease-out; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.modal-slide.anim-prev.active { animation: slideInPrev 0.35s ease-out; }

@keyframes slideInPrev {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

.modal-slide.anim-fade.active { animation: fadeIn 0.25s ease; }

.modal-nav {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.modal-nav:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

#legal-modal .modal-content,
#legal-modal .modal-content h2,
#legal-modal .modal-content h3,
#legal-modal .modal-content h4,
#legal-modal .modal-content p,
#legal-modal .modal-content li,
#legal-modal .modal-content strong {
  font-family: var(--font-body);
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal-target {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-target.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   KEYFRAMES
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ================================================================
   RESPONSIVE 1024px
   ================================================================ */
@media (max-width: 1024px) {
  :root { --sp-lg: 3rem; --sp-xl: 4rem; }

  .intro-left {
    grid-template-columns: 260px 1fr;
  }

  .intro-photo { max-width: 260px; }

  .cta-band-content { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  .equipe-header-row { flex-direction: column; align-items: flex-start; }
  .equipe-intro { text-align: left; max-width: 100%; }
  .equipe-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .equipe-card-lead { grid-column: auto; }

  .programme-header-row { flex-direction: column; align-items: flex-start; }
  .programme-grid { grid-template-columns: 1fr; }
  .programme-card-accent { grid-column: auto; }

  .liens-inner { grid-template-columns: 1fr; text-align: center; }
  .liens-desc { margin-left: auto; margin-right: auto; }
  .liens-social { justify-content: center; }
}

/* ================================================================
   RESPONSIVE 768px
   ================================================================ */
@media (max-width: 768px) {
  body { font-size: 16px; }

  .intro-left {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-photo {
    max-width: 220px;
    margin: 0 auto;
  }

  .intro-candidat { align-items: center; text-align: center; }
  .intro-tagline { align-self: center; }
  .intro-cta { justify-content: center; }
  .intro-name { border-left: none; padding-left: 0; border-bottom: 3px solid var(--red); padding-bottom: 0.5rem; text-align: center; }
  .intro-lettre-lead { font-size: 1.05rem; }
  .intro-lettre p { text-align: justify; }

  .btn-primary, .btn-outline { padding: 0.75rem 1.5rem; font-size: 0.8rem; }

  .section-title { font-size: 1.8rem; }

  .contact-email { width: 100%; justify-content: center; }
  .contact-social-row { flex-direction: column; width: 100%; }
  .social-btn-contact { width: 100%; justify-content: center; }

  .social-sidebar { display: none; }

  .equipe-grid { grid-template-columns: 1fr; gap: 0; }
  .equipe-card { padding: 1.25rem; gap: 1rem; }
  .equipe-avatar { width: 48px; height: 48px; }
  .equipe-avatar::after { font-size: 0.85rem; }
  .equipe-card::before { font-size: 1.8rem; }
  .equipe-card-lead .equipe-avatar { width: 60px; height: 60px; }
  .equipe-card-lead .equipe-nom { font-size: 1.15rem; }
  .equipe-photo-caption { font-size: 0.65rem; left: 1rem; }

  .programme-card { padding: 1.75rem 1.5rem; }
  .programme-card::before { font-size: 2.5rem; }

  .liens-btn { padding: 1rem 1.5rem; font-size: 0.82rem; }
  .liens-social { flex-direction: column; align-items: center; }

  .footer-content { flex-direction: column; text-align: center; gap: 1rem; }

  .modal-nav { display: none; }
  .modal-content { padding: 0 var(--sp-sm); }
  .modal-container { max-width: 100%; }
  .modal-body { padding: var(--sp-sm); }
}

/* ================================================================
   RESPONSIVE 480px
   ================================================================ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .intro-cta { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .btn-outline-dark { width: 100%; justify-content: center; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn-primary,
  .cta-band-actions .btn-outline { width: 100%; justify-content: center; }
  .contact-email { width: 100%; justify-content: center; }
  .hero-date-band { flex-direction: column; gap: 0.25rem; font-size: 0.75rem; }
  .liens-title { font-size: 2rem; }
  .programme-card-title { padding-right: 2rem; }
  .intro-photo { max-width: 180px; }
}

/* ================================================================
   ACCESSIBILITY
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-track { animation: none; }
  .reveal-target { opacity: 1; transform: none; }
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
  .ticker, .cta-band, .modal-overlay, .social-sidebar, .social-bottombar, .liens-section { display: none !important; }
  body { background: white; color: black; }
  .intro-section { background: white; }
  .intro-title-line, .intro-name-text { color: black; }
  .intro-left { position: static; }
}
