
:root {
  --font-body: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-title: "ZCOOL XiaoWei", serif;
}
body { font-family: var(--font-body); }
h1,h2,h3 { font-family: var(--font-title); }


   
/* Reset minimal */
:root {
            --blue: #12529b;
            --white: #fff;
            --header-h: 100px;
            --z-header: 1000;
            --z-overlay: 1010;
        }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; scroll-padding-top: 10vh;}
body { font-family: 'Segoe UI', sans-serif; line-height: 1.6; background: white; color: #333; }
a { text-decoration: none; color: inherit; display: inline-block;}
h1{ font-size: 2.2rem;}
h2{ font-size: 2rem; font-family: 'ZCOOL+XiaoWei';}
p{ font-size: 1.2rem; font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-weight: 400;}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

/* == Header == */
        .no-scroll {
            overflow: hidden
        }

        /* Header */
        .site-header {
            position: fixed;
            inset: auto 0 0 0;
            top: 0;
            height: var(--header-h);
            display: flex;
            align-items: center;
            z-index: var(--z-header);
            transition: background .25s ease, box-shadow .25s ease
        }


        .site-header__inner {
          position: relative;
          top: 0;
          left: 0;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            padding: 1.5em;
        }

        /* Transparent default */
        .site-header {
            background: transparent
        }

        .site-header a,
        .site-header button {
            color: #fff
        }

        /* Scrolled state */
        .site-header.scrolled {
            background: var(--white);
            box-shadow: 0 4px 12px rgba(0, 0, 0, .06)
        }

        .site-header.scrolled a,
        .site-header.scrolled button {
            color: var(--blue)
        }

        /* Desktop nav */
        .nav-desktop {
          width: 100%;
          max-width: 1200px;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: calc(1em + 5vw);
        }

        .nav-desktop .left,
        .nav-desktop .right {
            display: flex;
            gap: calc(1em + 2vw);
            align-items: center
        }

        .nav-desktop a {
          font-size: 1.2em;
            text-decoration: none;
            font-weight: 500
        }

        .cta {
          width: 100%;
          max-width: 350px;
            padding: .55rem 1rem;
            border: 1px solid currentColor;
            border-radius: 10px;
            font-size: 1.2em !important;
            font-weight: 700;
            text-decoration: none
        }

        .cta:hover{
          background: #12529b;
          color: white !important;
          transition: .4s;
        }

        /* Branding */
        .branding {
            text-align: center
        }

        .logo {
            display: inline-block;
            font-weight: 800;
            letter-spacing: .5px
        }

        .logo--light {
            display: inline-block;
        }

        .logo--dark {
            display: none;
        }

        .site-header.scrolled .logo--light {
            display: none
        }

        .site-header.scrolled .logo--dark {
            display: inline-block;
        }

        /* Mobile bar */
        .nav-mobile {
          width: 100%;
          max-width: 800px;
            display: none;
            align-items: center;
            justify-content: space-around;
            gap: calc(2em + 5vw);
        }

        .icon-btn, .drawer-close-btn, .menu-close-btn {
            background: none;
            border: 0;
            font: inherit;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 8px
        }

        .icon {
            font-size: 24px;
            line-height: 1
        }

        .nav-mobile .center-logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%)
        }

        /* Drawer gauche (infos) */
        .drawer {
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            width: 100vw;
            background: #fff;
            transform: translateX(-100%);
            transition: transform .25s ease;
            z-index: 9999;
            display: flex;
            flex-direction: column
        }

        .drawer.is-open {
            transform: translateX(0)
        }

        .drawer__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px;
            border-bottom: 1px solid #eee
        }

        .drawer__content {
            padding: 20px;
            overflow: auto
        }

        .drawer__content::-webkit-scrollbar{ display: none;}

        .osteo-heading{
          gap: 5%;
        }

        .osteo-infos{
          width: 60%;
        }

        .osteo-infos h2{
          font-size: 1.2rem;
          font-weight: 600;
        }
        .osteo-infos p{
          font-size: 1rem;
        }

        .drawer-cta{
          display: block;
          background: #12529b;
          color: white;
          text-align: center;
          padding: 0.5em;
          width: 100%;
          margin: 0 auto;
        }

        .drawer-contact, .drawer-mail, .drawer-schedule, .drawer-address{
          display: flex;
          justify-content: left;
          align-items: center;
          gap: 5%;
          margin-top: 4vh;
        }

        .drawer-content::-webkit-scrollbar { visibility: hidden;}

        .drawer-schedule-list li{
          margin-top: 5px;
          color: #12529b;
        }

        .callback-cta{
          width: 100%;
          padding: 0.5em;
          font-size: 1.2em;
          color: #12529b69;
          border: 2px solid #12529b69;
          background: transparent;
        }

        .callback-cta:hover{
          color: white;
          border: solid 2px #12529b;
          background-color: #12529b;
        }

        /* Menu mobile (droite) */
        .mobile-panel {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 100vw;
            background: #fff;
            transform: translateX(100%);
            transition: transform .25s ease;
            z-index: 9999;
            display: flex;
            flex-direction: column
        }

        .mobile-panel.is-open {
            transform: translateX(0)
        }

        .mobile-panel__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px;
            border-bottom: 1px solid #eee
        }

        .mobile-panel__menu {
            display: flex;
            flex-direction: column;
            padding: 20px;
            gap: 14px
        }

        .mobile-panel__menu a {
            color: var(--blue);
            text-decoration: none;
            font-size: 18px
        }

        .mobile-cta{
          display: block;
          background: #12529b;
          color: white !important;
          text-align: center;
          padding: 0.5em;
          width: 100%;
          margin: 0 auto;
        }

        /* Responsive switch */
        @media (max-width: 960px) {
            .site-header__inner {
                grid-template-columns: 1fr
            }

            .nav-desktop {
                display: none
            }

            .nav-mobile {
                display: flex
            }
        }

