/* ============================================================
   DANSE MARIAGE — Feuille de style globale
   Couleur principale : #E8166D (Rose signature)
   Polices : Playfair Display + Lato (identiques au site)
   ============================================================ */

/* === HEADER STACK (bandeau + nav fixés en haut au scroll) === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(0,0,0,0.10);
}
body.has-nav-besancon {
  /* Compensation pour le header fixed — sera ajusté par JS */
  padding-top: 130px;
}
@media (min-width: 768px) {
  body.has-nav-besancon { padding-top: 130px; }
}
@media (max-width: 768px) {
  body.has-nav-besancon { padding-top: 160px; }
}
/* Bandeau permanent — toujours visible */

/* === TOP BANNER (Guide gratuit en haut du site) === */
.top-banner {
  position: relative;
  background: linear-gradient(135deg, #E8166D 0%, #c01059 100%);
  color: #fff;
  padding: 10px 16px;
  font-size: 0.94rem;
  line-height: 1.4;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.top-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.top-banner__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.top-banner__rating {
  background: #FFE158;
  color: #1a1a1a;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  letter-spacing: 0.2px;
}
.top-banner__text {
  flex: 1 1 auto;
  text-align: center;
  font-weight: 500;
}
.top-banner__text strong {
  font-weight: 900;
  letter-spacing: 0.3px;
}
.top-banner__highlight {
  background: #FFE158;
  color: #1a1a1a;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 0.92rem;
  display: inline-block;
  margin: 0 2px;
}
.top-banner__cta {
  background: #fff;
  color: #E8166D;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: transform 0.15s, background 0.2s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.top-banner__cta:hover {
  transform: scale(1.04);
  background: #FFE158;
  color: #1a1a1a;
}
/* .top-banner__close supprimé — bandeau permanent non fermable */
@media (max-width: 768px) {
  .top-banner { padding: 8px 12px; font-size: 0.85rem; }
  .top-banner__text { font-size: 0.85rem; }
  .top-banner__highlight { font-size: 0.82rem; padding: 1px 6px; }
  .top-banner__cta { padding: 6px 14px; font-size: 0.82rem; }
  .top-banner__icon { font-size: 1.1rem; }
  .top-banner__rating { font-size: 0.82rem; padding: 4px 10px; }
}
/* Bandeau permanent — pas de mode caché */

/* === LIENS GLOSSAIRE — mots-clés cliquables (gras rose) === */
a.glossary-link,
a[href^="/glossaire/"]:not(.btn-primary):not(.btn-primary-large):not(.nav-besancon__cta):not(.hub):not(.expertise-card__link):not(.blog-card):not(.expert-card-cta__btn) {
  color: #E8166D !important;
  font-weight: 700 !important;
  text-decoration: underline;
  text-decoration-color: rgba(232, 22, 109, 0.4);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s, text-decoration-color 0.2s;
  cursor: pointer;
}
a.glossary-link:hover,
a[href^="/glossaire/"]:not(.btn-primary):not(.btn-primary-large):not(.nav-besancon__cta):not(.hub):not(.expertise-card__link):not(.blog-card):not(.expert-card-cta__btn):hover {
  color: #c01059 !important;
  text-decoration-color: #c01059;
  text-decoration-thickness: 2px;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700;900&display=swap');

/* ---- Variables ---- */
:root {
  --red: #E8166D;
  --rose: #E8166D;
  --red-light: #FFE8F3;
  --red-dark: #c01059;
  --rose-dark: #c01059;
  --rose-light: #FFE8F3;
  --white: #ffffff;
  --black: #1a1a1a;
  --grey-dark: #333333;
  --grey-mid: #666666;
  --grey-light: #f8f8f8;
  --grey-border: #e5e5e5;
  --gold: #b8963e;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', Arial, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-strong: 0 8px 40px rgba(200,16,46,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 700; line-height: 1.25; color: var(--black); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
strong { font-weight: 700; }

/* ---- Layout ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--grey { background: var(--grey-light); }
.section--red { background: var(--rose); color: var(--white); }
.section--red h2, .section--red h3, .section--red p { color: var(--white); }
.section-title { text-align: center; margin-bottom: 16px; }
.section-subtitle { text-align: center; color: var(--grey-mid); font-size: 1.1rem; max-width: 700px; margin: 0 auto 48px; }
.section-title-line { width: 60px; height: 4px; background: var(--rose); margin: 12px auto 24px; border-radius: 2px; }

/* ---- Navigation ---- */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.10); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar__logo { font-family: var(--font-title); font-size: 1.4rem; font-weight: 900; color: var(--black); letter-spacing: -0.5px; }
.navbar__logo span { color: var(--rose); }
.navbar__logo img { height: 48px; width: auto; }
.navbar__nav { display: flex; align-items: center; gap: 4px; }
.navbar__nav > li { position: relative; }
.navbar__nav > li > a { font-family: var(--font-body); font-weight: 700; font-size: 0.88rem; color: var(--grey-dark); padding: 8px 12px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: 0.5px; display: block; transition: background var(--transition), color var(--transition); }
.navbar__nav > li > a:hover, .navbar__nav > li > a.active { background: var(--red-light); color: var(--rose); }
.dropdown { position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition); z-index: 200; }
.navbar__nav > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 18px; font-size: 0.88rem; color: var(--grey-dark); font-weight: 400; border-bottom: 1px solid var(--grey-border); }
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--red-light); color: var(--rose); }
.navbar__cta { background: var(--rose); color: var(--white) !important; padding: 10px 20px !important; border-radius: 50px !important; font-weight: 700 !important; white-space: nowrap; transition: background var(--transition), transform var(--transition) !important; }
.navbar__cta:hover { background: var(--red-dark) !important; color: var(--white) !important; transform: scale(1.04) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--black); border-radius: 2px; transition: all var(--transition); }

/* ---- Hero ---- */
.hero { background: linear-gradient(135deg, #1a1a1a 0%, #2d0a12 100%); color: var(--white); padding: 100px 0 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8102E' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero__badge { display: inline-block; background: var(--rose); color: var(--white); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; }
.hero h1 { color: var(--white); margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero h1 span { color: var(--rose); }
.hero__subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 auto 36px; }
.hero__cta-group { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 48px; }
.hero__stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12); }
.hero__stat { text-align: center; }
.hero__stat-number { font-family: var(--font-title); font-size: 2.2rem; font-weight: 900; color: var(--rose); display: block; }
.hero__stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

/* ---- Buttons ---- */
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: all var(--transition); cursor: pointer; border: none; text-align: center; white-space: nowrap; }
.btn--primary { background: var(--rose); color: var(--white); box-shadow: 0 4px 20px rgba(200,16,46,0.3); }
.btn--primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,16,46,0.4); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn--outline:hover { background: var(--white); color: var(--rose); }
.btn--outline-red { background: transparent; color: var(--rose); border: 2px solid var(--rose); }
.btn--outline-red:hover { background: var(--rose); color: var(--white); }
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-pulse { animation: pulse 2.5s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 20px rgba(200,16,46,0.3); } 50% { box-shadow: 0 4px 32px rgba(200,16,46,0.6); } }

/* ---- Cards ---- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 32px; transition: transform var(--transition), box-shadow var(--transition); border-top: 4px solid transparent; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); border-top-color: var(--rose); }
.card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--grey-mid); font-size: 0.95rem; }

/* ---- Fears section ---- */
.fear-item { display: flex; gap: 20px; padding: 24px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 20px; align-items: flex-start; border-left: 4px solid var(--rose); }
.fear-item__icon { font-size: 2rem; flex-shrink: 0; }
.fear-item__content h3 { margin-bottom: 6px; color: var(--rose); }
.fear-item__content p { margin: 0; color: var(--grey-mid); }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); position: relative; border-top: 3px solid var(--rose); }
.testimonial__stars { color: #f4a800; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial__text { color: var(--grey-dark); font-style: italic; margin-bottom: 16px; font-size: 0.95rem; line-height: 1.7; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--red-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-weight: 700; color: var(--rose); font-size: 1.1rem; flex-shrink: 0; }
.testimonial__name { font-weight: 700; font-size: 0.95rem; }
.testimonial__location { font-size: 0.82rem; color: var(--grey-mid); }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey-border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-weight: 700; font-size: 1rem; color: var(--black); gap: 16px; transition: color var(--transition); }
.faq-question:hover { color: var(--rose); }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--rose); flex-shrink: 0; font-weight: 300; transition: transform var(--transition); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; color: var(--grey-mid); font-size: 0.95rem; line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* ---- CTA Section ---- */
.cta-section { background: linear-gradient(135deg, var(--rose) 0%, var(--red-dark) 100%); color: var(--white); text-align: center; padding: 80px 0; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.88); max-width: 600px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-section .btn--outline { border-color: rgba(255,255,255,0.5); }

/* ---- Breadcrumb ---- */
.breadcrumb { padding: 14px 0; font-size: 0.85rem; color: var(--grey-mid); }
.breadcrumb a { color: var(--grey-mid); }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb span { margin: 0 8px; }

