/* ============================================
   MON-VOYANT.NET — CHARTE GRAPHIQUE
   Concept : Aube Rosée — Lumière Céleste & Sérénité
   ============================================ */

/* ---- 1. RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

/* ---- 2. DESIGN TOKENS ---- */
:root {
  /* Palette Aube Rosée */
  --c-bg: #FAF3EE;
  --c-bg-alt: #F2E4D7;
  --c-bg-deep: #EDD6C5;
  --c-accent-soft: #E5B8A6;
  --c-accent: #D9A89A;
  --c-rose: #C9849C;
  --c-prune: #8B5E6E;
  --c-copper: #A06B3F;
  --c-copper-light: #C08A5E;
  --c-text: #3D2B26;
  --c-text-soft: #6B5249;
  --c-text-mute: #9A8278;
  --c-line: rgba(160, 107, 63, 0.18);
  --c-white: #FFFEFB;

  /* Typographie */
  --f-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-script: 'Caveat', 'Dancing Script', cursive;

  /* Espacements (modulaire) */
  --s-1: 0.5rem;   --s-2: 1rem;    --s-3: 1.5rem;  --s-4: 2rem;
  --s-5: 3rem;     --s-6: 4rem;    --s-7: 6rem;    --s-8: 8rem;
  --s-9: 12rem;

  /* Container */
  --container: 1280px;
  --container-narrow: 920px;

  /* Bordures et ombres */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;
  --shadow-soft: 0 10px 40px -10px rgba(160, 107, 63, 0.18);
  --shadow-strong: 0 30px 80px -20px rgba(139, 94, 110, 0.28);
  --shadow-cta: 0 14px 32px -8px rgba(201, 132, 156, 0.45);

  /* Transitions */
  --t-fast: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --t-slow: 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- 3. CORPS & TYPOGRAPHIE ---- */
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-text);
}

h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { color: var(--c-text-soft); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-copper);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--c-copper);
  opacity: 0.5;
}
.eyebrow.left::before { display: none; }

.script {
  font-family: var(--f-script);
  font-size: 1.6em;
  color: var(--c-rose);
  font-weight: 500;
  line-height: 1;
}

.italic-serif {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
}