.osteo-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: background 0.38s cubic-bezier(.4,2,.6,1), box-shadow 0.32s;
  will-change: background, box-shadow;
}
.osteo-header.scrolled {
  background: #fff;
  box-shadow: 0 3px 18px #0002;
  animation: fadeInBg 0.33s;
}

.osteo-header.scrolled nav a{ color: #12529b;}
.osteo-header.scrolled nav a:hover{ color: #002B5B;}
.osteo-header.scrolled .logo{ color: #12529b;}
.osteo-header.scrolled .burger span{ background-color: #12529b;}
@keyframes fadeInBg {
  from { background: transparent; }
  to { background: #fff; }
}
.header-inner-desktop {
  max-width: 1420px;
  margin: 0 auto;
  padding: 1em 2.2em 0 2.2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-inner-mobile{ visibility: hidden; width: 100%;}
.logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.01em;
}
.logo img{
  object-fit: cover;
  max-width: 100px;
}

.osteo-nav {
  display: flex;
  gap: 2.4em;
}
.osteo-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4em;
  font-weight: 600;
  color: white;
  text-decoration: none;
  padding: 0.25em 0.1em;
  transition: color 0.18s;
  position: relative;
}
.osteo-nav a:hover,
.osteo-nav a:focus {
  color: #12529b;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 1.2em;
  z-index: 1101;
}
.burger span {
  display: block;
  width: 30px;
  height: 4px;
  background: white;
  margin: 2px 0;
  border-radius: 2px;
  transition: all 0.34s cubic-bezier(.4,2,.6,1);
  pointer-events: none;
}

.burger.open span{
  background-color: #232323;
}
/* --- Burger Animation --- */
.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.1);
}
.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ----------- MOBILE MENU OVERLAY ------------ */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1100;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: menuIn 0.34s;
}
.mobile-menu-overlay.open {
  display: flex;
}
@keyframes menuIn { from { opacity: 0; } to { opacity: 1; } }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2d2d2d;
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: none;
  transition: color 0.15s;
}
.mobile-nav a:hover {
  color: #002B5B;
}

/* Responsive */
/* Ajout d’un point de rupture intermédiaire */
@media (max-width: 1024px) {
  .osteo-nav {
    gap: 1.4em; /* Réduit l’écart entre liens */
    font-size: 0.95em; /* Légère réduction texte */
  }
  .osteo-nav a{
    font-size: 1.4em;
  }
  .nav-desktop {
          max-width: 900px;
          gap: calc(1em + 3vw);
        }

        .nav-desktop .left,
        .nav-desktop .right {
            gap: calc(1em + 2vw);
        }

        .nav-desktop a {
          font-size: 1.1em;
        }
        .cta{max-width: 250px;}
  
  .icon{ font-size: 50px;}
  .drawer-cta{ max-width: 400px; margin: 0 0;}
  .callback-cta{ max-width: 400px; margin: 0 0;}
}

