/* ============================================================
   MATHILDE KINÉSIOLOGIE — Feuille de styles principale
   Palette : Beige #F5EFE6 | Sauge #8FAF8A | Terre #A0785A
             Blanc cassé #FDFAF6 | Texte #3B2F2F
   ============================================================ */

/* ===== VARIABLES & RESET ===== */
:root {
  --beige:       #F5EFE6;
  --beige-dark:  #E8DDD0;
  --sage:        #8FAF8A;
  --sage-light:  #B5CDB2;
  --sage-dark:   #6B8E67;
  --earth:       #A0785A;
  --earth-light: #C49A78;
  --white:       #FDFAF6;
  --dark:        #3B2F2F;
  --dark-muted:  #6B5B5B;
  --shadow:      rgba(59, 47, 47, 0.09);
  --shadow-md:   rgba(59, 47, 47, 0.14);
  --transition:  all 0.3s ease;
  --radius:      16px;
  --radius-sm:   8px;
  --radius-xl:   24px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--earth);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--sage-dark); }

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

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

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--earth);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(143, 175, 138, 0.38);
}
.btn-primary:hover {
  background-color: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(143, 175, 138, 0.45);
}

.btn-outline {
  background-color: transparent;
  color: var(--earth);
  border: 2px solid var(--earth);
}
.btn-outline:hover {
  background-color: var(--earth);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--sage-dark);
  box-shadow: 0 4px 18px rgba(59, 47, 47, 0.12);
}
.btn-white:hover {
  background-color: var(--beige);
  color: var(--sage-dark);
  transform: translateY(-2px);
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ================================================================
   HEADER & NAV
   ================================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(253, 250, 246, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
header.scrolled {
  border-bottom-color: var(--beige-dark);
  box-shadow: 0 2px 20px var(--shadow);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 600;
}
.logo:hover { color: var(--dark); }
.logo-icon { font-size: 1.6rem; }
.logo em {
  color: var(--sage-dark);
  font-style: normal;
}
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
footer .logo-img {
  background-color: var(--white);
  border-radius: 4px;
  padding: 3px;
  opacity: 0.92;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--dark);
  padding: 0.25rem 0;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sage);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--sage-dark); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav brand: logo + portal link grouped on the left */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-portal-link {
  font-size: .75rem;
  font-weight: 700;
  color: var(--dark-muted);
  border: 1px solid var(--beige-dark);
  border-radius: 50px;
  padding: .35rem 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-portal-link:hover { border-color: var(--sage-light); color: var(--sage-dark); }

.nav-cta {
  background-color: var(--sage) !important;
  color: var(--white) !important;
  padding: 1.2rem 4rem !important;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 1rem !important;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(143, 175, 138, 0.35);
}
.nav-cta:hover {
  background-color: var(--sage-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 18px rgba(143, 175, 138, 0.45);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 239, 230, 0.93) 0%,
    rgba(245, 239, 230, 0.78) 45%,
    rgba(143, 175, 138, 0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 72px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff;
  color: var(--sage-dark);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 auto 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}
.hero h1 em {
  color: var(--sage-dark);
  font-style: italic;
  display: block;
}

.hero-desc {
  font-size: 1.13rem;
  color: var(--dark-muted);
  max-width: 580px;
  margin: 0 auto 2.25rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Scroll indicator */
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.45;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--earth), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ================================================================
   REASSURANCE BAND
   ================================================================ */
.reassurance {
  background-color: var(--white);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--beige-dark);
}

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

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background-color: var(--beige);
  transition: var(--transition);
}
.reassurance-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow);
}
.reassurance-icon {
  font-size: 2.1rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background-color: rgba(143, 175, 138, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reassurance-text h4 {
  font-size: 0.97rem;
  margin-bottom: 0.2rem;
  color: var(--dark);
}
.reassurance-text p {
  font-size: 0.82rem;
  color: var(--earth);
  margin: 0;
}

/* ================================================================
   SERVICE CARDS (preview on homepage)
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 18px var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 40px var(--shadow-md);
  color: inherit;
}

.service-card-img {
  height: 220px;
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  transition: transform 0.55s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.04);
}
.service-card-img-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--sage);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.service-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.service-card-body p {
  color: var(--dark-muted);
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--beige-dark);
  padding-top: 1rem;
  margin-top: auto;
  width: 100%;
}
.service-price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--sage-dark);
  font-weight: 700;
}
.service-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--earth);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s ease;
}
.service-card:hover .service-card-link { gap: 0.6rem; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 4px 18px var(--shadow);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px var(--shadow-md);
}
.testimonial-stars {
  color: #D4A853;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}
.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--dark-muted);
  flex: 1;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--beige-dark);
  padding-top: 1.25rem;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--beige);
  border: 2px solid var(--sage-light);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-info h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.15rem;
  color: var(--dark);
}
.testimonial-info span {
  font-size: 0.78rem;
  color: var(--earth);
}
.testimonial-quote-mark {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--sage-light);
  opacity: 0.4;
  line-height: 1;
  pointer-events: none;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background-color: var(--dark);
  color: rgba(245, 239, 230, 0.85);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.65;
  line-height: 1.75;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: 0.65rem;
}
.footer-col ul li a {
  color: rgba(245, 239, 230, 0.65);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--sage-light);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  opacity: 0.65;
  margin-bottom: 0.9rem;
}
.footer-contact-item .f-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  opacity: 0.42;
  margin: 0;
}
.footer-bottom a {
  font-size: 0.82rem;
  color: rgba(245, 239, 230, 0.42);
}
.footer-bottom a:hover { color: var(--sage-light); opacity: 1; }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--sage);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(143, 175, 138, 0.45);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 990;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background-color: var(--sage-dark);
  transform: translateY(-3px);
}

/* ================================================================
   PAGE HERO (pages intérieures)
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
  padding: 9rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(143, 175, 138, 0.12);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -5%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(160, 120, 90, 0.09);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead {
  color: var(--earth);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--earth);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--earth); }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb-sep { opacity: 0.5; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}
.about-img-wrapper img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.about-img-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background-color: var(--sage);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(143, 175, 138, 0.4);
}
.about-img-badge strong {
  display: block;
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.about-img-badge span { font-size: 0.78rem; opacity: 0.9; }

.about-content .eyebrow { margin-bottom: 0.6rem; }
.about-content h2 { margin-bottom: 0.5rem; }
.about-content .subtitle { color: var(--earth); margin-bottom: 1.5rem; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background-color: var(--beige);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage);
  transition: var(--transition);
}
.about-value-item:hover { transform: translateX(4px); }
.value-icon { font-size: 1.3rem; flex-shrink: 0; }
.value-text h4 { font-size: 0.93rem; margin-bottom: 0.2rem; }
.value-text p { font-size: 0.83rem; color: var(--earth); margin: 0; }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 1.75rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sage), var(--earth), transparent);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-left: 1.5rem;
  padding-bottom: 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.1rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--sage);
  border: 2.5px solid var(--white);
  box-shadow: 0 0 0 2.5px var(--sage);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--sage-dark);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.timeline-item h4 { font-size: 0.97rem; margin-bottom: 0.2rem; }
.timeline-item p { font-size: 0.85rem; color: var(--earth); margin: 0; }

/* Kine cards */
.kine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}
.kine-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 4px solid var(--sage);
  box-shadow: 0 4px 18px var(--shadow);
  transition: var(--transition);
}
.kine-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 28px var(--shadow-md);
}
.kine-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.kine-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.kine-card p { font-size: 0.87rem; color: var(--earth); margin: 0; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 18px var(--shadow);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--sage-dark);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.83rem;
  color: var(--earth);
  line-height: 1.4;
}

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-detail-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 18px var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.75rem;
  align-items: center;
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.service-detail-card:hover {
  box-shadow: 0 12px 34px var(--shadow-md);
  transform: translateY(-3px);
  border-left-color: var(--sage);
}

