/* ═══════════════════════════════════════════════════════
   A Tire d'Elles — Design System v2
   Police : Playfair Display (titres) + Nunito (corps)
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&family=Nunito:wght@400;600;700;800;900&display=swap');

/* ── Variables ── */
:root {
  --rose:        #C2185B;
  --rose-dark:   #880E4F;
  --rose-bright: #E91E8C;
  --rose-pale:   #FCE4EC;
  --rose-cream:  #FFF5F8;
  --navy:        #1C0F18;
  --text:        #2D1B2E;
  --muted:       #8A5A6E;
  --white:       #FFFFFF;
  --border:      #F5D6E5;

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body:    'Nunito', system-ui, sans-serif;

  --max-w: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 6px 32px rgba(176,0,74,0.10);
  --shadow-md: 0 12px 48px rgba(176,0,74,0.16);
  --shadow-lg: 0 24px 80px rgba(176,0,74,0.22);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Page transition ── */
body { animation: pageEnter 0.5s ease both; }
@keyframes pageEnter {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Scroll progress bar ── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--rose-dark), var(--rose-bright), #FF80AB);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 100px 0; }
.section--sm { padding: 64px 0; }
.text-rose { color: var(--rose); }
.text-center { text-align: center; }
.tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--rose-pale);
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--ff-heading); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
p  { font-size: 1rem; color: var(--muted); }
.lead { font-size: 1.15rem; line-height: 1.8; }

/* ═══════════════════════════════════════════
   ANIMATIONS KEYFRAMES
═══════════════════════════════════════════ */

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(2deg); }
  66%       { transform: translateY(-6px) rotate(-1deg); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes ribbonSway {
  0%, 100% { transform: rotate(-4deg) scale(1); }
  50%       { transform: rotate(4deg) scale(1.04); }
}
@keyframes waveFlow {
  0%   { d: path("M0,60 C150,100 350,0 540,60 C730,120 900,20 1080,60 L1080,120 L0,120 Z"); }
  50%  { d: path("M0,80 C150,20 350,100 540,40 C730,0 900,100 1080,80 L1080,120 L0,120 Z"); }
  100% { d: path("M0,60 C150,100 350,0 540,60 C730,120 900,20 1080,60 L1080,120 L0,120 Z"); }
}
@keyframes drawLine {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes particleDrift {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-120px) translateX(30px) rotate(180deg); opacity: 0; }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:active::after { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-bright));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(194,24,91,0.35);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(194,24,91,0.48);
}
.btn--outline {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--rose);
  transform: translateY(-3px);
}
.btn--outline-rose {
  border-color: var(--rose);
  color: var(--rose);
  background: transparent;
}
.btn--outline-rose:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(194,24,91,0.3);
}
.btn--lg { padding: 18px 44px; font-size: 1.05rem; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  transition: height 0.4s ease;
}
.nav.scrolled .nav__inner { height: 72px; }

.nav__logo img {
  height: 88px;
  width: auto;
  /* Logo en blanc sur fond sombre (haut de page) */
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0,0,0,0.3));
  transition: filter 0.4s ease, transform 0.3s ease, height 0.4s ease;
}
.nav__logo:hover img { transform: scale(1.04); }
/* Logo dans ses vraies couleurs après scroll */
.nav.scrolled .nav__logo img {
  filter: none;
  height: 58px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.92;
  transition: opacity 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--rose-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a:hover { opacity: 1; }
.nav.scrolled .nav__links a { color: var(--text); }
.nav.scrolled .nav__links a::after { background: var(--rose); }

.nav__cta { margin-left: 16px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav__burger:hover { background: rgba(255,255,255,0.1); }
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav.scrolled .nav__burger span { background: var(--text); }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 16px 28px 28px;
  gap: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-top: 1px solid var(--border);
}
.nav__mobile.open { display: flex; animation: fadeInUp 0.3s ease both; }
.nav__mobile a {
  font-weight: 700;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  transition: color 0.2s, padding-left 0.2s;
}
.nav__mobile a:hover { color: var(--rose); padding-left: 6px; }
.nav__mobile .btn { margin-top: 12px; justify-content: center; }

/* ── Language toggle ── */
.nav__lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.38);
  border-radius: 999px;
  padding: 5px 13px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--ff-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s;
  line-height: 1;
  flex-shrink: 0;
}
.nav__lang-btn:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-1px);
}
.nav__lang-btn svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.nav__lang-btn:hover svg { transform: rotate(20deg); }

