/* ============================================================
   KASSIDY VOYANCE — Identite "magazine feminin" rose vif
   Refonte visuelle complete. Structure HTML inchangee.
   ============================================================ */

:root {
  --rose-flash:    #ff2d78;
  --rose-vif:      #ff5fa2;
  --rose-bonbon:   #ff8ec1;
  --rose-poudre:   #ffd6e8;
  --rose-voile:    #fff0f6;

  --fuchsia:       #d6006e;
  --corail:        #ff6f61;
  --abricot:       #ffb05c;
  --prune:         #5e0f3c;
  --aubergine:     #7a1450;

  --blanc:         #ffffff;
  --creme:         #fffafc;
  --gris-rose:     #f7e9f0;
  --encre:         #2b0a1c;
  --encre-doux:    #6b3a52;

  --vert-live:     #1ec97a;
  --vert-live-2:   #0fa862;

  --grad-flash:   linear-gradient(120deg, #ff2d78 0%, #ff5fa2 45%, #ffb05c 100%);
  --grad-rose:    linear-gradient(135deg, #ff5fa2, #d6006e);
  --grad-soft:    linear-gradient(160deg, #fff0f6, #ffd6e8);
  --grad-corail:  linear-gradient(120deg, #ff6f61, #ff2d78);

  --sh-rose:    0 10px 30px rgba(255, 45, 120, 0.28);
  --sh-rose-lg: 0 22px 55px rgba(214, 0, 110, 0.30);
  --sh-soft:    0 6px 20px rgba(122, 20, 80, 0.10);
  --sh-card:    0 14px 40px rgba(214, 0, 110, 0.14);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-pill: 999px;

  --section-y: clamp(2.4rem, 5vw, 4rem);  /* rythme vertical homogène */

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-hand: "Caveat", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--encre);
  background: var(--creme);
  background-image:
    radial-gradient(60% 50% at 85% -5%, rgba(255,95,162,0.22), transparent 70%),
    radial-gradient(50% 45% at 0% 18%, rgba(255,176,92,0.16), transparent 70%),
    radial-gradient(70% 55% at 50% 110%, rgba(214,0,110,0.10), transparent 70%);
  background-attachment: fixed;
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}
@supports (-webkit-touch-callout: none) { body { background-attachment: scroll; } }

img { max-width: 100%; height: auto; display: block; }
.container { width: min(1180px, 92vw); margin-inline: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--prune);
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 900;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { margin: 0 0 1.1em; }

a { color: var(--fuchsia); text-decoration: none; font-weight: 600; transition: color .18s; }
a:hover, a:focus { color: var(--rose-flash); }
strong { color: var(--aubergine); font-weight: 800; }
::selection { background: var(--rose-flash); color: #fff; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 250, 252, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 2px solid var(--rose-poudre);
  box-shadow: 0 4px 24px rgba(214,0,110,0.06);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  width: min(1180px, 92vw); margin-inline: auto; padding: .7rem 0;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-flash); box-shadow: var(--sh-rose);
  position: relative; flex-shrink: 0;
}
.brand-mark::after {
  content: "\2665"; position: absolute; inset: 0;
  display: grid; place-items: center; color: #fff; font-size: 18px;
}
.brand-text {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.5rem; color: var(--prune); line-height: 1;
  display: flex; flex-direction: column;
}
.brand-sub {
  font-family: var(--font-hand); font-weight: 700;
  font-size: 1rem; color: var(--rose-flash); letter-spacing: .5px; margin-top: 2px;
}
.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  display: block; padding: .5rem .85rem; border-radius: var(--r-pill);
  color: var(--encre-doux); font-weight: 700; font-size: .95rem; transition: all .18s;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] {
  background: var(--grad-rose); color: #fff; box-shadow: var(--sh-rose);
}
.cta-compact {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--grad-flash); color: #fff !important;
  padding: .6rem 1.1rem; border-radius: var(--r-pill);
  font-weight: 800; box-shadow: var(--sh-rose);
  transition: transform .18s, box-shadow .18s; flex-shrink: 0;
}
.cta-compact:hover { transform: translateY(-2px) scale(1.03); box-shadow: var(--sh-rose-lg); }
.cta-compact-ico { width: 20px; height: 20px; }
.cta-compact-num { white-space: nowrap; letter-spacing: .3px; }

