/* =========================================================
   ZAOULI PARIS — ÉCOLE DE DANSE
   Palette d'après dreamteamafrica.com/danse-zaouli-paris
   Thème clair · crème / beige / accent brun chaud · mobile-first
   ========================================================= */

:root {
  --bg:           #FBF8F4;
  --beige:        #FBF9F7;  /* sections alternées = dta-beige/40 sur blanc (subtil, pas tan) */
  --beige-solid:  #F5F0EA;  /* beige plein, pour bordures/dégradés ponctuels */
  --sand:         #E8DFD3;
  --taupe:        #C4B5A4;
  --dark:         #1A1A1A;
  --char:         #2E2E2E;
  /* Accent terracotta de la page live (dégradé D94F30 → C4704B) + or C9A84C */
  --accent:       #C4704B;
  --accent-bright:#D94F30;
  --accent-light: #D98E6E;
  --accent-dark:  #B0542F;
  --gold:         #C9A84C;
  --accent-grad:  linear-gradient(135deg, #D94F30 0%, #C4704B 100%);
  --white:        #FFFFFF;

  --maxw: 1180px;
  --radius-card:   14px;
  --radius-button: 10px;
  --shadow-card:        0 2px 12px rgba(0,0,0,.06);
  --shadow-card-hover:  0 8px 30px rgba(0,0,0,.10);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Outfit', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  background: var(--bg);
  color: var(--char);
  font-family: var(--f-sans);
  font-size: clamp(15px, 1.4vw, 16px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(48px, 8vw, 88px) 0; background: var(--white); }
.section--beige { background: var(--beige); }
.section--sand  { background: var(--sand); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  font-size: .72rem; color: var(--accent);
}
.h2 {
  font-family: var(--f-serif); font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  line-height: 1.12; color: var(--dark);
  letter-spacing: .3px;
}
.lede { color: var(--char); opacity: .82; }
.center { text-align: center; }
.mt-narrow { max-width: 760px; margin-inline: auto; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--f-sans); font-weight: 600;
  font-size: .92rem;
  padding: 13px 26px;
  border-radius: var(--radius-button);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
/* Bouton principal = brun mat de la page live (#8B6F4E) */
.btn--accent { background: #8B6F4E; color: #fff; box-shadow: 0 8px 22px rgba(139,111,78,.3); }
.btn--accent:hover { background: #6F5A3E; box-shadow: 0 12px 30px rgba(139,111,78,.42); }
.btn--outline { border-color: rgba(255,255,255,.45); color: #fff; background: rgba(255,255,255,.06); }
.btn--outline:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: var(--char); }
.btn--wa { background: #25D366; color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.3); }
.btn--wa:hover { background: #1ebe5a; box-shadow: 0 12px 30px rgba(37,211,102,.45); }
.btn--lg { padding: 16px 34px; font-size: 1rem; }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196,181,164,.4);
  transition: background .3s, box-shadow .3s;
}
.nav.is-scrolled { background: rgba(255,255,255,.97); box-shadow: 0 1px 8px rgba(0,0,0,.05); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 18px;
  padding: 12px 24px;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1; }
.nav__wordmark {
  font-family: var(--f-serif); font-weight: 700;
  font-size: 1.7rem; color: var(--accent); letter-spacing: .5px;
}
.nav__tag {
  font-family: var(--f-sans); text-transform: uppercase;
  letter-spacing: 2px; font-size: .58rem; color: var(--taupe); margin-top: 2px;
}
.nav__links {
  display: none; margin-left: auto; gap: 26px;
  font-family: var(--f-sans); font-weight: 500;
  font-size: .9rem;
}
.nav__links a { color: var(--char); opacity: .8; transition: color .2s, opacity .2s; }
.nav__links a:hover { color: var(--accent); opacity: 1; }
.nav__cta { display: none; margin-left: 6px; }
.nav__burger {
  margin-left: auto; display: flex; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 6px;
}
.nav__burger span { width: 24px; height: 2px; background: var(--dark); transition: .3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav.is-open .nav__links {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); padding: 18px 24px 24px; gap: 16px; font-size: 1rem;
  border-bottom: 1px solid rgba(196,181,164,.4);
}
.nav.is-open .nav__cta { display: inline-flex; margin: 8px 24px 22px; }
@media (min-width: 920px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; overflow: hidden; background: var(--dark); }
.hero__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .42;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, rgba(26,26,26,.6) 55%, rgba(26,26,26,.25) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(110px, 16vw, 150px) 24px clamp(56px, 9vw, 96px);
}
.hero__kicker { color: var(--accent-light); }
.hero__title {
  font-family: var(--f-serif); font-weight: 700;
  font-size: clamp(2.4rem, 6.4vw, 4rem);
  line-height: 1.08; color: #fff; max-width: 14ch;
  margin: 16px 0 0;
}
.hero__title em { font-style: italic; color: var(--accent-light); }
.hero__lede {
  margin-top: 22px; max-width: 60ch;
  color: rgba(245,240,234,.82); font-size: 1.02rem; line-height: 1.7;
}
.hero__lede strong { color: #fff; font-weight: 600; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero__badges li {
  font-size: .76rem; font-weight: 500;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(245,240,234,.3); color: rgba(245,240,234,.92);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* =========================================================
   INTRO 2 colonnes
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.split__text p { margin-top: 14px; color: var(--char); opacity: .82; }
.split__text p:first-child { margin-top: 18px; }
.split__media {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.link-accent { color: var(--accent); font-weight: 600; }
.link-accent:hover { text-decoration: underline; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } }

/* =========================================================
   CARTES FORMULES (cours)
   ========================================================= */
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 44px; }
@media (min-width: 560px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.pcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid rgba(196,181,164,.45);
  border-radius: var(--radius-card); padding: 26px 22px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.pcard--featured { border-color: var(--accent); box-shadow: 0 8px 26px rgba(196,112,75,.18); }
.pcard__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 16px; border-radius: 999px;
}
.pcard h3 { font-family: var(--f-serif); font-weight: 700; font-size: 1.45rem; color: var(--dark); }
.pcard__meta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 6px;
  font-size: .78rem; color: var(--accent); font-weight: 600;
}
.pcard__desc { margin-top: 12px; font-size: .9rem; color: var(--char); opacity: .78; }
.pcard__list { list-style: none; margin-top: 16px; display: grid; gap: 9px; flex: 1; }
.pcard__list li { display: flex; gap: 9px; font-size: .84rem; color: var(--char); opacity: .85; }
.pcard__list li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

/* =========================================================
   ENCART LANCEMENT
   ========================================================= */
.launch {
  max-width: 760px; margin: 48px auto 0;
  text-align: center; padding: clamp(28px, 5vw, 44px);
  border-radius: var(--radius-card);
  background: linear-gradient(150deg, var(--white), var(--beige));
  border: 1.5px solid rgba(196,112,75,.28); box-shadow: var(--shadow-card);
}
.launch__pill {
  display: inline-block; background: rgba(196,112,75,.12); color: var(--accent);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 999px;
}
.launch h3 { font-family: var(--f-serif); font-weight: 700; font-size: clamp(1.5rem, 3.6vw, 2rem); color: var(--dark); margin-top: 16px; }
.launch p { margin: 10px auto 0; max-width: 52ch; color: var(--char); opacity: .8; }
.launch__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
.launch__form { max-width: 460px; margin: 26px auto 0; text-align: left; }
.launch__or { margin-top: 16px; font-size: .9rem; color: var(--char); opacity: .8; }
.launch__or a { color: var(--accent); font-weight: 600; text-decoration: underline; }

/* =========================================================
   GALERIE
   ========================================================= */
.gallery3 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 40px; }
@media (min-width: 760px) { .gallery3 { grid-template-columns: repeat(3, 1fr); } }
.gallery3 figure { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius-card); }
.gallery3 img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery3 figure:hover img { transform: scale(1.06); }