/* Scrolled state: button goes rose */
.nav.scrolled .nav__lang-btn {
  background: rgba(194,24,91,0.07);
  border-color: var(--rose);
  color: var(--rose);
}
.nav.scrolled .nav__lang-btn:hover {
  background: rgba(194,24,91,0.16);
}

/* Mobile nav version */
.nav__lang-btn--mobile {
  background: rgba(194,24,91,0.07);
  border-color: var(--rose);
  color: var(--rose);
  align-self: flex-start;
  margin: 4px 0 8px;
}
.nav__lang-btn--mobile:hover {
  background: rgba(194,24,91,0.16);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(28,15,24,0.88) 0%,
    rgba(136,14,79,0.60) 60%,
    rgba(136,14,79,0.30) 100%);
}

/* Canvas particles */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 140px 0 100px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s 0.1s both;
}
.hero__eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose-bright);
  animation: pulse 2s infinite;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
  animation: fadeInUp 0.7s 0.2s both;
}
.hero h1 em {
  font-style: italic;
  color: #FF80AB;
  position: relative;
}
.hero__sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.75;
  animation: fadeInUp 0.7s 0.35s both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.5s both;
}
.hero__ribbon {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.85;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  z-index: 3;
  animation: fadeInUp 1s 1s both;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 2s ease infinite;
}

/* Mini hero for inner pages */
.hero--mini { min-height: 46vh; align-items: flex-end; }
.hero--mini .hero__content { padding: 120px 0 64px; }
.hero--mini h1 { font-size: clamp(2rem, 4vw, 3.2rem); }

/* ═══════════════════════════════════════════
   WAVE DIVIDERS
═══════════════════════════════════════════ */
.wave-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
}
.wave-top { margin-bottom: -2px; }
.wave-bottom { margin-top: -2px; }

/* ═══════════════════════════════════════════
   FLOATING DECORATIONS
═══════════════════════════════════════════ */
.deco-ribbon {
  position: absolute;
  opacity: 0.12;
  pointer-events: none;
}
.deco-ribbon--1 { top: 10%; right: 5%; animation: float 7s ease-in-out infinite; }
.deco-ribbon--2 { bottom: 15%; left: 3%; animation: float 9s ease-in-out infinite 2s; }
.deco-ribbon--3 { top: 40%; right: 8%; animation: float 11s ease-in-out infinite 1s; }

