:root {
  --red: #D42B2B;
  --red-dark: #A81E1E;
  --red-light: #F5E5E5;
  --red-glow: rgba(212,43,43,0.12);
  --black: #111111;
  --gray-900: #1A1A1A;
  --gray-800: #2A2A2A;
  --gray-600: #555555;
  --gray-400: #999999;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --cream: #FAFAF8;
  --accent: #F0A500;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --shadow-red: 0 8px 32px rgba(212,43,43,.25);
  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--black); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
main { padding-top: 0; }

/* ── TYPOGRAPHIE GLOBALE — style doux, corps de texte ── */
h1, h2, h3, h4 { font-family: var(--font-body); font-weight: 500; letter-spacing: .01em; }
.section-header h2, .section-title { font-family: var(--font-body); font-weight: 500; }
.pillar-card h3, .value-card h4, .project-body h3, .event-info h3, .member-card h3 { font-family: var(--font-body); font-weight: 500; }
.page-hero h1 { font-family: var(--font-body); font-weight: 400; }
.page-header {
  background-image: url('/images/fond_accueil_isf.png');
  background-size: cover;
  background-position: center 30%;
  color: var(--white); padding: 88px 0 72px; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(125deg, rgba(90,5,5,.82) 0%, rgba(130,15,15,.62) 50%, rgba(40,5,5,.48) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-family: var(--font-body); font-size: clamp(34px,5vw,58px); font-weight: 400; line-height: 1.1; margin-bottom: 14px; color: var(--white); }
.page-header p { font-size: 18px; color: rgba(255,255,255,.82); max-width: 580px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-md);
}
.navbar .container {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { width: 65px; height: 65px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .l1 {
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  color: var(--white); letter-spacing: .04em;
  transition: color .4s ease;
}
.logo-text .l2 {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.75); letter-spacing: .08em; text-transform: uppercase;
  transition: color .4s ease;
}
.navbar.scrolled .logo-text .l1 { color: var(--red); }
.navbar.scrolled .logo-text .l2 { color: var(--gray-600); }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
  list-style: none; padding: 0; margin: 0;
}
.nav-links li { list-style: none; }
.nav-links li a {
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,.88);
  padding: 7px 13px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}
.navbar.scrolled .nav-links li a { color: var(--gray-600); }
.navbar.scrolled .nav-links li a:hover,
.navbar.scrolled .nav-links li a.active { color: var(--red); background: var(--red-glow); }

/* Bouton Contact — toujours rouge */
.nav-links li:last-child a {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 7px 18px; font-weight: 600;
}
.nav-links li:last-child a:hover { background: var(--red-dark) !important; }

/* Mobile langs caché sur desktop */
.nav-langs-mobile { display: none; }

/* Lang dropdown */
.lang-dropdown { position: relative; flex-shrink: 0; }
.lang-btn {
  background: none;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: var(--radius-sm);
  font-size: 20px; cursor: pointer;
  padding: 4px 10px; line-height: 1;
  transition: all var(--transition);
  color: var(--white);
  display: flex; align-items: center; gap: 4px;
}
.lang-btn::after { content: '▾'; font-size: 10px; opacity: .7; }
.lang-btn:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.navbar.scrolled .lang-btn { border-color: rgba(0,0,0,.15); color: var(--black); }
.navbar.scrolled .lang-btn:hover { border-color: var(--red); background: var(--red-glow); }

