/* =========================================================
   Keur Mame Coumba — Feuille de style principale
   Palette, design system & composants
   ========================================================= */

:root {
  /* Palette de la marque */
  --pink: #D30D7A;
  --pink-dark: #B50067;
  --white: #FFFFFF;
  --gray-light: #F6F6F6;
  --purple: #6E2DA8;
  --yellow: #FFD65C;
  --sky: #64D8FF;
  --green: #8CD867;

  /* Sémantique (thème clair) */
  --bg: #FFFFFF;
  --bg-alt: #FDF3F8;      /* rose très clair */
  --bg-tint: #F6F6F6;
  --surface: #FFFFFF;
  --text: #2B2140;
  --text-soft: #5b5470;
  --heading: #3a1a4d;
  --border: #efe6ef;
  --shadow: 0 10px 30px rgba(110, 45, 168, 0.10);
  --shadow-sm: 0 4px 14px rgba(110, 45, 168, 0.08);
  --shadow-hover: 0 18px 44px rgba(211, 13, 122, 0.18);

  /* Rayons & transitions */
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --t-fast: .18s var(--ease);
  --t: .32s var(--ease);

  --container: 1160px;
  --header-h: 78px;

  --font-head: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
}

/* Thème sombre */
:root[data-theme="dark"] {
  --bg: #171226;
  --bg-alt: #1f1733;
  --bg-tint: #1d1630;
  --surface: #221a38;
  --text: #ece7f5;
  --text-soft: #b7aecb;
  --heading: #ffffff;
  --border: #342a4d;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 18px 44px rgba(0, 0, 0, 0.5);
}

/* ---------- Reset léger ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
/* clip (pas hidden) : empêche le débordement horizontal du tiroir mobile
   SANS créer de conteneur de défilement, donc le header sticky continue de fonctionner */
html, body { overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  transition: background var(--t), color var(--t);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--heading); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Accessibilité ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--pink); color: #fff; padding: 10px 18px; border-radius: var(--radius-pill);
  transition: top var(--t-fast); font-weight: 700;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 760px; }
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--tint { background: var(--bg-alt); }
.section--purple {
  background: linear-gradient(135deg, var(--purple), #4d1c7d);
  color: #fff;
}
.section--purple h2, .section--purple cite { color: #fff; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto clamp(2rem, 5vw, 3.2rem); }
.section__lead { color: var(--text-soft); font-size: 1.1rem; }
.section--purple .section__lead { color: #e7dcf5; }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  color: var(--pink); letter-spacing: .04em; text-transform: uppercase;
  font-size: .82rem; margin-bottom: .6rem;
}
.eyebrow--light { color: var(--yellow); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  text-align: center; line-height: 1.2;
}
.btn:active { transform: scale(.97); }
.btn--sm { padding: .55rem 1.1rem; font-size: .92rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.08rem; }
.btn--block { width: 100%; }
.btn--primary { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: #fff; box-shadow: 0 8px 20px rgba(211,13,122,.28); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn--ghost { background: transparent; color: var(--pink); border-color: var(--pink); }
.btn--ghost:hover { background: var(--pink); color: #fff; transform: translateY(-3px); }
.section--purple .btn--ghost { color: #fff; border-color: #fff; }
.section--purple .btn--ghost:hover { background: #fff; color: var(--purple); }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(37,211,102,.35); }

.badge {
  display: inline-block; background: var(--surface); color: var(--pink);
  border: 1px solid var(--border); padding: .4rem 1rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .88rem; box-shadow: var(--shadow-sm);
}
.badge--pill { margin-bottom: 1.2rem; }

/* ---------- Bannière d'annonce ---------- */
.announce {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff; font-size: .92rem; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.announce[hidden] { display: none; }
.announce p { margin: 0; padding: .6rem 2.5rem; display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; justify-content: center; }
.announce a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.announce__dot { width: 9px; height: 9px; background: var(--yellow); border-radius: 50%; display: inline-block; animation: pulse 1.6s infinite; }
.announce__close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.2); border: none; color: #fff; width: 28px; height: 28px;
  border-radius: 50%; font-size: 1.2rem; cursor: pointer; line-height: 1;
}
.announce__close:hover { background: rgba(255,255,255,.35); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.88);
  backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t), background var(--t);
}
:root[data-theme="dark"] .header { background: rgba(23,18,38,.88); }
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand__logo { height: 56px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--pink); }
.brand__slogan { font-size: .72rem; color: var(--text-soft); font-style: italic; }

.nav__list { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  font-family: var(--font-head); font-weight: 500; color: var(--text); padding: .5rem .8rem;
  border-radius: var(--radius-pill); position: relative; transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--pink); background: var(--bg-alt); }

.header__actions { display: flex; align-items: center; gap: .5rem; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); cursor: pointer; font-family: var(--font-head);
  font-weight: 700; font-size: .82rem; display: grid; place-items: center; transition: transform var(--t-fast), border-color var(--t-fast);
}
.icon-btn:hover { transform: translateY(-2px); border-color: var(--pink); }
.theme-switch__icon { font-size: 1.05rem; }