/* ═══════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════ */
.stats-band {
  background: var(--navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(194,24,91,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(233,30,140,0.10) 0%, transparent 60%);
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat__number {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #FF80AB, var(--rose-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}
.stat__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   SECTION HEADINGS
═══════════════════════════════════════════ */
.section-head { margin-bottom: 60px; }
.section-head--center { text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { max-width: 560px; font-size: 1.05rem; }
.section-head--center p { margin: 0 auto; }

/* ═══════════════════════════════════════════
   CARDS
═══════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card__img { transform: scale(1.04); }
.card__body { padding: 28px; }
.card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--rose-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.card:hover .card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--rose-pale), #F8BBD9);
}
.card__icon svg { width: 28px; height: 28px; fill: var(--rose); }
.card__body h3 { margin-bottom: 12px; }
.card__body p { font-size: 0.92rem; }

/* ═══════════════════════════════════════════
   TEAM GRID
═══════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.team-card {
  text-align: center;
  transition: transform 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); }
.team-card__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-pale), #F8BBD9);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--ff-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--rose);
  border: 3px solid var(--white);
  box-shadow: 0 6px 20px rgba(194,24,91,0.2), 0 0 0 4px var(--rose-pale);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.team-card:hover .team-card__avatar {
  box-shadow: 0 10px 32px rgba(194,24,91,0.35), 0 0 0 6px var(--rose-pale);
}
.team-card__name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
}
.team-card__role {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 3px;
}

/* ═══════════════════════════════════════════
   PHOTO GALLERY
═══════════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery--4 { grid-template-columns: repeat(4, 1fr); }
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.gallery img:hover {
  transform: scale(1.05);
  filter: brightness(1.08) saturate(1.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  z-index: 2;
  position: relative;
}

/* ═══════════════════════════════════════════
   DIAGONAL BANNER
═══════════════════════════════════════════ */
.banner {
  position: relative;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose), var(--rose-bright));
  background-size: 200% 200%;
  animation: shimmer 6s ease infinite;
  padding: 90px 0;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  margin: -40px 0;
  z-index: 1;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.banner h2 { color: var(--white); margin-bottom: 12px; }
.banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.banner__actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   QUOTE
═══════════════════════════════════════════ */
.quote-block {
  background: var(--rose-cream);
  border-left: 5px solid var(--rose);
  padding: 40px 48px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--ff-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: var(--rose-dark);
  line-height: 1.55;
  position: relative;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -20px; left: 32px;
  font-size: 8rem;
  font-family: var(--ff-heading);
  color: var(--rose-pale);
  line-height: 1;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   SPLIT (image + texte)
═══════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.split__img:hover {
  transform: translateY(-8px) rotate(0.5deg);
  box-shadow: var(--shadow-lg);
}
.split__img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split__img:hover img { transform: scale(1.04); }
.split__text h2 { margin-bottom: 20px; }
.split__text p { margin-bottom: 28px; }

/* ── SVG illustration section ── */
.split__svg {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--rose-cream), #FFF0F5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.split__svg::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
  top: -50px; right: -50px;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   IMPACT SECTION
═══════════════════════════════════════════ */
.impact-ticker {
  background: var(--navy);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.impact-ticker__track {
  display: flex;
  gap: 60px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}
.impact-ticker__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.impact-ticker__item span {
  color: var(--rose-bright);
  font-size: 1rem;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,24,91,0.5), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
.footer__logo { margin-bottom: 20px; }
.footer__logo img { height: 44px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.footer__social a:hover {
  background: var(--rose);
  transform: translateY(-3px);
}
.footer__social svg { width: 18px; height: 18px; fill: var(--white); }

.footer__col h4 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer__col a:hover { color: var(--white); padding-left: 4px; }
.footer__col .contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}
.footer__col .contact-item svg {
  width: 16px; height: 16px;
  fill: var(--rose-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════
   ANIMATE ON SCROLL — Multiple directions
═══════════════════════════════════════════ */
.aos {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.aos--left {
  transform: translateX(-40px);
}
.aos--right {
  transform: translateX(40px);
}
.aos--zoom {
  transform: scale(0.88);
}
.aos.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
.aos--delay-1 { transition-delay: 0.12s; }
.aos--delay-2 { transition-delay: 0.22s; }
.aos--delay-3 { transition-delay: 0.32s; }
.aos--delay-4 { transition-delay: 0.42s; }
.aos--delay-5 { transition-delay: 0.52s; }

/* ═══════════════════════════════════════════
   VALUES GRID
═══════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rose-cream), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--rose-pale); }
.value-card:hover::after { opacity: 1; }
.value-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-pale), #FDB8D5);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
.value-card:hover .value-card__icon { transform: scale(1.15) rotate(10deg); }
.value-card__icon svg { width: 34px; height: 34px; fill: var(--rose); }
.value-card h3 { margin-bottom: 12px; position: relative; z-index: 1; }
.value-card p { font-size: 0.9rem; position: relative; z-index: 1; }

/* ── Join section ── */
.join-section {
  background: linear-gradient(135deg, var(--rose-dark), var(--rose), var(--rose-bright));
  background-size: 200% 200%;
  animation: shimmer 8s ease infinite;
  border-radius: var(--radius);
  padding: 64px 56px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.join-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -100px; right: -100px;
}
.join-section h2 { color: white; margin-bottom: 16px; }
.join-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.join-section .btn--outline { border-color: white; color: white; }
.join-section .btn--outline:hover { background: white; color: var(--rose); }

/* ═══════════════════════════════════════════
   STEPS
═══════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--rose-bright));
  opacity: 0.4;
}
.step-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-item__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-bright));
  color: white;
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 24px rgba(194,24,91,0.35);
  position: relative; z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}
.step-item:hover .step-item__num {
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(194,24,91,0.5);
}
.step-item h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step-item p { font-size: 0.88rem; }

/* ── Structures ── */
.structures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.structure-pill {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.structure-pill:hover {
  border-color: var(--rose);
  background: var(--rose-cream);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.structure-pill__icon { font-size: 2.2rem; margin-bottom: 12px; display: block; transition: transform 0.3s ease; }
.structure-pill:hover .structure-pill__icon { transform: scale(1.2) rotate(8deg); }
.structure-pill h3 { font-size: 1rem; margin-bottom: 4px; }
.structure-pill p { font-size: 0.82rem; }

/* ── Contact box ── */
.contact-box {
  background: linear-gradient(135deg, var(--navy), #3D0A2E);
  border-radius: var(--radius);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.contact-box::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,24,91,0.2) 0%, transparent 70%);
  right: -50px; bottom: -50px;
}
.contact-box h2 { color: white; margin-bottom: 12px; }
.contact-box p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

/* ═══════════════════════════════════════════
   COMING SOON
═══════════════════════════════════════════ */
.coming-soon {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}
.coming-soon__inner { max-width: 560px; }
.coming-soon__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rose-pale);
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--rose);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.coming-soon__ring {
  width: 80px; height: 80px;
  border: 5px solid var(--rose-pale);
  border-top-color: var(--rose);
  border-radius: 50%;
  margin: 0 auto 32px;
  animation: spin 1.4s linear infinite;
}
.coming-soon h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 20px; }
.coming-soon p { font-size: 1.05rem; margin-bottom: 36px; }

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.preview-card::before {
  content: 'À venir';
  position: absolute;
  top: 18px; right: -26px;
  background: linear-gradient(135deg, var(--rose), var(--rose-bright));
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 34px;
  letter-spacing: 0.04em;
  transform: rotate(45deg);
}
.preview-card__emoji { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.preview-card h3 { margin-bottom: 10px; }
.preview-card p { font-size: 0.9rem; }

/* ═══════════════════════════════════════════
   DON PAGE
═══════════════════════════════════════════ */
.don-page {
  padding: 120px 0 80px;
  background: #FDF0F5;
  min-height: 100vh;
}
.don-page__grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
}
.don-left h1 { margin-bottom: 20px; }
.don-left p.lead { margin-bottom: 36px; }

.impact-list { list-style: none; margin-bottom: 40px; }
.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: transform 0.2s ease;
}
.impact-list li:hover { transform: translateX(8px); }
.impact-list li:last-child { border: none; }
.impact-amount {
  background: linear-gradient(135deg, var(--rose), var(--rose-bright));
  color: white;
  font-family: var(--ff-heading);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 6px 14px;
  border-radius: 999px;
  flex-shrink: 0;
  min-width: 64px;
  text-align: center;
}
.impact-desc { font-size: 0.92rem; color: var(--muted); padding-top: 4px; }
.impact-desc strong { color: var(--text); font-weight: 700; }

.fiscal-info {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fiscal-info svg { width: 28px; height: 28px; fill: var(--rose); flex-shrink: 0; margin-top: 2px; }
.fiscal-info h3 { font-size: 1rem; margin-bottom: 8px; }
.fiscal-info p { font-size: 0.88rem; }

.helloasso-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
}
.helloasso-trust svg { width: 14px; height: 14px; fill: var(--muted); flex-shrink: 0; }
.helloasso-trust strong { color: #F26A43; font-weight: 700; }

.don-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.widget-impact-bar {
  background: linear-gradient(135deg, var(--rose), var(--rose-bright));
  padding: 14px 24px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.widget-impact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
}
.widget-impact-item svg { width: 14px; height: 14px; fill: white; }

.widget-body { padding: 32px 28px; }
.widget-step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.widget-step-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-bright));
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.widget-step-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text);
}

.amounts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.amount-btn {
  padding: 16px 8px 12px;
  border: 2px solid #F8BBD0;
  border-radius: var(--radius-sm);
  background: #FEF0F6;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.amount-btn:hover {
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(194,24,91,0.15);
}
.amount-btn.active {
  background: linear-gradient(135deg, var(--rose), var(--rose-bright));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194,24,91,0.28);
}
.amount-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 4px;
  font-family: var(--ff-heading);
}
.amount-btn.active .amount-value { color: white; }
.amount-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.3;
}
.amount-btn.active .amount-label { color: rgba(255,255,255,0.85); }