/* ---- Lists ---- */
.list-check { padding-left: 0; }
.list-check li { padding: 6px 0 6px 28px; position: relative; color: var(--grey-dark); font-size: 0.97rem; }
.list-check li::before { content: '✓'; position: absolute; left: 0; color: var(--rose); font-weight: 900; }
.list-bullet li { padding: 6px 0 6px 24px; position: relative; color: var(--grey-dark); font-size: 0.97rem; }
.list-bullet li::before { content: '•'; position: absolute; left: 0; color: var(--rose); font-size: 1.2rem; line-height: 1.4; }
.list-numbered { counter-reset: item; }
.list-numbered li { counter-increment: item; padding: 8px 0 8px 36px; position: relative; color: var(--grey-dark); font-size: 0.97rem; }
.list-numbered li::before { content: counter(item); position: absolute; left: 0; background: var(--rose); color: var(--white); width: 24px; height: 24px; border-radius: 50%; font-size: 0.78rem; font-weight: 700; display: flex; align-items: center; justify-content: center; top: 10px; }

/* ---- Two columns ---- */
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-cols--reverse { direction: rtl; }
.two-cols--reverse > * { direction: ltr; }
@media (max-width: 768px) { .two-cols { grid-template-columns: 1fr; gap: 32px; } .two-cols--reverse { direction: ltr; } }

/* ---- Highlight box ---- */
.highlight-box { background: var(--red-light); border-left: 4px solid var(--rose); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 24px 0; }
.highlight-box p { margin: 0; color: var(--red-dark); font-weight: 600; }

/* ---- Steps ---- */
.steps { counter-reset: step; }
.step { display: flex; gap: 24px; margin-bottom: 36px; align-items: flex-start; }
.step__number { counter-increment: step; flex-shrink: 0; width: 48px; height: 48px; background: var(--rose); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-size: 1.3rem; font-weight: 700; }
.step__content h3 { margin-bottom: 6px; }
.step__content p { color: var(--grey-mid); margin: 0; }

/* ---- Footer ---- */
.footer { background: #111111; color: rgba(255,255,255,0.75); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand .navbar__logo { color: var(--white); margin-bottom: 16px; display: block; font-size: 1.3rem; }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer__col h4 { color: var(--white); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--rose); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer__bottom a { color: rgba(255,255,255,0.55); }
.footer__bottom a:hover { color: var(--rose); }
.footer__stars { color: #f4a800; margin-top: 12px; font-size: 0.88rem; }

/* ---- Floating CTA bar ---- */
.floating-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--rose); color: var(--white); padding: 14px 24px; display: flex; justify-content: center; align-items: center; gap: 16px; z-index: 999; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); transform: translateY(100%); transition: transform var(--transition); }
.floating-cta.visible { transform: translateY(0); }
.floating-cta p { margin: 0; font-size: 0.95rem; font-weight: 600; }
.floating-cta .btn { padding: 10px 24px; font-size: 0.9rem; background: var(--white); color: var(--rose); }
.floating-cta .btn:hover { background: var(--grey-light); }

/* ---- Trust badges ---- */
.trust-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; padding: 32px 0; border-top: 1px solid var(--grey-border); border-bottom: 1px solid var(--grey-border); margin: 48px 0; }
.trust-badge { text-align: center; }
.trust-badge__value { font-family: var(--font-title); font-size: 2rem; font-weight: 900; color: var(--rose); display: block; }
.trust-badge__label { font-size: 0.8rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 1px; }

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .navbar__nav { display: none; }
  .navbar__nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow); padding: 16px; gap: 0; align-items: stretch; }
  .navbar__nav.open > li > a { padding: 12px 16px; border-bottom: 1px solid var(--grey-border); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-radius: 0; display: none; background: var(--grey-light); }
  .navbar__nav.open > li.open .dropdown { display: block; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 48px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .floating-cta { flex-direction: column; padding: 12px; text-align: center; }
  .hero__cta-group { flex-direction: column; align-items: center; }
  .trust-bar { gap: 20px; }
  .hero__stats { gap: 20px; }
}

/* ---- Animations ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Page intro ---- */
.page-hero { background: linear-gradient(135deg, #1a1a1a 0%, #2d0a12 100%); color: var(--white); padding: 70px 0 56px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero h1 span { color: var(--rose); }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 640px; margin: 0 auto; font-size: 1.08rem; }

/* ---- Table comparison ---- */
.comparison-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.comparison-table th { background: var(--rose); color: var(--white); padding: 14px 18px; text-align: left; font-weight: 700; font-size: 0.95rem; }
.comparison-table td { padding: 13px 18px; border-bottom: 1px solid var(--grey-border); font-size: 0.93rem; }
.comparison-table tr:nth-child(even) td { background: var(--grey-light); }
.comparison-table .check { color: var(--rose); font-weight: 900; }
.comparison-table .cross { color: #999; }

/* ============================================================
   EXTENSIONS — Nouvel angle Pain Points + Double expertise
   Ajouté 2026-05-12 — garde le design rose signature
   ============================================================ */

/* ---- Skip link ---- */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--rose); color: var(--white); padding: 12px 18px; z-index: 9999; }
.skip-link:focus { left: 16px; top: 16px; }

/* ---- Header sticky moderne ---- */
/* .site-header est désormais en position:fixed (voir top du fichier) — règle override */
.site-header { position: fixed !important; top: 0 !important; left: 0; right: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 18px rgba(0,0,0,0.10); }
.site-header__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.site-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-title); font-size: 1.25rem; font-weight: 900; color: var(--black); text-decoration: none; }
.site-logo .icon { color: var(--rose); }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav > a, .site-nav .dropdown > a { font-family: var(--font-body); font-weight: 700; font-size: 0.85rem; color: var(--grey-dark); padding: 8px 12px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; transition: all var(--transition); }
.site-nav > a:hover, .site-nav .dropdown > a:hover { background: var(--rose-light); color: var(--rose); }
.site-nav .dropdown { position: relative; }
.site-nav .dropdown__chevron { font-size: 0.7rem; margin-left: 4px; }
.site-nav .dropdown__menu { position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 240px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--transition); padding: 8px 0; list-style: none; }
.site-nav .dropdown:hover .dropdown__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav .dropdown__menu a { display: block; padding: 10px 18px; font-size: 0.88rem; color: var(--grey-dark); font-weight: 400; text-decoration: none; }
.site-nav .dropdown__menu a:hover { background: var(--rose-light); color: var(--rose); }
.site-nav .dropdown__menu-hub { font-weight: 700 !important; color: var(--rose) !important; border-bottom: 1px solid var(--grey-border); }
.cta-reserver { background: var(--rose); color: var(--white); padding: 10px 20px; border-radius: 50px; font-weight: 700; text-decoration: none; font-size: 0.88rem; white-space: nowrap; transition: all var(--transition); }
.cta-reserver:hover { background: var(--rose-dark); color: var(--white); transform: scale(1.04); }

/* ---- Hero v2 (blanc & rose clair — design signature) ---- */
.hero { position: relative; min-height: 580px; padding: 80px 24px; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, var(--white) 0%, var(--rose-light) 100%); color: var(--black); }
.hero h1 { color: var(--black); margin-bottom: 18px; }
.hero h1 span { color: var(--rose); }
.hero__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.15; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero__inner { max-width: 820px; }
.hero__lead { font-size: 1.15rem; color: var(--grey-dark); margin: 16px 0 28px; line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.hero__proof { display: flex; align-items: center; gap: 12px; color: var(--grey-mid); font-size: 0.92rem; }
.hero__avatars { display: flex; }
.hero__avatars img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--white); object-fit: cover; margin-left: -10px; }
.hero__avatars img:first-child { margin-left: 0; }

.btn-primary-large { display: inline-block; background: var(--rose); color: var(--white); padding: 16px 32px; border-radius: 50px; font-weight: 700; text-decoration: none; box-shadow: 0 8px 30px rgba(232,22,109,0.45); transition: all var(--transition); }
.btn-primary-large:hover { background: var(--rose-dark); color: var(--white); transform: translateY(-2px); }
.btn-secondary { display: inline-block; background: transparent; color: var(--rose); padding: 12px 24px; border-radius: 50px; font-weight: 700; text-decoration: none; border: 2px solid var(--rose); transition: all var(--transition); }
.btn-secondary:hover { background: var(--rose); color: var(--white); }

/* ---- Pain block (douleurs) — blanc avec accents roses ---- */
.pain-block { background: var(--white); color: var(--black); padding: 70px 24px; }
.pain-block__inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.pain-block h2 { color: var(--rose); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 32px; }
.pain-block h2::before { content: '⚠️'; display: block; font-size: 2.2rem; margin-bottom: 12px; }
.pain-block__list { list-style: none; padding: 0; max-width: 850px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 16px; }
.pain-block__list li { background: var(--rose-light); padding: 18px 24px; border-left: 4px solid var(--rose); border-radius: var(--radius); text-align: left; font-size: 1rem; line-height: 1.6; color: var(--grey-dark); }
.pain-block__list li strong { color: var(--rose); }

/* ---- Agitation block ---- */
.agitation-block { background: var(--white); padding: 70px 24px; }
.agitation-block__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.agitation-block h2 { color: var(--rose); margin-bottom: 24px; }
.agitation-block p { font-size: 1.1rem; line-height: 1.8; color: var(--grey-dark); margin-bottom: 18px; }

