:root {
  --teal: #86e0d4;
  --teal-deep: #7ad9cc;
  --gold: #f0b93e;
  --coral: #f2836b;
  --coral-deep: #e56a50;
  --plum: #9b83d9;
  --plum-deep: #8569c9;
  --ink: #17211f;
  --ink-soft: #3a4442;
  --cream: #fbfaf6;
  --white: #ffffff;
  --max: 1080px;
}

* { box-sizing: border-box; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 10000;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: "Work Sans", Arial, sans-serif;
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  position: relative;
  opacity: 1;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

html.is-transitioning body {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  body { transition: none; }
}

body::before,
body::after {
  display: none;
}

body.legacy-blobs::before {
  top: -12%;
  left: -12%;
  background: radial-gradient(circle, rgba(242, 131, 107, 0.05), transparent 70%);
}

body::after {
  bottom: -15%;
  right: -12%;
  background: radial-gradient(circle, rgba(155, 131, 217, 0.06), transparent 70%);
}

h1, h2, h3, h4 {
  font-family: "Quicksand", "Work Sans", Arial, sans-serif;
  color: var(--ink);
  margin: 0;
}

p { margin: 0 0 1.1em; }

a { color: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- PRELOADER ---------- */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--white);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-spiral {
  width: 84px;
  height: 84px;
  color: var(--teal);
  animation: preloader-spin 2.6s linear infinite;
}

.preloader-text {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  animation: preloader-text-in 0.6s ease 0.3s forwards;
}

@keyframes preloader-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes preloader-text-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-spiral { animation: none; }
  .preloader-text { animation: none; opacity: 1; }
}

/* ---------- STICKY TOPBAR ---------- */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal-deep), var(--gold), var(--coral));
  z-index: 5000;
  transition: width 0.1s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar { transition: none; }
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 590;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(23, 33, 31, 0.16);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--teal);
  color: var(--ink);
}

.back-to-top svg { width: 20px; height: 20px; }

@media (max-width: 640px) {
  .back-to-top { right: 16px; bottom: 80px; width: 40px; height: 40px; }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 250, 246, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(23, 33, 31, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.topbar.is-scrolled {
  box-shadow: 0 6px 20px rgba(23, 33, 31, 0.08);
  background: rgba(251, 250, 246, 0.96);
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-brand {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar-links a {
  position: relative;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.topbar-links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--teal-deep);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.topbar-links a:hover {
  color: var(--ink);
}

.topbar-links a:hover::after { transform: scaleX(1); }

.topbar-links a.is-active {
  color: var(--ink);
  font-weight: 700;
}

.topbar-links a.is-active::after { transform: scaleX(1); background: var(--gold); }

@media (max-width: 860px) {
  .topbar-links a::after { display: none; }
}

.topbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.topbar-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.topbar-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar-toggle.is-open span:nth-child(2) { opacity: 0; }
.topbar-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- WAVE DIVIDER ---------- */

.wave-divider {
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 40px;
  display: block;
}

.wave-divider path {
  fill: var(--teal);
}

/* ---------- DECORATIVE MICRO-ILLUSTRATIONS ---------- */

.deco-host { position: relative; overflow: hidden; }

.deco-leaf {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 220px;
  height: 220px;
  color: var(--teal);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.deco-spiral {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  color: var(--white);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
  animation: deco-spiral-turn 90s linear infinite;
}

@keyframes deco-spiral-turn {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .deco-spiral { animation: none; }
}

.deco-host > .container { position: relative; z-index: 1; }

@media (max-width: 640px) {
  .deco-leaf, .deco-spiral { width: 140px; height: 140px; }
}

/* ---------- SCROLL REVEAL ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- HERO ---------- */

.hero {
  padding-top: 0;
}

.eyebrow {
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0 0 8px;
}

.pillnav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}

.pillnav a {
  background: var(--teal);
  color: var(--ink);
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(23, 33, 31, 0.08);
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

.pillnav a:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(23, 33, 31, 0.16);
}

.pillnav a:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(23, 33, 31, 0.12);
}

.hero-image-wrap {
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  height: 92vh;
  min-height: 560px;
  max-height: 900px;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--hx, 50%) var(--hy, 50%), rgba(255, 255, 255, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.hero-frame:hover::before { opacity: 1; }

@media (hover: none) {
  .hero-frame::before { display: none; }
}

.hero-frame img {
  position: absolute;
  top: -6%;
  left: 0;
  display: block;
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-parallax { transform: none !important; }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  animation: scroll-cue-bounce 2s ease-in-out infinite;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.scroll-cue:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.scroll-cue svg { width: 18px; height: 18px; }

@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
}

.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 90px min(8vw, 90px) 64px;
  background: linear-gradient(to top, rgba(12, 22, 20, 0.85) 0%, rgba(12, 22, 20, 0.42) 50%, rgba(12, 22, 20, 0) 100%);
}

.hero-overlay .eyebrow {
  display: inline-block;
  color: var(--teal);
  padding-bottom: 10px;
  border-bottom: 3px solid var(--gold);
  margin: 0 0 16px;
}

.hero-overlay h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.02;
}

.hero-overlay .subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 12px;
}

/* ---------- BANDS ---------- */

.band-teal {
  background: var(--teal);
  padding: 90px 0;
  margin-top: 90px;
  scroll-margin-top: 84px;
}

.tagline {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  color: var(--white);
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  max-width: 680px;
}

.band-title {
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  margin-top: 6px;
  max-width: 700px;
}

.band-lead {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 16px;
}

.kicker-light { color: rgba(255,255,255,0.85); }

/* ---------- SECTIONS ---------- */

.section {
  padding: 108px 0;
  scroll-margin-top: 84px;
}

.section.alt {
  background: var(--cream);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 40px 0 22px;
}

.section-title.light { color: var(--white); text-align: center; margin-top: 0; font-size: 2.2rem; }

.mini-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 30px 0 12px;
}

