/* ── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #2d2d2d;
  background: #fff;
  overflow-x: hidden;
}

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --violet:       #9B4FC2;
  --violet-light: #C589E0;
  --violet-pale:  #F3E8FB;
  --violet-dark:  #3D1A5C;
  --beige:        #FAF6FF;
  --text:         #2d2d2d;
  --text-light:   #4d4d4d;
  --white:        #ffffff;
  --radius:       12px;
  --shadow:       0 4px 24px rgba(155, 79, 194, 0.10);
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--violet-dark); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); color: var(--violet-dark); }
p  { line-height: 1.8; color: var(--text-light); }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.75rem;
}

/* ── NAV ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155,79,194,0.1);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(155,79,194,0.12); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--violet-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.nav-logo span { color: var(--violet); }

.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--violet); }

.nav-cta {
  background: var(--violet);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--violet-dark) !important; color: var(--white) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--violet-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
/* Burger → X animation */
nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 6rem;
  background: var(--beige);
}

.hero-logo {
  width: 120px;
  margin-bottom: 2rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--violet-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--violet);
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
}
.hero-trust-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  flex-shrink: 0;
}

.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--violet);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--violet-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155,79,194,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--violet);
  border: 2px solid var(--violet);
  margin-left: 1rem;
}
.btn-outline:hover {
  background: var(--violet-pale);
}

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(155,79,194,0.15), transparent 60%);
}

/* ── SECTIONS COMMUNES ──────────────────────────────── */
section { padding: 6rem 2rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-label { text-align: center; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── METHODE ────────────────────────────────────────── */
#methode {
  background: var(--white);
}

.methode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.methode-text p + p { margin-top: 1.2rem; }

.methode-text h2 { margin-bottom: 1.5rem; }

.disclaimer {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: var(--violet-pale);
  border-left: 3px solid var(--violet);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
}
.disclaimer strong { color: var(--violet-dark); font-weight: 700; }

.methode-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pillar {
  padding: 1.5rem;
  background: var(--beige);
  border-radius: var(--radius);
  border-left: 3px solid var(--violet-light);
  transition: border-color 0.3s, transform 0.3s;
}
.pillar:hover {
  border-color: var(--violet);
  transform: translateX(4px);
}
.pillar h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.4rem;
  font-family: 'Lato', sans-serif;
}
.pillar p { font-size: 0.92rem; }

/* ── POUR QUI ────────────────────────────────────────── */
#pour-qui {
  background: var(--beige);
}

.pourqui-intro {
  max-width: 620px;
  margin-bottom: 3rem;
}
.pourqui-intro h2 { margin-bottom: 1rem; }
.pourqui-intro p { font-size: 1.05rem; }

.pourqui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pourqui-item {
  padding: 1.6rem 2rem;
  border-bottom: 1px solid rgba(155,79,194,0.1);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: background 0.2s;
}
.pourqui-item:hover { background: rgba(155,79,194,0.04); }

/* right column items get a left border */
.pourqui-item:nth-child(even) {
  border-left: 1px solid rgba(155,79,194,0.1);
}
/* last row: no bottom border */
.pourqui-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.pourqui-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--violet-light);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
  padding-top: 0.15rem;
}
.pourqui-text h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--violet-dark);
}
.pourqui-text p {
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ── SEANCE ─────────────────────────────────────────── */
#seance {
  background: var(--white);
}

.seance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.seance-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.seance-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.seance-content h2 { margin-bottom: 1.5rem; }
.seance-content p + p { margin-top: 1.2rem; }

.seance-infos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.seance-info {
  padding: 1.2rem;
  background: var(--violet-pale);
  border-radius: var(--radius);
  text-align: center;
}
.seance-info .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--violet-dark);
  display: block;
}
.seance-info .label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.2rem;
  display: block;
}

/* ── LORA ───────────────────────────────────────────── */
#lora {
  background: var(--violet-dark);
  color: var(--white);
}
#lora h2, #lora h3 { color: var(--white); }
#lora p { color: rgba(255,255,255,0.8); }
#lora .section-label { color: var(--violet-light); }

.lora-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: center;
}

.lora-photo {
  position: relative;
}
.lora-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}
.lora-photo::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid rgba(155,79,194,0.5);
  border-radius: var(--radius);
  z-index: 0;
}
.lora-photo img { position: relative; z-index: 1; }

