/* =========================================================
   ZAOULI PARIS TOUR 2026-2027 — page spectacle
   Thème clair aligné sur la page école (palette danse-zaouli-paris)
   Fond crème/blanc · texte anthracite · boutons brun #8B6F4E
   Accents terracotta · Cormorant Garamond + Outfit · mobile-first
   ========================================================= */

:root {
  --bg:           #FBF8F4;
  --beige:        #FBF9F7;  /* sections alternées (subtil, pas tan) */
  --beige-solid:  #F5F0EA;
  --sand:         #E8DFD3;
  --taupe:        #C4B5A4;
  --dark:         #1A1A1A;
  --char:         #2E2E2E;
  --cream:        #F5F0EA;
  --cream-dim:    rgba(46, 46, 46, .72);

  /* Accent : boutons = brun mat #8B6F4E ; terracotta = pastilles/icônes/titres */
  --accent:       #C4704B;
  --accent-bright:#D94F30;
  --accent-light: #D98E6E;
  --brown:        #8B6F4E;
  --brown-dark:   #6F5A3E;
  --gold:         #C9A84C;
  --green:        #1B7A3D;
  --terra-grad:   linear-gradient(135deg, #D94F30 0%, #C4704B 100%);

  --maxw: 1100px;
  --radius: 14px;
  --radius-card: 14px;
  --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-cond:  'Outfit', system-ui, sans-serif;
  --f-body:  '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-body);
  font-size: clamp(15px, 1.5vw, 17px);
  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; }
.container--narrow { max-width: 760px; }
.center { text-align: center; }

.section { padding: clamp(56px, 9vw, 104px) 0; background: #fff; }
.section--dark { background: var(--beige); }
.section--feature {
  background: radial-gradient(120% 120% at 50% 0%, rgba(196,112,75,.08), transparent 60%), #fff;
}

.section__title {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: .2px;
  color: var(--dark);
  margin-bottom: 1.1rem;
}
.section__title::after {
  content: "";
  display: block;
  width: 64px; height: 3px;
  margin-top: 18px;
  background: var(--terra-grad);
  border-radius: 3px;
}
.section--contact .section__title::after,
.section--feature .section__title::after { margin-inline: auto; }
.section--feature .section__title,
.section--contact .section__title { text-align: center; }

.lede { font-size: 1.06em; color: var(--char); opacity: .82; }
.lede strong { color: var(--dark); font-weight: 600; }
.lede--center { text-align: center; margin-inline: auto; }

.todo { color: var(--accent-bright); font-style: normal; font-weight: 600; }
.todo-inline { color: var(--accent-bright); font-size: .85em; font-weight: 600; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: var(--radius-button, 10px);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
/* Bouton principal = brun mat de la page live */
.btn--cta { background: var(--brown); color: #fff; box-shadow: 0 8px 22px rgba(139,111,78,.3); }
.btn--cta:hover { background: var(--brown-dark); box-shadow: 0 12px 30px rgba(139,111,78,.42); }
.btn--ghost { border-color: var(--taupe); color: var(--char); background: rgba(255,255,255,.5); }
.btn--ghost:hover { border-color: var(--brown); color: var(--brown); }
/* Téléchargements = terracotta */
.btn--gold { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(196,112,75,.28); }
.btn--gold:hover { background: var(--accent-bright); box-shadow: 0 12px 30px rgba(196,112,75,.4); }
.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 36px; font-size: 1.02rem; }

/* ---------- Frise géométrique (motif africain) ---------- */
.frieze {
  height: 14px;
  background:
    repeating-linear-gradient(135deg,
      var(--accent) 0 14px,
      var(--green) 14px 28px,
      var(--gold) 28px 42px);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 14px, transparent 14px 16px);
          mask: repeating-linear-gradient(90deg, #000 0 14px, transparent 14px 16px);
  opacity: .9;
}
.frieze--top { margin-bottom: 8px; }

/* =========================================================
   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; line-height: 1;
  white-space: nowrap; color: var(--accent);
  letter-spacing: .5px;
}
.nav__sub {
  font-family: var(--f-body); text-transform: uppercase;
  letter-spacing: 3px; font-size: .56rem;
  color: var(--taupe); margin-top: 3px; padding-left: 2px;
}
.nav__links {
  display: none; margin-left: auto; gap: 24px;
  font-family: var(--f-body); 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 { margin-left: 8px; display: none; }
.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: #fff; 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: 10px 24px 22px; }
@media (min-width: 920px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}

/* =========================================================
   HERO (sombre avec image — comme le hero de l'école)
   ========================================================= */
.hero {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 84px 24px 74px;
  background: radial-gradient(120% 90% at 50% 0%, #2a211b 0%, #1A1A1A 65%);
  text-align: center;
}
.hero__content { position: relative; z-index: 2; max-width: 1040px; margin: 0 auto; width: 100%; }
/* Badge « avant-première » mis en valeur */
.hero__premiere {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; font-size: .74rem;
  color: #fff; background: var(--terra-grad);
  padding: 9px 18px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(217,79,48,.4);
}
.hero__premiere strong { font-weight: 700; }
.hero__banner {
  margin: 22px auto 24px; max-width: 1000px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  border: 1px solid rgba(212,160,60,.18);
}
.hero__banner img { width: 100%; height: auto; display: block; }
.hero__title {
  font-family: var(--f-serif); font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.15; color: #fff;
}
.hero__title span { color: var(--accent-light); font-style: italic; font-weight: 600; font-size: .82em; }
.hero__tagline {
  font-family: var(--f-serif);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  color: rgba(245,240,234,.9);
  max-width: 640px; margin: 12px auto 24px; line-height: 1.4;
}
.hero__badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; justify-content: center;
}
.hero__badges li {
  font-family: var(--f-body); font-weight: 500;
  letter-spacing: .4px; font-size: .76rem;
  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; justify-content: center; }
.hero__scroll {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--accent-light); font-size: 1.4rem;
  animation: bob 1.8s var(--ease) infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* =========================================================
   TEASER
   ========================================================= */
.section--teaser { text-align: center; }
.section--teaser .section__title { text-align: center; }
.section--teaser .section__title::after { margin-inline: auto; }
.teaser__frame {
  position: relative; max-width: 920px; margin: 28px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(196,181,164,.5);
  box-shadow: var(--shadow-card-hover);
}
.teaser__frame iframe { width: 100%; height: 100%; border: 0; }
.teaser__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(196,112,75,.1), transparent 70%),
    linear-gradient(160deg, #2a211b, #1a1a1a);
}
.teaser__badge {
  font-family: var(--f-body); text-transform: uppercase; letter-spacing: 2px;
  font-size: .85rem; padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--accent-light); color: var(--accent-light);
}
.teaser__note { color: var(--char); opacity: .7; font-family: var(--f-serif); font-style: italic; font-size: 1.05rem; margin-top: 18px; }

/* Affiche dans la section dédiée */
.affiche-wrap {
  max-width: 960px; margin: 30px auto 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(196,181,164,.5); box-shadow: var(--shadow-card-hover);
}
.affiche-wrap img { width: 100%; height: auto; display: block; }

/* =========================================================
   CONCEPT — les 5 arts
   ========================================================= */
.arts { list-style: none; margin-top: 36px; display: grid; gap: 12px; }
.arts li {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--f-body); font-weight: 500; letter-spacing: .3px;
  font-size: 1.02rem; color: var(--char);
  padding: 16px 20px; border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(196,181,164,.45);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-card);
}
.arts li span { font-size: 1.05rem; color: var(--accent); font-weight: 700; min-width: 28px; }
.arts--accent {
  background: rgba(196,112,75,.08) !important;
  border-left-color: var(--accent-bright) !important;
  color: var(--dark);
}
.arts--accent span { color: var(--accent-bright); }