/* ---- Section générique ---- */
.section__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section--surface { background: var(--rose-light); }
.section--surface-low { background: var(--grey-light); }
.section__head { text-align: center; margin-bottom: 40px; }
.section__head h2 { margin-bottom: 12px; }
.section__head p { color: var(--grey-mid); max-width: 700px; margin: 12px auto 0; }
.badge-info { display: inline-block; background: var(--rose); color: var(--white); font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px; }
.accent { width: 60px; height: 4px; background: var(--rose); margin: 12px auto; border-radius: 2px; }

/* ---- Bento 3 cards (solution) ---- */
.bento-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.bento-card { padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: transform var(--transition); }
.bento-card:hover { transform: translateY(-4px); }
.bento-card--orange { background: var(--white); border: 2px solid var(--rose-light); }
.bento-card--yellow { background: var(--rose-light); }
.bento-card--dark { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); color: var(--white); }
.bento-card--dark h3, .bento-card--dark p { color: var(--white); }
.bento-card h3 { color: var(--rose); }
.bento-card--dark h3 { color: var(--white); }
.bento-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.bento-card h3 { margin-bottom: 8px; }

/* ---- Testimonials grid v2 (with media) ---- */
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.testimonial-card__media { aspect-ratio: 4/3; overflow: hidden; }
.testimonial-card__media img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__body { padding: 24px; }
.testimonial-card__stars { color: #f4a800; margin-bottom: 8px; }
.testimonial-card__name { font-weight: 700; margin-bottom: 4px; }
.testimonial-card__meta { font-size: 0.85rem; color: var(--grey-mid); margin-bottom: 12px; }
.testimonial-card__quote { color: var(--grey-dark); font-style: italic; font-size: 0.95rem; line-height: 1.6; }

/* ---- Benefits grid ---- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.benefit-card { background: var(--white); padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow); border-top: 4px solid var(--rose); transition: transform var(--transition); }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.benefit-card__icon { font-size: 2.2rem; margin-bottom: 12px; }
.benefit-card h3 { margin-bottom: 8px; }
.benefit-card p { color: var(--grey-mid); font-size: 0.95rem; }

/* ---- Process steps ---- */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.process-step { background: var(--white); padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow); position: relative; }
.process-step__num { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--rose); color: var(--white); border-radius: 50%; font-family: var(--font-title); font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; }
.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--grey-mid); font-size: 0.95rem; }

/* ---- Offer detail ---- */
.offer-detail { max-width: 800px; margin: 0 auto; background: var(--white); padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.offer-detail__list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.offer-detail__list li { padding: 8px 0 8px 28px; position: relative; }
.offer-detail__list li::before { content: '✓'; position: absolute; left: 0; color: var(--rose); font-weight: 900; }

/* ---- Author CTA ---- */
.author-cta { background: var(--rose-light); padding: 40px 24px; }
.author-cta__inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.author-cta__avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--white); box-shadow: var(--shadow); }
.author-cta__text { flex: 1; min-width: 260px; }
.author-cta__label { font-size: 0.75rem; font-weight: 700; color: var(--rose); letter-spacing: 1.5px; text-transform: uppercase; }
.author-cta__title { margin: 6px 0; font-size: 1.4rem; }
.author-cta__subtitle { color: var(--grey-dark); font-size: 0.95rem; margin: 0; }
.author-cta__btn { background: var(--rose); color: var(--white); padding: 12px 24px; border-radius: 50px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: all var(--transition); }
.author-cta__btn:hover { background: var(--rose-dark); color: var(--white); transform: scale(1.04); }

/* ---- About block (Anthony details) ---- */
.about-block { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.about-block__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-strong); }
.about-block__credentials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.about-block__credential { background: var(--white); padding: 16px; border-radius: var(--radius); box-shadow: var(--shadow); border-left: 4px solid var(--rose); }
.about-block__credential strong { font-family: var(--font-title); font-size: 1.5rem; color: var(--rose); display: block; }
.about-block__credential span { font-size: 0.85rem; color: var(--grey-mid); }
@media (max-width: 768px) { .about-block { grid-template-columns: 1fr; } }

/* ---- Reviews grid ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.review-card { background: var(--white); padding: 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow); border-top: 3px solid var(--rose); }
.review-card__stars { color: #f4a800; margin-bottom: 8px; }
.review-card__author { font-weight: 700; margin-bottom: 2px; }
.review-card__date { font-size: 0.82rem; color: var(--grey-mid); margin-bottom: 10px; }
.review-card__text { color: var(--grey-dark); font-size: 0.92rem; line-height: 1.6; }

/* ---- Guarantee block ---- */
.guarantee-block { max-width: 800px; margin: 0 auto; text-align: center; background: var(--white); padding: 48px 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.guarantee-block__icon { font-size: 3rem; margin-bottom: 16px; }
.guarantee-block h2 { margin-bottom: 12px; }
.guarantee-block p { color: var(--grey-mid); margin-bottom: 20px; }
.guarantee-block__list { list-style: none; padding: 0; max-width: 600px; margin: 0 auto; text-align: left; display: grid; gap: 10px; }
.guarantee-block__list li { padding: 8px 0 8px 28px; position: relative; }
.guarantee-block__list li::before { content: '🛡️'; position: absolute; left: 0; }

/* ---- City FAQ ---- */
.city-faq { max-width: 820px; margin: 0 auto; }
.city-faq__item { background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.city-faq__item summary { padding: 16px 20px; cursor: pointer; font-weight: 700; color: var(--black); list-style: none; position: relative; padding-right: 48px; }
.city-faq__item summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--rose); font-weight: 300; transition: transform var(--transition); }
.city-faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.city-faq__item summary:hover { color: var(--rose); }
.city-faq__item__answer { padding: 0 20px 20px; color: var(--grey-dark); font-size: 0.95rem; line-height: 1.7; }

/* ---- Formules ---- */
.formules__head { text-align: center; margin-bottom: 36px; }
.formules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.formule-card { background: var(--white); padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow); text-align: center; transition: all var(--transition); position: relative; }
.formule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.formule-card--featured { border-top: 4px solid var(--rose); }
.formule-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--rose); color: var(--white); padding: 4px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.formule-card__label { font-size: 0.75rem; font-weight: 700; color: var(--rose); letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 8px; }
.formule-card h3 { margin-bottom: 12px; }
.formule-card p { color: var(--grey-mid); font-size: 0.95rem; margin-bottom: 18px; }

/* ---- Final CTA ---- */
.final-cta { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); color: var(--white); text-align: center; padding: 60px 32px; border-radius: var(--radius-lg); }
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.92); max-width: 600px; margin: 0 auto 24px; }
.final-cta .btn-primary-large { background: var(--white); color: var(--rose); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.final-cta .btn-primary-large:hover { background: var(--rose-light); color: var(--rose-dark); }

/* ---- City local (KPI + galerie) ---- */
.city-local { background: var(--grey-light); padding: 80px 24px; }
.city-local__inner { max-width: 1200px; margin: 0 auto; }
.city-local__head { text-align: center; margin-bottom: 40px; }
.city-local__head h2 { margin-bottom: 12px; }
.city-local__head p { color: var(--grey-mid); max-width: 700px; margin: 0 auto; }
.city-local__kpi { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-bottom: 56px; max-width: 800px; margin-left: auto; margin-right: auto; }
.city-local__kpi-item { background: var(--white); padding: 28px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow); border-bottom: 4px solid var(--rose); }
.city-local__kpi-item strong { display: block; font-family: var(--font-title); font-size: 2.4rem; color: var(--rose); font-weight: 900; }
.city-local__kpi-item span { font-size: 0.92rem; color: var(--grey-mid); }
.city-local__section-title { text-align: center; margin: 40px 0 24px; font-size: 1.5rem; }
.city-local__section-title small { display: block; font-size: 0.85rem; font-weight: 400; color: var(--grey-mid); margin-top: 4px; }
.city-local__gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.city-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition); }
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.city-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--grey-light); }
.city-card__media img { width: 100%; height: 100%; object-fit: cover; }
.city-card__body { padding: 20px; }
.city-card__badge { display: inline-block; background: var(--rose-light); color: var(--rose); padding: 4px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; margin-bottom: 8px; }
.city-card__name { margin-bottom: 8px; font-size: 1.1rem; }
.city-card__desc { color: var(--grey-mid); font-size: 0.92rem; margin-bottom: 8px; }
.city-card__credit { font-size: 0.75rem; color: #999; }

/* ---- GEO/SEO block ---- */
.geo-seo { max-width: 900px; margin: 0 auto; }
.geo-seo h2 { text-align: center; margin-bottom: 24px; }
.geo-seo__kpi { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 32px; }
.geo-seo__kpi-item { background: var(--rose-light); padding: 20px; border-radius: var(--radius); text-align: center; }
.geo-seo__kpi-item strong { display: block; font-family: var(--font-title); font-size: 1.6rem; color: var(--rose); font-weight: 900; }
.geo-seo__kpi-item span { font-size: 0.85rem; color: var(--grey-dark); }
.geo-seo h3 { margin: 24px 0 12px; }
.geo-seo__voisines { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.geo-seo__voisines a { background: var(--white); border: 1px solid var(--grey-border); padding: 8px 14px; border-radius: 50px; font-size: 0.88rem; color: var(--rose); transition: all var(--transition); }
.geo-seo__voisines a:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }

/* ---- Footer rich ---- */
.site-footer-rich { background: #111; color: rgba(255,255,255,0.75); padding: 64px 24px 32px; }
.site-footer-rich__inner { max-width: 1200px; margin: 0 auto; }
.site-footer-rich__columns, .site-footer-rich__columns2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 32px; }
.site-footer-rich h3 { color: var(--white); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.site-footer-rich ul { list-style: none; padding: 0; }
.site-footer-rich ul li { margin-bottom: 6px; }
.site-footer-rich ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; text-decoration: none; transition: color var(--transition); }
.site-footer-rich ul li a:hover { color: var(--rose); }
.site-footer-rich ul li a.hub { color: var(--rose); font-weight: 700; }
.site-footer-rich__brand { font-family: var(--font-title); font-size: 1.4rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.site-footer-rich__tagline { font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; max-width: 300px; }
.site-footer-rich__info { font-size: 0.85rem; margin-bottom: 8px; }
.site-footer-rich__cta { display: inline-block; background: var(--rose); color: var(--white); padding: 12px 24px; border-radius: 50px; font-weight: 700; text-decoration: none; font-size: 0.88rem; margin: 16px 0; }
.footer-coach-card { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); padding: 12px; border-radius: var(--radius); margin-top: 12px; }
.footer-coach-card__avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.footer-coach-card__label { display: block; font-size: 0.72rem; color: var(--rose); font-weight: 700; }
.footer-coach-card__title { color: var(--white); font-size: 0.95rem; margin: 4px 0 0; }
.footer-coach-card__btn { display: inline-block; margin-top: 8px; background: transparent; color: var(--rose); border: 1px solid var(--rose); padding: 8px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; text-decoration: none; }
.site-footer-rich__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.82rem; }
.site-footer-rich__bottom-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.site-footer-rich__bottom-nav a { color: rgba(255,255,255,0.5); text-decoration: none; }
.site-footer-rich__bottom-nav a:hover { color: var(--rose); }