.disclaimer {
  font-style: italic;
  font-size: 0.92rem;
  color: #6b7573;
}

/* split layout: qui suis-je */

.split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}

.lead-text {
  font-family: "Quicksand", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.bio-stats {
  display: flex;
  gap: 20px;
  margin: 8px 0 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(23, 33, 31, 0.1);
  border-bottom: 1px solid rgba(23, 33, 31, 0.1);
}

.bio-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bio-stat-num {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--teal-deep);
}

.bio-stat-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.3;
}

.photo-frame {
  position: relative;
  padding-top: 20px;
  padding-right: 20px;
  overflow: hidden;
}

.photo-frame::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 92%;
  background: var(--teal);
  z-index: 0;
}

.photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-frame:hover img { transform: scale(1.05); }

.photo-badge {
  position: absolute;
  z-index: 2;
  bottom: -16px;
  left: -16px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1.25;
  box-shadow: 0 8px 20px rgba(23, 33, 31, 0.18);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 28px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: background 0.22s ease, color 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
}

.btn-outline::after {
  content: "→";
  transition: transform 0.22s ease;
}

.btn-outline:hover {
  background: linear-gradient(120deg, var(--gold), var(--coral));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(240, 185, 62, 0.4);
}

.btn-outline:hover::after { transform: translateX(3px); }

.btn-outline:active { transform: translateY(0); }

.split.reverse { grid-template-columns: 1fr 1.5fr; }
.split-media.small { align-self: center; }
.split-media.small img { width: 100%; display: block; }

/* tag cloud */

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 40px;
}

.tag {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid rgba(23, 33, 31, 0.16);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.18s ease, color 0.2s ease, border-color 0.2s ease;
}

.tag:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}

/* mini steps */

.mini-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 8px 0 36px;
}

.mini-step {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(23, 33, 31, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mini-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(23, 33, 31, 0.1);
}

.mini-step .card-icon,
.mini-step h4,
.mini-step p {
  position: relative;
  z-index: 1;
}

.mini-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.mini-step p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}