/* Basculer en burger plus tôt si vraiment trop serré */
@media (max-width: 900px) {
  .osteo-nav { display: none; }
  .burger { display: flex; }
  .icon{ font-size: 50px;}
}


@media (max-width: 800px) {
  .header-inner { padding: 0.5em 1.1em; }
}

@media (max-width: 480px) {
  .logo img{ max-width: 90px; padding-top: 0.4em;}
  .header-inner-desktop { display: none; }
  .header-inner-mobile { display: flex;}
  .osteo-nav { display: none; }
  .osteo-nav-mobile{ display: flex;}
  .nav-mobile{ justify-content: space-between;}
  .icon{ font-size: 28px;}
  .burger { display: flex; }
  .hero-btn{
    padding: 0.8em 1.4em !important;
    margin-top: 0.8em !important;
  }
}

/* Empêche le scroll quand menu mobile ouvert */
body.menu-open {
  overflow: hidden;
}

section{
  z-index: 10;
  position: relative;
}


/* HERO SECTION */
.hero-osteo { position: relative; min-height: 100vh; width: 100vw; overflow: hidden; }
.hero-bg    { position: fixed; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }




.hero-osteo::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.55;
  z-index: 3;
  background: linear-gradient(180deg, #002B5B 20%, #12529b 100%);
  /* Optionnel : légère superposition pour garantir la lisibilité */
  pointer-events: none;
}

.hero-osteo-inner {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 50vh;
  margin-top: 25vh;
}

.hero-osteo h1 {
  font-size: clamp(2.3rem, 6vw, 5.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.1em 0;
  letter-spacing: 3px;
  line-height: 1.03;
  text-shadow: 0 2px 18px #0003;
}

.hero-osteo h1 span{
    font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 4rem);
  letter-spacing: -1px;
}

.hero-osteo h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-style: italic;
  color: #fff;
  margin: 0 0 1.7em 0;
  font-weight: 700;
  text-shadow: 0 2px 18px #0002;
  letter-spacing: 0.03em;
}

.hero-btn {
  display: inline-block;
  background: #12529b;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 1.1em 2.5em;
  margin-top: 0.4em;
  border-radius: 2em;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.22s;
  box-shadow: 0 2px 12px #0002;
}
.hero-btn:hover {
  background: #002B5B;
}

/* Responsive */
@media (max-width: 700px) {
  .hero-osteo-inner {
    padding: 0 1em;
  }
  .hero-osteo h1 { font-size: 2.1rem; }
  .hero-osteo h2 { font-size: 1.32rem; }
}

/* == Section About == */
.about-section {
  width: 100vw;
  background: #fafafa;
  overflow-x: clip;
  margin: 0 auto;
  position: relative;
}

.about-section h2{
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.05em;
  color: #222;
  line-height: 1.08;
  letter-spacing: 0.01em;
  padding: 4vw 2vw 2vw 2vw;
}

.about-section h2 em {
  display: block;
  font-family: 'Georgia', serif;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  font-style: italic;
  font-weight: 400;
  text-align: center;
  color: #2d241c;
  margin-top: 0.16em;
  letter-spacing: 0.02em;
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  box-sizing: border-box;
  gap: 3.5em;
}