.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,.07);
  min-width: 130px; overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 100;
}
.lang-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-size: 14px; font-weight: 500;
  color: var(--gray-600);
  transition: background var(--transition), color var(--transition);
  cursor: pointer; text-decoration: none;
}
.lang-option:hover { background: var(--red-glow); color: var(--red); }
.lang-option.active { color: var(--red); font-weight: 700; background: var(--red-glow); }
.lang-flag { font-size: 17px; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--black); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Responsive navbar */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 20px; gap: 2px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links li a { width: 100%; display: block; padding: 11px 14px; color: var(--gray-600) !important; }
  .nav-links li a:hover, .nav-links li a.active { color: var(--red) !important; background: var(--red-glow); }
  /* Dropdown button dans le menu mobile : toujours texte foncé */
  .nav-dropdown-btn { color: var(--gray-600) !important; width: 100%; justify-content: space-between; padding: 11px 14px; font-size: 16px; }
  .nav-dropdown-btn:hover, .nav-dropdown-btn.active { color: var(--red) !important; background: var(--red-glow); }
  /* Dropdown panel en mobile : position relative, toujours visible quand ouvert */
  .nav-dropdown-menu {
    position: static; transform: none !important;
    box-shadow: none; border: none;
    background: var(--gray-100); border-radius: var(--radius-sm);
    margin: 4px 0 4px 12px; min-width: unset;
    max-height: 0; overflow: hidden;
    opacity: 1 !important; pointer-events: none;
    transition: max-height .3s ease;
  }
  .nav-item-dropdown.open .nav-dropdown-menu { max-height: 400px; pointer-events: all; }
  .nav-dropdown-menu a { color: var(--gray-600) !important; padding: 10px 16px; font-size: 14px; }
  .nav-dropdown-menu a:hover { color: var(--red) !important; background: var(--red-glow); }
  .nav-langs-mobile { display: flex; gap: 6px; justify-content: center; padding-top: 14px; border-top: 1px solid rgba(0,0,0,.06); margin-top: 8px; list-style: none; }
  .nav-langs-mobile a { font-size: 14px; font-weight: 600; color: var(--gray-400); padding: 4px 10px; border-radius: var(--radius-sm); border: 1px solid transparent; transition: all var(--transition); }
  .nav-langs-mobile a:hover, .nav-langs-mobile a.active { color: var(--red); border-color: var(--red); background: var(--red-glow); }
  .lang-dropdown { display: none; }
  .nav-toggle { display: flex; }
}

/* ── NAVBAR DROPDOWN RÉALISATIONS ── */
.nav-item-dropdown { position: relative; list-style: none; }

.nav-dropdown-btn {
  background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,.88);
  padding: 7px 13px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 5px;
  transition: color var(--transition), background var(--transition);
  font-family: var(--font-body);
}

/* Transparent au top */
.navbar:not(.scrolled) .nav-dropdown-btn {
  color: rgba(255,255,255,.88);
  background: none;
}
.navbar:not(.scrolled) .nav-dropdown-btn:hover,
.navbar:not(.scrolled) .nav-dropdown-btn.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}

/* Blanc après scroll */
.navbar.scrolled .nav-dropdown-btn {
  color: var(--gray-600);
}
.navbar.scrolled .nav-dropdown-btn:hover,
.navbar.scrolled .nav-dropdown-btn.active {
  color: var(--red);
  background: var(--red-glow);
}

.nav-dropdown-arrow { font-size: 10px; transition: transform var(--transition); }
.nav-item-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,.07);
  min-width: 240px; overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 200;
  display: flex; flex-direction: column;
}
.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  padding: 12px 18px; font-size: 14px; font-weight: 500;
  color: var(--gray-600);
  transition: background var(--transition), color var(--transition);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--red-glow); color: var(--red); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 15px; padding: 13px 28px; border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer; transition: all var(--transition); white-space: nowrap; }
.btn--primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,43,43,.35); }
.btn--outline { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.7); backdrop-filter: blur(4px); }
.btn--outline:hover { background: var(--white); color: var(--red); transform: translateY(-2px); border-color: var(--white); }
.btn--white { background: var(--white); color: var(--red); border-color: var(--white); box-shadow: var(--shadow-md); }
.btn--white:hover { background: var(--cream); transform: translateY(-2px); }

/* ── PAGE HERO (pages internes) ── */
.page-hero {
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=85&auto=format&fit=crop&crop=top');
  background-size: cover;
  background-position: center 30%;
  color: var(--white); padding: 88px 0 72px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(125deg, rgba(90,5,5,.82) 0%, rgba(130,15,15,.62) 50%, rgba(40,5,5,.48) 100%);
}
.page-hero::after {
  content: ''; position: absolute; top: -120px; right: -120px; z-index: 1;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(34px,5vw,58px); font-weight: 800; line-height: 1.1; margin-bottom: 14px; color: var(--white); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.82); max-width: 580px; }
/* Offset navbar pour pages internes uniquement */
.page-header { padding-top: calc(var(--nav-h) + 48px); }