/* =========================================================
   DISTRIBUTION
   ========================================================= */
.cast {
  list-style: none; margin: 30px 0 50px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.cast li {
  display: flex; align-items: baseline; gap: 10px;
  padding: 18px; border-radius: 12px;
  background: #fff; border: 1px solid rgba(196,181,164,.45);
  box-shadow: var(--shadow-card);
  font-family: var(--f-body); font-size: .98rem; color: var(--char);
}
.cast li strong {
  font-family: var(--f-serif); color: var(--accent);
  font-size: 1.9rem; line-height: 1; min-width: 30px; font-weight: 700;
}
.bio {
  display: grid; grid-template-columns: 120px 1fr; gap: 22px; align-items: center;
  padding: 22px; border-radius: var(--radius-card);
  background: #fff; border: 1px solid rgba(196,181,164,.45); box-shadow: var(--shadow-card);
}
.bio__photo {
  width: 120px; height: 120px; border-radius: 50%;
  background: url("../img/ange-grah.webp") center / cover no-repeat, var(--sand);
  border: 2px solid var(--accent); flex-shrink: 0;
}
.bio__text h3 { font-family: var(--f-serif); font-weight: 700; font-size: 1.5rem; color: var(--dark); margin-bottom: 6px; }
.bio__text p { color: var(--char); opacity: .82; }

/* =========================================================
   PATRIMOINE / HERITAGE
   ========================================================= */
.heritage { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.heritage__badge { margin: 0 auto; flex-shrink: 0; max-width: 180px; }
.heritage__badge img { width: 100%; height: auto; display: block; }
.heritage__text h2 { color: var(--dark); }
.heritage__text .lede { color: var(--char); opacity: .82; }
@media (min-width: 760px) { .heritage { grid-template-columns: 180px 1fr; } }

/* =========================================================
   OFFRE / ACTION CULTURELLE
   ========================================================= */
.offer {
  position: relative;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 18px;
  background: linear-gradient(150deg, #fff, var(--beige-solid));
  border: 1.5px solid rgba(196,112,75,.28);
  box-shadow: var(--shadow-card);
}
.offer__tag {
  display: inline-block;
  font-family: var(--f-body); text-transform: uppercase; letter-spacing: 2px;
  font-size: .72rem; color: #fff;
  background: var(--terra-grad);
  padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
}
.offer__title { font-family: var(--f-serif); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--dark); margin-bottom: 16px; }
.offer p { color: var(--char); opacity: .82; }
.offer p strong { color: var(--dark); }
.offer__benefits { display: grid; gap: 18px; grid-template-columns: 1fr; margin: 26px 0; }
.offer__benefits h3 {
  font-family: var(--f-body); text-transform: uppercase; letter-spacing: .8px;
  font-size: .95rem; color: var(--accent); margin-bottom: 4px;
}
.offer__benefits p { font-size: .94em; }
.offer__fineprint { font-size: .86em; font-style: italic; margin-bottom: 22px; }
@media (min-width: 640px) { .offer__benefits { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   INFOS PRATIQUES
   ========================================================= */
.specs { list-style: none; display: grid; grid-template-columns: 1fr; gap: 2px; margin: 28px 0 36px; }
.specs li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 4px; border-bottom: 1px solid rgba(196,181,164,.4);
}
.specs li div { display: flex; flex-direction: column; }
.specs li div span {
  font-family: var(--f-body); text-transform: uppercase; letter-spacing: 1px;
  font-size: .72rem; color: var(--accent); margin-bottom: 2px; font-weight: 600;
}
.specs li div em { font-style: normal; }
.ico {
  width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px;
  fill: none; stroke: var(--accent); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
@media (min-width: 720px) { .specs { grid-template-columns: 1fr 1fr; column-gap: 40px; } }

.downloads { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================
   PRESTATIONS ÉVÉNEMENTS (cartes)
   ========================================================= */
.presta { list-style: none; display: grid; grid-template-columns: 1fr; gap: 18px; margin: 34px 0 40px; }
.presta li {
  padding: 24px; border-radius: var(--radius-card);
  background: #fff; border: 1px solid rgba(196,181,164,.45);
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.presta li:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.presta__ico {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(196,112,75,.1); color: var(--accent);
}
.presta__ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.presta h3 { font-family: var(--f-serif); font-weight: 700; font-size: 1.35rem; color: var(--dark); margin-bottom: 6px; }
.presta p { color: var(--char); opacity: .78; font-size: .95em; }
@media (min-width: 600px) { .presta { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .presta { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   BILLETTERIE (cartes tarifs)
   ========================================================= */
.tickets { list-style: none; display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 46px; }
@media (min-width: 680px) { .tickets { grid-template-columns: repeat(3, 1fr); } }
.ticket {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid rgba(196,181,164,.45);
  border-radius: var(--radius-card); padding: 30px 24px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ticket:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.ticket--featured { border-color: var(--brown); box-shadow: 0 8px 26px rgba(139,111,78,.18); }
.ticket__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brown); color: #fff;
  font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.ticket__name { font-family: var(--f-serif); font-weight: 700; font-size: 1.5rem; color: var(--dark); }
.ticket__price { font-family: var(--f-serif); font-weight: 700; font-size: 2.6rem; line-height: 1; color: var(--brown); margin: 6px 0 4px; }
.ticket__sub { font-size: .88rem; color: var(--char); opacity: .78; min-height: 2.6em; }
.ticket__feats { list-style: none; margin: 18px 0 22px; display: grid; gap: 10px; flex: 1; }
.ticket__feats li { display: flex; gap: 9px; font-size: .86rem; color: var(--char); opacity: .88; }
.ticket__feats li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.ticket .btn { width: 100%; }
.ticket__cpt { display: block; margin-top: 12px; text-align: center; font-size: .78rem; font-weight: 600; color: var(--accent); }
.ticket__fees { font-size: .72rem; color: var(--char); opacity: .6; margin: -2px 0 0; }

/* Preuve sociale + compte à rebours + urgence (billetterie) */
.billet-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 20px 0 24px; }
.billet-trust li {
  font-family: var(--f-body); font-weight: 500; font-size: .78rem; color: var(--char);
  padding: 7px 14px; border-radius: 999px; background: #fff; border: 1px solid rgba(196,181,164,.5);
}
.countdown { display: flex; gap: 12px; justify-content: center; margin: 6px 0 12px; }
.countdown__box {
  min-width: 72px; padding: 12px 10px; border-radius: 12px; text-align: center;
  background: #fff; border: 1px solid rgba(196,181,164,.5); box-shadow: var(--shadow-card);
}
.countdown__box span { display: block; font-family: var(--f-serif); font-weight: 700; font-size: 1.9rem; line-height: 1; color: var(--brown); }
.countdown__box small { display: block; margin-top: 5px; font-size: .6rem; text-transform: uppercase; letter-spacing: 1px; color: var(--char); opacity: .55; }
.billet-urgency { text-align: center; font-weight: 600; font-size: .9rem; color: var(--accent-bright); margin: 0 0 8px; }

/* =========================================================
   MÉDIAS / GALERIE
   ========================================================= */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 28px 0 18px; }
.gallery__item {
  aspect-ratio: 1 / 1; border-radius: 12px;
  background-color: var(--sand);
  border: 1px solid rgba(196,181,164,.45);
  position: relative; overflow: hidden;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.medias__note { text-align: center; color: var(--char); opacity: .7; font-style: italic; font-family: var(--f-serif); font-size: 1.05rem; }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   CONTACT
   ========================================================= */
.section--contact {
  background: radial-gradient(120% 100% at 50% 0%, rgba(196,112,75,.08), transparent 55%), var(--beige);
  text-align: center;
}
.contact__name { font-family: var(--f-serif); font-weight: 700; font-size: 1.5rem; color: var(--accent); margin-bottom: 26px; }
.contact__cards { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 520px; margin: 0 auto 28px; }
.contact__card {
  display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 16px 20px; border-radius: 14px;
  background: #fff; border: 1px solid rgba(196,181,164,.45); box-shadow: var(--shadow-card);
  transition: border-color .2s, transform .2s;
}
.contact__card:hover { transform: translateY(-2px); border-color: var(--accent); }
.contact__card div { display: flex; flex-direction: column; }
.contact__card span {
  font-family: var(--f-body); text-transform: uppercase; letter-spacing: 1px;
  font-size: .7rem; color: var(--accent); font-weight: 600;
}
.contact__card strong { font-size: 1.05rem; color: var(--dark); }
.contact__card--wa .ico--wa { fill: #25D366; stroke: none; width: 30px; height: 30px; }
.ico--wa { fill: currentColor; stroke: none; }
.contact__terms { margin-top: 24px; color: var(--char); opacity: .7; font-style: italic; }

/* Formulaire de contact */
.contact-form { max-width: 540px; margin: 6px auto 0; display: grid; gap: 12px; text-align: left; }
.cf-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 520px) { .cf-row { grid-template-columns: 1fr 1fr; } }
.cf-input {
  width: 100%; font-family: var(--f-body); font-size: .95rem; color: var(--dark);
  background: #fff; border: 1px solid rgba(196,181,164,.6); border-radius: 10px;
  padding: 12px 14px; transition: border-color .2s, box-shadow .2s;
}
.cf-input::placeholder { color: var(--taupe); }
.cf-input:focus { outline: none; border-color: var(--brown); box-shadow: 0 0 0 3px rgba(139,111,78,.15); }
.cf-textarea { resize: vertical; min-height: 112px; }
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .btn { width: 100%; margin-top: 4px; }
.cf-status { margin: 4px 0 0; font-size: .9rem; min-height: 1.2em; text-align: center; }
.cf-status--ok { color: var(--green); font-weight: 600; }
.cf-status--err { color: var(--accent-bright); font-weight: 600; }
.cf-select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%238B6F4E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.cf-select:required:invalid { color: var(--taupe); }
.cf-phone { display: grid; grid-template-columns: 120px 1fr; gap: 12px; }
.cf-indicatif { padding-right: 30px; background-position: right 10px center; }
@media (min-width: 560px) { .contact__cards { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   FOOTER (sombre — comme la page école)
   ========================================================= */
.footer { background: var(--dark); color: rgba(245,240,234,.8); padding: 52px 0 40px; }
.footer__inner { text-align: center; padding-top: 8px; }
.footer__title { font-family: var(--f-serif); font-weight: 700; font-size: 1.9rem; color: #fff; margin-bottom: 8px; }
.footer__line { color: rgba(245,240,234,.6); font-size: .9rem; margin-bottom: 18px; }
.footer__social { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.footer__social a {
  font-family: var(--f-body); 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 { color: rgba(245,240,234,.4); font-size: .8rem; }
.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(24px); 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; }
  .hero__scroll { animation: none; }
}

/* =========================================================
   NOS UNIVERS — 3 portes d'entrée (accueil compagnie)
   ========================================================= */
.univers {
  list-style: none; padding: 0; margin: 40px 0 0;
  display: grid; gap: 22px; grid-template-columns: 1fr;
}
@media (min-width: 780px) { .univers { grid-template-columns: repeat(3, 1fr); } }
.univers__card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.univers__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.univers__media {
  aspect-ratio: 16 / 11; width: 100%;
  object-fit: cover; display: block;
  background: var(--sand);
}
.univers__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.univers__kicker {
  font-family: var(--f-cond); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  font-size: .68rem; color: var(--accent);
}
.univers__body h3 { font-family: var(--f-serif); font-weight: 700; font-size: 1.55rem; line-height: 1.1; color: var(--dark); }
.univers__body p { color: var(--char); opacity: .82; font-size: .95rem; line-height: 1.6; flex: 1; }
.univers__link { margin-top: 8px; font-weight: 600; color: var(--brown); display: inline-flex; align-items: center; gap: 6px; }
.univers__card:hover .univers__link { color: var(--brown-dark); }
.univers__link::after { content: "→"; transition: transform .2s var(--ease); }
.univers__card:hover .univers__link::after { transform: translateX(4px); }

/* =========================================================
   LIEU & CONDITIONS (page spectacle)
   ========================================================= */
.lieu { text-align: center; margin: 8px 0 32px; }
.lieu__name { font-family: var(--f-serif); font-weight: 700; font-size: 1.6rem; color: var(--dark); }
.lieu__addr { color: var(--char); opacity: .82; margin-top: 2px; }
.lieu__map { display: inline-block; margin-top: 10px; font-weight: 600; color: var(--brown); }
.lieu__map:hover { color: var(--brown-dark); text-decoration: underline; }
.conditions {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: 720px; display: grid; gap: 13px;
}
.conditions li {
  position: relative; padding-left: 28px;
  color: var(--char); line-height: 1.6; font-size: .96rem;
}
.conditions li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
}
.cgv-note { text-align: center; margin-top: 20px; font-size: .85rem; color: var(--char); opacity: .6; }

/* =========================================================
   COMPOSITION DE LA COMPAGNIE (13 artistes) — accueil
   ========================================================= */
.compo {
  list-style: none; padding: 0; margin: 26px auto 8px;
  max-width: 720px; display: grid; gap: 16px 24px; grid-template-columns: 1fr;
}
@media (min-width: 680px) { .compo { grid-template-columns: 1fr 1fr; } }
.compo li { display: flex; gap: 14px; align-items: flex-start; text-align: left; }
.compo__n {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-serif); font-weight: 700; font-size: 1.25rem;
  background: var(--accent); color: #fff;
}
.compo li strong { display: block; color: #fff; font-size: 1rem; line-height: 1.25; }
.compo li p { margin: 3px 0 0; font-size: .9rem; line-height: 1.5; opacity: .82; }

/* =========================================================
   ARTICLE / GUIDE ÉDITORIAL (page pilier danse-zaouli)
   ========================================================= */
.link-accent { color: var(--accent); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(196,112,75,.35); transition: border-color .2s, color .2s; }
.link-accent:hover { color: var(--accent-bright); border-color: var(--accent-bright); }

.article { padding-bottom: clamp(40px, 7vw, 72px); }
.article__head { padding-top: clamp(40px, 7vw, 72px); }
.breadcrumb { font-size: .82rem; color: var(--cream-dim); margin-bottom: 18px; }
.breadcrumb a { color: var(--accent); border-bottom: 1px solid transparent; }
.breadcrumb a:hover { border-color: var(--accent); }
.breadcrumb span[aria-hidden] { margin: 0 6px; opacity: .5; }
.article__eyebrow {
  font-family: var(--f-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; font-size: .72rem; color: var(--accent);
}
.article__title {
  font-family: var(--f-serif); font-weight: 700;
  font-size: clamp(2.1rem, 5.2vw, 3.3rem); line-height: 1.1;
  color: var(--dark); margin: 12px 0 0;
}
.article__intro { margin-top: 20px; font-size: 1.12rem; line-height: 1.7; color: var(--char); }

.article__hero { margin: clamp(28px, 5vw, 44px) auto 0; }
.article__hero img { width: 100%; height: auto; border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.article__hero figcaption { margin-top: 12px; font-size: .85rem; color: var(--cream-dim); font-style: italic; text-align: center; }

.article__body { margin-top: clamp(32px, 5vw, 48px); font-size: 1.06rem; line-height: 1.78; color: var(--char); }
.article__body h2 {
  font-family: var(--f-serif); font-weight: 700;
  font-size: clamp(1.55rem, 3.4vw, 2.1rem); line-height: 1.18;
  color: var(--dark); margin: clamp(34px, 5vw, 48px) 0 12px;
  scroll-margin-top: 84px;
}
.article__body p { margin: 0 0 18px; }
.article__body ul { margin: 0 0 18px; padding-left: 1.25em; }
.article__body li { margin-bottom: 8px; }
.article__body a:not(.article__cta-card) { color: var(--accent); font-weight: 600; border-bottom: 1px solid rgba(196,112,75,.35); }
.article__body a:not(.article__cta-card):hover { color: var(--accent-bright); border-color: var(--accent-bright); }
.article__body strong { color: var(--dark); font-weight: 600; }

.article__cta { display: grid; gap: 18px; grid-template-columns: 1fr; margin: clamp(28px, 5vw, 40px) 0; }
@media (min-width: 680px) { .article__cta { grid-template-columns: 1fr 1fr; } }
.article__cta-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px; border-radius: var(--radius-card);
  background: var(--beige-solid); border: 1px solid var(--sand);
  box-shadow: var(--shadow-card); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s;
}
.article__cta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--accent); }
.article__cta-k { font-family: var(--f-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: .68rem; color: var(--accent); }
.article__cta-card strong { font-family: var(--f-serif); font-weight: 700; font-size: 1.3rem; line-height: 1.15; color: var(--dark); }
.article__cta-d { font-size: .92rem; line-height: 1.55; color: var(--char); opacity: .82; }

.article__faq { display: grid; gap: 12px; margin-top: 8px; }
.article__faq details { background: var(--beige-solid); border: 1px solid var(--sand); border-radius: var(--radius-button); padding: 4px 20px; }
.article__faq summary { cursor: pointer; padding: 14px 0; font-weight: 600; color: var(--dark); list-style: none; }
.article__faq summary::-webkit-details-marker { display: none; }
.article__faq summary::after { content: "+"; float: right; color: var(--accent); font-size: 1.3rem; line-height: 1; }
.article__faq details[open] summary::after { content: "–"; }
.article__faq details p { margin: 0 0 16px; font-size: .96rem; line-height: 1.7; color: var(--char); opacity: .9; }
