/* ===================================================================
   Agir Ensemble — Feuille de style principale
   Thème : Rose & Or — Élégance & Chaleur
   =================================================================== */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --rose-deep:    #8B1A4A;
  --rose-mid:     #B5305A;
  --rose-warm:    #C94E78;
  --rose-light:   #E8A0B4;
  --rose-pale:    #FDE8EF;
  --rose-blush:   #FFF4F7;
  --rose-border:  #F0C8D8;
  --gold:         #C9924A;
  --gold-light:   #F5E6D0;
  --white:        #FFFFFF;
  --text:         #2C1320;
  --text-body:    #4A2D3B;
  --text-muted:   #7A5568;
  --text-light:   #BFA0AA;
  --bg:           #FFF8FB;
  --bg-alt:       #FFF0F5;
  --surface:      #FFFFFF;
  --border:       #F0D0DC;
  --shadow-sm:    0 2px 8px rgba(139,26,74,.06);
  --shadow:       0 4px 20px rgba(139,26,74,.10);
  --shadow-md:    0 8px 40px rgba(139,26,74,.13);
  --shadow-lg:    0 16px 64px rgba(139,26,74,.16);
  --radius-sm:    10px;
  --radius:       18px;
  --radius-lg:    28px;
  --radius-xl:    40px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --max-w:        1200px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* NE PAS mettre overflow-x:hidden ici : casse position:fixed sur iOS/Android */
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* empêche le menu mobile translateX(100%) de créer un overflow */
  min-width: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-deep); }
ul { list-style: none; }

/* ── Typographie ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: var(--rose-pale);
  padding: .35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.section-title {
  margin-bottom: .75rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Header ────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rose-border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.logo:hover { color: var(--rose-deep); }

.logo-img-header {
  height: 58px;
  width: auto;
  display: block;
  transition: transform var(--transition), opacity var(--transition);
  filter: drop-shadow(0 2px 6px rgba(139,26,74,.10));
}
.logo:hover .logo-img-header {
  transform: scale(1.04);
  opacity: .88;
}

/* Navigation */
/* Nav hors du <header> : contexte d'empilement propre, jamais piégé */
.main-nav {
  position: fixed;
  top: 0;
  /* S'aligne visuellement sur la droite du container header */
  right: max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem));
  height: 72px;
  display: flex;
  align-items: center;
  gap: .5rem;
  z-index: 1001; /* indépendant du header, toujours au-dessus */
}
.nav-link {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-body);
  padding: .45rem .9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: .9rem; right: .9rem;
  height: 2px;
  background: var(--rose-mid);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--rose-mid); background: var(--rose-pale); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--rose-deep); }

.nav-cta {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white) !important;
  background: var(--rose-mid);
  padding: .55rem 1.4rem;
  border-radius: 99px;
  transition: all var(--transition);
  margin-left: .5rem;
}
.nav-cta:hover { background: var(--rose-deep); transform: translateY(-1px); box-shadow: var(--shadow); }
.nav-cta.active { background: var(--rose-deep); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
  background: linear-gradient(135deg, #6B1035 0%, #9B2A52 35%, #C2436E 65%, #F9A8C9 100%);
}
.hero-bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-decor::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero-bg-decor::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  bottom: -80px; left: 5%;
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: white;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.3);
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  color: white;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: #FFD6E8;
}
.hero-desc {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: white;
  color: var(--rose-deep) !important;
  font-weight: 700;
  font-size: .95rem;
  padding: .8rem 2rem;
  border-radius: 99px;
  transition: all var(--transition);
  border: 2px solid white;
}
.btn-primary:hover {
  background: var(--rose-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: white !important;
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 2rem;
  border-radius: 99px;
  border: 2px solid rgba(255,255,255,.6);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: white;
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Hero logo */
.hero-logo-wrap {
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.22), 0 0 0 8px rgba(255,255,255,.2);
  animation: floatRibbon 4s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-logo-img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
@keyframes floatRibbon {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-14px) scale(1.02); }
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ── Boutons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1.8rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-rose {
  background: var(--rose-mid);
  color: white;
}
.btn-rose:hover { background: var(--rose-deep); color: white; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-rose-outline {
  background: transparent;
  color: var(--rose-mid);
  border: 2px solid var(--rose-border);
}
.btn-rose-outline:hover { background: var(--rose-pale); border-color: var(--rose-light); }
.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }
.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn svg { width: 16px; height: 16px; }

/* ── Cards ─────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.cards-grid-2 {
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-light);
}

.card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--rose-pale);
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-image img { transform: scale(1.04); }
.card-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-light);
}
.card-image-placeholder svg { width: 48px; height: 48px; }

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-tag {
  display: inline-block;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rose-warm);
  background: var(--rose-pale);
  padding: .25rem .75rem;
  border-radius: 99px;
  margin-bottom: .85rem;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .75rem;
  line-height: 1.3;
  flex: 1;
}
.card-title a { color: inherit; }
.card-title a:hover { color: var(--rose-deep); }
.card-excerpt {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.card-date {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--text-muted);
}
.card-date svg { width: 13px; height: 13px; }
.card-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--rose-mid);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: .6rem; color: var(--rose-deep); }
.card-link svg { width: 14px; height: 14px; }

/* ── Event card spécifique ────────────────────────────────────── */
.event-card .card-date-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: white;
  border-radius: var(--radius-sm);
  padding: .5rem .75rem;
  text-align: center;
  box-shadow: var(--shadow);
  line-height: 1.2;
}
.date-badge-day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
}
.date-badge-month {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.event-lieu {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.event-lieu svg { width: 13px; height: 13px; color: var(--rose-warm); flex-shrink: 0; }

/* ── Stats / Chiffres ──────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-mid) 100%);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* ── CTA Banner ────────────────────────────────────────────────── */
.cta-banner {
  background: var(--rose-pale);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  border: 1px solid var(--rose-border);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--rose-light) 0%, transparent 70%);
  top: -100px; right: -50px;
  opacity: .4;
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Article Hero ──────────────────────────────────────────────── */
.article-hero {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-warm) 100%);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.article-hero-inner {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.article-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}

.article-hero-breadcrumb a {
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}

