/* =====================================================
   LE VIDÉO CLUB — style.css v2
   Communauté de vidéastes à Toulouse
   
   Palette : brun profond + doré ambré + crème chaud
   Typographie : Fraunces (titres) + IBM Plex Sans (corps)
   ===================================================== */

/* =====================================================
   VARIABLES
   ===================================================== */

:root {
  /* Fonds bruns */
  --bg: #1f1208;
  --bg-2: #2a1a0e;
  --bg-3: #3a2816;
  --bg-warm: #4a3420;
  
  /* Or */
  --gold: #d9a93a;
  --gold-light: #f0c86e;
  --gold-deep: #a07c1e;
  
  /* Textes crème */
  --cream: #f4ead0;
  --cream-dim: #c8b890;
  --muted: #8a7550;
  --dark-muted: #5a4830;
  
  /* Bordures */
  --border: #3a2816;
  --border-light: #4a3420;
  
  /* Accents */
  --red-soft: #e08060;
  
  /* Sizing */
  --nav-height: 68px;
  --max-width: 1200px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */

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

html { 
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { 
  text-decoration: none; 
  color: inherit;
  transition: color 0.2s;
}

img { max-width: 100%; display: block; }

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* =====================================================
   NAVIGATION
   ===================================================== */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(31, 18, 8, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0 2.5rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav-logo em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  color: var(--cream-dim);
  letter-spacing: 0.06em;
  font-weight: 400;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { 
  color: var(--gold); 
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  padding: 0.55rem 1.2rem;
  background: var(--gold);
  border-radius: 2px;
  font-size: 0.78rem;
  color: var(--bg) !important;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-cta:hover { 
  background: var(--gold-light) !important; 
  color: var(--bg) !important; 
}

.nav-cta.active::after { display: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
}

/* =====================================================
   BANNER BETA
   ===================================================== */

.beta-banner {
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
  z-index: 101;
  font-family: 'IBM Plex Sans', sans-serif;
}

/* =====================================================
   HERO — Diaporama de fond + texte conversationnel
   ===================================================== */

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: block;
  overflow: hidden;
  padding: 5rem 0 3rem;
  display: flex;
  align-items: center;
}

/* Diaporama de fond */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 36s infinite; /* 6 images × 6s = 36s */
}

/* Staggered animation — chaque slide décalée */
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide:nth-child(5) { animation-delay: 24s; }
.hero-slide:nth-child(6) { animation-delay: 30s; }

@keyframes heroFade {
  0%    { opacity: 0; }
  5%    { opacity: 1; }
  16%   { opacity: 1; }
  22%   { opacity: 0; }
  100%  { opacity: 0; }
}

/* Overlay sombre — intensité forte */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    linear-gradient(
      180deg, 
      rgba(31, 18, 8, 0.65) 0%, 
      rgba(31, 18, 8, 0.85) 60%, 
      rgba(31, 18, 8, 0.98) 100%
    );
}

/* Placeholder quand pas de photos — dégradé brun animé */
.hero-slide.placeholder-1 { background: radial-gradient(at 20% 30%, var(--bg-warm) 0%, var(--bg) 70%); }
.hero-slide.placeholder-2 { background: radial-gradient(at 80% 50%, var(--gold-deep) 0%, var(--bg) 75%); opacity: 0.3; }
.hero-slide.placeholder-3 { background: radial-gradient(at 40% 70%, var(--bg-3) 0%, var(--bg) 60%); }
.hero-slide.placeholder-4 { background: radial-gradient(at 70% 20%, var(--bg-warm) 0%, var(--bg) 80%); }
.hero-slide.placeholder-5 { background: radial-gradient(at 30% 80%, var(--gold-deep) 0%, var(--bg) 75%); opacity: 0.25; }
.hero-slide.placeholder-6 { background: radial-gradient(at 90% 60%, var(--bg-3) 0%, var(--bg) 65%); }
.hero-slide.placeholder-7 { background: radial-gradient(at 10% 40%, var(--bg-warm) 0%, var(--bg) 75%); }

/* Contenu hero — layout 2 colonnes (logo à gauche, texte à droite) */
.hero-content {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-logo {
  opacity: 0;
  animation: fadeInLogo 1s 0.3s forwards;
  max-width: 380px;
  width: 100%;
  justify-self: start;
}

.hero-logo img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.4));
}