/* ---- 4. LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-3);
}
.container.narrow { max-width: var(--container-narrow); }

section { position: relative; padding: var(--s-8) 0; }
section.compact { padding: var(--s-6) 0; }

/* ---- 5. NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background var(--t), backdrop-filter var(--t), padding var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(250, 243, 238, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 var(--c-line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__logo-icon {
  width: 32px; height: 32px;
  display: inline-block;
}
.nav__menu {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
.nav__link {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--c-text);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--t-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--c-copper);
  transition: width var(--t);
}
.nav__link:hover { color: var(--c-copper); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta {
  margin-left: 1rem;
}

.nav__burger {
  display: none;
  width: 28px; height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--c-text);
  transition: transform var(--t), opacity var(--t);
}

/* ---- 6. BOUTONS / CTA ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.8rem;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  border-radius: 999px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn__arrow {
  display: inline-block;
  transition: transform var(--t);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(135deg, var(--c-rose) 0%, var(--c-copper-light) 100%);
  color: var(--c-white);
  box-shadow: var(--shadow-cta);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-prune) 0%, var(--c-copper) 100%);
  opacity: 0;
  transition: opacity var(--t);
}
.btn--primary span { position: relative; z-index: 1; }
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(139, 94, 110, 0.55);
}
.btn--primary:hover::before { opacity: 1; }

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-line);
  padding: 0.95rem 1.7rem;
}
.btn--ghost:hover {
  background: var(--c-text);
  color: var(--c-white);
  border-color: var(--c-text);
}

.btn--copper {
  background: var(--c-copper);
  color: var(--c-white);
}
.btn--copper:hover {
  background: var(--c-prune);
  transform: translateY(-2px);
}

.btn--lg { padding: 1.2rem 2.4rem; font-size: 1rem; }

/* CTA halo (effet pulsation derrière les CTA importants) */
.cta-halo {
  position: relative;
  display: inline-block;
}
.cta-halo::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 168, 154, 0.35) 0%, transparent 70%);
  z-index: -1;
  animation: pulse-halo 3s ease-in-out infinite;
}
@keyframes pulse-halo {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ---- 7. HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero__sun {
  position: absolute;
  top: 18%; right: -8%;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 184, 166, 0.6) 0%, rgba(229, 184, 166, 0) 65%);
  animation: sun-pulse 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero__sun--secondary {
  top: auto; bottom: -10%; right: auto; left: -10%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201, 132, 156, 0.35) 0%, rgba(201, 132, 156, 0) 65%);
  animation-delay: -3s;
  animation-duration: 11s;
}
@keyframes sun-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-6);
  align-items: center;
}
.hero__content { max-width: 600px; }
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero__title {
  margin-bottom: 1.6rem;
}
.hero__title .script {
  display: block;
  margin-bottom: -0.5rem;
  color: var(--c-rose);
  font-size: 0.55em;
}
.hero__title .em {
  font-style: italic;
  color: var(--c-copper);
  font-weight: 300;
}
.hero__lead {
  font-size: 1.15rem;
  margin-bottom: 2.4rem;
  max-width: 500px;
}
.hero__cta-row {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__signals {
  display: flex; gap: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-line);
}
.hero__signal { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__signal-num {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--c-copper);
  line-height: 1;
}
.hero__signal-lbl {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(229, 184, 166, 0.08) 0%, rgba(139, 94, 110, 0.18) 100%);
  pointer-events: none;
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero__visual:hover img { transform: scale(1.06); }

.hero__visual-tag {
  position: absolute;
  bottom: 2rem; left: 2rem; right: 2rem;
  background: rgba(255, 254, 251, 0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  z-index: 2;
  display: flex; align-items: center; gap: 1rem;
}
.hero__visual-tag-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-rose), var(--c-copper-light));
  display: grid; place-items: center;
  color: var(--c-white);
  flex-shrink: 0;
}
.hero__visual-tag-text { font-size: 0.85rem; line-height: 1.4; }
.hero__visual-tag-text strong { color: var(--c-text); display: block; font-weight: 600; }

/* ---- 8. SECTIONS DE BASE ---- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-6);
}
.section-head .eyebrow { margin-bottom: 1.2rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: 1.1rem; }

.section-head.left { text-align: left; margin-left: 0; }

/* ---- 9. CITATION BANDEAU ---- */
.quote-band {
  background: var(--c-bg-alt);
  padding: var(--s-7) 0;
  position: relative;
  overflow: hidden;
}
.quote-band::before, .quote-band::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 168, 154, 0.35) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: float-soft 12s ease-in-out infinite;
}
.quote-band::after {
  top: auto; left: auto;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(201, 132, 156, 0.25) 0%, transparent 70%);
  animation-delay: -6s;
}
@keyframes float-soft {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}
.quote {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.quote__mark {
  font-family: var(--f-display);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--c-copper);
  margin-bottom: 1rem;
  display: inline-block;
}
.quote__text {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.35;
  color: var(--c-text);
  margin-bottom: 1.6rem;
}
.quote__author {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--c-text-mute);
}