.burger-toggle { display: none; }
.burger {
  display: none; cursor: pointer; flex-direction: column; gap: 5px;
  padding: 8px; flex-shrink: 0; position: relative; z-index: 101;
}
.burger span { width: 26px; height: 3px; background: var(--rose-flash); border-radius: 3px; transition: transform .25s, opacity .2s; transform-origin: center; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: transparent; padding: 1rem 0 .2rem; font-size: .85rem; font-weight: 600; }
.breadcrumb .container { display: flex; align-items: center; flex-wrap: wrap; gap: .15rem; }
.breadcrumb a { color: var(--encre-doux); }
.breadcrumb a:hover { color: var(--rose-flash); }
.bc-sep { color: var(--rose-bonbon); margin: 0 .35rem; }
.breadcrumb span[aria-current="page"] { color: var(--fuchsia); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  background: linear-gradient(115deg, var(--fuchsia) 0%, var(--rose-flash) 55%, var(--corail) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rise .8s cubic-bezier(.2,.7,.3,1) both;
}
.hero .lede {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  color: var(--aubergine); font-weight: 500;
  max-width: 640px; margin: 0 auto 1.8rem;
  animation: rise .8s .1s cubic-bezier(.2,.7,.3,1) both;
}
/* ornements flottants */
.hero-ornament, .ornament { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.ornament-svg { position: absolute; opacity: .5; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 0;
  filter: blur(8px); opacity: .55;
}
.hero::before {
  width: 280px; height: 280px; top: -60px; right: -40px;
  background: radial-gradient(circle, var(--rose-bonbon), transparent 65%);
  animation: float 9s ease-in-out infinite;
}
.hero::after {
  width: 220px; height: 220px; bottom: -50px; left: -30px;
  background: radial-gradient(circle, var(--abricot), transparent 65%);
  animation: float 11s ease-in-out infinite reverse;
}
.ornament-stars { font-size: 0; }

/* =========================================================
   BANDEAU ACTIVITE LIVE (sous le hero)
   ========================================================= */
.live-strip {
  position: relative; z-index: 3;
  background: var(--grad-rose);
  color: #fff; overflow: hidden;
  box-shadow: var(--sh-rose);
  margin: 0 0 .5rem;
}
.live-strip-inner {
  display: flex; align-items: center; gap: 0;
  padding: .65rem 0; white-space: nowrap; overflow: hidden;
}
.live-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 800; font-size: .85rem; letter-spacing: .5px;
  text-transform: uppercase; flex-shrink: 0;
  padding: .25rem 1.1rem .25rem 4vw; margin-right: 1.2rem;
  position: relative; z-index: 2;
  background: rgba(214, 0, 110, 0.55);
  box-shadow: 6px 0 14px rgba(214, 0, 110, 0.55);
}
.live-viewport {
  position: relative; flex: 1 1 auto; min-width: 0; overflow: hidden;
}
.live-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.8);
  animation: pulse 1.6s infinite;
}
.live-track { display: inline-flex; gap: 2.5rem; flex-shrink: 0; will-change: transform; animation: marquee 28s linear infinite; padding-left: 2.5rem; }
.live-track span { font-weight: 600; font-size: .92rem; opacity: .96; flex-shrink: 0; }
.live-track span b { font-family: var(--font-hand); font-size: 1.15rem; }

/* =========================================================
   VOYANTES EN LIGNE (compteur dispo)
   ========================================================= */
.online-banner {
  display: flex; align-items: center; justify-content: center;
  gap: .6rem; flex-wrap: wrap;
  margin: 1.5rem auto 0; max-width: 560px;
  background: #fff; border: 2px solid var(--rose-poudre);
  border-radius: var(--r-pill); padding: .7rem 1.4rem;
  box-shadow: var(--sh-soft);
  font-weight: 700; color: var(--prune);
  animation: rise .8s .2s cubic-bezier(.2,.7,.3,1) both;
}
.online-pip {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--vert-live);
  box-shadow: 0 0 0 0 rgba(30,201,122,.7);
  animation: pulse-green 1.8s infinite;
}
.online-count { color: var(--vert-live-2); font-size: 1.15rem; }
.online-avatars { display: inline-flex; }
.online-avatars i {
  width: 30px; height: 30px; border-radius: 50%; display: inline-block;
  border: 2px solid #fff; margin-left: -10px;
  background: var(--grad-corail);
}
.online-avatars i:nth-child(2){ background: var(--grad-rose); }
.online-avatars i:nth-child(3){ background: linear-gradient(135deg,var(--abricot),var(--corail)); }
.online-avatars i:nth-child(4){ background: linear-gradient(135deg,var(--rose-flash),var(--fuchsia)); }

/* =========================================================
   CTA principaux
   ========================================================= */