/* efficacy stat bars */

.efficacy {
  margin-top: 34px;
  padding: 30px;
  background: var(--cream);
  border-radius: 12px;
}

.efficacy-title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 22px;
}

.stat-bar { margin-bottom: 20px; }

.stat-bar:last-child { margin-bottom: 0; }

.stat-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.stat-bar-sub {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.stat-bar-track {
  height: 26px;
  background: rgba(23, 33, 31, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--teal-deep));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.section.is-visible .stat-bar-fill { width: var(--val); }

.stat-bar-value {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .stat-bar-fill { transition: none; }
}

/* une séance : timeline */

.timeline {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 30px 0 10px;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--teal);
  z-index: 0;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.timeline-marker img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--cream);
  box-shadow: 0 4px 14px rgba(23, 33, 31, 0.15);
  display: block;
  transition: transform 0.5s ease;
}

.timeline-marker:hover img { transform: scale(1.08); }

.timeline-num {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
}

.timeline-content p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* cards grid (approches) */

.cards-section { padding-top: 20px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.topic-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topic-card::before,
.mini-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(134, 224, 212, 0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.topic-card:hover::before,
.mini-step:hover::before {
  opacity: 1;
}

.topic-body { position: relative; z-index: 1; }

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(23, 33, 31, 0.1);
}

.topic-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.topic-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid rgba(23, 33, 31, 0.12);
  color: var(--teal-deep);
  margin-bottom: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.card-icon svg { width: 20px; height: 20px; }

.card-icon-gold { color: var(--coral-deep); border-color: rgba(242, 131, 107, 0.3); }

.topic-card:hover .card-icon,
.mini-step:hover .card-icon,
.contact-card:hover .card-icon {
  transform: scale(1.06);
  background: var(--teal);
  border-color: transparent;
  color: var(--ink);
}

.tarif-card:hover .card-icon-gold {
  background: var(--gold);
  border-color: transparent;
  color: var(--ink);
}

.topic-body h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.topic-body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  flex: 1;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, gap 0.2s ease, color 0.2s ease;
}

.link-more::after {
  content: "→";
  transition: transform 0.2s ease;
}

.link-more:hover {
  border-color: var(--teal-deep);
  gap: 9px;
}

.link-more:hover::after { transform: translateX(2px); }

/* tarifs */

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.tarif-card {
  background: var(--cream);
  border-top: 4px solid var(--gold);
  border-radius: 4px;
  padding: 28px 20px;
  text-align: center;
}

.tarif-card .card-icon { margin-left: auto; margin-right: auto; }

.tarif-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.tarif-sub {
  font-size: 0.85rem;
  color: #7a8482;
  margin-bottom: 12px;
}

.tarif-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  font-family: "Quicksand", sans-serif;
}

.tarifs-forfaits {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px dashed var(--teal-deep);
  border-radius: 4px;
}

.tarifs-forfaits p { margin: 0 0 6px; }

.tarif-note {
  font-size: 0.85rem;
  color: #7a8482;
  margin-top: 16px;
}

/* faq */

.faq-list {
  max-width: 760px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid #e4e0d6;
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.is-open { border-color: var(--teal); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-question:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: -2px;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--teal-deep);
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .faq-icon, .faq-answer { transition: none; }
}

/* contact */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.contact-card {
  background: var(--white);
  border-radius: 6px;
  padding: 22px 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.contact-card h4 {
  font-size: 1rem;
  color: var(--teal-deep);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.contact-card p { margin: 0; font-size: 0.95rem; }

.contact-card .small { font-size: 0.8rem; color: #7a8482; margin-top: 6px; }

.contact-card a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-card a:hover { color: var(--teal-deep); border-color: var(--teal-deep); }

/* map + contact form */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 30px;
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(23, 33, 31, 0.08);
  min-height: 320px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.map-consent {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 28px;
  background: var(--cream);
}

.map-consent p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 280px;
}

/* cookie banner */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--white);
  padding: 20px 22px;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  z-index: 3000;
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner p {
  margin: 0 0 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn-outline {
  margin-top: 0;
  padding: 9px 20px;
  font-size: 0.82rem;
}

.cookie-decline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cookie-decline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
}

.contact-form {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(23, 33, 31, 0.08);
  display: flex;
  flex-direction: column;
}

.form-title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 16px;
}