/* Hamburger */
.hamburger { display: none; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; padding: 10px; }
.hamburger span { display: block; height: 3px; border-radius: 3px; background: var(--pink); margin: 4px 0; transition: transform var(--t), opacity var(--t); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay { position: fixed; inset: 0; background: rgba(43,33,64,.5); z-index: 900; backdrop-filter: blur(2px); }
.nav-overlay[hidden] { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem); overflow: hidden; background: var(--bg-alt); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__title { font-size: clamp(2.2rem, 6vw, 3.7rem); font-weight: 700; margin-bottom: .8rem; }
.hero__title span { display: block; }
.hero__brand {
  background: linear-gradient(120deg, var(--pink), var(--purple) 55%, var(--sky));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__subtitle { font-size: 1.18rem; color: var(--text-soft); max-width: 34ch; margin-bottom: 1.8rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.2rem; }
.hero__stats { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-head); font-size: 1.25rem; color: var(--pink); }
.hero__stats span { font-size: .85rem; color: var(--text-soft); }
.hero__media { position: relative; }
.hero__img { filter: drop-shadow(0 24px 40px rgba(110,45,168,.22)); animation: floaty 6s ease-in-out infinite; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .5; z-index: 0; }
.hero__blob--1 { width: 320px; height: 320px; background: radial-gradient(circle, var(--yellow), transparent 70%); top: -60px; right: -40px; }
.hero__blob--2 { width: 280px; height: 280px; background: radial-gradient(circle, var(--sky), transparent 70%); bottom: -80px; left: -60px; }
.hero__content, .hero__media { position: relative; z-index: 1; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Cards / grilles ---------- */
.cards { display: grid; gap: 1.4rem; }
.cards--features { grid-template-columns: repeat(3, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.feature__icon { display: inline-grid; place-items: center; width: 62px; height: 62px; font-size: 1.9rem; border-radius: 20px; background: var(--bg-alt); margin-bottom: 1rem; }
.feature h3 { margin-bottom: .4rem; }
.feature p { color: var(--text-soft); margin: 0; font-size: .98rem; }

/* Cartes colorées en rotation d'icônes */
.cards--features .feature:nth-child(6n+1) .feature__icon { background: #ffe4f2; }
.cards--features .feature:nth-child(6n+2) .feature__icon { background: #fff6d6; }
.cards--features .feature:nth-child(6n+3) .feature__icon { background: #e2f7d8; }
.cards--features .feature:nth-child(6n+4) .feature__icon { background: #e6f9ff; }
.cards--features .feature:nth-child(6n+5) .feature__icon { background: #efe4ff; }
.cards--features .feature:nth-child(6n+6) .feature__icon { background: #ffe4f2; }
:root[data-theme="dark"] .feature__icon { background: #2d2347 !important; }

/* ---------- Split (image + texte) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.rounded-img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; max-height: 520px; }
.split__content h2 { margin-bottom: .8rem; }
.split__content p { color: var(--text-soft); }

/* Listes à puces cochées */
.ticklist { margin: 1.2rem 0 1.8rem; display: grid; gap: .6rem; }
.ticklist li { position: relative; padding-left: 2rem; }
.ticklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.4rem; height: 1.4rem; background: var(--green); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 800; }

/* ---------- Pédagogie / citation ---------- */
.quote { max-width: 760px; margin: 0 auto 1.6rem; text-align: center; }
.quote p { font-family: var(--font-head); font-size: clamp(1.25rem, 3vw, 1.7rem); font-weight: 500; }
.quote cite { font-style: normal; font-weight: 700; opacity: .85; }
.peda__text { max-width: 780px; margin: 0 auto 2.6rem; text-align: center; color: #e7dcf5; }
.mission__card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff; }
.mission__card h3 { color: #fff; }
.mission__card p { color: #e7dcf5; margin: 0; }
.mission .feature__icon { background: rgba(255,255,255,.14) !important; }
.feature__icon--flag img { width: 40px; height: auto; border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,.25); display: block; }

/* ---------- Horaires ---------- */
.hours-card {
  display: flex; align-items: center; gap: clamp(1rem,3vw,2.2rem); max-width: 720px; margin: 0 auto;
  background: linear-gradient(135deg, var(--yellow), #ffe89a); color: #4a2600; border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow);
}
.hours-card__icon { font-size: clamp(2.5rem, 7vw, 4rem); flex-shrink: 0; }
.hours-card h2 { color: #5a2e00; margin-bottom: .8rem; }
.hours-list { display: grid; gap: .5rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 2px dashed rgba(90,46,0,.2); font-size: 1.05rem; }
.hours-list li:last-child { border-bottom: none; }
.hours-list strong { font-family: var(--font-head); }
.hours-list .closed { color: var(--pink-dark); }

/* ---------- Activités ---------- */
.activities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 820px; margin: 0 auto; }
.activity {
  display: flex; align-items: center; gap: .9rem; background: var(--surface); border: 1px solid var(--border);
  padding: 1rem 1.3rem; border-radius: var(--radius); font-family: var(--font-head); font-weight: 500; font-size: 1.08rem;
  box-shadow: var(--shadow-sm); transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.activity:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-hover); }
.activity span:first-child { font-size: 1.6rem; }

/* ---------- Tarifs ---------- */
.cards--pricing { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; align-items: start; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.price-card--featured { border: 2px solid var(--pink); box-shadow: var(--shadow); }
.price-card__ribbon { position: absolute; top: -13px; right: 24px; background: var(--pink); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .8rem; padding: .3rem 1rem; border-radius: var(--radius-pill); }
.price-card__head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.price-card__head h3 { margin: 0; font-size: 1.6rem; }
.price-card__tag { background: var(--bg-alt); color: var(--pink); font-size: .8rem; font-weight: 700; padding: .3rem .8rem; border-radius: var(--radius-pill); line-height: 1.3; }
.price-card__enroll { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .9rem 1.1rem; background: var(--bg-alt); border-radius: var(--radius); margin-bottom: 1.2rem; }
.price-card__enroll strong { font-family: var(--font-head); color: var(--pink); font-size: 1.15rem; }
.price-list { display: grid; gap: .1rem; margin-bottom: 1.5rem; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--border); }
.price-list li:last-child { border-bottom: none; }
.price-list strong { font-family: var(--font-head); white-space: nowrap; }
.price-list__meal { color: var(--text-soft); }
.price-list__meal strong { color: var(--green); }

/* Réductions */
.discounts { margin-top: 3rem; text-align: center; }
.discounts h3 { margin-bottom: 1.5rem; }
.discounts__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; margin-bottom: 1.4rem; }
.discount-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem;
  width: 150px; height: 150px; border-radius: 50%; color: #fff; font-family: var(--font-head); font-weight: 600;
  box-shadow: var(--shadow); text-align: center; padding: 1rem;
}
.discount-badge:nth-child(1) { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); }
.discount-badge:nth-child(2) { background: linear-gradient(135deg, var(--purple), #4d1c7d); }
.discount-badge:nth-child(3) { background: linear-gradient(135deg, var(--sky), #2fb8e6); }
.discount-badge__pct { font-size: 2.2rem; line-height: 1; }
.discount-badge span:last-child { font-size: .82rem; font-weight: 500; }
.discounts__note { font-weight: 700; color: var(--text-soft); }

/* ---------- Checklist (pièces) ---------- */
.checklist { display: grid; gap: .8rem; margin-top: 1.4rem; }
.checklist li {
  display: flex; align-items: center; gap: .9rem; background: var(--surface); border: 1px solid var(--border);
  padding: .9rem 1.2rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); font-weight: 600;
}
.checklist li::before { content: "✓"; flex-shrink: 0; width: 1.7rem; height: 1.7rem; background: var(--green); color: #fff; border-radius: 8px; display: grid; place-items: center; font-weight: 800; }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery__item { border: none; padding: 0; cursor: pointer; border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }

/* ---------- Équipe ---------- */
.team__card { text-align: center; }
.team__avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 1rem; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: #fff; background: linear-gradient(135deg, var(--pink), var(--purple)); }
.team__avatar--alt { background: linear-gradient(135deg, var(--sky), var(--green)); }
.team__role { display: inline-block; color: var(--pink); font-weight: 700; margin-bottom: .8rem; }
.team__card p { color: var(--text-soft); font-size: .96rem; margin: 0; }
.team__more { text-align: center; margin-top: 1.8rem; color: var(--text-soft); font-weight: 600; }

/* ---------- Événements ---------- */
.events { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.event { display: flex; gap: 1.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm); transition: transform var(--t-fast), box-shadow var(--t-fast); }
.event:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.event__date { flex-shrink: 0; width: 68px; height: 68px; border-radius: 18px; background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: #fff; display: grid; place-items: center; align-content: center; }
.event__day { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; line-height: 1; }
.event__month { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; }
.event__body h3 { margin-bottom: .2rem; font-size: 1.15rem; }
.event__body p { margin: 0; color: var(--text-soft); font-size: .95rem; }
.event:nth-child(2) .event__date { background: linear-gradient(135deg, var(--purple), #4d1c7d); }
.event:nth-child(3) .event__date { background: linear-gradient(135deg, var(--sky), #2fb8e6); }
.event:nth-child(4) .event__date { background: linear-gradient(135deg, var(--green), #5fb63f); }

/* ---------- Slider témoignages ---------- */
.slider { max-width: 780px; margin: 0 auto; overflow: hidden; }
.slider__track { display: flex; transition: transform .5s var(--ease); }
.slide { flex: 0 0 100%; text-align: center; padding: 0 1rem; margin: 0; }
.slide p { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-family: var(--font-head); font-weight: 400; color: #fff; margin-bottom: 1rem; }
.slide footer { color: var(--yellow); font-weight: 700; }
.slider__controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.6rem; }
.slider__btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5); background: transparent; color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1; transition: background var(--t-fast), transform var(--t-fast); }
.slider__btn:hover { background: rgba(255,255,255,.2); transform: scale(1.1); }
.slider__dots { display: flex; gap: .5rem; }
.slider__dots button { width: 11px; height: 11px; border-radius: 50%; border: none; background: rgba(255,255,255,.4); cursor: pointer; padding: 0; transition: background var(--t-fast), transform var(--t-fast); }
.slider__dots button.is-active { background: var(--yellow); transform: scale(1.3); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary { font-family: var(--font-head); font-weight: 500; font-size: 1.08rem; padding: 1.1rem 1.4rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--heading); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--pink); transition: transform var(--t); flex-shrink: 0; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 1.4rem 1.2rem; }
.faq__answer p { margin: 0; color: var(--text-soft); }

/* ---------- Formulaire ---------- */
.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form__group { margin-bottom: 1.2rem; display: flex; flex-direction: column; }
.form__group label { font-family: var(--font-head); font-weight: 500; margin-bottom: .4rem; font-size: .95rem; }
.form input, .form select, .form textarea {
  font-family: var(--font-body); font-size: 1rem; padding: .8rem 1rem; border: 2px solid var(--border);
  border-radius: var(--radius-sm); background: var(--bg); color: var(--text); transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(211,13,122,.12); }
.form__error { color: #e02f5b; font-size: .82rem; margin-top: .35rem; display: none; font-weight: 600; }
.form__group.has-error input, .form__group.has-error select { border-color: #e02f5b; }
.form__group.has-error .form__error { display: block; }
.form__success { text-align: center; font-weight: 700; color: var(--green); margin-top: 1rem; background: #eaf9e2; padding: 1rem; border-radius: var(--radius); }
:root[data-theme="dark"] .form__success { background: #223318; }
.form__errmsg { text-align: center; font-weight: 700; color: #c81e4a; margin-top: 1rem; background: #fde6ec; padding: 1rem; border-radius: var(--radius); }
:root[data-theme="dark"] .form__errmsg { background: #3a1522; color: #ff9db3; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: stretch; }
.contact__list { display: grid; gap: 1.2rem; margin-bottom: 1.6rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ic { font-size: 1.5rem; flex-shrink: 0; width: 48px; height: 48px; display: grid; place-items: center; background: var(--bg-alt); border-radius: 14px; }
.contact__list strong { font-family: var(--font-head); display: block; margin-bottom: .1rem; }
.contact__list p { margin: 0; color: var(--text-soft); }
.contact__buttons { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.4rem; }
.contact__social { display: flex; gap: 1.2rem; }
.contact__social a { font-weight: 700; color: var(--purple); }
.contact__social a:hover { color: var(--pink); }
.contact__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 360px; }
.contact__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: #2b1440; color: #e7dcf5; padding: clamp(2.5rem, 5vw, 3.5rem) 0 0; }
:root[data-theme="dark"] .footer { background: #100c1c; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__brand img { height: 72px; width: auto; margin-bottom: .9rem; background: #fff; padding: 8px 12px; border-radius: 16px; box-shadow: var(--shadow-sm); }
.footer__slogan { font-style: italic; color: var(--yellow); font-family: var(--font-head); }
.footer__col h4 { color: #fff; margin-bottom: 1rem; font-size: 1.05rem; }
.footer__col ul { display: grid; gap: .55rem; }
.footer__col a, .footer__col li { color: #cbb8e0; }
.footer__col a:hover { color: var(--yellow); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; text-align: center; font-size: .9rem; color: #b7a6cf; }

/* ---------- FAB WhatsApp & back-to-top ---------- */
.fab-whatsapp {
  position: fixed; bottom: 22px; right: 22px; z-index: 800; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.45);
  animation: floaty 4s ease-in-out infinite; transition: transform var(--t-fast);
}
.fab-whatsapp:hover { transform: scale(1.1); }
.back-top {
  position: fixed; bottom: 22px; right: 90px; z-index: 800; width: 48px; height: 48px; border-radius: 50%;
  border: none; background: var(--pink); color: #fff; font-size: 1.3rem; cursor: pointer; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--pink-dark); transform: translateY(-3px); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(20,12,32,.94); display: grid; place-items: center; padding: 4vw; }
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); box-shadow: 0 30px 70px rgba(0,0,0,.5); animation: lbIn .3s var(--ease); }
@keyframes lbIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.12); border: none; color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center; transition: background var(--t-fast); }
.lightbox__close { top: 20px; right: 24px; width: 48px; height: 48px; font-size: 2rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2.4rem; line-height: 1; }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.28); }

/* ---------- Animations au scroll ---------- */
/* Amélioration progressive : masqué uniquement si le JS est actif.
   Sans JS, tout le contenu reste visible (SEO & accessibilité). */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal:nth-child(2) { transition-delay: .06s; }
.js .reveal:nth-child(3) { transition-delay: .12s; }
.js .reveal:nth-child(4) { transition-delay: .18s; }
.js .reveal:nth-child(5) { transition-delay: .24s; }
.js .reveal:nth-child(6) { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
  .hero__img, .fab-whatsapp, .announce__dot { animation: none; }
}