/* ---- Mobile nav (bottom) ---- */
.mobile-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--grey-border); box-shadow: 0 -4px 12px rgba(0,0,0,0.08); padding: 8px 0; z-index: 100; justify-content: space-around; }
.mobile-nav a { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px; font-size: 0.7rem; color: var(--grey-mid); text-decoration: none; }
.mobile-nav a .icon { font-size: 1.3rem; }
@media (max-width: 768px) { .mobile-nav { display: flex; } body { padding-bottom: 64px; } }

/* ---- Floating CTA round ---- */
#floatingCta, .floating-rdv-btn { position: fixed; bottom: 24px; right: 24px; background: var(--rose); color: var(--white) !important; padding: 14px 22px; border-radius: 50px; font-weight: 700; text-decoration: none; box-shadow: 0 8px 24px rgba(232,22,109,0.5); display: flex; align-items: center; gap: 8px; z-index: 99999; animation: pulseRdv 2.5s infinite; transition: transform var(--transition); font-family: 'Cabin', sans-serif; font-size: 0.95rem; }
#floatingCta:hover, .floating-rdv-btn:hover { transform: scale(1.06); color: var(--white) !important; text-decoration: none; }
@keyframes pulseRdv { 0%, 100% { box-shadow: 0 8px 24px rgba(232,22,109,0.5); } 50% { box-shadow: 0 8px 32px rgba(232,22,109,0.85), 0 0 0 8px rgba(232,22,109,0.15); } }
@media (max-width: 768px) { #floatingCta, .floating-rdv-btn { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.86rem; } }

/* ---- Pain catalog (peurs) ---- */
.pain-catalog { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.pain-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); border-left: 4px solid var(--rose); transition: transform var(--transition); }
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-strong); }
.pain-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.pain-card h3 { margin-bottom: 8px; font-size: 1.1rem; color: var(--rose); }
.pain-card__tease { color: var(--grey-mid); font-size: 0.92rem; line-height: 1.6; }
.pain-card__cta { display: inline-block; margin-top: 12px; font-size: 0.85rem; color: var(--rose); font-weight: 700; }

/* ---- Anthony expertise (4 facettes) ---- */
.expertise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.expertise-card { background: var(--white); padding: 0 0 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow); text-align: center; border-bottom: 4px solid var(--rose); transition: transform var(--transition); overflow: hidden; }
.expertise-card:hover { transform: translateY(-4px); }
.expertise-card__icon { font-size: 2.6rem; margin: 12px 0; }
.expertise-card__photo { width: 100%; height: 200px; object-fit: cover; object-position: center 20%; display: block; margin-bottom: 12px; }

/* === RECADRAGE GLOBAL — montrer les visages (descendre le crop) === */
.hero-v3__visual img,
.ville-hero-photo img,
.about-block__media img,
.expert-card-cta__photo img,
figure img[src*="/images/maries-jour-j/"],
figure img[src*="/images/maries-stresses/"],
figure img[src*="/images/prof-portrait/"],
figure img[src*="/images/prof-competitions/"] {
  object-position: center 22% !important;
}
/* Galeries (hub piliers + villes) — visage en haut */
section img[src*="/images/maries-jour-j/"],
section img[src*="/images/maries-stresses/"],
section img[src*="/images/prof-portrait/"],
section img[src*="/images/prof-competitions/"] {
  object-position: center 22%;
}
/* Cas particuliers — photo en portrait (orientation verticale) */
.expert-card-cta__photo img {
  object-position: center 30% !important;
}
.expertise-card h3, .expertise-card p, .expertise-card .expertise-card__link { padding-left: 20px; padding-right: 20px; }
.expertise-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.expertise-card p { color: var(--grey-mid); font-size: 0.9rem; }
.expertise-card__link { display: inline-block; margin-top: 12px; font-size: 0.85rem; color: var(--rose); font-weight: 700; text-decoration: none; }

/* ---- Video embed ---- */
.video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-strong); margin: 24px 0; background: var(--grey-light); }
.video-embed video, .video-embed iframe { width: 100%; height: 100%; object-fit: cover; }
.video-poster { display: flex; align-items: center; justify-content: center; flex-direction: column; height: 100%; background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); color: var(--white); text-align: center; padding: 24px; }
.video-poster__icon { font-size: 4rem; margin-bottom: 12px; }

/* ---- Photos gallery (mariés) ---- */
.couples-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 24px; }
.couples-gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform var(--transition); }
.couples-gallery img:hover { transform: scale(1.03); }

/* ---- Press article (faux article presse) ---- */
.press-hero { background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e0 100%); padding: 80px 24px; text-align: center; }
.press-hero__source { font-family: var(--font-title); font-size: 1.4rem; color: var(--rose); font-style: italic; margin-bottom: 8px; }
.press-hero__date { font-size: 0.85rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 2px; }
.press-article { max-width: 800px; margin: 0 auto; padding: 48px 24px; }
.press-article__lead { font-size: 1.2rem; line-height: 1.7; color: var(--grey-dark); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 2px solid var(--rose); }
.press-article p { margin-bottom: 18px; line-height: 1.8; color: var(--grey-dark); }
.press-article h2 { font-size: 1.6rem; margin: 36px 0 16px; color: var(--black); }
.press-article blockquote { background: var(--rose-light); border-left: 4px solid var(--rose); padding: 20px 24px; margin: 24px 0; font-style: italic; font-size: 1.1rem; color: var(--rose-dark); }

/* ---- Responsive nav (mobile burger) ---- */
@media (max-width: 992px) {
  .site-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 16px; flex-direction: column; box-shadow: var(--shadow); border-top: 1px solid var(--grey-border); }
  .site-nav.open { display: flex; }
  .site-nav .dropdown { width: 100%; }
  .site-nav .dropdown__menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--grey-light); display: none; }
  .site-nav .dropdown.open .dropdown__menu { display: block; }
  .cta-reserver { margin-left: auto; }
}

/* ---- Responsive small ---- */
@media (max-width: 640px) {
  .hero { min-height: 500px; padding: 60px 20px; }
  .pain-block, .agitation-block, .city-local { padding: 50px 20px; }
  .section { padding: 50px 0; }
  .section__head h2 { font-size: 1.6rem; }
  .author-cta__inner { flex-direction: column; text-align: center; }
}