/* ── HOME HERO ── */
.hero {
  /*min-height: calc(100vh - var(--nav-h));*/
  min-height: 100vh;
  background: #1a0505;
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('/images/fond_accueil_isf.png');
  background-size: cover; background-position: center center;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(125deg,
    rgba(80,4,4,.32) 0%,
    rgba(110,10,10,.18) 45%,
    rgba(30,4,4,.12) 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(212,43,43,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,43,43,.055) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.hero .container {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero__content { max-width: 800px; }
.hero__title {
  font-family: var(--font-body);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: .01em;
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255,255,255,.82);
  max-width: 620px; margin: 0 auto 36px;
  line-height: 1.7; font-weight: 300;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ── PAGE HEADER (pages internes) ── */
.page-header {
  padding-top: calc(var(--nav-h) + 48px);
  background-image: url('/images/fond_accueil_isf.png');
  background-size: cover;
  background-position: center 30%;
  color: var(--white); padding: 88px 0 72px; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(125deg, rgba(90,5,5,.82) 0%, rgba(130,15,15,.62) 50%, rgba(40,5,5,.48) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-family: var(--font-body); font-size: clamp(34px,5vw,58px); font-weight: 400; line-height: 1.1; margin-bottom: 14px; color: var(--white); }
.page-header p { font-size: 18px; color: rgba(255,255,255,.82); max-width: 580px; }

/* ── GLOBE dans about-preview ── */
.globe-scene {
  position: relative;
  width: 300px; height: 300px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.globe-ring-a {
  position: absolute; inset: -22px; border-radius: 50%;
  border: 2px dashed rgba(212,43,43,.55);
  animation: spin 25s linear infinite;
  pointer-events: none;
}
.globe-ring-b {
  position: absolute; inset: -7px; border-radius: 50%;
  border: 1.5px solid rgba(212,43,43,.25);
  animation: spin 15s linear infinite reverse;
  pointer-events: none;
}
.globe-emoji {
  font-size: 160px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 8px 28px rgba(212,43,43,.3));
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes spin  { to { transform: rotate(360deg); } }

/* ── STATS ── */
.impact-stats { padding: 88px 0; background: var(--cream); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(26px,4vw,38px); font-weight: 800; margin-bottom: 10px; }
.section-header p { font-size: 17px; color: var(--gray-600); max-width: 560px; margin: 0 auto; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-item { background: var(--white); border-radius: var(--radius-lg); padding: 38px 20px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.05); transition: transform var(--transition), box-shadow var(--transition); position: relative; overflow: hidden; }
.stat-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .5s ease; }
.stat-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-item:hover::before { transform: scaleX(1); }
.stat-number { display: block; font-family: var(--font-display); font-size: 50px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; font-weight: 500; color: var(--gray-600); text-transform: uppercase; letter-spacing: .06em; }

/* ── ABOUT ── */
.about-preview { padding: 88px 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual, .about__image { position: relative; }
.about-illustration { width: 100%; max-width: 420px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-illustration svg { width: 100%; height: auto; display: block; }
.placeholder-img, .about-blob { width: 100%; max-width: 400px; aspect-ratio: 1; background: linear-gradient(135deg, var(--red-light), var(--cream)); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; font-size: 90px; box-shadow: var(--shadow-lg); position: relative; }
.about__text h2 { font-family: var(--font-display); font-size: clamp(26px,3.5vw,40px); font-weight: 800; margin-bottom: 18px; line-height: 1.15; }
.about__text p { font-size: 17px; color: var(--gray-600); margin-bottom: 30px; line-height: 1.7; }
.link-more { font-weight: 600; color: var(--red); font-size: 15px; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.link-more:hover { gap: 12px; }

/* ── CTA ── */
.join-cta { padding: 88px 0; background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #e84444 100%); position: relative; overflow: hidden; }
.join-cta::before { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.06); pointer-events: none; }
.cta-card { text-align: center; position: relative; z-index: 1; }
.cta-card h2 { font-family: var(--font-display); font-size: clamp(26px,4vw,46px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta-card p { font-size: 18px; color: rgba(255,255,255,.78); max-width: 500px; margin: 0 auto 32px; }

/* ── MISSION ── */
.pillars-section { padding: 88px 0; background: var(--cream); }
.values-section { padding: 88px 0; }
.grid-2x2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 26px; }
.section-title { font-family: var(--font-display); font-size: clamp(24px,3.5vw,36px); font-weight: 800; text-align: center; margin-bottom: 44px; }
.pillar-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px 26px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.05); transition: transform var(--transition), box-shadow var(--transition); position: relative; overflow: hidden; }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--accent)); }
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar-card .icon { font-size: 34px; margin-bottom: 14px; display: block; }
.pillar-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.pillar-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
.value-card { background: var(--cream); border-radius: var(--radius-lg); padding: 30px 22px; border: 1px solid rgba(0,0,0,.06); transition: transform var(--transition), border-color var(--transition); text-align: center; }
.value-card:hover { transform: translateY(-4px); border-color: var(--red); }
.value-card .icon { font-size: 30px; margin-bottom: 10px; display: block; }
.value-card h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 7px; }
.value-card p { font-size: 14px; color: var(--gray-600); }

/* ── PROJECTS ── */
.projects-section { padding: 80px 0; background: var(--cream); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px,1fr)); gap: 26px; }