/* Étape 2 : iframe HelloAsso */
.widget-step-helloasso { display: none; border-top: 1px solid #F8BBD0; }
.widget-step-helloasso.visible { display: block; }
.widget-helloasso-header {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FEF0F6;
  border-bottom: 1px solid #F8BBD0;
}
.widget-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #F48FB1;
  border-radius: 8px;
  padding: 7px 14px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose);
  cursor: pointer;
  transition: background 0.2s;
}
.widget-back-btn:hover { background: #FCE4EC; }
.widget-montant-recap { font-size: 0.88rem; color: var(--muted); font-weight: 600; }
.widget-montant-recap strong { color: var(--rose); font-size: 1rem; }
.widget-loader {
  display: flex; flex-direction: column; align-items: center;
  padding: 40px 28px; gap: 14px;
}
.widget-loader-ring {
  width: 44px; height: 44px;
  border: 4px solid #FCE4EC;
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: haSpinWidget 0.8s linear infinite;
}
@keyframes haSpinWidget { to { transform: rotate(360deg); } }
.amount-input-wrap {
  position: relative;
  margin-bottom: 24px;
}
.amount-input-wrap input {
  width: 100%;
  padding: 14px 16px 14px 40px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  background: var(--rose-cream);
  transition: border-color 0.2s;
  outline: none;
}
.amount-input-wrap input:focus { border-color: var(--rose); }
.amount-input-wrap::before {
  content: '€';
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  color: var(--rose);
  font-size: 1rem;
}
.fiscal-badge {
  background: linear-gradient(135deg, #FCE4EC, #F8BBD0);
  border: 1px solid #F48FB1;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.frequency-tabs {
  display: flex;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
}
.freq-tab {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: none;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.freq-tab.active {
  background: var(--rose);
  color: white;
}
.widget-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}
.btn--block {
  width: 100%;
  justify-content: center;
}
.widget-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}
.widget-trust svg { width: 14px; height: 14px; fill: var(--rose); }


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Hero stats : repositionnement proportionnel */
  #hero-stats { bottom: clamp(70px, 14vh, 180px) !important; }
  #hero { padding-bottom: clamp(160px, 22vh, 250px) !important; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery--4 { grid-template-columns: repeat(2, 1fr); }
  .banner { clip-path: none; margin: 0; padding: 64px 0; }
  .banner__inner { flex-direction: column; text-align: center; }
  .banner__actions { justify-content: center; }
  .don-page__grid { grid-template-columns: 1fr; }
  .don-widget { position: static; }
  .hero__ribbon { display: none; }
  .contact-box { grid-template-columns: 1fr; padding: 36px 28px; }
}
@media (max-width: 600px) {
  /* Hero stats mobile : grille 2 colonnes + positionnement adapté */
  #hero-stats { bottom: clamp(60px, 10vh, 120px) !important; padding: 18px 0 14px !important; }
  #hero { padding-bottom: clamp(170px, 28vh, 240px) !important; }
  #hero-stats .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  #hero-stats .stat__number { font-size: clamp(1.6rem, 5vw, 2.4rem); }

  .container { padding: 0 18px; }
  .section { padding: 72px 0; }
  .hero__actions { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .join-section { padding: 40px 28px; }
  .quote-block { padding: 28px 28px 28px 36px; }
}