.article-hero-breadcrumb a:hover { color: white; }
.article-hero-breadcrumb span { color: rgba(255,255,255,.4); }
.article-hero-breadcrumb svg { width: 12px; height: 12px; flex-shrink: 0; }

.article-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: white;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .38rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,.3);
}

.article-hero-text {
  animation: fadeUp .7s ease both;
}

.article-hero-visual {
  animation: fadeUp .7s ease .15s both;
}

.article-hero-text h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.75);
  font-size: .88rem;
}

/* Logo flottant */
.article-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.article-hero-logo-wrap {
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  width: 220px;
  height: 220px;
  min-width: 220px;
  min-height: 220px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.2), 0 0 0 6px rgba(255,255,255,.18);
  animation: floatRibbon 4s ease-in-out infinite;
}

.article-hero-logo-img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
  flex-shrink: 0;
}

.article-hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}

.article-hero-wave svg { display: block; width: 100%; }

/* ── Article Body — composants riches ──────────────────────────── */

/* Paragraphe d'accroche */
.article-body .lead,
.article-body p.lead {
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--rose-deep);
  margin-bottom: 2.5rem;
  padding-left: 1.4rem;
  border-left: 3px solid var(--rose-mid);
  font-style: italic;
}

/* Pull quote */
.article-body .pull-quote {
  margin: 3rem -1rem;
  padding: 2.4rem 2.8rem;
  background: linear-gradient(135deg, var(--rose-pale) 0%, #fce8f0 100%);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.article-body .pull-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: .7;
  color: var(--rose-mid);
  opacity: .13;
  position: absolute;
  top: -.3rem; left: 1rem;
  pointer-events: none;
}

.article-body .pull-quote p {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--rose-deep);
  margin-bottom: .85rem;
  position: relative;
}

.article-body .pull-quote cite {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* Bande de statistiques */
.article-body .stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rose-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 3rem 0;
}

.article-body .stats-strip .stat {
  background: var(--rose-pale);
  padding: 1.8rem 1rem;
  text-align: center;
  transition: background var(--transition);
}

.article-body .stats-strip .stat:hover { background: #fce8f0; }

.article-body .stats-strip .stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rose-mid);
  display: block;
  line-height: 1;
  margin-bottom: .4rem;
}

.article-body .stats-strip .stat .label {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Encadré ruban (ribbon) */
.article-body .ribbon {
  background: var(--rose-pale);
  border-left: 4px solid var(--rose-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.6rem 2rem;
  margin: 2.5rem 0;
}

.article-body .ribbon h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: .85rem;
  color: var(--rose-deep);
}

.article-body .ribbon p {
  margin: 0;
  font-size: .96rem;
  color: var(--text-body);
}

/* Bandeau de sensibilisation */
.article-body .awareness-banner {
  margin: 3.5rem -1.5rem;
  padding: 2.2rem 3rem;
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-mid) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.article-body .awareness-banner::before,
.article-body .awareness-banner::after {
  content: '🎀';
  font-size: 2.2rem;
  position: absolute;
  top: 50%; transform: translateY(-50%);
  opacity: .25;
}

.article-body .awareness-banner::before { left: 2rem; }
.article-body .awareness-banner::after  { right: 2rem; }

.article-body .awareness-banner p {
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}

.article-body .awareness-banner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: .5rem;
  color: #fff;
}

/* CTA block */
.article-body .cta-block {
  text-align: center;
  margin: 3.5rem 0 0;
  padding: 2.8rem 2rem;
  border: 1.5px solid var(--rose-border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.article-body .cta-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: .65rem;
  color: var(--text);
}

.article-body .cta-block p {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.article-body .cta-block .btn {
  background: var(--rose-mid);
  color: #fff;
  padding: .85rem 2.2rem;
  border-radius: 99px;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(181,48,90,.3);
  transition: all var(--transition);
}

.article-body .cta-block .btn:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139,26,74,.38);
}

/* Carte thématique (ex : montagne) */
.article-body .theme-card {
  margin: 2.5rem 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, #263e28 0%, #3d5e40 40%, #5a7a5c 100%);
  padding: 2.4rem 2rem;
  position: relative;
  color: #fff;
}

.article-body .theme-card::before {
  content: attr(data-icon);
  position: absolute;
  right: 1.2rem; bottom: -.5rem;
  font-size: 6rem;
  opacity: .1;
}

.article-body .theme-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: .85rem;
  color: #c8e6c9;
}

.article-body .theme-card p {
  color: rgba(255,255,255,.8);
  font-size: .96rem;
  line-height: 1.75;
  margin: 0;
}

.article-body .theme-card .badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 99px;
  padding: .25rem .8rem;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .9rem;
}

/* H2 dans article body : trait décoratif */
.article-body h2 {
  position: relative;
  padding-bottom: .65rem;
  margin: 2.8rem 0 1.1rem;
}

.article-body h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--rose-mid);
  border-radius: 99px;
}

/* ─── Responsive article-hero ──────────────────────────────────── */
@media (max-width: 1024px) {
  .article-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .article-hero-breadcrumb { justify-content: center; }
  .article-hero-badge { margin-left: auto; margin-right: auto; }
  .article-hero-meta { justify-content: center; }
  .article-hero-visual { order: -1; }
  .article-hero-logo-wrap { width: 160px; height: 160px; }
}

@media (max-width: 768px) {
  .article-hero { padding: 6rem 0 4.5rem; }
  .article-hero-logo-wrap { width: 130px; height: 130px; }
  .article-body .pull-quote { margin: 2.5rem -.5rem; padding: 2rem 1.4rem; }
  .article-body .stats-strip { grid-template-columns: 1fr; }
  .article-body .awareness-banner { margin: 2.5rem -1.2rem; padding: 1.8rem 1.5rem; }
  .article-body .awareness-banner::before,
  .article-body .awareness-banner::after { display: none; }
}