/* ---- 10. À PROPOS ---- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-6);
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__visual img { width: 100%; height: 100%; object-fit: cover; }
.about__visual::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 40% 60%, rgba(217, 168, 154, 0.4) 0%, transparent 60%);
  z-index: -1;
  border-radius: 50%;
  animation: sun-pulse 7s ease-in-out infinite;
}
.about__signature {
  font-family: var(--f-script);
  font-size: 2.4rem;
  color: var(--c-rose);
  margin-top: 1.5rem;
  line-height: 1;
}
.about__list {
  display: grid;
  gap: 1.2rem;
  margin: 2rem 0;
}
.about__list li {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: 1.02rem;
  color: var(--c-text-soft);
}
.about__list-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent-soft), var(--c-rose));
  display: grid; place-items: center;
  color: var(--c-white);
}

/* ---- 11. SERVICES (3 PILIERS) ---- */
.pillars {
  background: var(--c-bg);
  position: relative;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.pillar {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid var(--c-line);
}
.pillar:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}
.pillar__visual {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.6rem;
  position: relative;
}
.pillar__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.pillar:hover .pillar__visual img { transform: scale(1.08); }
.pillar__num {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 254, 251, 0.9);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  font-family: var(--f-display);
  color: var(--c-copper);
  font-size: 1.1rem;
  z-index: 2;
}
.pillar__title { margin-bottom: 0.8rem; }
.pillar__desc { margin-bottom: 1.4rem; font-size: 0.97rem; }
.pillar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-copper);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: gap var(--t);
}
.pillar__link:hover { gap: 0.9rem; }

/* ---- 12. PROCESS (étapes) ---- */
.process {
  background: var(--c-bg-alt);
  position: relative;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  position: relative;
}
.process__line {
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--c-copper) 0, var(--c-copper) 6px, transparent 6px, transparent 12px);
  opacity: 0.4;
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px solid var(--c-copper);
  margin: 0 auto 1.4rem;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 1.8rem;
  color: var(--c-copper);
  position: relative;
  transition: all var(--t);
}
.step:hover .step__num {
  background: var(--c-copper);
  color: var(--c-white);
  transform: scale(1.05);
}
.step__title { margin-bottom: 0.6rem; }
.step__desc { font-size: 0.95rem; }

/* ---- 13. GALERIE D'AMBIANCE ---- */
.mood {
  padding: var(--s-7) 0;
}
.mood__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 1rem;
}
.mood__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.mood__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.mood__item:hover img { transform: scale(1.08); }
.mood__item--1 { grid-column: span 5; grid-row: span 3; }
.mood__item--2 { grid-column: span 4; grid-row: span 2; }
.mood__item--3 { grid-column: span 3; grid-row: span 2; }
.mood__item--4 { grid-column: span 4; grid-row: span 2; }
.mood__item--5 { grid-column: span 3; grid-row: span 3; }