.lora-content h2 { margin-bottom: 1.5rem; }
.lora-content p + p { margin-top: 1.2rem; }

.lora-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.badge {
  padding: 0.4rem 1rem;
  background: rgba(155,79,194,0.3);
  border: 1px solid rgba(197,137,224,0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--violet-light);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lora-quote {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--violet);
  background: rgba(155,79,194,0.15);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.lora-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.95) !important;
  line-height: 1.6;
}

/* ── GALERIE ────────────────────────────────────────── */
#galerie {
  background: var(--beige);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  position: relative;
}
.gallery-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  background: rgba(61,26,92,0);
  transition: background 0.3s, color 0.3s;
  opacity: 0;
}
.gallery-item:hover::after {
  opacity: 1;
  background: rgba(61,26,92,0.35);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,5,20,0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 900px;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* ── AUTRES PRATIQUES ───────────────────────────────── */
#pratiques {
  background: var(--white);
}

.pratiques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pratique-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(155,79,194,0.15);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pratique-card:hover {
  border-color: var(--violet);
  box-shadow: var(--shadow);
}
.pratique-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
}
.pratique-card h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.pratique-card p { font-size: 0.9rem; }

/* ── CONTACT ────────────────────────────────────────── */
#contact {
  background: var(--beige);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { margin-bottom: 2rem; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s;
}
.contact-item:hover { color: var(--violet); }
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--violet-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.1rem;
}
.contact-item-text span {
  font-size: 1rem;
  color: var(--text);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

.contact-note {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: var(--violet-pale);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── CTAs inline ────────────────────────────────────── */
.cta-inline {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.cta-inline a.btn-primary {
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
}
.cta-inline .cta-or {
  font-size: 0.85rem;
  color: var(--text-light);
}
.cta-inline a.cta-link {
  font-size: 0.9rem;
  color: var(--violet);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.cta-inline a.cta-link:hover {
  border-color: var(--violet);
}

.cta-soft {
  margin-top: 2rem;
  font-size: 0.92rem;
  color: var(--text-light);
}
.cta-soft a {
  color: var(--violet);
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px solid var(--violet-light);
  transition: border-color 0.2s, color 0.2s;
}
.cta-soft a:hover {
  color: var(--violet-dark);
  border-color: var(--violet);
}

.cta-banner {
  margin-top: 2.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(155,79,194,0.15);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-banner-text p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--violet-dark);
  margin-bottom: 0.3rem;
}
.cta-banner-text p:last-child {
  font-size: 0.85rem;
  color: var(--text-light);
}
@media (max-width: 600px) {
  .cta-banner { flex-direction: column; align-items: flex-start; }
}

/* ── TEMOIGNAGES ────────────────────────────────────── */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.temoignage {
  background: var(--white);
  border: 1px solid rgba(155,79,194,0.12);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
  box-shadow: var(--shadow);
}
.temoignage::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--violet-light);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.temoignage p {
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  font-size: 0.97rem;
}
.temoignage-author {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.temoignage-initials {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--violet-pale);
  color: var(--violet);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.temoignage-meta strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 700;
}
.temoignage-meta span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.temoignage-stars {
  color: #D4A017;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
@media (max-width: 900px) {
  .temoignages-grid { grid-template-columns: 1fr; }
}

/* ── STICKY CTA MOBILE ──────────────────────────────── */
.sticky-rdv {
  display: none;
}
@media (max-width: 768px) {
  .sticky-rdv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.9rem 1.5rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -2px 20px rgba(155,79,194,0.15);
    border-top: 1px solid rgba(155,79,194,0.12);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sticky-rdv.visible { transform: translateY(0); }
  .sticky-rdv-phone {
    font-size: 0.85rem;
    color: var(--violet);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
  }
  .sticky-rdv .btn-primary {
    padding: 0.65rem 1.4rem;
    font-size: 0.78rem;
    flex-shrink: 0;
  }
  body { padding-bottom: 72px; }
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--violet-dark);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 2rem;
  text-align: center;
}
footer p { font-size: 0.82rem; line-height: 1.8; color: rgba(255,255,255,0.55); }
footer a { color: var(--violet-light); text-decoration: none; }
footer a:hover { color: white; }
.footer-butterfly {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
  opacity: 0.6;
}

/* ── RESPONSIVE ─────────────────────────────────────── */

/* ─ Tablettes & mobile large ─ */
@media (max-width: 900px) {
  .methode-grid,
  .seance-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .lora-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lora-photo { max-width: 320px; margin: 0 auto; }

  .pratiques-grid { grid-template-columns: 1fr; }

  .pourqui-grid { grid-template-columns: 1fr; }
  .pourqui-item:nth-child(even) { border-left: none; }
  .pourqui-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(155,79,194,0.1); }
  .pourqui-item:last-child { border-bottom: none; }

  .temoignages-grid { grid-template-columns: 1fr; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(155,79,194,0.1);
    gap: 1.2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
}

/* ─ Mobile : hero immersif + expérience plein écran ─ */
@media (max-width: 768px) {

  /* Hero plein écran avec image en fond */
  .hero {
    display: block;
    position: relative;
    min-height: 100svh;
    padding-top: 0;
  }
  .hero-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
  }
  .hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .hero-image::after {
    background: linear-gradient(
      to bottom,
      rgba(30, 8, 55, 0.45) 0%,
      rgba(20, 5, 40, 0.55) 40%,
      rgba(10, 2, 25, 0.88) 72%,
      rgba(5, 1, 15, 0.96) 100%
    );
  }
  .hero-content {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4.5rem 1.6rem 2.5rem;
    background: none;
  }

  /* Textes hero sur fond sombre */
  .hero-logo { width: 80px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); }
  .hero-eyebrow { color: rgba(255,255,255,0.65); margin-bottom: 0.6rem; }
  .hero-title {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.12;
  }
  .hero-title em { color: var(--violet-light); }
  .hero-subtitle {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.8);
    max-width: 100%;
    margin-bottom: 1.5rem;
    line-height: 1.65;
  }
  .hero-trust { margin-bottom: 2rem; gap: 0.5rem; }
  .hero-trust-item {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
  }
  .hero-trust-item::before { background: var(--violet-light); }

  /* Boutons hero */
  .btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  .btn-group .btn {
    text-align: center;
    width: 100%;
  }
  .btn-outline {
    margin-left: 0;
    border-color: rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.85);
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: white;
  }

  /* Témoignages : scroll horizontal immersif */
  .temoignages-grid {
    display: flex !important;
    grid-template-columns: unset !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1.2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .temoignages-grid::-webkit-scrollbar { display: none; }
  .temoignage {
    min-width: 82vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  /* reveal ne fonctionne pas en scroll horizontal — on force visible */
  .temoignages-grid .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  /* Témoignages : taille réduite pour tenir dans la carte */
  .temoignage { padding: 1.2rem 1.2rem 1.2rem; }
  .temoignage::before { font-size: 2.2rem; margin-bottom: 0.2rem; }
  .temoignage p { font-size: 0.82rem; line-height: 1.6; }
  .temoignage-stars { font-size: 0.75rem; margin-bottom: 0.4rem; }
  .temoignage-meta strong { font-size: 0.82rem; }
  .temoignage-meta span { font-size: 0.72rem; }
  .temoignage-author { margin-top: 0.9rem; }
  .temoignage-initials { width: 32px; height: 32px; font-size: 0.75rem; }

  /* Galerie : 2 colonnes propres */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-row: span 1; aspect-ratio: 3/4; }

  /* Pour qui */
  .pourqui-item { padding: 1.2rem 0.75rem; }
  .pourqui-num { font-size: 1.3rem; width: 1.6rem; }
}