/* ── Page Hero (secondaire) ────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #5a0f2e 0%, var(--rose-deep) 30%, var(--rose-mid) 65%, var(--rose-warm) 100%);
  padding: 7rem 0 6rem;
  min-height: clamp(220px, 28vh, 420px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1920px) {
  .page-hero { padding: 10rem 0 9rem; min-height: clamp(320px, 32vh, 560px); }
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-42%);
  width: 160px;
  height: 160px;
  background: url('/assets/img/wwang_040522_31.png') no-repeat center / contain;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 900px) { .page-hero::before { display: none; } }
.page-hero h1 { color: white; position: relative; z-index: 1; margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.1rem; position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

.page-hero-logo {
  position: absolute;
  right: max(4%, calc((100vw - 1200px) / 2 + 3rem));
  top: 50%;
  transform: translateY(-50%);
  margin-top: -2rem;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 50px rgba(0,0,0,.2), 0 0 0 6px rgba(255,255,255,.18);
  animation: floatRibbon 4s ease-in-out infinite;
  z-index: 2;
}
.page-hero-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}
@media (max-width: 900px) { .page-hero-logo { display: none; } }

.page-hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  z-index: 2;
}
.page-hero-wave svg { display: block; width: 100%; }

/* ── Breadcrumb ────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.breadcrumb a { color: var(--rose-mid); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ── Article / Page de contenu ─────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.article-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/7;
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-header { margin-bottom: 2rem; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
}
.article-body h2 { margin: 2rem 0 1rem; }
.article-body h3 { margin: 1.5rem 0 .75rem; }
.article-body p  { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-body li { margin-bottom: .5rem; }
.article-body blockquote {
  border-left: 4px solid var(--rose-light);
  background: var(--rose-pale);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--rose-deep);
}
.article-body img {
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
  max-width: 100%;
}

/* Sidebar */
.sidebar {}
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--rose-pale);
  color: var(--rose-deep);
}

/* ── Formulaire de contact ─────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--rose-border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose-mid);
  box-shadow: 0 0 0 3px rgba(181,48,90,.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 150px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.required { color: var(--rose-deep); font-weight: 700; }

.contact-info-card {
  background: linear-gradient(145deg, var(--rose-deep) 0%, var(--rose-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: white;
}
.contact-info-card h3 { color: white; margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: #FFD6E8; }
.contact-info-text p:first-child { font-weight: 700; font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: .2rem; }
.contact-info-text p:last-child { color: white; margin: 0; }
.contact-info-text a { color: white; }
.contact-info-text a:hover { text-decoration: underline; }

/* ── Pagination ────────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 3rem 0 1rem;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px; height: 40px;
  padding: 0 .75rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--surface);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.page-btn:hover { border-color: var(--rose-light); color: var(--rose-mid); background: var(--rose-pale); }
.page-btn.active { background: var(--rose-mid); color: white; border-color: var(--rose-mid); }
.page-btn.disabled { opacity: .4; pointer-events: none; }

/* ── Alertes ────────────────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.alert-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.alert-error   { background: #FFF1F2; color: #9B1A4A; border: 1px solid var(--rose-border); }
.alert-info    { background: var(--rose-pale); color: var(--rose-deep); border: 1px solid var(--rose-border); }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
  position: relative;
  margin-top: 4rem;
}
.footer-wave {
  position: absolute;
  top: -1px; left: 0; right: 0;
  line-height: 0;
  transform: rotate(180deg);
  overflow: hidden;
}
.footer-wave svg { display: block; width: 100%; height: 80px; }

.footer-body { padding-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: white !important;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-logo strong { color: var(--rose-light); font-weight: 700; }
.footer-logo-badge {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}
.footer-tagline {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7) !important;
  transition: all var(--transition);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--rose-mid); color: white !important; transform: translateY(-2px); }

.footer-col h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--rose-light); }
.footer-col address { font-style: normal; }
.footer-col address p {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
  font-size: .9rem;
}
.footer-col address svg { width: 15px; height: 15px; color: var(--rose-light); flex-shrink: 0; }
.footer-col address a {
  color: rgba(255,255,255,.7);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.footer-col address a:hover { color: var(--rose-light); }

.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .83rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--rose-light); }

/* ── No content placeholder ────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.empty-state svg { width: 64px; height: 64px; color: var(--rose-border); margin: 0 auto 1rem; }
.empty-state h3 { font-size: 1.3rem; color: var(--text-muted); margin-bottom: .5rem; }

/* ── Carrousel ─────────────────────────────────────────────────── */
.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: var(--rose-pale);
  user-select: none;
}
.carousel-track {
  display: flex;
  flex-wrap: nowrap;          /* crucial : empêche le retour à la ligne */
  will-change: transform;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}
.carousel-slide {
  flex: 0 0 100%;             /* chaque slide = exactement 100% de largeur */
  min-width: 0;
  overflow: hidden;
}
.carousel-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: contain;
  background: var(--rose-pale);
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  z-index: 10;
  color: var(--rose-deep);
}
.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }
.carousel-btn svg  { width: 20px; height: 20px; }

.carousel-counter {
  position: absolute;
  top: .85rem;
  right: .85rem;
  background: rgba(0,0,0,.45);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 99px;
  backdrop-filter: blur(4px);
  z-index: 10;
  letter-spacing: .05em;
}
.carousel-dots {
  position: absolute;
  bottom: .85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
  z-index: 10;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.carousel-dot.active {
  background: white;
  width: 22px;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-slide img { aspect-ratio: 4 / 3; }
  .carousel-btn { width: 44px; height: 44px; }
  .carousel-btn svg { width: 16px; height: 16px; }
}

/* ── Scroll top ────────────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--rose-mid);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: var(--rose-deep); transform: translateY(-3px); }
#scrollTop svg { width: 18px; height: 18px; }

/* ── Animations ────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-delay-1 { animation-delay: .1s; }
.fade-up-delay-2 { animation-delay: .2s; }
.fade-up-delay-3 { animation-delay: .3s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .contact-layout  { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-content    { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-actions    { justify-content: center; }
  .hero-visual     { display: flex; justify-content: center; order: -1; } /* logo AVANT le texte */
  .hero-logo-wrap  { width: 220px; height: 220px; }
  .hero-logo-img   { width: 180px; height: 180px; }
}

/* ── Menu mobile ──────────────────────────────────────────────────
   Seuil relevé à 1024px (au lieu de 768px) : avec 8 items (liens + CTA don +
   bouton contact + recherche), la barre desktop se met à chevaucher/tronquer
   entre 768 et ~1000px de large — mieux vaut basculer plus tôt sur le tiroir
   mobile que de laisser la barre se comprimer. */