.service-detail-icon {
  font-size: 2.25rem;
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  background-color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-detail-content h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.service-target {
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.6rem;
}
.service-detail-content p {
  color: var(--dark-muted);
  font-size: 0.9rem;
  margin: 0;
}
.service-detail-meta {
  text-align: right;
  flex-shrink: 0;
  min-width: 100px;
}
.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--sage-dark);
  display: block;
  line-height: 1;
  font-weight: 700;
}
.service-duration {
  font-size: 0.8rem;
  color: var(--earth);
  display: block;
  margin-top: 0.3rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
  border: 1.5px solid transparent;
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: var(--sage-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--sage-dark); }
.faq-icon {
  font-size: 1.3rem;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.35rem;
  color: var(--dark-muted);
  font-size: 0.93rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* CTA block */
.cta-block {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '🌿';
  position: absolute;
  font-size: 12rem;
  opacity: 0.06;
  top: -2rem;
  left: -2rem;
  pointer-events: none;
}
.cta-block h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-block p { color: rgba(253, 250, 246, 0.85); margin-bottom: 2rem; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}

.contact-info > p { color: var(--earth); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background-color: var(--beige);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.contact-detail:hover { transform: translateX(4px); }
.contact-detail-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-text h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-detail-text p,
.contact-detail-text a {
  font-size: 0.85rem;
  color: var(--earth);
  margin: 0;
}

/* Session steps */
.session-steps { margin-top: 2.5rem; }
.session-steps h3 { font-size: 1.15rem; margin-bottom: 1.25rem; }
.steps-list { display: flex; flex-direction: column; gap: 1rem; }
.step-item { display: flex; gap: 1rem; align-items: flex-start; }

/* Variante centrée pleine largeur */
.session-steps-centered {
  margin-top: 3rem;
  text-align: center;
}
.session-steps-centered h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.steps-list-row {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
.steps-list-row .step-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 160px;
}
.steps-list-row .step-text h4 { font-size: 0.88rem; margin-bottom: 0.3rem; }
.steps-list-row .step-text p { font-size: 0.8rem; }
.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--sage);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(143, 175, 138, 0.35);
}
.step-text h4 { font-size: 0.92rem; margin-bottom: 0.2rem; }
.step-text p { font-size: 0.83rem; color: var(--earth); margin: 0; }