/* ---- Expertise grid 5 colonnes (5 expertises Anthony) ---- */
.expertise-grid--5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1100px) { .expertise-grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .expertise-grid--5 { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 500px) { .expertise-grid--5 { grid-template-columns: 1fr; } }
.expertise-grid--5 .expertise-card { padding: 20px 16px; }
.expertise-grid--5 .expertise-card__icon { font-size: 2.2rem; margin-bottom: 8px; }
.expertise-grid--5 .expertise-card h3 { font-size: 0.98rem; margin-bottom: 6px; }
.expertise-grid--5 .expertise-card p { font-size: 0.82rem; line-height: 1.45; color: var(--grey-mid); }
.expertise-grid--5 .expertise-card__link { font-size: 0.78rem; margin-top: 8px; }

/* ============================================================
   HERO v3 — Visuel attrayant + scroll 2 promesses (2026-05-12)
   ============================================================ */

/* ---- Hero v3 : layout 2 colonnes (texte + visuel) ---- */
.hero-v3 { background: linear-gradient(135deg, var(--white) 0%, var(--rose-light) 100%); padding: 64px 24px; position: relative; overflow: hidden; }
.hero-v3::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(232,22,109,0.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-v3__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 900px) { .hero-v3__inner { grid-template-columns: 1fr; gap: 24px; } }
.hero-v3__text { padding: 16px 0; }
.hero-v3__eyebrow { display: inline-block; background: var(--rose); color: var(--white); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.hero-v3 h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.1; color: var(--black); margin-bottom: 20px; font-weight: 900; }
.hero-v3 h1 span { color: var(--rose); display: block; }
.hero-v3__lead { font-size: 1.15rem; color: var(--grey-dark); line-height: 1.6; margin-bottom: 24px; max-width: 540px; }
.hero-v3__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-v3__chip { background: var(--white); padding: 8px 16px; border-radius: 50px; font-size: 0.88rem; font-weight: 600; color: var(--rose); border: 1px solid var(--rose-light); box-shadow: var(--shadow); }
.hero-v3__chip strong { color: var(--rose); }
.hero-v3__chip::before { content: '✓ '; color: var(--rose); font-weight: 900; }
.hero-v3__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 18px; }
.hero-v3__proof { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--grey-mid); }
.hero-v3__proof-stars { color: #f4a800; font-size: 1rem; }

.hero-v3__visual { position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px rgba(232,22,109,0.25); background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); display: flex; align-items: center; justify-content: center; color: var(--white); padding: 32px; text-align: center; }
.hero-v3__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-v3__visual-fallback { position: relative; z-index: 1; }
.hero-v3__visual-icon { font-size: 5rem; margin-bottom: 16px; line-height: 1; }
.hero-v3__visual-title { font-family: var(--font-title); font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; line-height: 1.2; }
.hero-v3__visual-sub { font-size: 1rem; opacity: 0.92; }

/* Badges flottants sur le visuel */
.hero-v3__floating-badge { position: absolute; background: var(--white); padding: 12px 16px; border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 10px; z-index: 2; }
.hero-v3__floating-badge--top { top: 20px; right: -16px; }
.hero-v3__floating-badge--bottom { bottom: 20px; left: -16px; }
.hero-v3__floating-badge .icon { font-size: 1.6rem; }
.hero-v3__floating-badge strong { display: block; font-size: 1.2rem; color: var(--rose); font-family: var(--font-title); line-height: 1; }
.hero-v3__floating-badge span { font-size: 0.75rem; color: var(--grey-mid); }

/* ---- Scroll 2 : 3 encadrés "promesses" ---- */
.promesses { padding: 60px 24px; background: var(--white); }
.promesses__inner { max-width: 1200px; margin: 0 auto; }
.promesses__head { text-align: center; margin-bottom: 40px; }
.promesses__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; line-height: 1.2; }
.promesses__head h2 span { color: var(--rose); }
.promesses__head p { color: var(--grey-mid); max-width: 700px; margin: 0 auto; font-size: 1.08rem; }
.promesses__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .promesses__grid { grid-template-columns: 1fr; } }
.promesse-card { background: var(--white); padding: 32px 28px; border-radius: 24px; box-shadow: 0 12px 40px rgba(232,22,109,0.12); border: 2px solid var(--rose-light); position: relative; transition: all var(--transition); overflow: hidden; }
.promesse-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(232,22,109,0.25); border-color: var(--rose); }
.promesse-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--rose), var(--rose-dark)); }
.promesse-card__number { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: var(--rose); color: var(--white); border-radius: 50%; font-family: var(--font-title); font-size: 1.5rem; font-weight: 900; margin-bottom: 16px; box-shadow: 0 8px 20px rgba(232,22,109,0.3); }
.promesse-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--black); line-height: 1.25; }
.promesse-card__highlight { color: var(--rose); font-weight: 900; }
.promesse-card p { color: var(--grey-dark); font-size: 0.96rem; line-height: 1.6; margin-bottom: 12px; }
.promesse-card__metric { display: inline-block; background: var(--rose-light); color: var(--rose-dark); padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-top: 8px; }

/* ---- Bandeau preuves rapide ---- */
.proof-bar { background: var(--rose); color: var(--white); padding: 24px; text-align: center; }
.proof-bar__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: center; }
@media (max-width: 700px) { .proof-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px) { .proof-bar__inner { grid-template-columns: 1fr; gap: 14px; } }
.proof-bar__item { display: flex; align-items: center; gap: 12px; justify-content: center; flex-wrap: wrap; }
.proof-bar__item strong { font-family: var(--font-title); font-size: 1.6rem; font-weight: 900; }
.proof-bar__item span { font-size: 0.88rem; opacity: 0.95; }
@media (max-width: 992px) { .nav-besancon__cta { display: none !important; } }