@media (max-width: 1024px) {
  .hamburger { display: flex; position: relative; z-index: 1001; }
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    height: auto;        /* écrase le height: 72px du CSS desktop */
    width: 100%;
    background: rgba(255,255,255,.98);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    gap: .5rem;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(20px);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1001;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link { padding: .9rem 1rem; border-radius: var(--radius-sm); font-size: 1.05rem; }
  .nav-cta  { margin: .5rem 0 0; text-align: center; border-radius: var(--radius-sm); }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 7rem 0 4rem; }

  /* ── Grilles ── */
  .cards-grid, .cards-grid-2 { grid-template-columns: 1fr; }
  .temoignages-grid          { grid-template-columns: 1fr; }

  /* ── Divers ── */
  .cta-banner { padding: 2.5rem 1.5rem; }
  /* Footer sur 2 colonnes : la marque (logo/tagline/réseaux) prend toute la largeur,
     les 3 blocs de liens se répartissent sur 2 colonnes pour limiter le scroll. */
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 1.75rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom .container { flex-direction: column; gap: .5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* ── Nouveaux composants ── */
  .evt-tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .evt-tabs::-webkit-scrollbar { display: none; }

  .share-bar, .cal-bar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: .5rem;
  }
  .share-bar-label, .cal-bar-label { width: 100%; }

  .global-search-form  { max-width: 100%; }
  .global-search-wrap  { flex-wrap: wrap; }
  .global-search-wrap .btn { width: 100%; justify-content: center; }

  .search-page-form .global-search-wrap { flex-wrap: wrap; }
  .search-page-form .search-clear { right: .75rem; }

  .legal-toc ol { grid-template-columns: 1fr; }

  /* ── FullCalendar mobile ── */
  #fullCalendarEl { padding: .75rem; }
  .fc .fc-toolbar { flex-direction: column; gap: .5rem; }
  .fc .fc-toolbar-title { font-size: 1.1rem; }
}

/* ── Témoignages ────────────────────────────────────────────────── */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.temoignage-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}

.temoignage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-light);
}

.temoignage-stars { display: flex; gap: 2px; }
.star { font-size: 1.15rem; }
.star-on  { color: #D4A017; }
.star-off { color: var(--border); }

.temo-section-label {
  font-weight: 700;
  font-size: .9rem;
  color: var(--rose-mid);
  margin: 0 0 .4rem;
  font-family: var(--font-body);
}

.temoignage-message {
  font-size: .97rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
  font-style: normal;
}

.temoignage-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .9rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: auto;
}

.temoignage-date {
  font-size: .8rem;
  color: var(--text-muted);
}

.temoignage-brand {
  font-size: .85rem;
  color: var(--rose-mid);
  font-weight: 600;
}

/* Carrousel horizontal — page /temoignages.php (nombre de tuiles réglable en admin) */
.temo-scroll-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.temo-scroll-viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.temo-scroll-viewport::-webkit-scrollbar { display: none; }

.temo-scroll-track {
  display: flex;
  gap: 1.75rem;
}

.temo-scroll-card {
  flex: 0 0 calc((100% - 1.75rem * (var(--temo-visible, 3) - 1)) / var(--temo-visible, 3));
  min-width: 260px;
  scroll-snap-align: start;
}

.temo-arrow-disabled { opacity: .35; pointer-events: none; }

@media (max-width: 900px) {
  .temo-scroll-card { flex-basis: calc((100% - 1.75rem) / 2); }
}

@media (max-width: 640px) {
  .temo-scroll-card { flex-basis: 88%; }
  .temo-scroll-wrap { gap: .5rem; }
}

/* Formulaire témoignage */
.temoignage-form-wrap {
  max-width: 640px;
}

.temoignage-form { display: flex; flex-direction: column; gap: 1.25rem; }

.star-picker {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.star-picker input[type="radio"] { display: none; }

.star-picker label {
  font-size: 1.8rem;
  color: var(--border);
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}

.star-picker label:hover,
.star-picker label:hover ~ label,
.star-picker input:checked ~ label { color: #D4A017; }

/* Section témoignages homepage */
.temoignages-home-section {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.temoignages-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
}

.temoignages-carousel-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius);
}

.temoignages-carousel-track {
  display: flex;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.temoignage-card-home {
  flex: 0 0 100%;
  min-width: 0;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.4rem 2.8rem;
  border-top: 3px solid var(--rose-mid);
  box-shadow: var(--shadow);
}

.temo-section {
  margin-bottom: 1rem;
}

.temoignage-message-home {
  font-size: .97rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: .3rem 0 0;
}

.temoignage-footer-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.temoignage-author-home {
  font-weight: 700;
  color: var(--rose-deep);
  font-size: .92rem;
}

.temoignage-brand {
  font-size: .85rem;
  color: var(--rose-mid);
  font-weight: 600;
}

.temo-arrow {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--rose-deep);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.temo-arrow:hover {
  background: var(--rose-pale);
  border-color: var(--rose-light);
  transform: scale(1.08);
  box-shadow: var(--shadow);
}

.temo-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}

.temo-dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--rose-border);
  border: none; cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.temo-dot-active {
  background: var(--rose-mid);
  width: 22px;
}

@media (max-width: 768px) {
  .temoignages-grid { grid-template-columns: 1fr; }
  .temoignage-card-home { padding: 1.8rem 1.4rem; }
  .temo-arrow { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  /* ── Héros ── */
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-logo-wrap { width: 170px; height: 170px; }
  .hero-logo-img  { width: 140px; height: 140px; }
  .logo-img-header { height: 46px; }

  /* ── Container ── */
  .container { padding: 0 1rem; }

  /* ── Footer ── */
  .footer-tagline { font-size: .78rem; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* ── Partage / Calendrier ── */
  .share-btn, .cal-btn { font-size: .75rem; padding: .38rem .7rem; }
  .share-btn svg, .cal-btn svg { width: 13px; height: 13px; }

  /* ── Onglets événements ── */
  .evt-tab { padding: .5rem 1rem; font-size: .82rem; }

  /* ── Résultats recherche ── */
  .sri-thumb { display: none; }
  .search-group-header { padding: .75rem 1rem; }
  .sri { padding: .85rem 1rem; }
}

/* ── Page Mentions légales ───────────────────────────────────────────── */
.legal-toc {
  background: var(--rose-pale);
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  max-width: 680px;
}

.legal-toc-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--rose-deep);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem .5rem;
}