.form-hidden { display: none; }

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 0.95rem;
  padding: 11px 14px;
  margin-bottom: 16px;
  border: 1px solid #e2e2de;
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 3px rgba(122, 217, 204, 0.25);
}

.form-submit {
  align-self: flex-start;
  border: none;
  background: var(--gold);
  cursor: pointer;
  margin-top: 4px;
}

.form-submit::after { content: "→"; }

.form-submit:disabled { opacity: 0.6; cursor: default; }

.form-status {
  margin: 12px 0 0;
  font-size: 0.88rem;
  min-height: 1.2em;
}

.form-status.is-success { color: #1a7a4c; font-weight: 600; }

.form-status.is-error { color: #b3413a; font-weight: 600; }

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--white);
  text-decoration: none;
  font-weight: 600;
  color: var(--teal-deep);
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(23, 33, 31, 0.08);
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

.back-top:hover {
  background: var(--teal);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(23, 33, 31, 0.14);
}

/* testimonials */

.testimonials { margin-top: 0; }

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 18px auto 0;
  padding: 10px 22px;
  background: var(--white);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(23, 33, 31, 0.1);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.google-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(23, 33, 31, 0.16);
}

.google-badge-icon { width: 20px; height: 20px; flex-shrink: 0; }

.google-badge-arrow { transition: transform 0.2s ease; }

.google-badge:hover .google-badge-arrow { transform: translateX(3px); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  margin: 0;
  padding: 30px 24px 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(23, 33, 31, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(23, 33, 31, 0.14);
}

.testi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.45), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.testi-card:hover::before { opacity: 1; }

.testi-card::after {
  content: "\201C";
  position: absolute;
  top: -18px;
  right: 12px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(240, 185, 62, 0.3);
  pointer-events: none;
}

.testi-card .stars,
.testi-card p,
.testi-card cite {
  position: relative;
  z-index: 1;
}

.testi-card .stars {
  display: block;
  color: #f5b400;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testi-card .stars i {
  display: inline-block;
  font-style: normal;
  opacity: 0;
  transform: scale(0.3) rotate(-30deg);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.testi-card.stars-visible .stars i {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.testi-card .stars i:nth-child(1) { transition-delay: 0s; }
.testi-card .stars i:nth-child(2) { transition-delay: 0.08s; }
.testi-card .stars i:nth-child(3) { transition-delay: 0.16s; }
.testi-card .stars i:nth-child(4) { transition-delay: 0.24s; }
.testi-card .stars i:nth-child(5) { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .testi-card .stars i { opacity: 1; transform: none; transition: none; }
}

/* card tilt */

.topic-card, .testi-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.2s ease;
}

/* ripple */

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-anim {
  to { transform: scale(1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ripple { display: none; }
}

.testi-card p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.testi-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--teal-deep);
}

.google-badge-secondary {
  margin-top: 32px;
  background: transparent;
  box-shadow: none;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.google-badge-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

/* floating contact button */

.fab-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(240, 185, 62, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fab-contact svg { width: 18px; height: 18px; flex-shrink: 0; }

.fab-contact:hover {
  background: var(--coral);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(240, 185, 62, 0.5);
}

.fab-contact:active { transform: translateY(-1px); }

@media (max-width: 640px) {
  .fab-contact { right: 16px; bottom: 16px; padding: 13px 18px; }
  .fab-contact span { display: none; }
}

/* footer */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 26px 20px;
  font-size: 0.85rem;
}

.footer-link {
  margin: 10px 0 0;
}
.footer-link a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.footer-link a:hover,
.footer-link a:focus-visible {
  text-decoration: underline;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s ease;
}

.footer a:hover { border-color: var(--white); }

/* ---------- SUBPAGES (méthode JIA, séance, diplômes) ---------- */

.subpage-header {
  background: var(--teal);
  padding: 34px 0 28px;
}

.subpage-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.subpage-header h1 {
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 600;
}

.subpage-header .back-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 9px 20px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.18s ease, border-color 0.2s ease;
}

.subpage-header .back-link:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
  transform: translateY(-2px);
}