/* =========================================================
   CARTES PRESTATIONS / POURQUOI
   ========================================================= */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 44px; }
@media (min-width: 600px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.fcard {
  background: var(--white); border: 1px solid rgba(196,181,164,.45);
  border-radius: var(--radius-card); padding: 26px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.fcard__ico {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(196,112,75,.1); color: var(--accent);
  transition: background .25s, color .25s;
}
.fcard:hover .fcard__ico { background: var(--accent); color: #fff; }
.fcard h3 { font-family: var(--f-serif); font-weight: 700; font-size: 1.3rem; color: var(--dark); margin-top: 16px; }
.fcard p { margin-top: 8px; font-size: .9rem; color: var(--char); opacity: .78; }

.grid-why { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; margin-top: 44px; }
@media (min-width: 980px) { .grid-why { grid-template-columns: repeat(4, 1fr); } }
.why { text-align: center; }
.why__ico {
  margin: 0 auto; display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(196,112,75,.1); color: var(--accent);
}
.why h3 { font-family: var(--f-serif); font-weight: 700; font-size: 1.15rem; color: var(--dark); margin-top: 14px; }
.why p { margin-top: 6px; font-size: .85rem; color: var(--char); opacity: .78; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.checklist { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 11px; font-size: .92rem; color: var(--char); opacity: .85; }
.checklist li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }

.contact-cards { display: grid; gap: 14px; }
.ccard {
  display: flex; align-items: center; gap: 15px;
  padding: 18px 20px; border-radius: var(--radius-card);
  background: var(--white); border: 1px solid rgba(196,181,164,.45);
  box-shadow: var(--shadow-card); transition: transform .2s, border-color .2s;
}
.ccard:hover { transform: translateY(-2px); border-color: var(--accent); }
.ccard__ico {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: rgba(196,112,75,.1); color: var(--accent);
}
.ccard--wa .ccard__ico { background: rgba(37,211,102,.12); color: #25D366; }
.ccard small { display: block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); }
.ccard strong { font-size: 1.05rem; color: var(--dark); font-weight: 600; }

/* ---- Formulaire de contact ---- */
.contact-form { display: grid; gap: 14px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .cf-row, .cf-phone { grid-template-columns: 1fr; } }
.cf-input {
  width: 100%; font-family: var(--f-sans); font-size: .95rem; color: var(--dark);
  background: var(--white); border: 1px solid rgba(196,181,164,.55);
  border-radius: var(--radius-button); padding: 13px 15px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.cf-input::placeholder { color: #9b9082; }
.cf-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(196,112,75,.16); }
.cf-select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C4704B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
}
.cf-textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.cf-phone { display: grid; grid-template-columns: 116px 1fr; gap: 14px; }
.cf-indicatif { padding-right: 32px; background-position: right 10px center; }
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cf-status { font-size: .88rem; margin: 2px 0 0; min-height: 1.2em; }
.cf-status--ok { color: #2f7d4f; }
.cf-status--err { color: var(--accent-bright); }
.cf-or {
  text-align: center; font-size: .82rem; color: var(--char); opacity: .55;
  margin: 22px 0 14px; text-transform: uppercase; letter-spacing: 1px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 760px; margin: 40px auto 0; display: grid; gap: 14px; }
.faq details {
  background: var(--white); border: 1px solid rgba(196,181,164,.45);
  border-radius: var(--radius-card); overflow: hidden; transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-card); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-weight: 600; font-size: .98rem; color: var(--dark);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex-shrink: 0; color: var(--accent); transition: transform .25s; }
.faq details[open] summary svg { transform: rotate(90deg); }
.faq p { padding: 0 22px 20px; font-size: .92rem; color: var(--char); opacity: .8; line-height: 1.7; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark); color: rgba(245,240,234,.8); padding: 52px 0 40px; }
.footer__inner { text-align: center; }
.footer__title { font-family: var(--f-serif); font-weight: 700; font-size: 1.9rem; color: #fff; }
.footer__line { font-size: .88rem; color: rgba(245,240,234,.6); margin-top: 8px; }
.footer__social { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin: 20px 0; }
.footer__social a {
  font-family: var(--f-sans); font-weight: 500; font-size: .82rem;
  color: rgba(245,240,234,.7); transition: color .2s;
}
.footer__social a:hover { color: var(--accent-light); }
.footer__copy { font-size: .78rem; color: rgba(245,240,234,.4); }
.footer__copy a { color: rgba(245,240,234,.6); }
.footer__copy a:hover { color: var(--accent-light); }

/* =========================================================
   WHATSAPP FLOTTANT
   ========================================================= */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.45); transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* =========================================================
   APPARITION AU SCROLL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