/* Contact form */
.contact-form-wrapper {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 6px 24px var(--shadow-md);
}
.contact-form-wrapper h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.contact-form-wrapper > p { color: var(--earth); font-size: 0.9rem; margin-bottom: 1.75rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.required-star { color: var(--earth); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  color: var(--dark);
  background-color: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(143, 175, 138, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 125px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A0785A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Form validation states */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #D97070;
  box-shadow: 0 0 0 3px rgba(217, 112, 112, 0.12);
}
.form-error {
  display: none;
  color: #C05050;
  font-size: 0.78rem;
  margin-top: 0.35rem;
  font-weight: 600;
}
.form-group.has-error .form-error { display: block; }

.form-success-msg {
  display: none;
  background-color: rgba(143, 175, 138, 0.15);
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: var(--sage-dark);
  font-size: 0.93rem;
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}

/* Map */
.map-section { padding-bottom: 5rem; }
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 6px 24px var(--shadow-md);
  height: 420px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrapper img { height: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-card { grid-template-columns: auto 1fr; }
  .service-detail-meta { grid-column: 1 / -1; text-align: left; display: flex; gap: 1.5rem; align-items: center; }
}

/* Menu hamburger dès 1080px : en dessous, la nav horizontale
   n'a plus la place et les liens se cassent sur plusieurs lignes */
@media (max-width: 1080px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.75rem;
    background-color: var(--white);
    box-shadow: 0 12px 32px var(--shadow-md);
    border-bottom: 1px solid var(--beige-dark);
    gap: 1.25rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .reassurance-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

  .service-detail-card { grid-template-columns: 1fr; text-align: center; }
  .service-detail-icon { margin: 0 auto; }
  .service-detail-meta { text-align: center; display: flex; flex-direction: column; gap: 0; }
  .service-target { text-align: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .cta-block { padding: 2.5rem 1.5rem; }

  .section { padding: 3.5rem 0; }
  .page-hero { padding: 8rem 0 3.5rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== INFOS PRATIQUES GRID ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* ===== INFO CARDS (vignettes infos pratiques) ===== */
.info-card {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 2px 12px var(--shadow);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow-md);
  border-color: var(--sage-light);
}

.info-card-warm {
  background: #FDF3EB;
  border-color: #D4956A;
}

.info-card-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--dark-muted);
  line-height: 1.7;
  margin: 0;
}

.info-card-note {
  font-size: 0.78rem !important;
  color: var(--earth) !important;
  font-style: italic;
}

.info-card-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--earth);
  text-decoration: none;
  transition: var(--transition);
}

.info-card-link:hover { color: var(--sage-dark); }

/* ===== FORMULAIRE CENTRÉ ===== */
.contact-form-centered {
  max-width: 720px;
  margin: 0 auto;
}

/* ===== CALENDLY WIDGET ===== */
.calendly-section {
  background-color: var(--white);
}

.calendly-wrapper {
  max-width: 960px;
  margin: 0 auto 1.5rem;
  background: var(--beige);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 6px 32px var(--shadow-md);
  border: 1px solid var(--beige-dark);
}

.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  width: 100%;
}

.calendly-note {
  text-align: center;
  color: var(--dark-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.calendly-note a {
  font-weight: 700;
  color: var(--earth);
}

@media (max-width: 768px) {
  .calendly-inline-widget { height: 750px; }
  .calendly-wrapper { border-radius: var(--radius); }
}

@media (max-width: 480px) {
  .calendly-inline-widget { height: 820px; }
  .calendly-wrapper { border-radius: var(--radius-sm); margin: 0 -0.25rem 1.5rem; }
}

/* ===== INSTAGRAM BAND ===== */
.instagram-band {
  background: linear-gradient(135deg, var(--beige) 0%, #EDE4D8 100%);
  padding: 3rem 0;
}

.instagram-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.instagram-icon {
  width: 3rem;
  height: 3rem;
  color: var(--earth);
  flex-shrink: 0;
}

.instagram-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.instagram-label {
  font-size: 0.85rem;
  color: var(--dark-muted);
  margin: 0;
  letter-spacing: 0.02em;
}

.instagram-handle {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}

.instagram-handle:hover { color: var(--earth); }

.instagram-btn {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .instagram-inner { flex-direction: column; align-items: center; }
  .instagram-text { align-items: center; }
}

/* ===== FIN CALENDLY ===== */

@media (max-width: 480px) {
  .contact-form-wrapper { padding: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .about-img-badge { right: 0.5rem; bottom: 0.5rem; }
}