/* ─ Petits phones (< 560px) ─ */
@media (max-width: 560px) {
  section { padding: 3.5rem 1.2rem; }
  .seance-infos { grid-template-columns: 1fr 1fr; }

  /* Lightbox : flèches dans le viewport */
  .lightbox { padding: 1rem; }
  .lightbox-inner { width: 100%; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-prev,
  .lightbox-next { width: 40px; height: 40px; font-size: 1.2rem; }

  /* Contact map moins haute */
  .contact-map iframe { height: 240px; }

  /* CTA inline : empilé */
  .cta-inline { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════
   PAGES SECONDAIRES (méthode, FAQ, pages "besoins", blog)
   ════════════════════════════════════════════════════════ */

/* ── PAGE HEADER ────────────────────────────────────────── */
.page-header {
  padding: 9rem 2rem 4rem;
  background: var(--beige);
  text-align: center;
}
.page-header .section-label { text-align: center; }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--violet-dark);
  margin: 0.5rem 0 1.2rem;
  line-height: 1.15;
}
.page-header h1 em { font-style: italic; color: var(--violet); }
.page-header-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--violet); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 0.4rem; opacity: 0.5; }
.breadcrumb [aria-current="page"] { color: var(--text); }

/* ── ARTICLE / CONTENU LONG ─────────────────────────────── */
.article-content {
  max-width: 760px;
  margin: 0 auto;
}
.article-content h2 { margin-top: 3rem; margin-bottom: 1.2rem; }
.article-content > h2:first-child,
.article-content > .reveal:first-child h2 { margin-top: 0; }
.article-content h3 { margin-top: 2rem; margin-bottom: 0.8rem; }
.article-content p { margin-bottom: 1.2rem; }
.article-content ul, .article-content ol {
  margin: 0 0 1.2rem 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
}
.article-content li { margin-bottom: 0.5rem; }
.article-content strong { color: var(--violet-dark); }
.article-content .disclaimer { margin-top: 2.5rem; margin-bottom: 2.5rem; }

