/* ============================================================
   MAIN.CSS — Virginie Yssartel · Kinésiologie
   ============================================================ */

:root {
  --rose:        #e8b4a0;
  --rose-light:  #f5d9ce;
  --rose-bg:     #f7ece6;
  --rose-dark:   #c4826a;
  --rose-deep:   #a05e4a;
  --white:       #fffaf8;
  --cream:       #fdf3ee;
  --text:        #5a3d35;
  --text-light:  #8a6860;
  --text-muted:  #b09088;
  --gold:        #c8a882;
  --gold-light:  #e8d5be;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; }   /* base 18px (vs 16px) */

body {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;       /* ~19px */
  line-height: 1.85;
  color: var(--text);
  background: var(--white);
  font-weight: 300;
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
}

p { font-size: 1.05rem; line-height: 1.9; }

a { color: inherit; }

/* ====== NAV ====== */
/* ====== NAV ====== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(to right, rgba(160,100,88,0.95) 0%, rgba(255,250,248,0.96) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,130,106,0.2);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 30px rgba(20,10,5,0.35); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 88px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }

.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}
.nav-logo-img:hover { opacity: 0.82; }

/* Liste principale */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.2rem;          /* gap réduit — l'espace vient du padding des liens */
}

.nav-item { position: relative; }

/* Lien de base */
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: rgba(70,38,25,0.95);
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
  position: relative;
  text-shadow:
    0 0 8px rgba(255,250,248,1),
    0 0 18px rgba(255,250,248,0.9),
    0 0 30px rgba(255,250,248,0.7);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10px; right: 10px;
  height: 1px;
  background: var(--rose-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover        { color: var(--rose-deep); }
.nav-link.active       { color: var(--rose-deep); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active::after{ transform: scaleX(1); }

/* Chevron */
.nav-chevron {
  width: 9px; height: 6px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.has-sub:hover .nav-chevron,
.has-sub:focus-within .nav-chevron { transform: rotate(180deg); }

/* ---- SOUS-MENU ---- */
.nav-sub {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--rose-light);
  border-radius: 14px;
  padding: 0.6rem 0;
  list-style: none;
  box-shadow: 0 12px 40px rgba(160,94,74,0.13);
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  z-index: 200;
}

/* Ouverture hover */
.has-sub:hover .nav-sub,
.has-sub:focus-within .nav-sub {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

/* Petit pont invisible pour ne pas perdre le hover entre le lien et le sous-menu */
.has-sub::after {
  content: '';
  position: absolute;
  top: 100%; left: 0;
  width: 100%; height: 10px;
}

.nav-sub-link {
  display: block;
  padding: 0.7rem 1.4rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 300;
  transition: color 0.2s, background 0.2s;
  border-radius: 8px;
  margin: 0 0.4rem;
}

.nav-sub-link:hover,
.nav-sub-link.active {
  background: var(--rose-bg);
  color: var(--rose-deep);
}

/* Espace Client */
.nav-item:nth-last-child(2) { margin-left: 0.8rem; }
.nav-item:last-child        { margin-left: 0.4rem; }

.nav-client {
  text-decoration: none;
  color: rgba(90,55,42,0.85);
  font-size: 0.71rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 8px 14px;
  border: 1px solid rgba(196,130,106,0.45);
  border-radius: 30px;
  transition: all 0.3s;
  white-space: nowrap;
  display: block;
}

.nav-client:hover, .nav-client.active {
  border-color: var(--rose-dark);
  color: var(--rose-deep);
  background: var(--rose-bg);
}

/* Bouton RDV */
.nav-rdv {
  text-decoration: none;
  background: var(--rose-dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.3s;
  white-space: nowrap;
  display: block;
}
.nav-rdv:hover { background: var(--rose-deep); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 26px; height: 1.5px;
  background: var(--text); transition: all 0.3s;
}


/* ====== HERO ====== */
.hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  display: flex; align-items: center; justify-content: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg { transform: scale(1); }

.slide-bg-1 { background: linear-gradient(135deg, #f0c8b8 0%, #e8b0a0 30%, #d4907a 60%, #c07860 100%); }
.slide-bg-2 { background: linear-gradient(160deg, #f5ddd0 0%, #eac4b0 40%, #d8a090 70%, #c88070 100%); }
.slide-bg-3 { background: linear-gradient(120deg, #e8c0b0 0%, #d8a090 30%, #c89080 60%, #b87060 100%); }

.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0, var(--hero-overlay-opacity, 0.45));
  transition: background 0.3s;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 3rem 3.5rem;
  background: rgba(var(--hero-box-r,90), var(--hero-box-g,45), var(--hero-box-b,35), var(--hero-box-opacity, 0.45));
  backdrop-filter: blur(var(--hero-box-blur, 6px));
  -webkit-backdrop-filter: blur(var(--hero-box-blur, 6px));
  border-radius: 24px;
  border: 1px solid rgba(255,250,248, var(--hero-box-border, 0.15));
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,250,248,0.85);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 7.5vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.hero-title em { font-style: italic; font-weight: 300; display: block; }

.hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem;
  color: rgba(255,250,248,0.92);
  margin-bottom: 2rem;
  display: block;
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,250,248,0.88);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--rose-deep);
  text-decoration: none;
  padding: 18px 44px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(90,45,35,0.2);
}

.hero-cta:hover {
  background: var(--rose-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(90,45,35,0.3);
}

.hero-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-indicators {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}

.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,250,248,0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.active {
  background: var(--white);
  width: 28px;
  border-radius: 4px;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 3rem;
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,250,248,0.7);
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px; height: 54px;
  background: linear-gradient(to bottom, rgba(255,250,248,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* ====== SECTIONS COMMUNES ====== */
section { scroll-margin-top: 88px; }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.2rem;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 1.3rem;
  padding: 7px 20px;
  border: 1px solid var(--rose-light);
  border-radius: 20px;
  background: var(--rose-bg);
}

.section-title {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--rose-deep); }

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
  font-weight: 300;
}

.separator {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 2.5rem auto; max-width: 200px;
}

.separator-line { flex: 1; height: 1px; background: var(--rose-light); }
.separator-lotus { color: var(--rose); font-size: 1.3rem; }

/* ====== PAGE INTÉRIEURE — BANNIÈRE ====== */
.page-banner {
  padding: 10rem 0 5rem;
  background: linear-gradient(160deg, var(--rose-bg) 0%, var(--cream) 100%);
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1rem;
}

.page-banner h1 em { font-style: italic; color: var(--rose-deep); }

.page-banner p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.9;
}

/* ====== ACCUEIL — INTRO ====== */
.intro-section {
  padding: 7rem 0;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.intro-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--rose-light) 0%, var(--rose) 100%);
  border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.intro-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}

.intro-img-frame::before {
  content: '';
  position: absolute; inset: 15px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: inherit;
  z-index: 1;
}

.intro-placeholder { font-size: 5.5rem; opacity: 0.35; color: var(--white); }

/* Photo Virginie — remplit l'ovale, cadrage sur le visage */
.intro-photo-virginie {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 15% !important;
  z-index: 1;
}

/* Logo oeuf — centré par-dessus la photo, proportions conservées */
.intro-logo-oeuf {
  position: relative !important;
  inset: auto !important;
  width: 82% !important;
  height: auto !important;
  object-fit: contain !important;
  z-index: 2;
  display: block;
  opacity: 0.85;
}

.intro-badge {
  position: absolute; bottom: -22px; right: -22px;
  width: 120px; height: 120px;
  background: var(--white);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 10px 40px rgba(160,94,74,0.15);
  gap: 2px;
}

.intro-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300;
  color: var(--rose-deep); line-height: 1;
}

.intro-badge-text {
  font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); text-align: center;
}