/* ---- 14. CTA BANDEAU ---- */
.cta-band {
  background: linear-gradient(135deg, var(--c-prune) 0%, var(--c-copper) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--s-7) 0;
  color: var(--c-white);
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255, 254, 251, 0.18) 0%, transparent 60%);
  border-radius: 50%;
  animation: sun-pulse 8s ease-in-out infinite;
}
.cta-band__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta-band h2 {
  color: var(--c-white);
  margin-bottom: 1.2rem;
}
.cta-band p {
  color: rgba(255, 254, 251, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2.4rem;
}
.cta-band .btn--primary {
  background: var(--c-white);
  color: var(--c-prune);
}
.cta-band .btn--primary::before {
  background: var(--c-bg);
}
.cta-band .btn--primary:hover { color: var(--c-prune); }

/* ---- 15. TÉMOIGNAGES ---- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.testimonial {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.testimonial__stars {
  color: var(--c-copper);
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}
.testimonial__text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--c-text);
  margin-bottom: 1.6rem;
}
.testimonial__author {
  display: flex; gap: 0.9rem; align-items: center;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-rose), var(--c-accent-soft));
  display: grid; place-items: center;
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: 1rem;
}
.testimonial__name { font-weight: 600; font-size: 0.95rem; color: var(--c-text); }
.testimonial__loc { font-size: 0.82rem; color: var(--c-text-mute); }

/* ---- 16. FOOTER ---- */
.footer {
  background: var(--c-text);
  color: var(--c-bg-alt);
  padding: var(--s-7) 0 var(--s-3);
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}
.footer__brand h3,
.footer__brand-title {
  color: var(--c-bg);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-family: var(--f-display);
  font-weight: 400;
}
.footer__nap {
  margin-top: 1.2rem;
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(242, 228, 215, 0.65);
  line-height: 1.6;
}
.footer__nap strong { color: var(--c-bg-alt); font-weight: 600; }
.footer__nap a { color: rgba(242, 228, 215, 0.85); border-bottom: 1px solid rgba(242, 228, 215, 0.3); }
.footer__nap a:hover { color: var(--c-accent-soft); }
.footer__col h3 {
  color: var(--c-accent-soft);
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.lead-large { font-size: 1.08rem; }
.footer__brand p {
  color: rgba(242, 228, 215, 0.7);
  max-width: 320px;
  font-size: 0.95rem;
}
.footer__col h4 {
  color: var(--c-accent-soft);
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.footer__col ul { display: grid; gap: 0.8rem; }
.footer__col a {
  color: rgba(242, 228, 215, 0.75);
  font-size: 0.92rem;
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--c-accent-soft); }
.footer__bar {
  border-top: 1px solid rgba(242, 228, 215, 0.12);
  padding-top: var(--s-3);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(242, 228, 215, 0.55);
}

/* ---- 17. ANIMATIONS DE RÉVÉLATION (scroll) ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--t-slow), transform 1s var(--t-slow);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--t-slow), transform 0.9s var(--t-slow);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.18s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.31s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.44s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.57s; }

/* Mask reveal pour les images */
.reveal-mask {
  position: relative;
  overflow: hidden;
}
.reveal-mask::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-bg);
  transform-origin: right;
  transition: transform 1.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.reveal-mask.is-visible::after { transform: scaleX(0); }

/* SVG line draw */
.line-draw path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2.5s ease;
}
.line-draw.is-visible path { stroke-dashoffset: 0; }

/* Volutes (smoke) animation - hero only */
.smoke-svg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.smoke-svg path {
  animation: smoke-flow 14s ease-in-out infinite;
  transform-origin: center;
}
.smoke-svg path:nth-child(2) { animation-delay: -4s; }
.smoke-svg path:nth-child(3) { animation-delay: -8s; }
@keyframes smoke-flow {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.05); opacity: 0.6; }
}

/* Curseur magnétique (effet sur CTA) */
.magnetic { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }

/* Marquee (citations spirituelles) */
.marquee {
  overflow: hidden;
  background: var(--c-bg-deep);
  padding: 1.2rem 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.marquee__track {
  display: flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__item {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--c-prune);
  display: flex;
  align-items: center;
  gap: 4rem;
}
.marquee__item::after {
  content: '✦';
  color: var(--c-copper);
  font-size: 0.8em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---- 18. RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero__grid, .about__grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .pillars__grid, .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .process__line { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .mood__grid { grid-auto-rows: 110px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  section { padding: var(--s-6) 0; }
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .pillars__grid, .testimonials__grid, .process__grid, .footer__grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero__signals { gap: 1.4rem; }
  .hero__signal-num { font-size: 1.6rem; }
  .mood__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
  .mood__item--1 { grid-column: span 6; grid-row: span 2; }
  .mood__item--2, .mood__item--3, .mood__item--4, .mood__item--5 {
    grid-column: span 3; grid-row: span 2;
  }
  .footer__bar { flex-direction: column; gap: 0.6rem; text-align: center; }
}

/* ---- 18b. CONTENT BLOCKS (texte + image alternés) ---- */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
  margin-bottom: var(--s-6);
}
.content-block:last-child { margin-bottom: 0; }
.content-block.reverse .content-block__visual { order: 2; }
.content-block__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.content-block__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.content-block__visual:hover img { transform: scale(1.04); }
.content-block__visual::before {
  content: '';
  position: absolute;
  inset: -25px;
  background: radial-gradient(circle at 40% 60%, rgba(217, 168, 154, 0.35) 0%, transparent 60%);
  z-index: -1;
  border-radius: 50%;
  animation: sun-pulse 8s ease-in-out infinite;
}
.content-block__content h3 {
  margin-bottom: 1.4rem;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}
.content-block__content p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.content-block__content p:last-of-type { margin-bottom: 1.6rem; }

/* Bloc d'intro de section avec H2 + paragraphe */
.section-intro {
  max-width: 880px;
  margin: 0 auto var(--s-5);
  text-align: center;
}
.section-intro .eyebrow { margin-bottom: 1.2rem; }
.section-intro h2 { margin-bottom: 1.6rem; }
.section-intro p {
  font-size: 1.12rem;
  line-height: 1.7;
}

/* Image hero feature (full width visual avec léger décalage) */
.feature-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--s-5) 0;
  box-shadow: var(--shadow-strong);
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 12s ease; }
.feature-visual:hover img { transform: scale(1.04); }