.legal-toc a {
  color: var(--text-body);
  font-size: .9rem;
  text-decoration: none;
  transition: color var(--transition);
}

.legal-toc a:hover { color: var(--rose-deep); text-decoration: underline; }

.legal-content {
  max-width: 780px;
}

.legal-section {
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--rose-border);
}

.legal-section:first-child { border-top: none; padding-top: 0; }

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rose-deep);
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.25rem 0 .5rem;
}

.legal-section p,
.legal-section li {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.75;
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.4rem;
  margin: .5rem 0 1rem;
}

.legal-section li { margin-bottom: .3rem; }

.legal-section a {
  color: var(--rose-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-placeholder {
  background: #fff3cd;
  color: #856404;
  padding: .1rem .35rem;
  border-radius: 4px;
  font-size: .85rem;
  font-style: italic;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--rose-border);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}

.legal-table th {
  background: var(--rose-pale);
  color: var(--rose-deep);
  font-weight: 600;
  padding: .7rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--rose-border);
}

.legal-table td {
  padding: .7rem 1rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--rose-border);
  vertical-align: top;
}

.legal-table tr:last-child td { border-bottom: none; }
.legal-table code {
  font-family: monospace;
  font-size: .8rem;
  background: var(--rose-pale);
  padding: .1rem .35rem;
  border-radius: 4px;
}

.legal-date {
  margin-top: 1.5rem;
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 640px) {
  .legal-toc ol { grid-template-columns: 1fr; }
}

/* ── Onglets événements ──────────────────────────────────────────────── */
.evt-tabs {
  display: flex;
  gap: .4rem;
  margin-bottom: 2.5rem;
  background: white;
  padding: .4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  width: fit-content;
}

.evt-tab {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.35rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-body);
}

.evt-tab svg { width: 15px; height: 15px; }
.evt-tab:hover { color: var(--rose-mid); background: var(--rose-pale); }
.evt-tab.active { background: var(--rose-mid); color: white; }

/* ── FullCalendar overrides ──────────────────────────────────────────── */
#fullCalendarEl {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(139,26,74,.06);
}

.fc .fc-toolbar-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
}

.fc .fc-button-primary {
  background: var(--rose-mid) !important;
  border-color: var(--rose-mid) !important;
  font-family: var(--font-body);
  font-size: .85rem;
  border-radius: 8px !important;
}

.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
  background: var(--rose-deep) !important;
  border-color: var(--rose-deep) !important;
}

.fc .fc-daygrid-day-number,
.fc .fc-col-header-cell-cushion { color: var(--text); text-decoration: none; }

.fc .fc-day-today { background: var(--rose-pale) !important; }

.fc .fc-event {
  border-radius: 5px !important;
  font-size: .78rem;
  cursor: pointer;
}

/* ── Carte OpenStreetMap ─────────────────────────────────────────────── */
.osm-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.osm-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--rose-pale);
  border-bottom: 1px solid var(--rose-border);
  flex-wrap: wrap;
}

.osm-header svg {
  width: 22px;
  height: 22px;
  color: var(--rose-mid);
  flex-shrink: 0;
}

.osm-header h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--rose-deep);
  margin: 0 0 .15rem;
}

.osm-header p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}

.osm-link { margin-left: auto; white-space: nowrap; }

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

@media (max-width: 640px) {
  .osm-header { flex-direction: column; align-items: flex-start; }
  .osm-link { margin-left: 0; }
  .osm-map iframe { height: 280px; }
}

/* ── Coverflow 3D (articles) ─────────────────────────────────────────── */
.cfw-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.5rem;
}

.cfw-container {
  flex: 1;
  position: relative;
  height: 500px;
  perspective: 1200px;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.cfw-slide {
  position: absolute;
  width: 380px;
  left: 50%;
  margin-left: -190px; /* centrage */
  top: 0;
  transition:
    transform .48s cubic-bezier(.4,0,.2,1),
    filter    .48s ease,
    opacity   .35s ease;
  transform-origin: center top;
  cursor: pointer;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* La carte centrale n'est pas cliquable (déjà au centre) */
.cfw-slide[style*="z-index: 20"],
.cfw-slide[style*="z-index:20"] {
  cursor: default;
}

/* Boutons navigation */
.cfw-btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--rose-deep);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  transition: all var(--transition);
  z-index: 30;
}

.cfw-btn:hover {
  background: var(--rose-mid);
  border-color: var(--rose-mid);
  color: white;
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(181,48,90,.28);
}

.cfw-btn svg { width: 20px; height: 20px; }

/* Dots */
.cfw-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 1.5rem;
}

.cfw-dot {
  width: 7px; height: 7px;
  border-radius: 99px;
  background: var(--rose-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.cfw-dot-active { background: var(--rose-mid); width: 22px; }

.cfw-counter {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* Mobile : stage plus bas, cartes plus étroites */
@media (max-width: 767px) {
  .cfw-container {
    height: 380px;
    perspective: none; /* désactive la 3D sur mobile */
  }
  .cfw-slide { width: 260px; margin-left: -130px; }
  .cfw-btn   { width: 38px; height: 38px; }
  .cfw-btn svg { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
  .cfw-container { height: 360px; }
  .cfw-slide { width: 240px; margin-left: -120px; }
  .cfw-wrap  { gap: .3rem; }
}

/* ── Carrousel Articles ──────────────────────────────────────────────── */
.ac-outer {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.ac-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.ac-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.ac-slide {
  flex: 0 0 calc((100% - 3rem) / 3); /* 3 visibles, 2 gaps */
  min-width: 0;
}

/* Grille tuiles articles */
.articles-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
@media (max-width: 800px)  { .articles-tiles-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); } }
@media (max-width: 600px)  { .articles-tiles-grid { grid-template-columns: 1fr; } }

/* Card */
.ac-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ac-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(139,26,74,.12);
}

.ac-card-img-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--rose-pale);
}