.intro-text h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 300; line-height: 1.25;
  margin-bottom: 2rem; color: var(--text);
}

.intro-text h2 em { font-style: italic; color: var(--rose-deep); }

.intro-text p {
  color: var(--text-light);
  line-height: 1.95; margin-bottom: 1.6rem;
  font-weight: 300; font-size: 1.05rem;
}

.intro-signature {
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem; color: var(--rose-dark);
  margin-top: 2rem; display: block;
}

/* ====== SEANCE ====== */
.seance-section {
  padding: 7rem 0;
  background: var(--white);
}

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

.seance-step {
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.seance-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--rose-bg); border: 1px solid var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--rose-deep);
  transition: all 0.3s;
}

.seance-step:hover .seance-step-num {
  background: var(--rose-dark); color: var(--white); border-color: var(--rose-dark);
}

.seance-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400;
  color: var(--text); margin-bottom: 1rem;
}

.seance-step p { color: var(--text-light); font-weight: 300; font-size: 1rem; }

.seance-step::after {
  content: '→';
  position: absolute; right: -1.5rem; top: 50%;
  transform: translateY(-50%);
  color: var(--rose-light); font-size: 1.6rem;
}
.seance-step:last-child::after { display: none; }

/* ====== BÉNÉFICES ====== */
.benefits-section {
  padding: 7rem 0;
  background: var(--cream);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.benefit-card {
  background: var(--white); border: 1px solid var(--rose-light);
  border-radius: 20px; padding: 2.5rem 2rem;
  transition: all 0.3s; text-align: center;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(160,94,74,0.1);
  border-color: var(--rose);
}

.benefit-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }

.benefit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400;
  color: var(--text); margin-bottom: 0.7rem;
}

.benefit-card p { font-size: 0.98rem; color: var(--text-light); font-weight: 300; }

/* ====== À PROPOS INTÉGRÉ (accueil) ====== */
.apropos-section {
  padding: 7rem 0;
  background: var(--white);
}

.apropos-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 6rem;
  align-items: center;
}

.apropos-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-style: italic;
  color: var(--rose-dark);
  border-left: 3px solid var(--rose-light);
  padding-left: 2rem;
  margin: 2rem 0; line-height: 1.6;
}

.apropos-text p {
  color: var(--text-light); line-height: 1.95;
  font-weight: 300; font-size: 1.05rem; margin-bottom: 1.6rem;
}

.apropos-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3rem;
}

.apropos-value {
  padding: 1.6rem; background: var(--cream);
  border-radius: 14px; border: 1px solid var(--rose-light);
}

.apropos-value-icon { font-size: 1.6rem; margin-bottom: 0.5rem; display: block; }

.apropos-value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500;
  color: var(--text); margin-bottom: 0.3rem;
}

.apropos-value p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.apropos-visual { text-align: center; }

.apropos-photo-frame {
  width: 360px; height: 440px; margin: 0 auto;
  background: linear-gradient(160deg, var(--rose-light) 0%, var(--rose) 60%, var(--rose-dark) 100%);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.apropos-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  position: absolute; inset: 0;
  transform: scale(1);
  filter: none;
  opacity: 1;
  transition: transform 0.65s ease, filter 0.65s ease;
}

.apropos-photo-frame:hover img {
  transform: scale(1.07);
  filter: blur(3px) brightness(0.82);
}

/* Texte révélé au survol par-dessus la photo */
.apropos-photo-frame::before {
  content: 'Virginie Yssartel';
  position: absolute;
  inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
  pointer-events: none;
  text-shadow: 0 2px 20px rgba(90,45,35,0.5);
  padding: 1rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.apropos-photo-frame:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.apropos-photo-frame::after {
  content: ''; position: absolute; inset: 20px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: inherit; z-index: 1;
}

.apropos-placeholder { font-size: 6.5rem; opacity: 0.32; color: var(--white); }

.apropos-name {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem; color: var(--rose-dark);
  margin-top: 2rem; display: block;
}

.apropos-title-text {
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted); display: block; margin-top: 0.5rem;
}

/* ====== KINÉSIOLOGIE ====== */
.kine-section { padding: 7rem 0; background: var(--white); }

.kine-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; margin-top: 1rem;
}

.kine-card {
  padding: 3rem; border: 1px solid var(--rose-light);
  border-radius: 20px; background: var(--cream);
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.kine-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(160,94,74,0.1);
}

.kine-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--rose-light), var(--rose-dark));
}

.kine-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 300;
  color: var(--rose-light); line-height: 1; margin-bottom: 1rem;
}

.kine-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 400;
  color: var(--text); margin-bottom: 1rem;
}

.kine-card p { color: var(--text-light); line-height: 1.9; font-weight: 300; font-size: 1rem; }