.project-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; cursor: pointer;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.project-tag { background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 7px 18px; }
.project-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.project-meta { font-size: 13px; color: var(--gray-400); font-weight: 500; }
.project-body h3 { font-size: 19px; font-weight: 600; }
.project-body p { font-size: 14px; color: var(--gray-600); line-height: 1.65; flex: 1; }

/* Modal projet — élément séparé, toujours au-dessus */
.project-modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(580px, 92vw);
  max-height: 85vh;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  z-index: 3000;
  overflow-y: auto;
  padding: 32px;
  flex-direction: column;
  gap: 16px;
  animation: cardPop .35s cubic-bezier(.34,1.56,.64,1);
}
.project-modal.show { display: flex; }

.project-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.55); color: var(--white);
  border: none; cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.project-modal-close:hover { background: var(--red); }

.project-exp-tag { display: inline-block; background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; align-self: flex-start; }
.project-exp-meta { font-size: 13px; color: var(--gray-400); }
.project-exp-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--black); line-height: 1.2; }
.project-exp-desc { font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.project-exp-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 4px; }
.project-exp-img { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.project-exp-img img { width: 100%; height: 100%; object-fit: cover; }

.projects-backdrop {
  display: none; position: fixed; inset: 0; z-index: 2999;
  background: rgba(0,0,0,.65); backdrop-filter: blur(6px);
}
.projects-backdrop.show { display: block; }

/* Vue agrandie */
.project-expanded {
  display: none; position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(580px, 92vw); max-height: 85vh;
  background: var(--white); border-radius: 22px;
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
  z-index: 2000; overflow-y: auto;
  padding: 32px;
  flex-direction: column; gap: 16px;
  animation: cardPop .35s cubic-bezier(.34,1.56,.64,1);
}
.project-card.expanded .project-body { display: none; }
.project-card.expanded .project-tag { display: none; }
.project-card.expanded .project-expanded { display: flex; }
.project-card.expanded { position: fixed !important; inset: unset !important; transform: none !important; background: transparent; box-shadow: none; border: none; }

.project-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.55); color: var(--white);
  border: none; cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.project-close:hover { background: var(--red); }
.project-exp-tag { display: inline-block; background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; align-self: flex-start; }
.project-exp-meta { font-size: 13px; color: var(--gray-400); font-weight: 500; }
.project-exp-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--black); line-height: 1.2; }
.project-exp-desc { font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.project-exp-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 8px; }
.project-exp-img { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; background: var(--cream); }
.project-exp-img img { width: 100%; height: 100%; object-fit: cover; }

.projects-backdrop {
  display: none; position: fixed; inset: 0; z-index: 1999;
  background: rgba(0,0,0,.65); backdrop-filter: blur(6px);
}
.projects-backdrop.show { display: block; }