@keyframes fadeInLogo {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.hero-text {
  opacity: 0;
  animation: fadeInText 0.8s 0.5s forwards;
  min-width: 0;
}

@keyframes fadeInText {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-greeting {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.hero-greeting em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-greeting .big {
  font-weight: 600;
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--cream-dim);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 480px;
}

.hero-meta-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--gold); }
  50% { opacity: 0.6; box-shadow: 0 0 4px var(--gold); }
}

/* =====================================================
   NEXT EVENT — Bloc vedette juste sous le hero
   ===================================================== */

.next-event {
  background: var(--bg-2);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.next-event::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.next-event-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

.next-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--border);
  padding-right: 2.5rem;
  min-width: 110px;
}

.next-event-day {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.next-event-month {
  font-size: 0.8rem;
  color: var(--cream-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.next-event-body {
  min-width: 0;
}

.next-event-tag {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.next-event-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.next-event-title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.next-event-location {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

.next-event-location strong {
  color: var(--cream);
  font-weight: 500;
}

.next-event-action {
  flex-shrink: 0;
}

/* =====================================================
   BOUTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-dim);
  padding: 0.5rem 0;
}

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

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s;
}

.btn:hover .btn-arrow::after,
.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* =====================================================
   SECTIONS GÉNÉRIQUES
   ===================================================== */

.section {
  padding: 6rem 2.5rem;
  position: relative;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-narrow {
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.section-title strong {
  font-weight: 600;
}

.lead-text {
  font-size: 1.15rem;
  color: var(--cream-dim);
  line-height: 1.75;
  max-width: 680px;
  font-weight: 300;
}

.body-text {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.body-text strong {
  font-weight: 600;
  color: var(--cream);
}

.body-text a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.body-text a:hover { border-bottom-color: var(--gold); }

/* =====================================================
   SECTION "LE CLUB" — Présentation + chiffres
   ===================================================== */

.club-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2rem;
}

.club-intro-text .body-text {
  margin-top: 0;
}

.club-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.club-stat {
  background: var(--bg-2);
  padding: 2rem 1.75rem;
  transition: background 0.25s;
}

.club-stat:hover { background: var(--bg-3); }

.club-stat-val {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.club-stat-label {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.5;
  font-weight: 400;
}

/* =====================================================
   MEMBRES — Cartes featured (home)
   ===================================================== */

.membres-section {
  margin-top: 3rem;
}

.membres-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.membre-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.membre-card {
  text-decoration: none;
  color: inherit;
}

.membre-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.membre-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}

.membre-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.membre-card:hover .membre-photo img {
  transform: scale(1.04);
}

.membre-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    radial-gradient(at 30% 30%, var(--bg-warm) 0%, var(--bg-2) 70%);
  position: relative;
}

.membre-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 15%;
  border: 1px solid var(--border-light);
  border-radius: 50%;
}

.membre-photo-placeholder span {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.membre-info {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.membre-nom {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.membre-entreprise {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.membre-role {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* =====================================================
   MEMBRES — Version compact (niveau 2 home)
   ===================================================== */

.membres-compact-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.membres-compact-title {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.membres-compact-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.membres-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.membre-compact {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0.9rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.membre-compact {
  text-decoration: none;
  color: inherit;
}

.membre-compact:hover {
  border-color: var(--gold-deep);
  background: var(--bg-3);
  transform: translateY(-1px);
}

.membre-compact-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-3);
}

.membre-compact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.membre-compact-photo .membre-photo-placeholder span {
  font-size: 0.95rem;
}

.membre-compact-photo .membre-photo-placeholder::before {
  inset: 6%;
}

.membre-compact-info {
  min-width: 0;
  flex: 1;
}

.membre-compact-nom {
  font-family: 'Fraunces', serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.membre-compact-sub {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.membres-cta {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.membres-cta-text {
  font-size: 0.95rem;
  color: var(--cream-dim);
  font-style: italic;
  max-width: 520px;
  line-height: 1.6;
}

/* =====================================================
   PAGE REJOINDRE — Hero
   ===================================================== */

.rejoindre-hero {
  position: relative;
  padding: 5rem 2.5rem 4rem;
  background: 
    radial-gradient(at 15% 30%, rgba(160, 124, 30, 0.18) 0%, transparent 55%),
    radial-gradient(at 85% 75%, rgba(74, 52, 32, 0.4) 0%, transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.rejoindre-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 20%, var(--gold) 50%, transparent 80%);
  opacity: 0.5;
}

.rejoindre-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.rejoindre-hero-eyebrow {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rejoindre-hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.rejoindre-hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.rejoindre-hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.rejoindre-hero-subtitle {
  font-size: 1.15rem;
  color: var(--cream-dim);
  line-height: 1.75;
  max-width: 720px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .rejoindre-hero { padding: 3rem 1.25rem 3rem; }
  .rejoindre-hero-title { font-size: 2.2rem; }
  .rejoindre-hero-subtitle { font-size: 1rem; }
}

/* =====================================================
   PAGE REJOINDRE — Section Profils (pastilles aléatoires)
   ===================================================== */

.section-narrow-custom {
  max-width: 920px;
}

.profils-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.profil-pill {
  padding: 0.65rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--gold-deep);
  border-radius: 100px;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  display: inline-block;
}

.profil-pill:hover {
  background: var(--gold-deep);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.profils-reassure {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  line-height: 1.6;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 680px;
}

/* =====================================================
   PAGE REJOINDRE — Section "Comment ça se passe"
   ===================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.step-card:hover::before {
  opacity: 1;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
  font-style: italic;
  letter-spacing: -0.02em;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* =====================================================
   PAGE REJOINDRE — Formulaire + WhatsApp
   ===================================================== */

.join-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
}

.join-form-block,
.join-whatsapp-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s;
}

.join-form-block:hover,
.join-whatsapp-block:hover {
  border-color: var(--border-light);
}

.join-block-title {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.join-block-intro {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Séparateur "ou" */
.join-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 5rem;
}

.join-divider-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--border-light), transparent);
}

.join-divider-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

/* Formulaire */
.join-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.form-row input,
.form-row textarea {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 0.75rem 0.9rem;
  color: var(--cream);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-3);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'IBM Plex Sans', sans-serif;
}

.form-submit {
  margin-top: 0.5rem;
  justify-content: center;
  width: 100%;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.5;
  font-style: italic;
}

.form-redirect {
  font-size: 0.82rem;
  color: var(--cream-dim);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}

.form-redirect a {
  color: var(--gold);
  border-bottom: 1px dotted transparent;
  transition: border-color 0.2s;
}

.form-redirect a:hover {
  border-bottom-color: var(--gold);
}

/* Bloc WhatsApp */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #25d366;
  border: 2px solid var(--gold);
  border-radius: 3px;
  color: #ffffff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  text-decoration: none;
  width: 100%;
  box-shadow: 0 0 0 rgba(217, 169, 58, 0);
}

.btn-whatsapp:hover {
  background: #1fa855;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(217, 169, 58, 0.15);
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.join-whatsapp-note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 1.25rem;
  font-style: italic;
  text-align: center;
}

/* =====================================================
   PAGE REJOINDRE — Note Agora Club
   ===================================================== */

.join-whatsapp-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.agora-note {
  padding: 1.75rem 2rem;
  background: transparent;
  border-left: 3px solid var(--gold);
  border-radius: 0;
}

.agora-note-label {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.agora-note-text {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.75;
  font-style: italic;
}

.agora-note-text strong {
  color: var(--cream);
  font-weight: 500;
  font-style: normal;
}

/* =====================================================
   RESPONSIVE — Page Rejoindre
   ===================================================== */

@media (max-width: 960px) {
  .join-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .join-divider {
    flex-direction: row;
    padding-top: 0;
    gap: 1rem;
  }

  .join-divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  }

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

@media (max-width: 768px) {
  .profil-pill {
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
  }

  .agora-note {
    padding: 1.5rem 1.5rem;
  }

  .step-card {
    padding: 1.75rem 1.5rem;
  }

  .join-form-block,
  .join-whatsapp-block {
    padding: 2rem 1.5rem;
  }
}

/* =====================================================
   PAGE MEMBRES — Hero (réutilise les classes rejoindre-hero-*)
   ===================================================== */

.membres-page-hero {
  position: relative;
  padding: 5rem 2.5rem 4rem;
  background: 
    radial-gradient(at 80% 20%, rgba(160, 124, 30, 0.18) 0%, transparent 55%),
    radial-gradient(at 20% 80%, rgba(74, 52, 32, 0.4) 0%, transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.membres-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 20%, var(--gold) 50%, transparent 80%);
  opacity: 0.5;
}

.membres-page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .membres-page-hero { padding: 3rem 1.25rem 3rem; }
}

/* =====================================================
   PAGE MEMBRES — Cartes FEATURED détaillées (organisateurs)
   ===================================================== */

.membres-featured-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Chaque carte = ~1/3 de la largeur, dernière ligne centrée par justify-content */
.membres-featured-detail-grid > .membre-card-detail {
  flex: 0 1 calc((100% - 4rem) / 3);
  min-width: 0;
}

/* En grille 3 colonnes, le format horizontal serre trop : passage en vertical */
.membres-featured-detail-grid .membre-card-detail {
  grid-template-columns: 1fr;
}

.membres-featured-detail-grid .membre-card-detail-photo {
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
}

.membre-card-detail {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Si c'est un <a> (carte cliquable) : pas de soulignement */
a.membre-card-detail {
  text-decoration: none;
  color: inherit;
}

.membre-card-detail:hover {
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.membre-card-detail-photo {
  overflow: hidden;
  background: var(--bg-3);
  height: 100%;
  min-height: 220px;
}

.membre-card-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.membre-card-detail:hover .membre-card-detail-photo img {
  transform: scale(1.04);
}

.membre-card-detail-body {
  padding: 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.membre-card-detail-body .membre-nom {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.membre-card-detail-body .membre-entreprise {
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}

.membre-card-detail-body .membre-freelance {
  color: var(--cream-dim);
  font-style: italic;
}

.membre-card-detail-body .membre-role {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.membre-bio {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

/* =====================================================
   PAGE MEMBRES — Spécialités (pastilles discrètes)
   ===================================================== */

.membre-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.membre-spec {
  font-size: 0.72rem;
  padding: 0.3rem 0.65rem;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  color: var(--cream-dim);
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

.membre-card-detail:hover .membre-spec,
.membre-compact-detail:hover .membre-spec {
  border-color: var(--gold-deep);
  color: var(--cream);
}

/* =====================================================
   PAGE MEMBRES — Icônes sociales
   ===================================================== */

.membre-socials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.membre-socials-compact {
  gap: 0.35rem;
}

.membre-social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--cream-dim);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.membre-socials-compact .membre-social-link {
  width: 28px;
  height: 28px;
}

.membre-social-link svg {
  width: 14px;
  height: 14px;
}

.membre-socials-compact .membre-social-link svg {
  width: 12px;
  height: 12px;
}

.membre-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(217, 169, 58, 0.08);
}

/* =====================================================
   PAGE MEMBRES — Cartes compactes détaillées (autres membres)
   ===================================================== */

.membres-compact-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.membre-compact-detail {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem 1.25rem;
  display: flex;
  gap: 1rem;
  transition: all 0.25s ease;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.membre-compact-detail {
  text-decoration: none;
  color: inherit;
}

.membre-compact-detail:hover {
  border-color: var(--gold-deep);
  background: var(--bg-3);
  transform: translateY(-2px);
}

.membre-compact-detail-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-3);
}

.membre-compact-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.membre-compact-detail-photo .membre-photo-placeholder span {
  font-size: 1.05rem;
}

.membre-compact-detail-photo .membre-photo-placeholder::before {
  inset: 8%;
}

.membre-compact-detail-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.membre-compact-detail-nom {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.membre-honneur {
  color: var(--gold);
  font-size: 0.85rem;
  cursor: help;
}

.membre-compact-detail-entreprise {
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.membre-compact-detail-role {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* =====================================================
   RESPONSIVE — Page membres
   ===================================================== */

@media (max-width: 1024px) {
  .membres-featured-detail-grid > .membre-card-detail {
    flex: 0 1 calc((100% - 2rem) / 2);
  }
  .membres-compact-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .membres-featured-detail-grid > .membre-card-detail {
    flex: 0 1 100%;
  }
  .membres-featured-detail-grid .membre-card-detail-photo {
    aspect-ratio: 16 / 9;
  }
  .membre-card-detail {
    grid-template-columns: 1fr;
  }
  .membre-card-detail-photo {
    aspect-ratio: 16 / 9;
  }
  .membres-compact-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   PAGE ÉVÉNEMENTS — Cartes "à venir" (grande taille)
   ===================================================== */

.evenements-a-venir {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.evenement-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  align-items: start;
  transition: all 0.3s ease;
}

.evenement-card:hover {
  border-color: var(--gold-deep);
  border-left-color: var(--gold);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.evenement-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--border);
  padding-right: 2rem;
  min-height: 120px;
  justify-content: center;
}

.evenement-jour {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  font-style: italic;
}

.evenement-mois {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 400;
  margin-top: 0.4rem;
  letter-spacing: -0.01em;
}

.evenement-annee {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  font-weight: 500;
}

.evenement-body {
  display: flex;
  flex-direction: column;
}

.evenement-heure {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.evenement-titre {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.evenement-lieu {
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.evenement-lieu strong {
  color: var(--cream);
  font-weight: 500;
}

.evenement-description {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.evenement-actions {
  margin-top: auto;
}

/* =====================================================
   Séparateur doré pleine largeur (transition entre sections)
   ===================================================== */

.section-with-divider {
  position: relative;
}

.section-with-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 720px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.6;
}

/* =====================================================
   PAGE ÉVÉNEMENTS — Cartes "passées" (compact avec photo fond)
   ===================================================== */

.evenements-passes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.evenement-passe {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: default;
}

.evenement-passe:hover {
  transform: translateY(-3px);
  border-color: var(--gold-deep);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

/* Overlay sombre qui garantit la lisibilité du texte */
.evenement-passe-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 18, 8, 0.55) 0%,
    rgba(31, 18, 8, 0.75) 60%,
    rgba(31, 18, 8, 0.92) 100%
  );
  transition: background 0.3s;
}

/* Sans photo : fond dégradé brun-doré par défaut */
.evenement-passe:not(.has-photo) .evenement-passe-overlay {
  background: 
    radial-gradient(at 30% 30%, rgba(160, 124, 30, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-2) 100%);
}

.evenement-passe:hover .evenement-passe-overlay {
  background: linear-gradient(
    180deg,
    rgba(31, 18, 8, 0.4) 0%,
    rgba(31, 18, 8, 0.7) 60%,
    rgba(31, 18, 8, 0.9) 100%
  );
}

.evenement-passe-content {
  position: relative;
  z-index: 2;
  padding: 1.25rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.evenement-passe-date {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.evenement-passe-titre {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.evenement-passe-lieu {
  font-size: 0.82rem;
  color: var(--cream-dim);
  font-style: italic;
}

/* =====================================================
   PAGE ÉVÉNEMENTS — Lien externe (vidéo, podcast, recap)
   ===================================================== */

/* Carte passée cliquable : curseur main */
.evenement-passe.has-lien {
  cursor: pointer;
}

/* Lien invisible qui couvre toute la carte pour rendre le clic global */
.evenement-passe-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* Badge en haut à droite, calé sur la charte (or + crème + uppercase) */
.evenement-passe-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  background: rgba(31, 18, 8, 0.85);
  border: 1px solid var(--gold-deep);
  color: var(--gold);
  border-radius: 2px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

/* Au survol de la carte, le badge passe en plein doré */
.evenement-passe.has-lien:hover .evenement-passe-badge {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

/* Le SVG du triangle play hérite de la couleur via currentColor */
.evenement-passe-badge svg {
  display: block;
}

/* =====================================================
   RESPONSIVE — Page événements
   ===================================================== */

@media (max-width: 1024px) {
  .evenements-passes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .evenement-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem 1.5rem;
  }

  .evenement-date {
    flex-direction: row;
    align-items: baseline;
    gap: 0.75rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 1rem;
    min-height: auto;
  }

  .evenement-jour {
    font-size: 2.4rem;
  }

  .evenement-mois {
    font-size: 1.05rem;
    margin-top: 0;
  }

  .evenement-annee {
    margin-top: 0;
  }

  .evenement-titre {
    font-size: 1.3rem;
  }

  .evenements-passes-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   PAGE MENTIONS LÉGALES
   ===================================================== */

.mentions-content {
  max-width: 760px;
  margin-top: 2rem;
}

.mentions-block {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.mentions-block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 2rem;
}

.mentions-title {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.mentions-subtitle {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.005em;
}

.mentions-body p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.mentions-body p:last-child {
  margin-bottom: 0;
}

.mentions-body strong {
  color: var(--cream);
  font-weight: 500;
}

.mentions-body a {
  color: var(--gold);
  border-bottom: 1px dotted transparent;
  transition: border-color 0.2s;
}

.mentions-body a:hover {
  border-bottom-color: var(--gold);
}

/* Encart info (éditeur, hébergeur) */
.mentions-info-block {
  padding: 1.25rem 1.5rem !important;
  background: var(--bg-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  font-size: 0.92rem !important;
  line-height: 1.8 !important;
  color: var(--cream-dim) !important;
  margin: 1rem 0 1.25rem !important;
}

.mentions-info-block strong {
  color: var(--cream);
}

/* Listes RGPD */
.mentions-body ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}

.mentions-body ul li {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.75;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.mentions-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 500;
}

/* Date de mise à jour */
.mentions-update {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  text-align: right;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* =====================================================
   RESPONSIVE — Page mentions
   ===================================================== */

@media (max-width: 768px) {
  .mentions-title {
    font-size: 1.25rem;
  }
  .mentions-subtitle {
    font-size: 1rem;
  }
  .mentions-info-block {
    padding: 1rem 1.25rem !important;
  }
}

/* =====================================================
   PAGE 404 — Erreur "Coupé au montage"
   ===================================================== */

.error-404 {
  min-height: calc(100vh - var(--nav-height) - 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2.5rem;
  position: relative;
  background: 
    radial-gradient(at 30% 40%, rgba(160, 124, 30, 0.15) 0%, transparent 55%),
    radial-gradient(at 70% 60%, rgba(74, 52, 32, 0.4) 0%, transparent 50%),
    var(--bg);
  overflow: hidden;
}

.error-404::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 20%, var(--gold) 50%, transparent 80%);
  opacity: 0.5;
}

.error-404-inner {
  text-align: center;
  max-width: 620px;
  position: relative;
}

.error-404-code {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  opacity: 0.9;
  text-shadow: 0 4px 24px rgba(217, 169, 58, 0.25);
}

.error-404-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.error-404-title em {
  font-style: italic;
  color: var(--gold);
}

.error-404-subtitle {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.error-404-gif {
  max-width: 340px;
  margin: 0 auto 2.5rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
}

.error-404-gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.error-404-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .error-404 {
    padding: 3rem 1.25rem;
  }
  .error-404-gif {
    max-width: 280px;
  }
  .error-404-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .error-404-actions .btn {
    justify-content: center;
  }
}

/* =====================================================
   PAGE CONTACT — Hero redirect
   ===================================================== */

.contact-redirect {
  margin-top: 2rem;
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
}

.contact-redirect a {
  color: var(--gold);
  border-bottom: 1px dotted transparent;
  transition: border-color 0.2s;
}

.contact-redirect a:hover {
  border-bottom-color: var(--gold);
}

/* =====================================================
   PAGE CONTACT — Grille formulaire + infos directes
   ===================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-block,
.contact-infos-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
}

.contact-form-block:hover,
.contact-infos-block:hover {
  border-color: var(--border-light);
}

.contact-block-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.contact-block-intro {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* =====================================================
   PAGE CONTACT — Infos directes (liste verticale)
   ===================================================== */

.contact-direct-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-direct-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-direct-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-direct-label {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Email en grand */
.contact-direct-value {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
  display: inline-block;
  margin-bottom: 0.5rem;
  border-bottom: 1px dotted transparent;
  transition: all 0.2s;
}

.contact-direct-value:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Réseaux et localisation en taille normale */
.contact-direct-value-small {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 400;
  display: inline-block;
  margin-bottom: 0.4rem;
  border-bottom: 1px dotted transparent;
  transition: all 0.2s;
}

.contact-direct-value-small:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.contact-direct-note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  font-style: italic;
}

/* =====================================================
   PAGE CONTACT — Formulaire select stylé
   ===================================================== */

.form-row select {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 3px;
  padding: 0.75rem 0.9rem;
  color: var(--cream);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  /* Petite flèche SVG en background pour le select */
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23d9a93a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1 1 6 6 11 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-row select:focus {
  outline: none;
  border-color: var(--gold);
  background-color: var(--bg-3);
}

/* =====================================================
   PAGE CONTACT — Notes (délai + cadrage devis) : encart unifié
   ===================================================== */

.contact-notes-single {
  max-width: 720px;
  padding: 2rem 2.25rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  background: var(--bg-2);
}

.contact-note-item {
  padding: 0;
}

.contact-note-separator {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.contact-note-label {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.contact-note-text {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

.contact-note-text strong {
  color: var(--cream);
  font-weight: 500;
}

.contact-note-text a {
  color: var(--gold);
  border-bottom: 1px dotted transparent;
  transition: border-color 0.2s;
}

.contact-note-text a:hover {
  border-bottom-color: var(--gold);
}

/* =====================================================
   RESPONSIVE — Page contact
   ===================================================== */

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-form-block,
  .contact-infos-block {
    padding: 2rem 1.5rem;
  }
  .contact-direct-value {
    font-size: 1.1rem;
  }
  .contact-notes-single {
    padding: 1.5rem 1.75rem;
  }
}

/* =====================================================
   PAGE HISTOIRE — Texte introduction & paragraphes
   ===================================================== */

.histoire-texte {
  max-width: 760px;
  margin-top: 2.5rem;
}

.histoire-texte .body-text {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Phrase d'introduction du narrateur (présentation "je m'appelle...") */
.histoire-intro {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-style: italic;
  max-width: 640px;
}

.histoire-citation {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold-deep);
  letter-spacing: -0.005em;
}

/* Phrase de conclusion accentuée (option 2) */
.histoire-punchline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.5;
  margin-top: 2rem;
  max-width: 560px;
  letter-spacing: -0.01em;
}

/* =====================================================
   PAGE HISTOIRE — Timeline
   ===================================================== */

.timeline {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  max-width: 780px;
}

/* Trait doré vertical */
.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 50%, transparent 100%);
  opacity: 0.6;
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px var(--bg);
  transition: all 0.3s ease;
}

.timeline-marker::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--gold-deep);
  opacity: 0;
  transition: opacity 0.3s;
}

.timeline-item:hover .timeline-marker {
  border-color: var(--gold);
  transform: scale(1.1);
}

.timeline-item:hover .timeline-marker::before {
  opacity: 1;
}

.timeline-content {
  padding-top: 0;
}

.timeline-date {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* =====================================================
   RESPONSIVE — Page histoire
   ===================================================== */

@media (max-width: 768px) {
  .histoire-citation,
  .histoire-punchline {
    font-size: 1.2rem;
  }

  .histoire-citation {
    padding-left: 1.25rem;
  }

  .timeline-item {
    padding-left: 2.5rem;
  }

  .timeline-title {
    font-size: 1.1rem;
  }
}

/* =====================================================
   PAGE PODCAST — Concept + format
   ===================================================== */

.podcast-concept {
  max-width: 760px;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}

.podcast-concept .body-text {
  margin-bottom: 1.25rem;
}

.podcast-format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2rem;
}

.podcast-format-item {
  background: var(--bg-2);
  padding: 2rem 1.5rem;
  transition: background 0.25s;
  text-align: left;
}

.podcast-format-item:hover {
  background: var(--bg-3);
}

.podcast-format-value {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  font-style: italic;
}

.podcast-format-label {
  font-size: 0.78rem;
  color: var(--cream-dim);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* =====================================================
   PAGE PODCAST — Canaux (WhatsApp + LinkedIn)
   ===================================================== */

.podcast-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.podcast-channel-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.podcast-channel-block:hover {
  border-color: var(--gold-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.podcast-channel-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.podcast-channel-block:hover .podcast-channel-icon {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.podcast-channel-icon svg {
  width: 22px;
  height: 22px;
}

.podcast-channel-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.podcast-channel-desc {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex: 1;
}

/* =====================================================
   RESPONSIVE — Page podcast
   ===================================================== */

@media (max-width: 900px) {
  .podcast-format-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .podcast-channels-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .podcast-format-grid {
    grid-template-columns: 1fr;
  }
  .podcast-format-value {
    font-size: 1.4rem;
  }
}

/* =====================================================
   SECTION PODCAST TEASER
   ===================================================== */

.podcast-teaser {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 3rem 2.5rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.podcast-teaser-label {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.podcast-teaser-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2.5s infinite;
}

.podcast-teaser-title {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.podcast-teaser-title em {
  font-style: italic;
  color: var(--gold);
}

.podcast-teaser-desc {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 580px;
}

/* =====================================================
   CTA FINAL — Rejoindre
   ===================================================== */

.cta-rejoindre {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.cta-rejoindre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-rejoindre::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.cta-rejoindre-label {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.cta-rejoindre-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cta-rejoindre-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-rejoindre-desc {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-rejoindre-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */

footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 2.5rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand h3 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 1.5rem;
}

.footer-agora {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  max-width: 380px;
}

.footer-agora strong {
  color: var(--cream-dim);
  font-weight: 500;
}

.footer-col h4 {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.25rem;
  font-family: 'IBM Plex Sans', sans-serif;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--cream-dim);
}

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

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: all 0.2s;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-bottom a:hover { color: var(--gold); }

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  
  .hero-content {
    grid-template-columns: minmax(200px, 300px) 1fr;
    gap: 3rem;
  }
  
  .club-intro { grid-template-columns: 1fr; gap: 3rem; }
  .membres-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .membres-compact-grid { grid-template-columns: repeat(2, 1fr); }
  .podcast-teaser { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 900px) {
  .next-event-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .next-event-date {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 1rem 0;
  }
  .next-event-day { font-size: 2.2rem; }
  
  /* Hero passe en une colonne, logo au-dessus */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }
  .hero-logo {
    max-width: 240px;
  }
  
  .membres-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .club-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; height: 62px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  
  .hero-content { padding: 3rem 1.25rem 4rem; gap: 2rem; }
  .hero-greeting { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-logo { max-width: 180px; }
  
  .next-event { padding: 2rem 1.25rem; }
  .section { padding: 4rem 1.25rem; }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  footer { padding: 3rem 1.25rem 1.5rem; }
  
  .podcast-teaser { padding: 2rem 1.5rem; }
  .cta-rejoindre { padding: 3rem 1.5rem; }
  .membres-featured-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .club-stats { grid-template-columns: 1fr; }
  .club-stat { padding: 1.5rem 1.25rem; }
  .club-stat-val { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero-greeting { font-size: 2rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; }
  .next-event-action { align-self: stretch; }
  .next-event-action .btn { justify-content: center; width: 100%; }
  .membres-compact-grid { grid-template-columns: 1fr; }
  .cta-rejoindre-buttons { flex-direction: column; }
  .cta-rejoindre-buttons .btn { justify-content: center; }
}

/* =====================================================
   HOME — Section partenaires (variante A : vitrine, variante B : appel à sponsors)
   ===================================================== */

.home-partenaires .section-title { margin-bottom: 1rem; }

/* ---------- Variante A : vitrine logos ---------- */

.home-partenaires-header {
  margin-bottom: 2.5rem;
}

.home-partenaires-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 1rem;
}

.home-partenaire-home-logo {
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  min-height: 130px;
  transition: background 0.25s;
}

.home-partenaire-home-logo:hover { background: var(--bg-3); }

.home-partenaire-home-logo img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.95);
  transition: filter 0.25s;
}

.home-partenaire-home-logo:hover img { filter: brightness(1.1); }

.home-partenaires-footer {
  margin-top: 2.5rem;
  text-align: center;
}

/* ---------- Variante B : appel à sponsors ---------- */

.home-partenaires-pitch-grid {
  margin-top: 2.5rem;
}

.home-partenaires-pitch-text .body-text:first-child { margin-top: 0; }

.home-partenaires-pitch-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}

.home-partenaires-stat {
  background: var(--bg-2);
  padding: 1.75rem 1.75rem;
  transition: background 0.25s;
}

.home-partenaires-stat:hover { background: var(--bg-3); }

.home-partenaires-stat-val {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.home-partenaires-stat-label {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.5;
  font-weight: 400;
}

.home-partenaires-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: center;
}

/* ---------- Responsive partenaires ---------- */

@media (max-width: 1024px) {
  .home-partenaires-logos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .home-partenaires-pitch-stats { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .home-partenaires-logos { grid-template-columns: repeat(2, 1fr); }
  .home-partenaire-home-logo { padding: 1.5rem 1rem; min-height: 90px; }
  .home-partenaires-stat { padding: 1.5rem; }
  .home-partenaires-stat-val { font-size: 1.85rem; }
  .home-partenaires-cta { flex-direction: column; align-items: stretch; }
  .home-partenaires-cta .btn { justify-content: center; }
}