/* Domaines */
.domains-section { padding: 5rem 0 7rem; background: var(--white); }

.domains-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300;
  text-align: center; margin-bottom: 3.5rem; color: var(--text);
}

.domains-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.domain-cat {
  background: var(--cream); border: 1px solid var(--rose-light);
  border-radius: 18px; padding: 2.2rem;
  transition: all 0.3s;
}

.domain-cat:hover {
  background: var(--rose-bg); border-color: var(--rose);
  transform: translateY(-2px);
}

.domain-cat-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.domain-cat-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 500;
  color: var(--rose-deep); margin-bottom: 1.2rem;
}

.domain-cat ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }

.domain-cat li {
  font-size: 0.97rem; color: var(--text-light);
  padding-left: 1.3rem; position: relative;
  font-weight: 300; line-height: 1.5;
}

.domain-cat li::before { content: '—'; position: absolute; left: 0; color: var(--rose); }

/* ====== RÉFLEXES ====== */
.reflexes-section {
  padding: 7rem 0;
  background: linear-gradient(160deg, var(--rose-bg) 0%, var(--cream) 100%);
}

.reflexes-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem; align-items: start;
}

.reflexes-visual { position: sticky; top: 100px; text-align: center; }

.reflexes-circle {
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-light) 0%, var(--rose) 100%);
  margin: 0 auto 2rem;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.reflexes-circle::after {
  content: ''; position: absolute; inset: -16px;
  border-radius: 50%; border: 1px solid var(--rose-light);
}

.reflexes-circle-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.3rem; color: var(--white);
  font-weight: 300; font-style: italic;
  line-height: 1.15; text-align: center;
}

.reflexes-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-style: italic;
  color: var(--rose-dark); text-align: center; line-height: 1.7;
}

.reflexes-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400;
  color: var(--text); margin: 2.5rem 0 1rem;
}

.reflexes-text p {
  color: var(--text-light); line-height: 1.95;
  font-weight: 300; font-size: 1rem; margin-bottom: 1.2rem;
}

/* ====== TARIFS ====== */
.tarifs-section { padding: 7rem 0; background: var(--cream); }

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem; margin-top: 1rem;
}

.tarif-card {
  background: var(--white); border: 1px solid var(--rose-light);
  border-radius: 26px; padding: 3.2rem 2.8rem;
  text-align: center; transition: all 0.3s;
  position: relative; overflow: hidden;
}

.tarif-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(160,94,74,0.12);
}

.tarif-card.featured {
  background: linear-gradient(160deg, var(--rose-bg) 0%, var(--cream) 100%);
  border-color: var(--rose);
}

.tarif-card.featured::before {
  content: 'Recommandé';
  position: absolute; top: 18px; right: -28px;
  background: var(--rose-dark); color: var(--white);
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 40px; transform: rotate(45deg);
}

.tarif-icon { font-size: 2.2rem; margin-bottom: 1.6rem; display: block; }

.tarif-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400;
  color: var(--text); margin-bottom: 0.5rem;
}

.tarif-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; font-weight: 300; }

.tarif-price {
  display: flex; align-items: baseline; justify-content: center;
  gap: 4px; margin-bottom: 0.5rem;
}

.tarif-price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: var(--rose-deep); line-height: 1;
}

.tarif-price-currency { font-size: 1.35rem; color: var(--rose-dark); }

.tarif-duration {
  font-size: 0.82rem; color: var(--text-muted);
  letter-spacing: 0.1em; margin-bottom: 2.5rem; display: block;
}

.tarif-features {
  list-style: none; text-align: left;
  margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 11px;
}

.tarif-features li {
  font-size: 0.97rem; color: var(--text-light);
  padding-left: 1.6rem; position: relative;
  font-weight: 300; line-height: 1.5;
}

.tarif-features li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--rose); font-size: 0.72rem; top: 3px;
}

.tarif-btn {
  display: block; text-align: center;
  padding: 14px 30px; border-radius: 40px;
  text-decoration: none; font-size: 0.76rem;
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400;
  transition: all 0.3s;
  border: 1px solid var(--rose-dark); color: var(--rose-dark);
}

.tarif-btn:hover { background: var(--rose-dark); color: var(--white); }