/* ===== BURGER MENU MOBILE — DRAWER FROM RIGHT ===== */
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; margin-left: 8px; position: relative; z-index: 2147483647; }
.nav-burger span { display: block; width: 26px; height: 3px; background: #1a1a1a; border-radius: 2px; transition: transform 0.3s ease, opacity 0.2s ease; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 9998; opacity: 0; transition: opacity 0.3s; }

@media (max-width: 992px) {
  .nav-burger { display: flex !important; }
  /* Cache la nav inline sur mobile */
  .nav-besancon__links { display: none !important; }

  /* Le drawer = ul nav-besancon__links re-positionné quand body.nav-open */
  body.nav-open .nav-besancon__links,
  html body.nav-open ul.nav-besancon__links {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    height: 100vh !important;
    height: 100dvh !important;
    width: 85vw !important;
    max-width: 360px !important;
    background: #fff !important;
    padding: 80px 24px 32px !important;
    gap: 0 !important;
    overflow-y: auto !important;
    z-index: 2147483647 !important;
    box-shadow: -8px 0 24px rgba(0,0,0,0.18) !important;
    transform: translateX(0) !important;
    animation: drawerSlideIn 0.3s ease-out;
  }
  @keyframes drawerSlideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

  body.nav-open .nav-besancon__links > li { width: 100%; border-bottom: 1px solid #f0d4e3; padding: 14px 0; list-style: none; position: static !important; }
  body.nav-open .nav-besancon__links > li > a { font-size: 1.05rem; font-weight: 700; color: #1a1a1a; display: block; padding: 4px 0; text-transform: uppercase; letter-spacing: 1px; }

  body.nav-open .nav-besancon__dropdown { position: static !important; }
  body.nav-open .nav-besancon__dropdown-menu {
    position: static !important;
    display: block !important;
    box-shadow: none !important;
    background: transparent !important;
    border: 0 !important;
    padding: 10px 0 0 12px !important;
    margin: 8px 0 0 !important;
    min-width: 0 !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
  }
  body.nav-open .nav-besancon__dropdown-menu li { padding: 5px 0; }
  body.nav-open .nav-besancon__dropdown-menu a { font-size: 0.9rem; color: #555; padding: 4px 0; display: block; text-transform: none; letter-spacing: 0; font-weight: 400; }

  /* Animation burger → croix */
  body.nav-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Backdrop sombre quand drawer ouvert */
  body.nav-open::before {
    content: ''; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 2147483646; animation: fadeIn 0.3s;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  body.nav-open { overflow: hidden; }
}

/* Override la règle responsive du bas du fichier (display:none simple) */
@media (max-width: 992px) {
  html body.nav-open ul.nav-besancon__links { display: flex !important; }

  /* FIX CRITIQUE — neutraliser le stacking context de la navbar pendant que le drawer est ouvert.
     Sans ça : .nav-besancon a backdrop-filter + z-index:10 → crée un stacking context qui PIÈGE
     le drawer (ul en position:fixed). Résultat : le backdrop body::before (z-index 2147483646
     au niveau body) passe AU-DESSUS du drawer et bloque les clics sur les liens du menu. */
  body.nav-open .nav-besancon {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: auto !important;
    position: static !important;
    background: transparent !important;
    border-bottom: 0 !important;
  }

  /* Garde le drawer et le burger au-dessus du backdrop, peu importe le DOM */
  body.nav-open .nav-besancon__links,
  body.nav-open .nav-burger {
    pointer-events: auto !important;
  }
  body.nav-open .nav-besancon__links a,
  body.nav-open .nav-besancon__links li {
    pointer-events: auto !important;
  }
}

/* ---- Responsive hero v3 ---- */
@media (max-width: 900px) {
  .hero-v3__floating-badge--top, .hero-v3__floating-badge--bottom { display: none; }
  .hero-v3 h1 { font-size: 2.2rem; }
}

/* ---- Encart "Qui est l'expert danse mariage ?" (sur toutes les pages) ---- */
.expert-card-cta { max-width: 1100px; margin: 48px auto; padding: 24px; background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); color: var(--white); border-radius: 24px; display: grid; grid-template-columns: 96px 1fr auto; gap: 24px; align-items: center; box-shadow: 0 16px 40px rgba(232,22,109,0.3); position: relative; overflow: hidden; }
.expert-card-cta::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%); border-radius: 50%; }
.expert-card-cta__photo { width: 96px; height: 96px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 3.2rem; box-shadow: 0 8px 24px rgba(0,0,0,0.2); position: relative; z-index: 1; overflow: hidden; }
.expert-card-cta__photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.expert-card-cta__text { position: relative; z-index: 1; }
.expert-card-cta__label { display: inline-block; background: rgba(255,255,255,0.25); padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.expert-card-cta__title { font-family: var(--font-title); font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
.expert-card-cta__desc { font-size: 0.95rem; color: rgba(255,255,255,0.95); line-height: 1.5; margin: 0; max-width: 540px; }
.expert-card-cta__btn { background: var(--white); color: var(--rose); padding: 14px 24px; border-radius: 50px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: all var(--transition); box-shadow: 0 4px 16px rgba(0,0,0,0.15); position: relative; z-index: 1; }
.expert-card-cta__btn:hover { background: var(--rose-light); color: var(--rose-dark); transform: scale(1.04); }
@media (max-width: 768px) {
  .expert-card-cta { grid-template-columns: 1fr; text-align: center; padding: 24px 20px; }
  .expert-card-cta__photo { margin: 0 auto; }
  .expert-card-cta__btn { margin: 0 auto; display: inline-block; }
}

/* ============================================================
   FOOTER SIMPLE & EFFICACE (2026-05-13) — angle Pain/Solution + 5 expertises
   ============================================================ */
.footer-v2 { background: linear-gradient(135deg, #1a1a1a 0%, #2d0a12 100%); color: rgba(255,255,255,0.85); padding: 64px 24px 32px; }
.footer-v2__inner { max-width: 1200px; margin: 0 auto; }
.footer-v2__hero { text-align: center; margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-v2__pitch { font-family: var(--font-title); font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 900; color: var(--white); margin-bottom: 14px; line-height: 1.25; max-width: 800px; margin-left: auto; margin-right: auto; }
.footer-v2__pitch span { color: var(--rose); }
.footer-v2__tagline { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 680px; margin: 0 auto 24px; }
.footer-v2__cta { display: inline-block; background: var(--rose); color: var(--white); padding: 16px 32px; border-radius: 50px; font-weight: 700; text-decoration: none; font-size: 1rem; box-shadow: 0 8px 24px rgba(232,22,109,0.4); transition: all var(--transition); }
.footer-v2__cta:hover { background: var(--rose-dark); color: var(--white); transform: translateY(-2px); }

.footer-v2__expertises { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; max-width: 1000px; margin: 0 auto 40px; }
@media (max-width: 900px) { .footer-v2__expertises { grid-template-columns: repeat(2, 1fr); } }
.footer-v2__expertise { background: rgba(255,255,255,0.05); padding: 14px 12px; border-radius: var(--radius); text-align: center; transition: all var(--transition); text-decoration: none; }
.footer-v2__expertise:hover { background: rgba(232,22,109,0.15); border-color: var(--rose); }
.footer-v2__expertise-icon { font-size: 1.6rem; display: block; margin-bottom: 6px; }
.footer-v2__expertise-title { color: var(--white); font-size: 0.82rem; font-weight: 700; line-height: 1.3; }

.footer-v2__columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 40px; }
@media (max-width: 900px) { .footer-v2__columns { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-v2__columns { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 600px) { .hero-photos-trio { grid-template-columns: 1fr !important; gap: 14px !important; } }
.footer-v2__expertises { gap: 14px; }
@media (max-width: 560px) { .footer-v2__expertises { grid-template-columns: 1fr 1fr; } }
.footer-v2__col h4 { color: var(--white); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 1.5px; font-family: var(--font-body); font-weight: 700; margin-bottom: 14px; }
.footer-v2__col ul { list-style: none; padding: 0; margin: 0; }
.footer-v2__col li { margin-bottom: 8px; }
.footer-v2__col a { color: rgba(255,255,255,0.65); font-size: 0.88rem; text-decoration: none; transition: color var(--transition); }
.footer-v2__col a:hover { color: var(--rose); }
.footer-v2__col a.hub { color: var(--rose); font-weight: 700; }

.footer-v2__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 0.8rem; }
.footer-v2__bottom-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-v2__bottom-nav a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-v2__bottom-nav a:hover { color: var(--rose); }

/* ============================================================
   HERO STYLES — Grosse photo dédiée (2026-05-13)
   ============================================================ */
.hero-style-photo { position: relative; min-height: 600px; padding: 0; overflow: hidden; background: linear-gradient(135deg, var(--white) 0%, var(--rose-light) 100%); }
.hero-style-photo__inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; min-height: 600px; align-items: stretch; }
@media (max-width: 900px) { .hero-style-photo__inner { grid-template-columns: 1fr; } }
.hero-style-photo__text { padding: 64px 48px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 900px) { .hero-style-photo__text { padding: 48px 24px; } }
.hero-style-photo__eyebrow { display: inline-block; background: var(--rose); color: var(--white); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 18px; width: fit-content; }
.hero-style-photo h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1.1; color: var(--black); margin-bottom: 20px; font-weight: 900; }
.hero-style-photo h1 span { color: var(--rose); display: block; }
.hero-style-photo__lead { font-size: 1.1rem; color: var(--grey-dark); line-height: 1.6; margin-bottom: 24px; }
.hero-style-photo__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-style-photo__chip { background: var(--white); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--rose-dark); border: 1px solid var(--rose-light); box-shadow: 0 4px 12px rgba(232,22,109,0.08); }
.hero-style-photo__chip::before { content: '✓ '; color: var(--rose); font-weight: 900; }
.hero-style-photo__cta { margin-bottom: 18px; }
.hero-style-photo__proof { display: flex; align-items: center; gap: 8px; color: var(--grey-mid); font-size: 0.9rem; }
.hero-style-photo__proof-stars { color: #f4a800; }

.hero-style-photo__image { position: relative; overflow: hidden; min-height: 600px; }
.hero-style-photo__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-style-photo__image-fallback { position: absolute; inset: 0; background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); display: flex; align-items: center; justify-content: center; flex-direction: column; color: var(--white); padding: 48px; text-align: center; }
.hero-style-photo__image-icon { font-size: 8rem; line-height: 1; margin-bottom: 24px; opacity: 0.95; }
.hero-style-photo__image-title { font-family: var(--font-title); font-size: 2.2rem; font-weight: 900; margin-bottom: 8px; }
.hero-style-photo__image-sub { font-size: 1rem; opacity: 0.92; }
.hero-style-photo__image-credit { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.5); color: var(--white); font-size: 0.7rem; padding: 4px 10px; border-radius: 4px; }
.hero-style-photo__floating-badge { position: absolute; background: var(--white); padding: 14px 18px; border-radius: var(--radius); box-shadow: 0 12px 32px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 12px; z-index: 2; }
.hero-style-photo__floating-badge--bottom { bottom: 28px; left: -16px; }
.hero-style-photo__floating-badge .icon { font-size: 2rem; }
.hero-style-photo__floating-badge strong { display: block; font-size: 1.3rem; color: var(--rose); font-family: var(--font-title); line-height: 1; }
.hero-style-photo__floating-badge span { font-size: 0.75rem; color: var(--grey-mid); }
@media (max-width: 900px) {
  .hero-style-photo__image { min-height: 360px; }
  .hero-style-photo__floating-badge { display: none; }
}

/* ============================================================
   ALIGNEMENT DESIGN BESANÇON (2026-05-13)
   Navbar fixed + Logo "Danse[Mariage].com"
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Crete+Round&family=Cabin:wght@400;500;600;700&display=swap');

/* ---- Navbar BESANÇON style ---- */
.nav-besancon { position: relative; z-index: 10; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--grey-border); height: 68px; }
.nav-besancon__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: 1180px; margin: 0 auto; padding: 0 24px; gap: 16px; }
.nav-besancon__logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--rose); text-decoration: none; line-height: 1; }
.nav-besancon__logo span { color: var(--black); }
.nav-besancon__logo small { font-size: 0.85rem; color: var(--grey-mid); font-weight: 400; font-family: 'Cabin', sans-serif; }
.nav-besancon__links { display: flex; align-items: center; gap: 24px; list-style: none; padding: 0; margin: 0; }
.nav-besancon__links li { position: relative; }
.nav-besancon__links a { font-family: 'Cabin', sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--black); transition: color 0.2s; text-decoration: none; }
.nav-besancon__links a:hover { color: var(--rose); }
.nav-besancon__dropdown { position: relative; z-index: 1100; }
.nav-besancon__dropdown:hover { z-index: 1200; }
.nav-besancon__dropdown > a::after { content: ' ▾'; font-size: 0.7rem; color: var(--grey-mid); }
.nav-besancon__dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--grey-border); border-radius: var(--radius); box-shadow: var(--shadow-strong); min-width: 240px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all var(--transition); padding: 8px 0; list-style: none; margin: 8px 0 0; z-index: 9999; }
.nav-besancon__dropdown:hover .nav-besancon__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-besancon__dropdown-menu li { display: block; }
.nav-besancon__dropdown-menu a { display: block; padding: 9px 18px; font-size: 0.85rem; color: var(--grey-dark); font-weight: 400; }
.nav-besancon__dropdown-menu a:hover { background: var(--rose-light); color: var(--rose); }
.nav-besancon__dropdown-menu .hub { color: var(--rose); font-weight: 700; }
.nav-besancon__right { display: flex; align-items: center; gap: 10px; }
.nav-besancon__rating { font-size: 0.76rem; color: var(--grey-mid); white-space: nowrap; }
.nav-besancon__cta { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); color: var(--white); padding: 10px 22px; border-radius: 50px; font-family: 'Cabin', sans-serif; font-weight: 700; font-size: 0.86rem; text-decoration: none; box-shadow: 0 6px 24px rgba(232,22,109,0.35); transition: all 0.3s; white-space: nowrap; }
.nav-besancon__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232,22,109,0.45); color: var(--white); }