.jia-jumpnav {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
  background: var(--cream);
}

.jia-jumpnav .container {
  display: flex;
  align-items: center;
  gap: 14px;
}

.jia-jumpnav-label {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.jia-jumpnav-links {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.jia-jumpnav-links a {
  flex-shrink: 0;
  padding: 7px 16px;
  border: 1px solid #ded8ca;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.jia-jumpnav-links a:hover,
.jia-jumpnav-links a:focus-visible {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--ink);
}

.topic-block {
  padding: 44px 0;
  border-bottom: 1px solid #eee;
  scroll-margin-top: 84px;
}

.topic-block:last-child { border-bottom: none; }

.topic-block h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.topic-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.topic-head .card-icon { margin-bottom: 0; flex-shrink: 0; }

.topic-head h2 { margin-bottom: 0; }

.topic-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(23, 33, 31, 0.15);
}

.topic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.topic-photo:hover img { transform: scale(1.08); }

.topic-block h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
  color: var(--teal-deep);
}

.topic-block ul {
  margin: 0 0 1.1em;
  padding-left: 22px;
}

.topic-block li { margin-bottom: 4px; }

.intro-block {
  padding: 50px 0 10px;
}

.intro-block h2 {
  font-size: 1.3rem;
  max-width: 760px;
}

.diploma-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 24px;
}

.diploma-grid figure {
  margin: 0;
  background: var(--cream);
  padding: 14px;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.diploma-grid figure:hover,
.diploma-grid figure:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(23, 33, 31, 0.14);
  outline: none;
}

.diploma-grid figure::after {
  content: "🔍";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(23, 33, 31, 0.15);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.diploma-grid figure:hover::after,
.diploma-grid figure:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.diploma-grid img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.diploma-grid figcaption {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 10px;
  text-align: center;
}

/* lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(23, 33, 31, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 26px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse { grid-template-columns: 1fr; }
  .split-media { order: -1; max-width: 280px; }
  .split-media.small { max-width: 100%; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-steps { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-split { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .timeline { flex-direction: column; align-items: stretch; gap: 28px; }
  .timeline-step { flex-direction: row; text-align: left; align-items: center; gap: 18px; }
  .timeline-step:not(:last-child)::after { display: none; }
  .timeline-marker { margin-bottom: 0; }
  .diploma-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-overlay h1 { font-size: 2.6rem; }
  .hero-overlay { padding: 44px 28px 30px; }
}

@media (max-width: 860px) {
  .topbar-toggle { display: flex; }

  .topbar-inner { position: relative; }

  .topbar-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    padding: 6px 20px 4px;
    gap: 2px;
    box-shadow: 0 16px 28px rgba(23, 33, 31, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .topbar-links.is-open {
    max-height: 420px;
    padding: 10px 20px 18px;
  }

  .topbar-links a { text-align: left; padding: 12px 14px; }
}

@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .tagline { font-size: 1.7rem; }
  .hero-frame { height: 68vh; min-height: 440px; }
  .scroll-cue { display: none; }
  .hero-overlay h1 { font-size: 2.15rem; }
  .hero-overlay .subtitle { font-size: 1.1rem; }
  .diploma-grid { grid-template-columns: 1fr; }
  .subpage-header .container { flex-direction: column; align-items: flex-start; }
  .bio-stats { flex-wrap: wrap; gap: 18px 24px; }
  .bio-stat { flex: 1 1 40%; }
  .photo-badge { width: 68px; height: 68px; font-size: 0.68rem; }
  .efficacy { padding: 22px 18px; }
}