.tarif-card.featured .tarif-btn {
  background: var(--rose-dark); color: var(--white); border-color: var(--rose-dark);
}

.tarif-card.featured .tarif-btn:hover { background: var(--rose-deep); border-color: var(--rose-deep); }

.tarifs-note {
  text-align: center; margin-top: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic; color: var(--text-muted);
}

/* ====== CONTACT ====== */
.contact-section { padding: 7rem 0; background: linear-gradient(160deg, var(--rose-bg) 0%, var(--cream) 100%); }

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

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--text); margin-bottom: 2.2rem;
}

.contact-items { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3rem; }

.contact-item { display: flex; gap: 1.3rem; align-items: flex-start; }

.contact-item-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--rose-bg); border: 1px solid var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}

.contact-item-text strong {
  display: block; font-weight: 500; color: var(--text);
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 5px;
}

.contact-item-text a,
.contact-item-text span {
  color: var(--text-light); text-decoration: none;
  font-size: 1rem; font-weight: 300; line-height: 1.65; display: block;
}

.contact-item-text a:hover { color: var(--rose-dark); }

.contact-rdv-btn {
  display: block; text-align: center;
  padding: 17px 36px;
  background: var(--rose-dark); color: var(--white);
  text-decoration: none; border-radius: 50px;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400;
  transition: all 0.3s; margin-bottom: 2.5rem;
}

.contact-rdv-btn:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(160,94,74,0.25); }

.contact-quote {
  background: var(--white); border-radius: 18px;
  padding: 2.2rem; border: 1px solid var(--rose-light);
}

.contact-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-style: italic;
  color: var(--rose-dark); line-height: 1.7;
}

.contact-quote cite {
  display: block; margin-top: 1rem;
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem; color: var(--text-muted); font-style: normal;
}

/* Formulaire */
.contact-form-wrap {
  background: var(--white); border-radius: 26px;
  padding: 3.2rem; border: 1px solid var(--rose-light);
}

.contact-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 400;
  color: var(--text); margin-bottom: 2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 0; }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px; font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 17px;
  border: 1px solid var(--rose-light);
  border-radius: 11px;
  background: var(--cream); color: var(--text);
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 1rem; transition: border-color 0.3s;
  outline: none; -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--rose-dark); background: var(--white); }

.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
  width: 100%; padding: 16px;
  background: var(--rose-dark); color: var(--white);
  border: none; border-radius: 50px;
  font-family: 'Jost', sans-serif; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
  cursor: pointer; transition: all 0.3s;
}

.form-submit:hover { background: var(--rose-deep); transform: translateY(-1px); }

.form-success {
  display: none; text-align: center; padding: 2.5rem;
  color: var(--rose-deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-style: italic;
}

/* ====== FOOTER ====== */
footer {
  background: var(--text); color: rgba(255,250,248,0.65);
  padding: 4.5rem 0 2.5rem; text-align: center;
}

.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 2.2rem; }

.footer-logo-img {
  height: 90px;
  width: auto;
  display: block;
  margin: 0 auto 1.2rem;
  /* logo fond sombre — fond sombre du footer, parfaitement naturel */
  opacity: 0.92;
  filter: brightness(1.05);
}

.footer-tag {
  font-size: 0.68rem; letter-spacing: 0.3em;
  text-transform: uppercase; margin-bottom: 2.5rem; display: block;
}

.footer-links {
  display: flex; justify-content: center; gap: 2.5rem;
  list-style: none; margin-bottom: 2.5rem; flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,250,248,0.55); text-decoration: none;
  font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--rose-light); }

.footer-divider { border: none; border-top: 1px solid rgba(255,250,248,0.1); margin: 2rem 0; }

.footer-bottom {
  font-size: 0.82rem; color: rgba(255,250,248,0.32); line-height: 1.9;
}

.footer-bottom a { color: rgba(255,250,248,0.32); text-decoration: none; }

/* ====== FLOATING RDV ====== */
.floating-rdv {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--rose-dark); color: var(--white);
  text-decoration: none; padding: 15px 26px;
  border-radius: 50px; font-size: 0.76rem;
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400;
  box-shadow: 0 8px 30px rgba(160,94,74,0.35);
  z-index: 999; transition: all 0.3s;
  display: flex; align-items: center; gap: 8px;
  opacity: 0; transform: translateY(20px);
}