/* IMAGE à gauche */
.about-img-wrapper {
  flex: 0 0 36%;
  min-width: 250px;
  max-width: 410px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

/* Portrait Nina */
/* largeur affichée souhaitée : mobile 250px, tablette 500px, desktop 800px */
.portrait-osteo { width: 250px; max-width: 100%; height: auto; }
@media (min-width: 600px)  { .portrait-osteo { width: 500px; } }
@media (min-width: 1024px) { .portrait-osteo { width: 800px; } }


/* TEXTE à droite */
.about-texts {
  width: 50%;
  min-width: 260px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 10vh;
}

.about-desc {
  margin-top: 2.3em;
  color: #232323;
  font-size: clamp(1.04rem, 1.5vw, 1.14rem);
  max-width: 800px;
  padding-bottom: 2em;
}
.about-desc p {
  margin-bottom: 1em;
}
.about-btn {
  position: absolute;
  bottom: 10%;
  right: 10%;
  max-width: 25%;
  max-height: 60px;
  display: inline-block;
  background: #12529b;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 0.95em 2.1em;
  border-radius: 2em;
  margin-top: 0.5em;
  font-size: 0.9em;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px #0001;
  transition: background 0.15s;
  text-decoration: none;
}
.about-btn:hover {
  background: #002B5B;
}

/* ===== Responsive ====== */
@media (max-width: 1000px) {
  .about-content {
    gap: 1.5em;
    padding: 0 2em;
    min-height: 480px;
  }
  .about-img-wrapper {
    max-width: 250px;
    min-width: 120px;
  }
  .about-texts{ width: 60%; padding-bottom: 2em; }
  .about-btn{ font-size: 0.8em; max-width: 30%; padding: 15px;}
}

@media (max-width: 650px) {
  .about-content {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0.7em;
    min-height: 0;
    padding: 0 4vw;
  }
  .about-img-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55vw;
    max-width: 250px;
    min-width: 0;
    margin: 0;
    align-self: flex-start;
    pointer-events: none;
    justify-content: flex-end;
  }
  .about-texts {
    width: 100%;
    min-width: 0;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 20vh;
  }
  .about-texts h2 { font-size: 1.15rem; }
  .about-texts h2 em { font-size: 1.13rem; }
  .about-desc { position: relative; font-size: 1em; margin-top: 1em; padding-bottom: 5em; }
  .about-btn {
    text-align: center;
    bottom: 0;
    left: 0;
    max-width: 45%;
    font-size: 0.7em;
    margin-top: 1em;
    padding: 1.2em;
  }
}

/* == Section Education == */

.education-section {
  position: relative;
  width: 100vw;
  background: #fafafa;
  overflow-x: clip;
  margin: 0 auto;
}

.education-bg{
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.education-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;          
  background: #28221A;   
  opacity: 0.75;
  z-index: 2;
  pointer-events: none;
}

.wrapper-education {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3vw;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 4vw 2vw;
  position: relative;
  opacity: 0;
  z-index: 3;
  transition: 0.8s;
}

.wrapper-education.visible{
  opacity: 1;
}

.school, .spe {
  width: 45%;
  min-width: 270px;
  background: transparent;
  padding: 1.5em 1.2em 2em 1.2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
}

.education-section .wrapper-img {
  width: 100%;
  max-width: 85px;
  margin: 0 auto 2.3em auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.education-section .wrapper-img img {
  width: 100%;
  max-width: 70px;
  height: auto;
  object-fit: contain;
  display: block;
}

.school h3, .spe h3 {
  margin-bottom: 0.7em;
  font-size: 1.5em;
  color: white;
  letter-spacing: 0.01em;
  font-family: 'Young Serif', serif;
}

.school p, .spe p {
  color: white;
  font-size: 1em;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .wrapper-education {
    flex-direction: column;
    align-items: stretch;
    gap: 2.4em;
    padding: 3vw 4vw;
  }
  .school, .spe {
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
    text-align: left;
    align-items: flex-start;
    padding: 1.2em 0.5em 2em 0.5em;
  }
  .education-section .wrapper-img {
    max-width: 60px;
    margin-bottom: 1.1em;
  }
  .education-section .wrapper-img img {
    max-width: 50px;
  }
}

@media (max-width: 600px) {
  .wrapper-education {
    padding: 7vw 2vw 5vw 2vw;
    gap: 1.7em;
  }
  .school, .spe {
    padding: 1.1em 0 1.5em 0;
    font-size: 0.97em;
  }
  .school h3, .spe h3{
    display: block;
    width: 100%;
    text-align: center;
  }
  .school p, .spe p{ padding: 0 2em 0 2em;}
  .education-section .wrapper-img {
    max-width: 60px;
    margin-bottom: 0.6em;
  }
  .education-section .wrapper-img img {
    max-width: 50px;
  }
}

@media (max-width: 400px) {
  .school h3, .spe h3 {
    font-size: 1.25em;
  }
}

/* == Section Consultations == */

/* --------- Tokens couleurs / typo --------- */
:root{
  --clr-text:#2d2d2d;
  --clr-head:#2d241c;             /* brun foncé pour les titres */
  --clr-accent:#12529b;           /* actif */
  --clr-accent-dark:#002B5B;      /* hover actif */
  --clr-chip:#d9d6d2;             /* puce inactif */
  --bg-section:#f5f5f5;
}

.consultations{
  background: var(--bg-section);
  padding: clamp(2rem, 4vw, 4rem) 1rem;
}
.consult-container{
  max-width: 1200px;
  margin: 0 auto;
}

/* Titre double ligne */
.consult-head h2{
  text-align:center;
  margin: 0 0 1.5rem 0;
  line-height:1.05;
}
.consult-head h2 strong{
  display:block;
  color: var(--clr-head);
  font-family: "Montserrat", system-ui, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 4.4rem);
  letter-spacing: .01em;
}
.consult-head h2 em{
  display:block;
  margin-top:.15em;
  color: var(--clr-head);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.6rem, 4.5vw, 3.6rem);
}