/* ── EVENTS ── */
.events-section { padding: 80px 0; background: var(--white); }
.events-list { display: flex; flex-direction: column; gap: 22px; }
.event-card { display: grid; grid-template-columns: 90px 1fr; gap: 28px; align-items: start; background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.05); border-left: 4px solid var(--red); transition: transform var(--transition), box-shadow var(--transition); }
.event-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.event-date { display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--red); color: var(--white); border-radius: var(--radius-md); padding: 14px 6px; text-align: center; min-width: 0; }
.event-date .day { font-family: var(--font-display); font-size: 18px; font-weight: 800; line-height: 1; letter-spacing: .02em; white-space: nowrap; }
.event-date .month { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; opacity: .9; }
.event-type { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); background: var(--red-glow); padding: 3px 10px; border-radius: 100px; margin-bottom: 7px; }
.event-info h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin-bottom: 5px; }
.event-location { font-size: 13px; color: var(--gray-400); margin-bottom: 9px; }
.event-info p:last-child { font-size: 14px; color: var(--gray-600); }

/* ── MEMBERS ── */
.members-section { padding: 80px 0; background: var(--white); }
.board-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 28px; }
.member-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 26px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.05); transition: transform var(--transition), box-shadow var(--transition); position: relative; overflow: hidden; }
.member-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: transform .4s ease; }
.member-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.member-card:hover::after { transform: scaleX(1); }
.member-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--red-light), var(--cream)); border: 3px solid var(--red-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--red); margin: 0 auto 20px; overflow: hidden; }
.member-avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-card h3 { font-family: var(--font-body); font-size: 17px; font-weight: 600; margin-bottom: 5px; }
.member-role { font-size: 14px; font-weight: 600; color: var(--red); margin-bottom: 4px; }
.member-program { font-size: 13px; color: var(--gray-400); }

/* ── CONTACT ── */
.contact-section { padding: 80px 0 100px; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-xl); padding: 44px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--gray-600); letter-spacing: .04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid rgba(0,0,0,.1); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; color: var(--black); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
#submitBtn { width: 100%; margin-top: 20px; font-size: 16px; padding: 15px; justify-content: center; }
.alert-success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; border-radius: var(--radius-sm); padding: 13px 18px; margin-bottom: 18px; font-size: 14px; font-weight: 500; display: none; }
.contact-sidebar { position: sticky; top: calc(var(--nav-h) + 28px); }
.info-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.05); margin-bottom: 18px; }
.info-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 22px; }
.info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.info-row:last-child { margin-bottom: 0; }
.info-icon { width: 38px; height: 38px; background: var(--red-glow); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.info-text strong { display: block; font-size: 12px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.info-text span { font-size: 14px; color: var(--black); }
.social-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.social-list { display: flex; flex-direction: column; gap: 9px; }
.social-link { display: flex; align-items: center; gap: 10px; padding: 11px 15px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid rgba(0,0,0,.07); font-size: 14px; font-weight: 500; transition: all var(--transition); }
.social-link:hover { border-color: var(--red); background: var(--red-glow); transform: translateX(4px); }

/* ── FOOTER ── */
.footer { background: var(--gray-900); color: var(--white); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); max-width: 280px; line-height: 1.7; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 40px; height: 40px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.55); transition: all var(--transition); }
.footer-socials a:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-3px); }
.footer-nav ul { display: flex; flex-direction: column; gap: 9px; list-style: none; padding: 0; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 7px; line-height: 1.6; }
.footer-bottom { padding: 18px 0; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.25); }

/* ── FAQ ── */
.faq-section { padding: 88px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-md); border: 1px solid rgba(0,0,0,.08); overflow: hidden; transition: box-shadow var(--transition); }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--red); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--black); text-align: left; gap: 16px; transition: color var(--transition); }
.faq-item.open .faq-question { color: var(--red); }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--gray-400); flex-shrink: 0; transition: transform var(--transition), color var(--transition); line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--red); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@keyframes shake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-6px)} 40%{transform:translateX(6px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)} }

/* ── BLOG / PODCASTS ── */
.blog-section { padding: 60px 0 100px; background: var(--cream); }

.blog-intro { text-align: center; margin-bottom: 48px; }
.blog-intro-text { font-size: 16px; color: var(--gray-600); max-width: 560px; margin: 0 auto; }

/* Scène éventail — centré horizontalement, large */
.fan-stage {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 500px;
  padding-bottom: 40px;
  position: relative;
}
.fan-container {
  position: relative;
  width: 300px;
  height: 440px;
}