/* ── FAQ ACCORDION ──────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(155,79,194,0.15);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--violet-dark);
}
.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--violet);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.6rem;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 1.6rem 1.5rem;
}
.faq-answer p { font-size: 0.95rem; margin: 0; }
.faq-answer p + p { margin-top: 0.8rem; }

/* ── CARTES "VOIR AUSSI" ────────────────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.related-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-decoration: none;
  border: 1px solid rgba(155,79,194,0.12);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: block;
}
.related-card:hover {
  border-color: var(--violet);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.related-card .section-label { margin-bottom: 0.6rem; }
.related-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.related-card p { font-size: 0.9rem; margin: 0; }

/* ── BLOG ───────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(155,79,194,0.12);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover { border-color: var(--violet); box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-card-body { padding: 1.8rem; }
.blog-card .section-label { margin-bottom: 0.6rem; }
.blog-card h3 { margin-bottom: 0.6rem; font-size: 1.35rem; }
.blog-card p { font-size: 0.9rem; margin: 0; }
.blog-meta {
  font-size: 0.78rem;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-top: 1rem;
  display: block;
}

/* ── RESPONSIVE — pages secondaires ─────────────────────── */
@media (max-width: 900px) {
  .related-grid, .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-header { padding: 7rem 1.6rem 3rem; }
  .faq-question { font-size: 1.05rem; padding: 1.1rem 1.3rem; }
  .faq-item.open .faq-answer { padding: 0 1.3rem 1.3rem; }
}

/* ── LIEN TEXTE DISCRET (cartes "pour qui", etc.) ───────── */
.text-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--violet);
  text-decoration: none;
  border-bottom: 1px solid var(--violet-light);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
  margin-top: 0.5rem;
}
.text-link:hover { color: var(--violet-dark); border-color: var(--violet-dark); }

/* ── BANDEAU CTA (pages internes) ───────────────────────── */
.cta-band {
  background: var(--violet-dark);
  text-align: center;
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
  max-width: 760px;
  margin: 0 auto;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p {
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 2rem;
}
.cta-band .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.cta-band .btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* ── SECTION ALTERNÉE (pages internes) ──────────────────── */
.alt-bg { background: var(--beige); }

/* ── TABLEAU COMPARATIF (articles) ──────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
}
.compare-table th, .compare-table td {
  border: 1px solid rgba(155,79,194,0.15);
  padding: 0.8rem 1rem;
  text-align: left;
  vertical-align: top;
  color: var(--text-light);
}
.compare-table th {
  background: var(--violet-pale);
  color: var(--violet-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
}
.compare-table td:first-child { font-weight: 700; color: var(--text); white-space: nowrap; }
@media (max-width: 560px) {
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 0.6rem 0.6rem; }
}

/* ── BLOG : META AUTEUR/DATE ─────────────────────────────── */
.article-meta {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}
.article-meta .dot { margin: 0 0.5rem; opacity: 0.5; }