/* Tabs / chips */
.consult-tabs{
  display:flex;
  gap:.75rem;
  justify-content:center;
  flex-wrap:wrap;
  margin: clamp(0.6rem, 2vw, 1.2rem) 0 clamp(1.6rem, 4vw, 2.6rem);
}
.consult-tab{
  border:0;
  border-radius: 999px;
  padding: .55em 1.1em;
  font: 600 0.98rem/1 "Montserrat", system-ui, Arial, sans-serif;
  letter-spacing:.02em;
  color: var(--clr-text);
  background: var(--clr-chip);
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.consult-tab:hover{ transform: translateY(-1px); }
.consult-tab.is-active{
  background: var(--clr-accent);
  color:#fff;
}
.consult-tab.is-active:hover{ background: var(--clr-accent-dark); }

/* Corps */
.consult-body{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:start;
  gap: clamp(1.2rem, 3vw, 3rem);
}
.consult-img{
  margin:0;
}
.consult-img img{
  display:block;
  width:100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 8px;
}
.consult-text{
  color: var(--clr-text);
  font-family: "Montserrat", system-ui, Arial, sans-serif;
  max-width: 58ch;
}
.consult-text h3{
  margin:0 0 .6rem 0;
  color: var(--clr-head);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-style: italic;
}
.consult-text p{
  margin: .6rem 0;
  line-height: 1.65;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

/* Animation de fade + slide */
.consult-img,
.consult-text {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.consult-img.is-fading,
.consult-text.is-fading {
  opacity: 0;
  transform: translateY(10px);
}


/* Responsive */
@media (max-width: 900px){
  .consult-body{ grid-template-columns: 1fr; }
  .consult-text{ max-width: none; }
}

/* == Section Tarifs == */

.tarifs-section {
  position: relative;
  padding: 60px 20px;
}

.tarifs-bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.tarifs-wrapper {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  max-width: 800px;
  margin: auto;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tarifs-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.tarifs-wrapper h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.tarifs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.tarifs-list li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.tarifs-note p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 5px;
}

@media (max-width: 480px) {
  .tarifs-wrapper {
    padding: 25px;
  }
  .tarifs-wrapper h2 {
    font-size: 1.3rem;
  }
  .tarifs-list li {
    font-size: 0.8rem;
  }
}

/* == Section Reviews == */

.reviews{
  padding: 5em;
  text-align: center;
  color: white;
}

.reviews h2{
      font-size: clamp(1.5rem, 4.5vw, 4.4rem);
      line-height: 1.05em;
      margin-bottom: 10px;
}

.reviews h2 strong{
  display: block;
    color: white;
    font-family: "Montserrat", system-ui, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: .01em;
}

.reviews p{
  font-family: Georgia;
  font-size: clamp(0.8rem, 2vw, 1.5rem);
}

.wp-gr{ padding-top: 20px !important;}

@media (max-width: 480px){
  .reviews{ padding: 2em}
}

/* == Section FAQ == */

:root{
  --clr-text:#2d2d2d;
  --clr-head:#2d241c;
  --clr-accent:#12529b;
  --clr-accent-dark:#002B5B;
  --clr-chip:#d9d6d2;
  --bg-soft:#f5f5f5;
}

/* ===== FAQ ===== */
.faq-section{
  background: var(--bg-soft);
  padding: clamp(2rem, 6vw, 4rem) 1rem;
}
.faq-container{
  max-width: 900px;
  margin: 0 auto;
}

/* Titre double */
.block-head h2{
  text-align:center;
  margin: 0 0 1.5rem;
  line-height: 1.05;
}
.block-head h2 strong{
  display:block;
  color: var(--clr-head);
  font-family: "Montserrat", system-ui, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
}
.block-head h2 em{
  display:block;
  color: var(--clr-head);
  font-family:  Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.6rem, 4.5vw, 3rem);
}

/* Accordéon */
.faq-list{
  display:flex;
  flex-direction:column;
  gap:.6rem;
  margin: clamp(1rem, 3vw, 2rem) auto;
}

.faq-q{
  width: 100%;
  text-align: left;
  border: 0;
  border-radius: 999px;
  background: var(--clr-chip);
  color: var(--clr-text);
  padding: .8em 1.1em;
  font: 700 1rem/1.2 "Montserrat", system-ui, Arial, sans-serif;
  display:flex;
  align-items:center;
  justify-content: space-between;
  cursor:pointer;
  transition: background .18s ease, transform .12s ease;
}
.faq-q:hover{ transform: translateY(-1px); }
.faq-q[aria-expanded="true"]{
  background: var(--clr-accent);
  color:#fff;
}

.faq-icon{
  font-weight: 800;
  margin-left: .8rem;
  transition: transform .25s ease;
}
.faq-q[aria-expanded="true"] .faq-icon{ transform: rotate(45deg); }

.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease, opacity .28s ease, transform .28s ease;
  opacity: 0;
  transform: translateY(6px);
  background: #fff;
  border-radius: 10px;
  margin: .25rem 1.2rem 0;
  box-shadow: 0 6px 18px #00000010;
}
.faq-a p{
  margin: 0;
  padding: 1rem 1.1rem;
  color: var(--clr-text);
  line-height: 1.6;
  font-size: 1rem;
}
.faq-a.is-open{
  opacity: 1;
  transform: translateY(0);
  max-height: 240px
}

/* CTA */
.faq-cta{
  display:flex;
  justify-content:center;
  margin-top: clamp(1rem, 4vw, 2rem);
}
.btn-primary{
  display:inline-block;
  background: var(--clr-accent);
  color:#fff;
  text-decoration:none;
  font: 700 1rem/1 "Montserrat", system-ui, Arial, sans-serif;
  padding: .9em 1.6em;
  border-radius: 999px;
  transition: background .18s ease, transform .12s ease;
}
.btn-primary:hover{ background: var(--clr-accent-dark); transform: translateY(-1px); }


/* == Section Contact == */

/* ===== Contact ===== */
.contact-section{
  padding: clamp(2rem, 6vw, 4rem) 1rem;
  background:#fff;
}
.contact-container{
  max-width: 1300px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
}

.contact-infos h3{
  margin: 0 0 .4rem;
  color: var(--clr-head);
  font: 800 1.05rem/1.2 "Montserrat", system-ui, Arial, sans-serif;
  letter-spacing:.01em;
  text-transform: uppercase;
}
.contact-infos p{
  margin: 0 0 1rem 0;
  color: var(--clr-text);
  line-height: 1.6;
  font: 400 1rem/1.6 "Montserrat", system-ui, Arial, sans-serif;
}
.contact-alert{
  color: var(--clr-accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing:.01em;
  margin-top: .6rem;
  color: var(--clr-accent) !important;
}

/* Carte responsive 16:9 */
.map-embed{
  position: relative;
  width: 100%;
  height: 550px;
  padding-top: 56.25%; /* 16/9 */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px #00000012;
}
.map-embed iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* Responsive */
@media (max-width: 900px){
  .contact-container{
    grid-template-columns: 1fr;
  }
  .map-embed{ padding-top: 60%; margin-top: 1em; height: 400px; }
}

/* == Footer == */

footer{
  position: relative;
  background-color: white;
  padding: 2em 4em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border-top: 1px solid black;
  z-index: 10;
}

footer div{
  width: 33%;
}

footer .socials{
  text-align: center;
  width: 30%;
}

.socials a{
  margin-right: 1em;
}

.socials img{
  width: 25px;
  height: 25px;
}

.footer-nav a{
  margin-right: 1em;
  font-size: clamp(0.8em, 2vw, 1.2em);
}

@media(max-width: 800px){
  footer{
    padding: 1.5em 2em;
  }
}

@media (max-width: 480px){
  footer{
    padding: 1em 1em;
    align-items: center;
  }

  footer p{ font-size: 0.8em;}
  footer div{ width: 40%;}
  footer div:first-child, footer div:last-child{ width: 20%;}
  .socials{
    gap: .4em;
  }
  .socials a{
    margin-right: 0;
  }
  .footer-nav{
    padding: .4em;
    line-height: 1em;
  }
  .footer-nav a{
    padding-bottom: 10px;
  }
}


/* Page Mentions Légales */

.main-mentions-legales ul li span{ font-weight: 600;}