.double-cta { padding: clamp(2rem,4vw,3rem) 0; }
.double-cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
}
.cta-primary, .cta-secondary, .cta {
  display: block; padding: 1.6rem 1.8rem; border-radius: var(--r-lg);
  text-decoration: none; transition: transform .22s, box-shadow .22s;
  position: relative; overflow: hidden;
}
.cta-primary {
  background: var(--grad-flash); color: #fff !important;
  box-shadow: var(--sh-rose);
}
.cta-primary::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
}
.cta-primary:hover::after { animation: shine .9s; }
.cta-secondary {
  background: #fff; color: var(--prune) !important;
  border: 2px solid var(--rose-poudre); box-shadow: var(--sh-soft);
}
.cta-primary:hover, .cta-secondary:hover, .cta:hover { transform: translateY(-4px); box-shadow: var(--sh-rose-lg); }
.cta-num, .cta-compact-num { font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; display: block; }
.cta-tarif { font-size: .9rem; opacity: .9; }
.cta-label { font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-size: .8rem; display:block; margin-bottom:.3rem; }

/* =========================================================
   REPONSE RAPIDE (encart en tete d'article)
   ========================================================= */
.reponse-rapide {
  background: var(--grad-soft);
  border: 2px solid var(--rose-poudre);
  border-radius: var(--r-md); padding: 1.4rem 1.6rem;
  margin: 1.5rem 0; box-shadow: var(--sh-soft);
  position: relative;
}
.reponse-rapide-label {
  display: inline-block; background: var(--rose-flash); color: #fff;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: .25rem .7rem; border-radius: var(--r-pill); margin-bottom: .6rem;
}
.reponse-rapide strong { color: var(--fuchsia); }

/* =========================================================
   ARTICLE
   ========================================================= */
.page-main { padding: 1rem 0 3rem; }
.article-content { max-width: 760px; margin-inline: auto; }
.article-content h2 {
  margin-top: 2.2rem; position: relative; padding-left: 1rem;
}
.article-content h2::before {
  content: ""; position: absolute; left: 0; top: .15em; bottom: .15em;
  width: 6px; border-radius: 6px; background: var(--grad-flash);
}
.article-content h3 { color: var(--fuchsia); margin-top: 1.6rem; }
.article-content a { text-decoration: underline; text-decoration-color: var(--rose-bonbon); text-underline-offset: 3px; }

/* =========================================================
   CARTES (cards-grid, related, encart)
   ========================================================= */
.cards-grid, .related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem; margin: 1.8rem 0;
}
.related-card, .encart {
  background: #fff; border-radius: var(--r-md); padding: 1.5rem;
  box-shadow: var(--sh-card); border: 1px solid var(--rose-poudre);
  transition: transform .22s, box-shadow .22s; position: relative;
  overflow: hidden;
}
.related-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--grad-flash);
}
.related-card:hover, .encart:hover { transform: translateY(-6px); box-shadow: var(--sh-rose-lg); }
.related-card h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.related-cta {
  display: inline-block; margin-top: .6rem; font-weight: 800;
  color: var(--rose-flash); font-size: .9rem;
}
.related-cta::after { content: " \2192"; transition: margin .2s; }
.related-card:hover .related-cta::after { margin-left: .3rem; }
.related-section { padding: 2rem 0; }

.card-ico, .ico {
  width: 52px; height: 52px; border-radius: 16px; margin-bottom: .9rem;
  background: var(--grad-soft); display: grid; place-items: center;
  color: var(--rose-flash);
}
.card-ico svg, .ico svg { width: 28px; height: 28px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { padding: 2.5rem 0; }
.faq-item {
  background: #fff; border-radius: var(--r-md); margin-bottom: 1rem;
  border: 1px solid var(--rose-poudre); box-shadow: var(--sh-soft);
  padding: 1.3rem 1.5rem; transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--sh-card); }
.faq-item h3, .faq-item summary {
  font-size: 1.1rem; color: var(--prune); margin: 0 0 .5rem;
  font-family: var(--font-display); font-weight: 700; cursor: pointer;
}
.faq-item summary::marker { color: var(--rose-flash); }
.faq-answer { color: var(--encre-doux); }

/* =========================================================
   ARCEP / tarif legal
   ========================================================= */
.arcep-block {
  background: var(--gris-rose); border-radius: var(--r-md);
  padding: 1.2rem 1.5rem; margin: 1.5rem 0;
  border-left: 5px solid var(--rose-flash);
}
.arcep-badge {
  display: inline-block; background: var(--prune); color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: .2rem .6rem; border-radius: var(--r-pill); margin-bottom: .5rem;
}
.arcep-num { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--fuchsia); }
.arcep-tarif { font-weight: 800; color: var(--aubergine); }
.arcep-note, .arcep-label { font-size: .85rem; color: var(--encre-doux); }