/* Carte de base */
.podcast-card {
  position: absolute; top: 0; left: 0;
  width: 270px; height: 410px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.08);
  cursor: pointer;
  transition: transform .5s cubic-bezier(.4,0,.2,1), box-shadow .4s ease;
  transform-origin: bottom center;
  overflow: hidden;
  display: flex; flex-direction: column;
  user-select: none;
  will-change: transform;
}
.podcast-card::before {
  content: '';
  display: block; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--red), var(--accent));
  flex-shrink: 0;
}
.podcast-card:not(.hovered) { transition: transform .5s cubic-bezier(.4,0,.2,1); }

/* Miniature */
.card-thumb-link { display: block; flex-shrink: 0; cursor: pointer; }
.card-thumbnail { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.card-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.card-thumb-link:hover .card-thumbnail img { opacity: .85; }
.card-thumb-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2d0a0a, var(--red));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}

/* Corps */
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.card-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--black); line-height: 1.3; }
.card-guest { font-size: 13px; color: var(--red); font-weight: 600; }
.card-desc { font-size: 12px; color: var(--gray-600); line-height: 1.5; }

/* Backdrop */
.blog-backdrop {
  display: none; position: fixed; inset: 0; z-index: 2999;
  background: rgba(0,0,0,.65); backdrop-filter: blur(6px);
}
.blog-backdrop.show { display: block; }

/* Modal podcast */
.podcast-modal {
  display: none;
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, 92vw);
  max-height: 85vh; overflow-y: auto;
  background: var(--white); border-radius: 22px;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  z-index: 3000;
  flex-direction: column;
  animation: cardPop .35s cubic-bezier(.34,1.56,.64,1);
}
.podcast-modal.show { display: flex; }

@keyframes cardPop {
  from { transform: translate(-50%,-47%) scale(.9); opacity:.5; }
  to   { transform: translate(-50%,-50%) scale(1);  opacity:1; }
}

.podcast-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.55); color: var(--white);
  border: none; cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.podcast-modal-close:hover { background: var(--red); }

.podcast-modal-thumb { width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: 22px 22px 0 0; flex-shrink: 0; }
.podcast-modal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-thumb-placeholder-lg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2d0a0a, var(--red));
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; aspect-ratio: 16/9;
}

.podcast-modal-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.podcast-modal-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--black); line-height: 1.25; }
.podcast-modal-guest { font-size: 15px; color: var(--red); font-weight: 600; }
.podcast-modal-desc { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

.podcast-modal-members { background: var(--cream); border-radius: var(--radius-md); padding: 14px 16px; }
.card-members-title { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.podcast-modal-members-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.podcast-modal-members-list li { font-size: 13px; color: var(--gray-600); }
.podcast-modal-members-list li::before { content: '• '; color: var(--red); }

.card-watch-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: var(--white);
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
}
.card-watch-btn:hover { background: var(--red-dark); transform: translateY(-2px); }

.fan-hint { text-align: center; margin-top: 28px; font-size: 13px; color: var(--gray-400); letter-spacing: .04em; }

@media (max-width: 768px) {
  .fan-stage { min-height: unset; align-items: center; flex-direction: column; }
  .fan-container { position: static; width: 100%; height: auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
  .podcast-card { position: static !important; transform: none !important; width: 100%; max-width: 340px; height: auto; }
}

/* ── PAGE INDEX RÉALISATIONS ── */
.projects-index { padding: 80px 0; background: var(--cream); }
.projects-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  justify-items: center;
}
.project-index-card { text-decoration: none; display: block; }

/* ── CARTES PHOTO VINTAGE ── */
.vintage-cards-row {
  display: flex; gap: 48px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 72px;
}
.project-photos .vintage-cards-row {
  flex-direction: column; align-items: center; gap: 32px; margin-bottom: 0;
}
.vintage-card {
  position: relative; cursor: pointer;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.vintage-card:hover { transform: translateY(-10px) rotate(-1deg) scale(1.03); }
.vintage-card:nth-child(even) { transform: rotate(2deg); }
.vintage-card:nth-child(even):hover { transform: translateY(-10px) rotate(1deg) scale(1.03); }

.vintage-card-inner {
  width: 220px;
  background: #fefcf5;
  border-radius: 4px;
  padding: 14px 14px 40px;
  box-shadow:
    0 2px 4px rgba(0,0,0,.12),
    0 8px 24px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(255,255,255,.8);
  border: 1px solid rgba(0,0,0,.08);
  position: relative;
}
.vintage-card-shine {
  position: absolute; inset: 0; border-radius: 4px;
  background: linear-gradient(135deg, rgba(255,255,255,.25) 0%, transparent 50%);
  pointer-events: none;
}
.vintage-photo-area {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, #c8b8a0, #a89070);
  overflow: hidden; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.vintage-photo-area img { width: 100%; height: 100%; object-fit: cover; }
.vintage-card-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.vintage-card-footer span {
  font-family: 'Courier New', monospace;
  font-size: 15px; font-weight: 700;
  color: #5a4a3a; letter-spacing: .1em;
}

/* Carte index avec photo vintage sur la page d'accueil réalisations */
.pic-card-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pic-card {
  width: 200px;
  background: #fefcf5;
  border-radius: 4px;
  padding: 12px 12px 36px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.8);
  border: 1px solid rgba(0,0,0,.08);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.pic-card:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.pic-card-photo {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--red-light), #e8d0c0);
  border-radius: 2px; display: flex; align-items: center;
  justify-content: center; font-size: 40px;
}
.pic-card-label {
  font-family: 'Courier New', monospace;
  font-size: 13px; font-weight: 700; color: #5a4a3a;
  text-align: center; letter-spacing: .05em;
  max-width: 200px;
}

/* ── PAGE DÉTAIL PROJET ── */
.project-detail { padding: 64px 0 100px; }
.detail-section-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  margin-bottom: 18px; color: var(--black);
}
.typed-text { font-size: 16px; color: var(--gray-600); line-height: 1.8; }

/* Layout 2 colonnes : description gauche + photos droite */
.project-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.project-desc { }
.project-desc p { font-size: 16px; color: var(--gray-600); line-height: 1.85; }

.partners-section { margin-top: 40px; }
.partners-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  margin-bottom: 20px;
}
.partners-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.partner-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 16px 22px; border: 1px solid rgba(0,0,0,.06);
  min-width: 110px;
}
.partner-card img { height: 40px; object-fit: contain; }
.partner-logo-placeholder { font-size: 30px; }
.partner-name { font-size: 12px; font-weight: 600; color: var(--gray-600); text-align: center; }