.floating-rdv.visible { opacity: 1; transform: translateY(0); }

.floating-rdv:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(160,94,74,0.4);
}

/* ====== ANIMATIONS ====== */
.fade-in {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }

/* ====== RESPONSIVE ====== */
/* ====== HAMBURGER ANIMÉ ====== */
.hamburger span { transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  html { font-size: 17px; }

  /* ---- Menu mobile : panneau glissant ---- */
  .nav-links {
    /* caché par défaut */
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 88px; left: 0; right: 0;
    background: rgba(160,100,88,0.97);
    backdrop-filter: blur(16px);
    padding: 0;
    gap: 0;
    border-bottom: 1px solid var(--rose-light);
    box-shadow: 0 16px 50px rgba(160,94,74,0.15);
    z-index: 998;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1),
                padding   0.35s ease,
                opacity   0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.open {
    max-height: 80vh;
    overflow-y: auto;
    padding: 1rem 0 1.5rem;
    opacity: 1;
    pointer-events: auto;
  }

  /* Items principaux */
  .nav-item {
    border-bottom: 1px solid rgba(232,180,160,0.2);
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  /* Cascade d'apparition */
  .nav-links.open .nav-item:nth-child(1) { opacity:1; transform:none; transition-delay:0.06s; }
  .nav-links.open .nav-item:nth-child(2) { opacity:1; transform:none; transition-delay:0.12s; }
  .nav-links.open .nav-item:nth-child(3) { opacity:1; transform:none; transition-delay:0.18s; }
  .nav-links.open .nav-item:nth-child(4) { opacity:1; transform:none; transition-delay:0.24s; }
  .nav-links.open .nav-item:nth-child(5) { opacity:1; transform:none; transition-delay:0.30s; }
  .nav-links.open .nav-item:nth-child(6) { opacity:1; transform:none; transition-delay:0.36s; }
  .nav-links.open .nav-item:nth-child(7) { opacity:1; transform:none; transition-delay:0.42s; }

  .nav-link {
    display: flex;
    padding: 1rem 1.8rem;
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: rgba(255,250,248,1);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(120,60,50,0.4);
  }

  .nav-link::after { display: none; }

  /* Sous-menus statiques en mobile */
  .nav-sub {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 2px solid rgba(245,217,206,.3) !important;
    border-radius: 0 !important;
    padding: 0.3rem 0 0.8rem 0.5rem !important;
    margin: 0 0 0.5rem 2.6rem !important;
    background: transparent !important;
  }

  .nav-sub-link {
    font-size: 0.88rem;
    padding: 0.55rem 1rem;
    color: rgba(255,240,232,0.85);
  }

  .nav-chevron { display: none; }

  /* Boutons Espace Client + RDV */
  .nav-item:nth-last-child(2),
  .nav-item:last-child { margin-left: 0; border-bottom: none; }

  .nav-item:nth-last-child(2) .nav-client,
  .nav-item:last-child .nav-rdv {
    margin: 0.5rem 1.8rem;
    display: block;
    text-align: center;
  }

  .nav-item:nth-last-child(2) .nav-client {
    color: rgba(245,217,206,0.92) !important;
    border-color: rgba(245,217,206,0.45) !important;
    background: rgba(255,250,248,0.08);
  }

  .nav-item:nth-last-child(2) .nav-client:hover {
    color: var(--white) !important;
    background: rgba(255,250,248,0.15) !important;
    border-color: rgba(245,217,206,0.7) !important;
  }

  .hamburger { display: flex; }

  /* Contenu */
  .intro-grid, .kine-grid, .reflexes-content,
  .apropos-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .seance-steps { grid-template-columns: 1fr; }
  .seance-step::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .intro-img-frame { height: 320px; }
  .apropos-photo-frame { width: 280px; height: 340px; }
  .reflexes-visual { position: relative; top: 0; }
  .reflexes-circle { width: 250px; height: 250px; }
}

@media (max-width: 620px) {
  html { font-size: 16px; }
  .apropos-values { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; }
}