/* =========================================================
   STICKY MOBILE (barre d'appel basse)
   ========================================================= */
.sticky-mobile {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: .5rem; padding: .6rem .7rem;
  background: rgba(255,250,252,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 2px solid var(--rose-poudre);
  box-shadow: 0 -6px 24px rgba(214,0,110,.12);
}
.sticky-btn, .sticky-audiotel, .sticky-cb {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: .5rem; border-radius: var(--r-md); text-decoration: none; font-weight: 800;
}
.sticky-audiotel { background: var(--grad-flash); color: #fff !important; }
.sticky-cb { background: #fff; color: var(--prune) !important; border: 2px solid var(--rose-poudre); }
.sticky-num { font-size: 1.05rem; font-family: var(--font-display); }
.sticky-tarif { font-size: .72rem; opacity: .9; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--prune); color: #ffd9ea;
  margin-top: 3rem; padding: 3rem 0 1.5rem;
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--grad-flash);
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 2rem; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: .8rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a { color: #ffc3df; font-weight: 500; font-size: .92rem; }
.footer-col a:hover { color: #fff; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.15); margin-top: 2rem; padding-top: 1.3rem;
  text-align: center; font-size: .85rem; color: #e79ec0;
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: .5rem; }
.footer-legal-links a { color: #ffc3df; }

/* compat zodiaque svg */
.compat-sign-svg { width: 56px; height: 56px; }



/* Cartes "familles de questions" : <a> directs dans .cards-grid */
.cards-grid > a {
  display: block; background: #fff; border-radius: var(--r-md);
  padding: 1.4rem; box-shadow: var(--sh-card);
  border: 1px solid var(--rose-poudre);
  transition: transform .22s, box-shadow .22s;
  position: relative; overflow: hidden; text-decoration: none;
  color: var(--encre);
}
.cards-grid > a::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--grad-flash);
}
.cards-grid > a:hover { transform: translateY(-6px); box-shadow: var(--sh-rose-lg); }
.cards-grid > a h3 { font-size: 1.1rem; margin: .2rem 0 .35rem; }
.cards-grid > a p { font-size: .92rem; color: var(--encre-doux); margin: 0; }
.cards-grid > a:hover h3 { color: var(--rose-flash); }

/* =========================================================
   RYTHME VERTICAL HOMOGENE (espacement des blocs)
   ========================================================= */
.double-cta,
.faq-section,
.related-section { padding: var(--section-y) 0; }

.page-main { padding: var(--section-y) 0 calc(var(--section-y) + 1rem); }

/* containers de contenu nus (titres h2 isolés sur l'accueil) : on leur rend de l'air */
.page-main > .container { margin-bottom: var(--section-y); }
.page-main > .container:last-child { margin-bottom: 0; }

/* espace au-dessus de chaque h2 de section pour eviter le collage */
section + section { margin-top: .5rem; }

/* grilles de cartes : marge haute/basse coherente */
.cards-grid, .related-grid { margin: 1.5rem 0; }

/* l'encart reponse-rapide et arcep ne collent pas au texte */
.reponse-rapide { margin: 1.6rem 0; }
.arcep-block { margin: 1.8rem 0; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes float { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-22px) translateX(12px); } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.8); }
  70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(30,201,122,.7); }
  70% { box-shadow: 0 0 0 10px rgba(30,201,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,201,122,0); }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes shine { to { left: 130%; } }

/* reveal au scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s, transform .7s; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 860px) {
  .header-inner { position: relative; }
  .burger { display: flex; order: 3; margin-left: .25rem; }
  .cta-compact { order: 2; margin-left: auto; }
  .brand { order: 1; }
  .primary-nav {
    order: 4;
    position: fixed; left: 0; right: 0; top: 60px; margin: 0;
    background: rgba(255,250,252,.98); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    transform: translateY(-130%); transition: transform .32s cubic-bezier(.2,.8,.3,1);
    z-index: 95; max-height: calc(100vh - 60px); overflow-y: auto;
    box-shadow: 0 14px 40px rgba(214,0,110,.18);
    border-bottom: 2px solid var(--rose-poudre);
  }
  .primary-nav ul { flex-direction: column; gap: 0; padding: 1rem 6vw 1.5rem; }
  .primary-nav a { padding: .9rem 1rem; font-size: 1.05rem; }
  .primary-nav li { border-bottom: 1px solid var(--rose-poudre); }
  .primary-nav li:last-child { border-bottom: 0; }

  /* ouverture */
  .burger-toggle:checked ~ .primary-nav { transform: translateY(0); }
  /* burger -> croix quand ouvert */
  .burger-toggle:checked ~ .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .burger-toggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
  .burger-toggle:checked ~ .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .cta-compact { padding: .5rem .8rem; }
  .cta-compact-num { display: none; }
  .double-cta-grid { grid-template-columns: 1fr; }
  .sticky-mobile { display: flex; }
  body { padding-bottom: 76px; }
  .live-badge { padding-left: 6vw; }
}