/* ---- 18c. FAQ ---- */
.faq__list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.faq__item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
}
.faq__item[open] {
  background: var(--c-bg);
  box-shadow: var(--shadow-soft);
  border-color: var(--c-accent);
}
.faq__question {
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--c-text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--t-fast);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--c-copper); }
.faq__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-bg-alt);
  display: grid; place-items: center;
  color: var(--c-copper);
  transition: transform var(--t), background var(--t);
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background: var(--c-copper);
  color: var(--c-white);
}
.faq__answer {
  padding: 0 1.8rem 1.6rem;
  color: var(--c-text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---- 18d. INLINE CTA (au sein des paragraphes) ---- */
.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-copper);
  font-weight: 500;
  border-bottom: 1px solid var(--c-copper);
  padding-bottom: 1px;
  transition: all var(--t-fast);
}
.inline-cta:hover {
  color: var(--c-prune);
  border-color: var(--c-prune);
  gap: 0.8rem;
}

/* ---- 18e. RESPONSIVE additions ---- */
@media (max-width: 1024px) {
  .content-block { grid-template-columns: 1fr; gap: var(--s-4); }
  .content-block.reverse .content-block__visual { order: 0; }
  .feature-visual { aspect-ratio: 16/9; }
}

/* ---- 18f. PAGE LÉGALE (texte long sobre) ---- */
.legal-hero {
  padding: 9rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--c-bg-alt) 0%, var(--c-bg) 100%);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 168, 154, 0.4) 0%, transparent 65%);
  pointer-events: none;
  animation: sun-pulse 10s ease-in-out infinite;
}
.legal-hero__inner { position: relative; z-index: 1; }
.legal-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 0.8rem;
}
.legal-hero p { font-size: 1.05rem; color: var(--c-text-mute); }

.legal-banner {
  width: 100%;
  aspect-ratio: 16/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--s-4) auto var(--s-6);
  max-width: 1100px;
  box-shadow: var(--shadow-soft);
}
.legal-banner img { width: 100%; height: 100%; object-fit: cover; }

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: var(--s-7);
}
.legal-content h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin: var(--s-5) 0 var(--s-2);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.legal-content h2::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 56px; height: 1px;
  background: var(--c-copper);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  margin-bottom: 0.9rem;
  line-height: 1.75;
  color: var(--c-text-soft);
  font-size: 1rem;
}
.legal-content p strong {
  color: var(--c-text);
  font-weight: 600;
}
.legal-content a {
  color: var(--c-copper);
  border-bottom: 1px solid transparent;
  transition: border var(--t-fast);
}
.legal-content a:hover { border-bottom-color: var(--c-copper); }

.legal-info-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.6rem 2rem;
  margin: 1rem 0 1.4rem;
}
.legal-info-card p { margin-bottom: 0.4rem; font-size: 0.97rem; }
.legal-info-card p:last-child { margin-bottom: 0; }