/* Photos colonne droite */
.project-photos { display: flex; flex-direction: column; gap: 36px; }
.photo-year-group { }
.photo-year-label {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: var(--gray-400); letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 12px; border-bottom: 2px solid var(--cream); padding-bottom: 6px;
}
.year-photos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.year-photo-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1; background: var(--cream); }
.year-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.year-photo-item:hover img { transform: scale(1.05); }
.photos-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--cream); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; color: var(--gray-400);
  border: 2px dashed rgba(0,0,0,.1);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero .container,
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero p, .hero__subtitle { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about-illustration, .placeholder-img { max-width: 320px; margin: 0 auto 40px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .project-detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .project-photos { order: -1; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 2px; box-shadow: var(--shadow-lg); transform: translateY(-110%); opacity: 0; pointer-events: none; transition: transform var(--transition), opacity var(--transition); z-index: 999; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links li a { width: 100%; display: block; padding: 11px 14px; }
  .lang-switcher { display: none; }
  .nav-langs { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 50px 0; text-align: center; }
  .hero__actions { justify-content: center; flex-direction: column; align-items: center; }
  .event-card { grid-template-columns: 76px 1fr; gap: 16px; padding: 20px; }
  .board-grid { grid-template-columns: repeat(2,1fr); }
  .contact-form-wrap { padding: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .fan-wrapper { flex-direction: column; align-items: center; min-height: unset; }
  .fan-container { position: static; width: 100%; height: auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
  .podcast-card { position: static !important; transform: none !important; width: 100%; max-width: 320px; height: auto; }
  .podcast-card:not(.expanded):hover { transform: translateY(-6px) !important; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .board-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
}

.navbar:not(.scrolled) .nav-dropdown-menu {
  background: rgba(20, 5, 5, 0.95);
  backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,.1);
}
.navbar:not(.scrolled) .nav-dropdown-menu a {
  color: rgba(255,255,255,.85);
  border-bottom-color: rgba(255,255,255,.06);
}
.navbar:not(.scrolled) .nav-dropdown-menu a:hover {
  background: rgba(212,43,43,.2);
  color: var(--white);
}