/* --- Correctifs hero : ornement étoiles ne doit pas pousser le contenu --- */
.ornament-stars {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 900px; height: auto; opacity: .6;
  color: var(--rose-bonbon); z-index: 0; pointer-events: none;
}
.hero { display: flex; flex-direction: column; justify-content: center; }
.hero h1 { position: relative; z-index: 2; padding: 0 .2em; }
.hero .lede { position: relative; z-index: 2; }
.no-js .reveal { opacity: 1; transform: none; }

/* =========================================================
   AJUSTEMENTS MOBILE FIN (<= 600px)
   Modules plus compacts, hero maîtrisé, ornement discret
   ========================================================= */
@media (max-width: 640px) {
  body { font-size: 15px; }

  /* ---------- HERO : compact ---------- */
  .hero { display: block; padding: 1.2rem 0 1rem; min-height: 0; }
  .hero h1 { font-size: 1.9rem; line-height: 1.1; margin-bottom: .4rem; padding: 0; }
  .hero .lede { font-size: 1rem; margin-bottom: .6rem; }
  .ornament-stars, .hero-ornament, .ornament { display: none; }
  .hero::before { width: 120px; height: 120px; top: -20px; right: -20px; opacity: .4; }
  .hero::after  { width: 100px; height: 100px; bottom: -20px; left: -20px; opacity: .4; }

  /* ---------- RYTHME : serré ---------- */
  .double-cta, .faq-section, .related-section { padding: 1.1rem 0; }
  .page-main { padding: 1rem 0 1.4rem; }
  .page-main > .container { margin-bottom: 1.1rem; }
  section + section { margin-top: 0; }

  /* ---------- CARTES : padding minimal, texte resserré ---------- */
  .related-card, .encart {
    padding: .9rem 1rem; border-radius: 16px;
  }
  .related-card h3, .encart h3 { font-size: 1.05rem; margin-bottom: .3rem; }
  .related-card p, .encart p { font-size: .92rem; margin-bottom: .5rem; }
  .faq-item { padding: .85rem 1rem; margin-bottom: .6rem; border-radius: 14px; }
  .faq-item h3 { font-size: 1rem; }
  .faq-answer { font-size: .92rem; }
  .reponse-rapide { padding: .9rem 1rem; margin: .9rem 0; }
  .arcep-block { padding: .85rem 1rem; margin: 1rem 0; }

  /* ---------- GRILLES : 1 colonne serrée ---------- */
  .cards-grid, .related-grid { grid-template-columns: 1fr; gap: .7rem; margin: 1rem 0; }
  .cards-grid > a { padding: .9rem 1rem; }
  .cards-grid > a h3 { font-size: 1.05rem; }
  .cards-grid > a p { font-size: .9rem; }

  /* ---------- CTA : compacts ---------- */
  .double-cta-grid { grid-template-columns: 1fr; gap: .7rem; }
  .cta-primary, .cta-secondary, .cta { padding: .9rem 1rem; border-radius: 16px; }
  .cta-num { font-size: 1.2rem; }
  .cta-label { font-size: .7rem; }
  .cta-tarif { font-size: .82rem; }

  /* ---------- BANDEAU LIVE : fin ---------- */
  .live-strip-inner { padding: .45rem 0; }
  .live-badge { font-size: .72rem; padding: .2rem .7rem .2rem 4vw; margin-right: .6rem; }
  .live-track span { font-size: .8rem; }
  .live-track { gap: 1.6rem; }

  /* ---------- VOYANTES EN LIGNE : compact ---------- */
  .online-banner { padding: .6rem .9rem; margin-top: .9rem; font-size: .88rem; gap: .5rem; }
  .online-count { font-size: 1rem; }
  .online-avatars i { width: 24px; height: 24px; margin-left: -8px; }

  /* ---------- TITRES ---------- */
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
  .article-content h2 { margin-top: 1.4rem; }

  /* ---------- FOOTER : compact ---------- */
  .site-footer { padding: 2rem 0 1rem; }
  .footer-grid { gap: 1.2rem; }
}