/* ---- 18g. SKIP LINK (accessibilité) ---- */
.skip-link {
  position: absolute;
  top: -40px; left: 0;
  background: var(--c-text);
  color: var(--c-bg);
  padding: 0.7rem 1.4rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius) 0;
  font-size: 0.9rem;
}
.skip-link:focus { top: 0; }

/* ---- 18h. BREADCRUMBS ---- */
.breadcrumb {
  padding: 1rem 0;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-line);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.9rem;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--c-text-mute);
}
.breadcrumb li:not(:last-child)::after {
  content: '›';
  color: var(--c-copper);
  font-size: 1.1rem;
}
.breadcrumb a {
  color: var(--c-text-soft);
  transition: color var(--t-fast);
}
.breadcrumb a:hover { color: var(--c-copper); }
.breadcrumb [aria-current="page"] {
  color: var(--c-text);
  font-weight: 500;
}

/* ---- 18i. TESTIMONIALS (déplacé/amélioré) ---- */
.testimonials {
  padding: var(--s-7) 0;
  position: relative;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.testimonial {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--c-accent);
}
.testimonial__mark {
  font-family: var(--f-display);
  font-size: 3.5rem;
  color: var(--c-copper);
  line-height: 0.6;
  margin-bottom: 0.8rem;
  opacity: 0.45;
}
.testimonial__stars {
  color: var(--c-copper);
  margin-bottom: 0.9rem;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}
.testimonial__text {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--c-text);
  margin-bottom: auto;
  padding-bottom: 1.4rem;
}
.testimonial__author {
  display: flex; gap: 0.9rem; align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid var(--c-line);
}
.testimonial__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-rose), var(--c-accent-soft));
  display: grid; place-items: center;
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; font-size: 0.95rem; color: var(--c-text); display: block; }
.testimonial__loc { font-size: 0.82rem; color: var(--c-text-mute); }
.testimonial__topic {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-copper);
  background: var(--c-bg-alt);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

/* ---- 18j. ERROR PAGE ---- */
.error-page {
  padding: 8rem 0 4rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
}
.error-page__inner {
  max-width: 720px;
  margin: 0 auto;
}
.error-page__code {
  font-family: var(--f-display);
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 300;
  line-height: 1;
  color: var(--c-copper);
  margin: 1.5rem 0;
  letter-spacing: -0.04em;
}
.error-page__title { margin-bottom: 1.4rem; }
.error-page__text {
  font-size: 1.1rem;
  margin-bottom: 2.4rem;
  color: var(--c-text-soft);
}
.error-page__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.error-page__links {
  padding-top: 2rem;
  border-top: 1px solid var(--c-line);
}
.error-page__links p {
  font-size: 0.9rem;
  color: var(--c-text-mute);
  margin-bottom: 1rem;
}
.error-page__links ul {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.error-page__links a {
  color: var(--c-copper);
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border var(--t-fast);
}
.error-page__links a:hover { border-color: var(--c-copper); }

/* ---- 18k. UTILITAIRES (remplace inline styles) ---- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.text-center { text-align: center; }
.text-white { color: var(--c-white) !important; }
.opacity-85 { opacity: 0.85; }

.about__hero-h2 { margin: 1.2rem 0 1.5rem; }
.cta-band__h2 { margin: 1.2rem 0 1rem; }
.cta-section { text-align: center; margin-top: 3.5rem; }

.eyebrow--white { color: #fff !important; opacity: 0.85; }
.eyebrow--white::before, .eyebrow--white::after { background: #fff !important; }
.eyebrow--white span { color: #fff !important; }

/* ---- 18l. NAV ARIA ---- */
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Visually hidden (accessibilité) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .error-page__actions { flex-direction: column; }
  .error-page__actions .btn { width: 100%; }
}

/* ---- 19. SÉLECTION & SCROLLBAR ---- */
::selection { background: var(--c-rose); color: var(--c-white); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb {
  background: var(--c-accent);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--c-rose); }