.ac-card-img-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s ease;
}

.ac-card:hover .ac-card-img-link img {
  transform: scale(1.05);
}

.ac-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ac-card-placeholder img {
  width: 55%;
  max-width: 140px;
  opacity: .5;
}

.ac-card-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--rose-mid);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .22rem .65rem;
  border-radius: 99px;
  backdrop-filter: blur(4px);
}

.ac-card-body {
  padding: 1.25rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}

.ac-card-date {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ac-card-date svg { width: 13px; height: 13px; flex-shrink: 0; }

.ac-card-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.ac-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

.ac-card-title a:hover { color: var(--rose-deep); }

.ac-card-excerpt {
  font-size: .855rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin: 0;
}

.ac-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--rose-mid);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: .25rem;
  transition: color var(--transition), gap var(--transition);
}

.ac-card-cta:hover { color: var(--rose-deep); gap: .65rem; }
.ac-card-cta svg   { width: 14px; height: 14px; }

/* Boutons navigation */
.ac-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--rose-deep);
  box-shadow: 0 2px 10px rgba(0,0,0,.09);
  transition: all var(--transition);
}

.ac-btn:hover:not(:disabled) {
  background: var(--rose-mid);
  border-color: var(--rose-mid);
  color: white;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(181,48,90,.25);
}

.ac-btn:disabled { opacity: .3; cursor: default; }
.ac-btn svg { width: 20px; height: 20px; }

/* Dots */
.ac-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.75rem;
}

.ac-dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--rose-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.ac-dot-active { background: var(--rose-mid); width: 26px; }

/* Responsive */
@media (max-width: 1024px) {
  .ac-slide { flex: 0 0 calc((100% - 1.5rem) / 2); }
}

@media (max-width: 640px) {
  .ac-slide { flex: 0 0 calc(100% - .5rem); }
  .ac-btn   { width: 44px; height: 44px; }
  .ac-btn svg { width: 16px; height: 16px; }
  .ac-outer { gap: .4rem; }
}

/* ── Section Mission (accueil) ───────────────────────────────────────── */
.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mission-tile {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.mission-tile-icon {
  width: 44px;
  height: 44px;
  background: var(--rose-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.mission-tile h4 {
  font-size: 1rem;
  margin-bottom: .35rem;
  color: var(--text);
}

.mission-tile p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .mission-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .mission-tiles { gap: .75rem; }
}

@media (max-width: 480px) {
  .mission-tiles  { grid-template-columns: 1fr; }
  .mission-tile   { padding: 1.1rem; }
}

/* ── Filtres catégories articles ────────────────────────────────────── */
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}

.filter-tag {
  padding: .45rem 1.1rem;
  border-radius: 99px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--rose-border);
  color: var(--text-muted);
  background: white;
  transition: all var(--transition);
}

.filter-tag:hover {
  border-color: var(--rose-mid);
  color: var(--rose-mid);
  background: var(--rose-pale);
}

.filter-tag.active {
  background: var(--rose-mid);
  border-color: var(--rose-mid);
  color: white;
}

.filter-result-count {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.filter-result-count strong { color: var(--rose-deep); }

.article-cat-badge {
  font-weight: 700;
  color: var(--rose-light);
}

/* ── Signature auteur (bas d'article) ───────────────────────────────── */
.article-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--rose-pale);
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-lg);
  margin-top: 2.5rem;
}

.article-signature-avatar {
  width: 44px;
  height: 44px;
  background: var(--rose-mid);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.article-signature-by {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  font-weight: 600;
}

.article-signature-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rose-deep);
}

/* ── Partage social ──────────────────────────────────────────────────── */
.share-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
  padding: 1.25rem 1.5rem;
  background: var(--rose-pale);
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-lg);
  margin-top: 2.5rem;
}

.share-bar-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-right: .4rem;
  flex-shrink: 0;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  font-family: var(--font-body);
}

.share-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.share-btn:hover { opacity: .85; transform: translateY(-1px); }

.share-btn--fb   { background: #1877F2; color: white; }
.share-btn--wa   { background: #25D366; color: white; }
.share-btn--tw   { background: #000; color: white; }
.share-btn--copy { background: white; color: var(--text); border: 1.5px solid var(--border); }
.share-btn--copy.copied { background: #dcfce7; color: #166534; border-color: #bbf7d0; }

/* ── Agenda (iCal / Google Calendar) ────────────────────────────────── */
.cal-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1.25rem 1.5rem;
  background: var(--rose-pale);
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-lg);
  margin-top: 2.5rem;
}

.cal-bar-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-right: .25rem;
}

.cal-bar-label svg { width: 16px; height: 16px; }

.cal-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.1rem;
  border-radius: 99px;
  font-size: .83rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
}

.cal-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.cal-btn:hover { opacity: .85; transform: translateY(-1px); }