/* Spacer pour compenser la navbar fixed */
body.has-nav-besancon { padding-top: 68px; }

/* Breadcrumb sous navbar */
.bc-besancon { background: var(--grey-light); padding: 10px 0; }
.bc-besancon__inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--grey-mid); }
.bc-besancon__inner a { color: var(--rose); font-weight: 600; text-decoration: none; }
.bc-besancon__inner span.sep { color: var(--grey-mid); }
.bc-besancon__inner span.current { color: var(--grey-mid); }

/* Responsive */
@media (max-width: 992px) {
  .nav-besancon__links { display: none; }
  .nav-besancon__rating { display: none; }
}

/* ============================================================
   CENTRAGE GLOBAL — HERO + SECTIONS HEAD
   Force le centrage horizontal de tout le contenu du haut
   de chaque page (hero, eyebrows, H1, lead, CTA, proof, chips)
   ============================================================ */

/* HERO V2 (pages villes : 130 pages) */
.hero { text-align: center; }
.hero__content { text-align: center; }
.hero__inner {
  max-width: 820px;
  margin: 0 auto !important;
  text-align: center;
}
.hero__inner > * { margin-left: auto; margin-right: auto; }
.hero__badge {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero__lead {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  justify-content: center !important;
  align-items: center;
}
.hero__proof {
  justify-content: center !important;
  text-align: center;
}
.hero__avatars { justify-content: center; }

/* HERO V3 (index, contact, tarifs, expertise/*) */
.hero-v3__inner {
  grid-template-columns: 1fr !important;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.hero-v3__text {
  text-align: center;
  padding: 16px 0;
  max-width: 820px;
  margin: 0 auto;
}
.hero-v3__eyebrow {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.hero-v3 h1 {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-v3__lead {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-v3__chips {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-v3__cta {
  justify-content: center !important;
  align-items: center;
}
.hero-v3__proof {
  justify-content: center !important;
  text-align: center;
}
.hero-v3__visual {
  width: 100%;
  max-width: 480px;
  margin: 32px auto 0;
  overflow: visible;
}

/* SECTIONS HEAD — assurer centrage en haut des sections internes */
.section__head,
.sec-h {
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.section__head .badge-info,
.section__head .pre-t {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.section__head h2,
.sec-h h2 { text-align: center; }
.section__head p,
.sec-h p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.accent,
.div {
  margin-left: auto;
  margin-right: auto;
}

/* PAIN BLOCK — déjà centré mais on renforce pour cohérence */
.pain-block__inner { text-align: center; }
.pain-block__inner h2,
.pain-block__inner > p { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }

/* AGITATION BLOCK */
.agitation-block__inner { text-align: center; }
.agitation-block__inner h2,
.agitation-block__inner > p { text-align: center; }

/* Responsive — garder le centrage en mobile */
@media (max-width: 900px) {
  .hero-v3__inner { grid-template-columns: 1fr !important; }
  .hero-v3__visual { display: none; }
}

/* ============================================================
   PAGES EXPRESS + 5 SECRETS — Design "texte GROS attractif"
   ============================================================ */
.xl-page { background: linear-gradient(180deg, #fff 0%, #FFE8F3 100%); padding: 0; }
.xl-hero { background: linear-gradient(135deg, #E8166D 0%, #c01059 100%); color: #fff; padding: 90px 24px 70px; text-align: center; position: relative; overflow: hidden; }
.xl-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255,255,255,0.12) 0%, transparent 50%); pointer-events: none; }
.xl-hero__eyebrow { display: inline-block; background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.4); color: #fff; padding: 8px 22px; border-radius: 50px; font-size: 0.92rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; position: relative; z-index: 1; }
.xl-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.12; font-weight: 900; color: #fff; max-width: 1280px; margin: 0 auto 24px; position: relative; z-index: 1; padding: 0 12px; }
.xl-hero h1 span { color: #FFE8F3; display: inline; }
@media (min-width: 1024px) { .xl-hero h1 { font-size: clamp(2.4rem, 3.6vw, 3.3rem); max-width: 1320px; } }

/* ============================================================
   ENCART ROBE DE MARIÉE + BOUTON "Voir la solution"
   ============================================================ */
/* === ROBE-WARNING MINI VOYANT — encart proéminent au-dessus de la vidéo === */
.robe-warning-mini {
  background: linear-gradient(135deg, #FFE4C4 0%, #FFAB6F 100%);
  border: 4px solid #E65100;
  border-radius: 18px;
  padding: 28px 32px;
  margin: 0 auto 28px;
  max-width: 980px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 14px 38px rgba(230,81,0,0.28);
  position: relative;
}
.robe-warning-mini::before {
  content: '⚠️';
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.2rem;
  background: #fff;
  border-radius: 50%;
  padding: 6px 12px;
  box-shadow: 0 4px 14px rgba(230,81,0,0.30);
}
.robe-warning-mini__icon {
  display: none;
}
.robe-warning-mini__body {
  flex: 1;
  text-align: left;
}
.robe-warning-mini__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 900;
  color: #BF360C;
  line-height: 1.25;
  margin-bottom: 8px;
}
.robe-warning-mini__answer {
  font-weight: 900;
  color: #BF360C;
  background: #FFE158;
  padding: 2px 10px;
  border-radius: 6px;
  white-space: nowrap;
  display: inline-block;
}
.robe-warning-mini__subtitle {
  font-size: 1.02rem;
  color: #5d2a0a;
  line-height: 1.4;
  font-weight: 500;
}
.robe-warning-mini__cta {
  background: #E65100;
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.15s, background 0.2s;
  box-shadow: 0 6px 18px rgba(230,81,0,0.35);
}
.robe-warning-mini__cta:hover {
  transform: scale(1.05);
  background: #BF360C;
  box-shadow: 0 8px 22px rgba(230,81,0,0.45);
}
@media (max-width: 760px) {
  .robe-warning-mini {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px 22px;
    gap: 14px;
  }
  .robe-warning-mini__body { text-align: center; }
  .robe-warning-mini__cta { font-size: 0.95rem; padding: 12px 22px; }
}

.robe-warning { background: linear-gradient(135deg, #FFF3E0 0%, #FFE4C4 100%); border: 4px solid #E65100; border-radius: 20px; padding: 50px 40px; margin: 50px auto; max-width: 1000px; text-align: center; box-shadow: 0 16px 50px rgba(230,81,0,0.20); position: relative; }
.robe-warning::before { content: '⚠️'; position: absolute; top: -28px; left: 50%; transform: translateX(-50%); font-size: 3.2rem; background: #fff; border-radius: 50%; padding: 8px 14px; box-shadow: 0 6px 18px rgba(230,81,0,0.30); }
.robe-warning__label { display: inline-block; background: #E65100; color: #fff; padding: 6px 18px; border-radius: 50px; font-weight: 800; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.robe-warning__title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: #E65100; line-height: 1.15; margin-bottom: 16px; }
.robe-warning__answer { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; color: #BF360C; line-height: 1; margin-bottom: 20px; }
.robe-warning__answer span { color: #E65100; }
.robe-warning__text { font-size: 1.18rem; line-height: 1.65; color: #5D4037; max-width: 720px; margin: 0 auto 28px; }
.robe-warning__cta { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #E8166D 0%, #c01059 100%); color: #fff !important; padding: 20px 44px; border-radius: 50px; font-weight: 900; font-size: 1.15rem; text-decoration: none; box-shadow: 0 12px 36px rgba(232,22,109,0.40); transition: transform .3s; }
.robe-warning__cta:hover { transform: scale(1.05); color: #fff !important; }
.robe-warning__cta-arrow { display: inline-block; transition: transform .3s; }
.robe-warning__cta:hover .robe-warning__cta-arrow { transform: translateX(6px); }
@media (max-width: 768px) { .robe-warning { padding: 40px 22px; } }

/* Cards de sous-danses */
.danse-card { background: #fff; border-radius: 18px; box-shadow: 0 8px 26px rgba(232,22,109,0.10); overflow: hidden; transition: transform .3s, box-shadow .3s; border-top: 5px solid #E8166D; }
.danse-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(232,22,109,0.20); }
.danse-card__media { aspect-ratio: 4/3; background: linear-gradient(135deg, #FFE8F3 0%, #fce4ec 100%); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.danse-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.danse-card__body { padding: 24px; }
.danse-card__name { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 800; color: #E8166D; margin-bottom: 10px; }
.danse-card__origin { font-size: 0.85rem; color: #888; margin-bottom: 12px; font-style: italic; }
.danse-card__desc { font-size: 1rem; line-height: 1.65; color: #444; }
.danse-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1180px; margin: 40px auto 0; }

/* ============================================================
   ESPACE VIDÉO (montages YouTube à venir)
   ============================================================ */
.video-block { max-width: 1000px; margin: 40px auto; background: linear-gradient(135deg, #1a1a1a 0%, #2d0a12 100%); border-radius: 20px; padding: 40px 30px; text-align: center; box-shadow: 0 16px 50px rgba(0,0,0,0.30); position: relative; overflow: hidden; }
.video-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(232,22,109,0.15) 0%, transparent 60%); pointer-events: none; }
.video-block__label { display: inline-block; background: rgba(232,22,109,0.20); border: 2px solid #E8166D; color: #fff; padding: 6px 18px; border-radius: 50px; font-weight: 800; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; position: relative; z-index: 1; }
.video-block__title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; line-height: 1.2; margin-bottom: 22px; position: relative; z-index: 1; }
.video-block__frame { background: #000; aspect-ratio: 16/9; border-radius: 14px; max-width: 880px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; border: 3px solid rgba(232,22,109,0.50); position: relative; z-index: 1; overflow: hidden; }
.video-block__placeholder-icon { font-size: 4rem; line-height: 1; opacity: 0.85; }
.video-block__placeholder-text { color: rgba(255,255,255,0.75); font-size: 1.05rem; font-weight: 600; max-width: 500px; padding: 0 20px; }
.video-block__placeholder-text small { display: block; margin-top: 8px; color: rgba(255,255,255,0.50); font-size: 0.88rem; font-weight: 400; }
.video-block iframe { width: 100%; height: 100%; border: 0; border-radius: 11px; }

/* Stats chocs nouveaux angles */
.stat-shock { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1180px; margin: 40px auto 0; }
.stat-shock__item { background: linear-gradient(135deg, #fff 0%, #FFE8F3 100%); border-radius: 18px; padding: 36px 24px; text-align: center; box-shadow: 0 10px 30px rgba(232,22,109,0.10); border-top: 6px solid #E8166D; }
.stat-shock__num { font-family: 'Playfair Display', serif; font-size: 3.4rem; font-weight: 900; color: #E8166D; line-height: 1; margin-bottom: 12px; }
.stat-shock__label { font-size: 1rem; color: #555; font-weight: 600; line-height: 1.5; }

/* Section "3 destins" */
.destin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1180px; margin: 40px auto 0; }
.destin-card { background: #fff; border-radius: 18px; padding: 32px 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-left: 6px solid #E65100; text-align: center; }
.destin-card__pct { font-family: 'Playfair Display', serif; font-size: 3.6rem; font-weight: 900; color: #E65100; line-height: 1; margin-bottom: 14px; }
.destin-card__title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; color: #BF360C; margin-bottom: 12px; }
.destin-card__text { font-size: 1rem; line-height: 1.65; color: #555; }
.xl-hero__lead { font-size: clamp(1.15rem, 2vw, 1.55rem); color: rgba(255,255,255,0.95); max-width: 820px; margin: 0 auto 36px; line-height: 1.55; font-weight: 400; position: relative; z-index: 1; }
.xl-hero__cta { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #E8166D; padding: 22px 48px; border-radius: 50px; font-weight: 900; font-size: 1.15rem; text-decoration: none; box-shadow: 0 12px 40px rgba(0,0,0,0.25); transition: transform .3s; position: relative; z-index: 1; }
.xl-hero__cta:hover { transform: scale(1.05); color: #E8166D; }
.xl-hero__pulse { display: inline-block; margin-left: 6px; animation: xlpulse 1.5s infinite; }
@keyframes xlpulse { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }

.xl-section { padding: 70px 24px; }
.xl-section--alt { background: #fff; }
.xl-section--rose { background: #FFE8F3; }
.xl-section__inner { max-width: 1180px; margin: 0 auto; }
.xl-section__title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #1a1a1a; text-align: center; margin-bottom: 18px; line-height: 1.1; }
.xl-section__title span { color: #E8166D; }
.xl-section__lead { text-align: center; font-size: 1.18rem; color: #555; max-width: 800px; margin: 0 auto 50px; line-height: 1.6; }

.xl-argument { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; padding: 30px 0; }
.xl-argument:nth-child(even) { direction: rtl; }
.xl-argument:nth-child(even) > * { direction: ltr; }
.xl-argument__num { display: inline-block; width: 72px; height: 72px; line-height: 72px; text-align: center; background: linear-gradient(135deg, #E8166D 0%, #c01059 100%); color: #fff; font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 900; border-radius: 50%; margin-bottom: 22px; box-shadow: 0 12px 32px rgba(232,22,109,0.4); }
.xl-argument__title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 900; color: #1a1a1a; line-height: 1.12; margin-bottom: 20px; }
.xl-argument__title em { color: #E8166D; font-style: normal; }
.xl-argument__text { font-size: 1.2rem; line-height: 1.7; color: #444; margin-bottom: 18px; }
.xl-argument__text strong { color: #E8166D; font-weight: 800; }
.xl-argument__photo { position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; background: linear-gradient(135deg, #FFE8F3 0%, #fce4ec 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 24px 60px rgba(232,22,109,0.15); border: 6px solid #fff; }
.xl-argument__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.xl-argument__photo-placeholder { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #E8166D; text-align: center; padding: 24px; font-weight: 700; }
.xl-argument__photo-placeholder span { display: block; font-size: 4rem; margin-bottom: 12px; }

.xl-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.xl-pill { background: #fff; border: 2px solid #E8166D; color: #E8166D; padding: 8px 18px; border-radius: 50px; font-weight: 700; font-size: 0.92rem; }

.xl-bigstat { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin: 50px 0; }
.xl-bigstat__item { text-align: center; background: #fff; padding: 36px 24px; border-radius: 18px; box-shadow: 0 12px 36px rgba(232,22,109,0.10); border-top: 6px solid #E8166D; }
.xl-bigstat__num { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 900; color: #E8166D; line-height: 1; margin-bottom: 12px; }
.xl-bigstat__label { font-size: 1rem; color: #555; font-weight: 600; }

.xl-cta-band { background: linear-gradient(135deg, #E8166D 0%, #c01059 100%); padding: 80px 24px; text-align: center; color: #fff; }
.xl-cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; margin-bottom: 22px; line-height: 1.1; font-weight: 900; }
.xl-cta-band p { font-size: 1.18rem; color: rgba(255,255,255,0.95); max-width: 700px; margin: 0 auto 36px; line-height: 1.6; }
.xl-cta-band__btn { display: inline-block; background: #fff; color: #E8166D; padding: 22px 56px; border-radius: 50px; font-weight: 900; font-size: 1.2rem; text-decoration: none; box-shadow: 0 12px 40px rgba(0,0,0,0.3); transition: transform .3s; }
.xl-cta-band__btn:hover { transform: scale(1.05); color: #E8166D; }

.xl-list { max-width: 900px; margin: 30px auto; }
.xl-list__item { display: flex; align-items: flex-start; gap: 18px; background: #fff; padding: 24px; border-radius: 14px; box-shadow: 0 6px 20px rgba(232,22,109,0.08); margin-bottom: 16px; border-left: 5px solid #E8166D; }
.xl-list__icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.xl-list__text { font-size: 1.05rem; line-height: 1.55; color: #333; }
.xl-list__text strong { color: #E8166D; }

.xl-warning { background: #FFF3E0; border-left: 6px solid #FFA000; padding: 24px 28px; margin: 30px auto; max-width: 920px; border-radius: 12px; }
.xl-warning strong { color: #E65100; }
.xl-warning__title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; color: #E65100; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }

.xl-faq { max-width: 880px; margin: 0 auto; }
.xl-faq details { background: #fff; border-radius: 14px; margin-bottom: 14px; padding: 22px 26px; box-shadow: 0 6px 20px rgba(232,22,109,0.08); border-left: 5px solid #E8166D; cursor: pointer; }
.xl-faq summary { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #1a1a1a; outline: none; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.xl-faq summary::-webkit-details-marker { display: none; }
.xl-faq summary::after { content: '+'; font-size: 1.8rem; color: #E8166D; font-weight: 300; transition: transform .3s; }
.xl-faq details[open] summary::after { transform: rotate(45deg); }
.xl-faq details[open] summary { color: #E8166D; }
.xl-faq__answer { padding-top: 16px; font-size: 1.05rem; line-height: 1.7; color: #444; }
.xl-faq__answer strong { color: #E8166D; }

/* Pages express : layout en pile (1 colonne) sur mobile */
@media (max-width: 900px) {
  .xl-argument { grid-template-columns: 1fr; gap: 30px; }
  .xl-argument:nth-child(even) { direction: ltr; }
  .xl-section { padding: 50px 18px; }
  .xl-hero { padding: 70px 18px 50px; }
  .xl-cta-band { padding: 56px 18px; }
}