.cal-btn--google { background: white; color: var(--text); border: 1.5px solid var(--border); box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.cal-btn--ics    { background: var(--rose-mid); color: white; }

@media (max-width: 560px) {
  .share-bar, .cal-bar { gap: .5rem; }
  .share-btn, .cal-btn { font-size: .78rem; padding: .4rem .8rem; }
}

/* ── Barre de recherche ──────────────────────────────────────────────── */
.search-bar {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.75rem;
  max-width: 620px;
}

.search-input-wrap {
  position: relative;
  flex: 1;
}

.search-icon {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-input-wrap input[type="search"] {
  width: 100%;
  padding: .7rem 2.5rem .7rem 2.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-body);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.search-input-wrap input[type="search"]:focus {
  border-color: var(--rose-mid);
  box-shadow: 0 0 0 3px rgba(185,65,112,.12);
  outline: none;
}

.search-clear {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.3rem;
  line-height: 1;
  text-decoration: none;
  padding: .1rem .3rem;
  border-radius: 4px;
  transition: color var(--transition);
}

.search-clear:hover { color: var(--rose-deep); }

.search-results-count {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.search-results-count strong { color: var(--rose-deep); }
.search-results-count a { color: var(--rose-mid); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 560px) {
  .search-bar { flex-direction: column; }
  .search-bar .btn { width: 100%; justify-content: center; }
}

/* ── Recherche globale (accueil + header) ────────────────────────────── */
.global-search-section {
  padding: 2rem 0 2.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--rose-border);
}

.global-search-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: .9rem;
  letter-spacing: .02em;
}

.global-search-form {
  max-width: 680px;
  margin: 0 auto;
}

.global-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.global-search-icon {
  position: absolute;
  left: 1rem;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  pointer-events: none;
  flex-shrink: 0;
}

.global-search-wrap input[type="search"] {
  flex: 1;
  padding: .85rem 1.2rem .85rem 3rem;
  font-size: 1rem;
  font-family: var(--font-body);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.global-search-wrap input[type="search"]:focus {
  border-color: var(--rose-mid);
  box-shadow: 0 0 0 3px rgba(185,65,112,.12);
  outline: none;
}

/* Icône recherche dans le header */
.nav-search { position: relative; display: flex; align-items: center; }

.search-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.search-nav-btn svg { width: 18px; height: 18px; }
.search-nav-btn:hover,
.nav-search.active .search-nav-btn { background: var(--rose-pale); color: var(--rose-deep); }

/* Champ de recherche déroulant */
.nav-search-form {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid var(--rose-border);
  border-radius: 999px;
  padding: .2rem .3rem .2rem .9rem;
  width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: width .3s cubic-bezier(.4,0,.2,1), opacity .2s;
  z-index: 200;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(107,16,53,.1);
}
.nav-search.open .nav-search-form {
  width: 260px;
  opacity: 1;
  pointer-events: auto;
}
.nav-search-form input[type="search"] {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: .9rem;
  color: var(--text-body);
  width: 100%;
  min-width: 0;
}
.nav-search-form input[type="search"]::placeholder { color: var(--text-muted); }
.nav-search-close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.nav-search-close:hover { background: var(--rose-pale); color: var(--rose-deep); }
.nav-search-close svg { width: 14px; height: 14px; }

/* Mobile : champ inline dans le menu déroulant
   Seuil aligné sur celui du menu hamburger (.main-nav, 1024px) : les deux doivent
   basculer ensemble, sinon la recherche passe en mode mobile alors que la barre
   de navigation est encore en mode desktop. */
@media (max-width: 1024px) {
  .nav-search { width: 100%; flex-direction: column; align-items: stretch; }
  .nav-search-form {
    position: static;
    transform: none;
    width: 100% !important;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    border-radius: var(--radius-sm);
    box-shadow: none;
    overflow: hidden;
    transition: max-height .3s ease, opacity .2s, padding .2s;
    padding: 0 .5rem;
    margin-top: .25rem;
  }
  .nav-search.open .nav-search-form {
    max-height: 60px;
    opacity: 1;
    pointer-events: auto;
    padding: .4rem .5rem;
  }
  .search-nav-btn { width: 100%; justify-content: flex-start; border-radius: var(--radius-sm); padding: .9rem 1rem; }
  .search-nav-btn::after { content: ' Rechercher'; font-size: 1.05rem; font-weight: 500; }
}

/* ── Page search.php ─────────────────────────────────────────────────── */
.search-page-form {
  max-width: 100%;
  margin-bottom: 2.5rem;
}

.search-page-form .global-search-wrap input[type="search"] {
  font-size: 1.05rem;
  padding: .95rem 3rem .95rem 3rem;
}

.search-page-form .search-clear {
  position: absolute;
  right: 5.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.3rem;
  text-decoration: none;
  padding: .1rem .3rem;
  border-radius: 4px;
  transition: color var(--transition);
}

.search-page-form .search-clear:hover { color: var(--rose-deep); }

.search-total-count {
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.search-total-count strong { color: var(--rose-deep); font-size: 1.1rem; }
.search-total-count em { font-style: normal; font-weight: 600; color: var(--text); }

.search-empty-state {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.search-empty-state svg {
  width: 52px;
  height: 52px;
  color: var(--rose-border);
  margin-bottom: 1.25rem;
}

.search-empty-state h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: .5rem;
}

.search-empty-state p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1.75rem;
}

.search-suggestions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.search-suggestions a {
  color: var(--rose-mid);
  text-decoration: none;
  font-size: .9rem;
  transition: color var(--transition);
}

.search-suggestions a:hover { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 3px; }

/* Groupe de résultats */
.search-group {
  margin-bottom: 2.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.search-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: var(--rose-pale);
  border-bottom: 1px solid var(--rose-border);
}

.search-group-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rose-deep);
  margin: 0;
}

.search-group-title svg { width: 18px; height: 18px; }

.search-group-badge {
  background: var(--rose-mid);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 99px;
  min-width: 24px;
  text-align: center;
}

/* Item de résultat */
.sri {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}

.sri:last-child { border-bottom: none; }
.sri:hover { background: var(--bg-alt); }

.sri-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.sri-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sri-body { flex: 1; min-width: 0; }

.sri-type {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .15rem .5rem;
  border-radius: 4px;
  margin-bottom: .3rem;
}

.sri-type--article { background: #fde8ef; color: #8b1a4a; }
.sri-type--event   { background: #e8f0fd; color: #1a4a8b; }
.sri-type--temo    { background: #fdf3e8; color: #8b5a1a; }

.sri-stars { font-size: .85rem; margin-bottom: .2rem; }
.sri-stars .star-on  { color: var(--gold, #E8A045); }
.sri-stars .star-off { color: var(--rose-border); }

.sri-title {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sri:hover .sri-title { color: var(--rose-deep); }

.sri-excerpt {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sri-meta {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .3rem;
}

.sri-arrow {
  width: 16px;
  height: 16px;
  color: var(--rose-border);
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
}

.sri:hover .sri-arrow {
  color: var(--rose-mid);
  transform: translateX(3px);
}

.search-group-more {
  display: block;
  text-align: center;
  padding: .85rem;
  background: var(--bg-alt);
  color: var(--rose-mid);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  border-top: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}

.search-group-more:hover { background: var(--rose-pale); color: var(--rose-deep); }

@media (max-width: 560px) {
  .global-search-wrap { flex-wrap: wrap; }
  .global-search-wrap .btn { width: 100%; justify-content: center; }
  .sri-thumb { display: none; }
  .search-page-form .search-clear { right: .75rem; }
}

/* ── Page À propos ──────────────────────────────────────────────────── */

.missions-grid {
  display: grid;
  grid-template-columns: repeat(var(--missions-cols, 3), 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .missions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .missions-grid { grid-template-columns: 1fr; }
}

.timeline { position: relative; padding: 3rem 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--rose-border); transform: translateX(-50%); }
.timeline-item { display: flex; justify-content: flex-end; padding-right: calc(50% + 2rem); margin-bottom: 5rem; position: relative; }
.timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 2rem); }
.timeline-dot { position: absolute; left: 50%; top: 50%; width: 14px; height: 14px; background: var(--rose-mid); border-radius: 50%; transform: translateX(-50%) translateY(-50%); border: 3px solid white; box-shadow: 0 0 0 3px var(--rose-border); }
.timeline-content { background: white; border-radius: 12px; padding: 1.25rem 1.5rem; max-width: 380px; box-shadow: 0 2px 12px rgba(107,16,53,.08); }
.timeline-annee { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--rose-deep); line-height: 1; margin-bottom: .4rem; }
.timeline-event { color: var(--text-body); line-height: 1.7; font-size: .95rem; }
/* Photo intégrée dans la tuile — mobile uniquement */
.timeline-photo-mobile {
  display: none;
}

/* Photo côté opposé à la carte */
.timeline-photo-side {
  position: absolute;
  left: calc(50% + 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  width: calc(50% - 5rem);
  max-width: 300px;
  transition: opacity .7s ease, transform .7s ease;
}
.timeline-item:nth-child(even) .timeline-photo-side {
  left: auto;
  right: calc(50% + 2.5rem);
}
/* État caché — ajouté par JS uniquement */
.timeline-photo-side.photo-hidden {
  opacity: 0;
  transform: translateY(-50%) translateX(40px);
}
.timeline-item:nth-child(even) .timeline-photo-side.photo-hidden {
  transform: translateY(-50%) translateX(-40px);
}
.timeline-photo-side img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(107,16,53,.13);
  display: block;
}
.retro-logo-fallback img {
  object-fit: contain;
  padding: 1.5rem;
  background: var(--rose-pale);
}

@media (max-width: 768px) {
  .timeline::before { left: 1.2rem; }
  .timeline-item, .timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: 3.5rem; }
  .timeline-dot { left: 1.2rem; }
  .timeline-photo-side { display: none; }
  .timeline-photo-mobile {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: .85rem;
  }
}

.membres-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem auto 0;
}
.membre-card {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: 300px;
  min-width: 220px;
}
@media (max-width: 900px) { .membre-card { flex: 0 0 calc(50% - .75rem); } }
@media (max-width: 540px) { .membre-card { flex: 0 0 100%; max-width: 100%; } }
.membre-card { background: white; border-radius: 16px; padding: 2rem 1.5rem; text-align: center; box-shadow: 0 2px 16px rgba(107,16,53,.07); }
.membre-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--rose-mid), var(--rose-deep)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: white; overflow: hidden; }
.membre-avatar img { width: 100%; height: 100%; object-fit: cover; }
.membre-nom { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--rose-deep); margin-bottom: .25rem; }
.membre-role { font-size: .82rem; font-weight: 700; color: var(--rose-mid); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.membre-desc { color: var(--text-body); font-size: .9rem; line-height: 1.65; }

/* ── Partenaires ─────────────────────────────────────────────────────── */
.partenaires-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
  margin-top: 1rem;
}
.partenaire-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  max-width: 180px;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(107,16,53,.07);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  filter: grayscale(60%) opacity(.75);
  text-decoration: none;
}
a.partenaire-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107,16,53,.14);
  filter: grayscale(0%) opacity(1);
}
.partenaire-item img {
  max-height: 64px;
  max-width: 140px;
  width: auto;
  display: block;
  object-fit: contain;
}
.partenaire-nom {
  font-weight: 700;
  color: var(--rose-deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  text-align: center;
}

/* ── Créneaux escape game ────────────────────────────────────────────── */
.creneau-option {
  transition: border-color .15s, background .15s;
}
.creneau-option:hover:not(.creneau-complet) {
  border-color: var(--rose-mid) !important;
  background: var(--rose-pale) !important;
}
.creneau-complet {
  opacity: .55;
}

/* ── Honeypot anti-spam ──────────────────────────────────────────────── */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* ── Barre filtres + recherche (articles.php) ───────────────────────── */
.articles-filter-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.articles-filter-bar .filter-tags {
  margin-bottom: 0;
  flex: 1 1 auto;
}

.articles-search {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.articles-search-form {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid var(--rose-border);
  border-radius: 999px;
  padding: .2rem .3rem .2rem .9rem;
  width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: width .3s cubic-bezier(.4,0,.2,1), opacity .2s;
  z-index: 20;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(107,16,53,.1);
}

.articles-search.open .articles-search-form {
  width: 260px;
  opacity: 1;
  pointer-events: auto;
}

.articles-search-form input[type="search"] {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: .9rem;
  color: var(--text-body);
  width: 100%;
  min-width: 0;
}

.articles-search-form input[type="search"]::placeholder { color: var(--text-muted); }

@media (max-width: 600px) {
  .articles-filter-bar { flex-direction: column; align-items: stretch; }
  .articles-search { align-self: flex-end; }
  .articles-search-form {
    position: absolute;
    right: 0;
    width: 0;
  }
  .articles-search.open .articles-search-form { width: 220px; }
}

/* ── Pagination articles ─────────────────────────────────────────────── */
.articles-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 .6rem;
  border-radius: 99px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--rose-border);
  color: var(--text-muted);
  background: white;
  transition: all var(--transition);
  cursor: pointer;
  line-height: 1;
}

.page-btn:hover {
  border-color: var(--rose-mid);
  color: var(--rose-mid);
  background: var(--rose-pale);
}

.page-btn-active {
  background: var(--rose-mid);
  border-color: var(--rose-mid);
  color: white;
  pointer-events: none;
}

.page-btn-disabled {
  opacity: .35;
  pointer-events: none;
}

.page-ellipsis {
  border-color: transparent;
  background: transparent;
  pointer-events: none;
  color: var(--text-muted);
}
