/* ===========================================
   MS OSTÉOPATHE — main.css v1.0
   Couleurs : #1B3A2D (vert), #C4A882 (or), #F5F2EB (crème), #FFFFFF, #1C1C1C
   =========================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #1C1C1C;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHIE ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: #1C1C1C;
}

h1 { font-size: 58px; font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: 40px; font-weight: 700; }
h3 { font-size: 26px; font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }

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

.label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C4A882;
  display: block;
  margin-bottom: 12px;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--dark { background-color: #1B3A2D; }
.section--cream { background-color: #F5F2EB; }

/* ---- BOUTONS ---- */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  line-height: 1;
}

.btn--gold {
  background-color: #C4A882;
  color: #1C1C1C;
  border-color: #C4A882;
}
.btn--gold:hover {
  background-color: transparent;
  color: #C4A882;
}

.btn--white {
  background-color: #FFFFFF;
  color: #1B3A2D;
  border-color: #FFFFFF;
}
.btn--white:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.btn--outline-white {
  background-color: transparent;
  color: rgba(255,255,255,0.80);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline-white:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn--green {
  background-color: #1B3A2D;
  color: #FFFFFF;
  border-color: #1B3A2D;
}
.btn--green:hover {
  background-color: transparent;
  color: #1B3A2D;
}

/* ---- TOP BAR ---- */
.top-bar {
  background-color: #1B3A2D;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 8px 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar__info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  font-family: 'Inter', sans-serif;
}

.top-bar__item svg { width: 14px; height: 14px; flex-shrink: 0; }

.top-bar__item a { transition: color 0.2s; }
.top-bar__item a:hover { color: #C4A882; }

.top-bar__hours {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  font-family: 'Inter', sans-serif;
}

/* ---- NAVIGATION ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EDE8DF;
  box-shadow: 0 1px 0 #EDE8DF;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

/* Logo */
.nav__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__logo img { height: 48px; width: auto; }

.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #1B3A2D;
  line-height: 1.1;
}
.nav__logo-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #C4A882;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Menu links */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__menu a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1C1C1C;
  padding: 6px 14px;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
}

.nav__menu a:hover { color: #1B3A2D; background-color: #F5F2EB; }
.nav__menu a.active { color: #1B3A2D; }

/* Nav CTA */
.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1C1C1C;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  background-color: #FFFFFF;
  border-top: 1px solid #EDE8DF;
  padding: 16px 32px 24px;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 4px; list-style: none; }
.nav__mobile a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  color: #1C1C1C;
  border-bottom: 1px solid #F5F2EB;
}
.nav__mobile .btn { margin-top: 16px; width: 100%; text-align: center; }

/* ---- HERO ---- */
.hero {
  background-color: #1B3A2D;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.hero__content { position: relative; z-index: 1; }

.hero__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #C4A882;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background-color: #C4A882;
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 62px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  color: #C4A882;
}

.hero__text {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 48px;
}

.stat__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* Hero image */
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #F5F2EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(27,58,45,0.08);
}

.hero__badge-icon svg { width: 26px; height: 26px; }
.hero__badge-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 3px;
}
.hero__badge-stars span {
  color: #FBBC05;
  font-size: 13px;
  line-height: 1;
}
.hero__badge-title { font-size: 13px; font-weight: 700; color: #1C1C1C; line-height: 1.2; }
.hero__badge-sub { font-family: 'Inter', sans-serif; font-size: 11px; color: #5A5A5A; margin-top: 2px; }

/* ---- PRATICIEN ---- */
.praticien__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.praticien__img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.praticien__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.praticien__content .label { margin-bottom: 16px; }
.praticien__content h2 { margin-bottom: 24px; }

.praticien__text {
  font-size: 16px;
  line-height: 1.8;
  color: #5A5A5A;
  margin-bottom: 32px;
}

.praticien__diplomes {
  border-top: 1px solid #EDE8DF;
  padding-top: 28px;
  margin-bottom: 36px;
}

.praticien__diplomes h4 {
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5A5A5A;
  margin-bottom: 14px;
}

.praticien__diplomes ul { list-style: none; }
.praticien__diplomes li {
  font-size: 14px;
  color: #1C1C1C;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}
.praticien__diplomes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #C4A882;
}

/* ---- SERVICES ---- */
.services { background-color: #F5F2EB; }
.services__header { text-align: center; margin-bottom: 56px; }
.services__header .label { justify-content: center; display: flex; }
.services__header h2 { margin-bottom: 16px; }
.services__header p { color: #5A5A5A; max-width: 540px; margin: 0 auto; }

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

.service-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid #EDE8DF;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background-color: #F5F2EB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.service-card__icon svg { width: 28px; height: 28px; color: #1B3A2D; }

.service-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
  color: #1C1C1C;
  text-align: center;
}

.service-card p { text-align: center; }

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5A5A5A;
  margin-bottom: 0;
}

/* ---- RAISONS (section verte) ---- */
.raisons { background-color: #1B3A2D; }
.raisons__header { text-align: center; margin-bottom: 56px; }
.raisons__header .label { justify-content: center; display: flex; }
.raisons__header h2 { color: #FFFFFF; }

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

.raison-card {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 32px 28px;
  transition: background-color 0.25s ease;
}

.raison-card:hover { background-color: rgba(255,255,255,0.10); }

.raison-card__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: #C4A882;
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.raison-card h3 {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.raison-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.60);
  margin-bottom: 0;
}

/* ---- AVIS ---- */
.avis__header { text-align: center; margin-bottom: 56px; }
.avis__header .label { justify-content: center; display: flex; }

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

.avis-card {
  background-color: #FFFFFF;
  border: 1px solid #EDE8DF;
  border-radius: 12px;
  padding: 28px 28px 24px;
}

.avis-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.avis-card__stars svg { width: 16px; height: 16px; color: #C4A882; fill: #C4A882; }

.avis-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #5A5A5A;
  font-style: italic;
  margin-bottom: 20px;
}

.avis-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avis-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #1B3A2D;
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avis-card__name { font-size: 14px; font-weight: 600; color: #1C1C1C; }
.avis-card__date { font-size: 12px; color: #5A5A5A; }

/* ---- CONTACT ---- */
.contact { background-color: #F5F2EB; }
.contact__header { text-align: center; margin-bottom: 48px; }
.contact__header .label { justify-content: center; display: flex; }

/* 3 cartes */
.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.contact__card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid #EDE8DF;
  text-align: center;
}

.contact__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F5F2EB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.contact__card-icon svg { width: 22px; height: 22px; color: #1B3A2D; }
.contact__card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C4A882;
  margin-bottom: 6px;
}
.contact__card-value {
  font-size: 14px;
  color: #1C1C1C;
  line-height: 1.55;
  margin-bottom: 12px;
}
.contact__card-value a { color: #1B3A2D; }
.contact__card-link {
  font-size: 12px;
  font-weight: 600;
  color: #1B3A2D;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.contact__card-link:hover { color: #C4A882; }

/* Bas : horaires + carte — même hauteur */
.contact__bottom {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: stretch;
}

/* legacy inner kept for compat */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__info h3 { margin-bottom: 28px; }

.contact__detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact__detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background-color: #1B3A2D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-icon svg { width: 18px; height: 18px; color: #FFFFFF; }

.contact__detail-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5A5A5A;
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 15px;
  color: #1C1C1C;
  line-height: 1.5;
}

.contact__detail-value a:hover { color: #1B3A2D; text-decoration: underline; }

.contact__horaires {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #EDE8DF;
  display: flex;
  flex-direction: column;
}

.contact__horaires h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5A5A5A;
  margin-bottom: 16px;
}

.horaire-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #1C1C1C;
  padding: 8px 0;
  border-bottom: 1px solid #F5F2EB;
}

.horaire-row:last-child { border-bottom: none; }
.horaire-row span:first-child { color: #5A5A5A; }
.horaire-row--closed { opacity: 0.45; }

/* Map — même hauteur que les horaires */
.contact__map {
  border-radius: 12px;
  overflow: hidden;
  min-height: 300px;
  height: 100%;
  border: 1px solid #EDE8DF;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  display: block;
}

/* ---- CTA FINAL ---- */
.cta-final {
  background-color: #1B3A2D;
  text-align: center;
}

.cta-final__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-final__text {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-final__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- BLOG ---- */
.blog__header { margin-bottom: 48px; }

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.post-card {
  border: 1px solid #EDE8DF;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.post-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.post-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.post-card:hover .post-card__thumb img { transform: scale(1.04); }

.post-card__thumb-overlay {
  position: absolute;
  inset: 0;
  opacity: 1;
  background: linear-gradient(to top, rgba(27,58,45,0.88) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 0 16px 16px;
}

.post-card__thumb-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}

.post-card__body { padding: 24px 24px 28px; }

.post-card__cat {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C4A882;
  margin-bottom: 10px;
  display: block;
}

.post-card h3 {
  font-size: 19px;
  font-family: 'Playfair Display', serif;
  color: #1C1C1C;
  margin-bottom: 10px;
  line-height: 1.3;
}

.post-card h3 a:hover { color: #1B3A2D; }

.post-card p {
  font-size: 14px;
  color: #5A5A5A;
  line-height: 1.65;
  margin-bottom: 20px;
}

.post-card__meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #5A5A5A;
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-card__meta span { color: #C4A882; }

/* Blog single */
.single__hero {
  background-color: #1B3A2D;
  padding: 80px 0 60px;
}

.single__hero .label { margin-bottom: 20px; }

.single__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 20px;
}

.single__meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.single__content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px;
}

.single__content p { margin-bottom: 1.5em; font-size: 17px; line-height: 1.8; color: #1C1C1C; }
.single__content h2 { margin: 2em 0 0.6em; font-size: 28px; }
.single__content h3 { margin: 1.5em 0 0.5em; font-size: 22px; }
.single__content ul, .single__content ol { padding-left: 24px; margin-bottom: 1.5em; }
.single__content li { margin-bottom: 0.5em; font-size: 16px; line-height: 1.75; }
.single__content blockquote {
  border-left: 3px solid #C4A882;
  padding-left: 24px;
  margin: 2em 0;
  font-style: italic;
  color: #5A5A5A;
}
.single__content img { border-radius: 10px; margin: 2em 0; }
.single__content a { color: #1B3A2D; text-decoration: underline; }

/* Archive / pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}

.pagination a, .pagination span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #EDE8DF;
  color: #1C1C1C;
  transition: background-color 0.2s, color 0.2s;
}

.pagination a:hover { background-color: #1B3A2D; color: #FFFFFF; border-color: #1B3A2D; }
.pagination .current { background-color: #1B3A2D; color: #FFFFFF; border-color: #1B3A2D; }

/* ---- FAQ ---- */
.faq { background-color: #F5F2EB; }
.faq__header { text-align: center; margin-bottom: 56px; }

.faq__list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid #EDE8DF;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 28px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: #1C1C1C;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-item__question:hover { color: #1B3A2D; }
.faq-item.open .faq-item__question { color: #1B3A2D; }

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #F5F2EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.25s, transform 0.25s;
}

.faq-item__icon svg { width: 12px; height: 12px; color: #1B3A2D; transition: transform 0.25s; }
.faq-item.open .faq-item__icon { background-color: #1B3A2D; }
.faq-item.open .faq-item__icon svg { color: #FFFFFF; transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-item__answer { max-height: 400px; }

.faq-item__answer p {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.75;
  color: #5A5A5A;
  margin: 0;
}

/* ---- PAGE HERO ---- */
.page-hero--dark {
  background-color: #1B3A2D;
  padding: 80px 0 72px;
}
.page-hero--dark .label { color: #C4A882; }
.page-hero--dark .page-hero__title { color: #FFFFFF; }
.page-hero--dark .page-hero__title em { color: #C4A882; font-style: italic; }
.page-hero--dark .page-hero__sub { color: rgba(255,255,255,0.70); max-width: 600px; margin-top: 16px; }

/* ---- PRESTATIONS PAGE ---- */
.prestation-vision__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px;
  align-items: center;
}

/* Specialty cards with photo background */
.prestation-vision__specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 110px;
  background-color: #1B3A2D;
  background-size: cover;
  background-position: center;
}

.spec-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,45,0.88) 0%, rgba(27,58,45,0.55) 100%);
}

.spec-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 0 22px;
}

.spec-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(196,168,130,0.20);
  border: 1px solid rgba(196,168,130,0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spec-card__icon svg { width: 20px; height: 20px; color: #C4A882; }

.spec-card__content h3 {
  font-size: 16px;
  color: #FFFFFF;
  margin: 0 0 4px;
  line-height: 1.2;
}
.spec-card__content p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Specialty cards with icon */
.spec-card-simple {
  background: #F5F2EB;
  border-radius: 10px;
  padding: 20px 24px;
  border-left: 3px solid #C4A882;
  display: flex;
  align-items: center;
  gap: 18px;
}
.spec-card-simple__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  color: #1B3A2D;
  opacity: 0.75;
}
.spec-card-simple__icon svg,
.spec-card-simple__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.spec-card-simple__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: #1B3A2D;
  margin-bottom: 4px;
}
.spec-card-simple__sub {
  font-size: 12px;
  color: #5A5A5A;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.03em;
}

/* Legacy stat (kept for compat) */
.prestation-vision__stat {
  background: #F5F2EB;
  border-radius: 12px;
  padding: 24px 28px;
  border-left: 3px solid #C4A882;
}

.prestation-types__header { text-align: center; margin-bottom: 48px; }
.prestation-types__header .label { display: flex; justify-content: center; }

.prestation-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.prestation-type-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 36px 28px;
  border: 1px solid #EDE8DF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.prestation-type-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #F5F2EB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.prestation-type-card__icon svg { width: 28px; height: 28px; color: #1B3A2D; }
.prestation-type-card h3 { font-size: 22px; margin-bottom: 8px; }
.prestation-type-card__lieu {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C4A882;
  margin-bottom: 14px;
}
.prestation-type-card__lieu--free { color: #1B3A2D; }
.prestation-type-card p { color: #5A5A5A; font-size: 14px; margin-bottom: 20px; flex: 1; }
.prestation-type-card .btn { margin-top: auto; }

.prestation-modalites__header { text-align: center; margin-bottom: 48px; }
.prestation-modalites__header .label { display: flex; justify-content: center; }

.prestation-modalites__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.modalite-card {
  background: #F5F2EB;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
}
.modalite-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1B3A2D;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.modalite-card__icon svg { width: 24px; height: 24px; color: #C4A882; }
.modalite-card h3 { font-size: 20px; margin-bottom: 16px; }
.modalite-card__value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #1B3A2D;
  margin-bottom: 12px;
}

.tarifs-list { text-align: left; width: 100%; margin-bottom: 8px; }
.tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(27,58,45,0.10);
  color: #1C1C1C;
}
.tarif-row:last-child { border-bottom: none; }
.tarif-row span { color: #5A5A5A; }
.tarif-row strong { color: #1B3A2D; font-weight: 700; }

.paiement-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 4px;
}
.paiement-badge {
  background: #FFFFFF;
  border: 1px solid #EDE8DF;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #1C1C1C;
}

.remboursement__inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 760px;
  margin: 0 auto;
}
.remboursement__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1B3A2D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.remboursement__icon svg { width: 36px; height: 36px; color: #C4A882; }
.remboursement__inner h2 { font-size: 26px; margin-bottom: 12px; }

/* ---- À PROPOS PAGE ---- */
.apropos-bio__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
.apropos-bio__img {
  border-radius: 16px;
  overflow: hidden;
  background: #F5F2EB;
  aspect-ratio: 4/5;
}
.apropos-bio__img img { width: 100%; height: 100%; object-fit: cover; }
.apropos-diplomes { margin: 28px 0 32px; }
.apropos-diplomes h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #5A5A5A; margin-bottom: 14px; }
.apropos-diplomes ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.apropos-diplomes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #1C1C1C;
}
.apropos-diplomes svg { width: 16px; height: 16px; color: #C4A882; flex-shrink: 0; margin-top: 2px; }

/* ---- FOOTER ---- */
.site-footer {
  background-color: #1B3A2D;
  padding: 32px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer__brand { }

.footer__logo { margin-bottom: 14px; }
.footer__logo .custom-logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

.footer__brand .nav__logo { margin-bottom: 14px; }
.footer__brand .nav__logo-name { color: #FFFFFF; }

.footer__tagline {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

/* Horaires dans footer */
.footer__hours { list-style: none; }
.footer__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__hours li:last-child { border-bottom: none; }
.footer__hours--closed { color: rgba(255,255,255,0.28) !important; }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background-color: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.footer__social a:hover { background-color: #C4A882; }
.footer__social svg { width: 16px; height: 16px; color: #FFFFFF; }

.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer__col--nav ul { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.footer__col--contact ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col li { margin-bottom: 0; }
.footer__col li a { font-size: 12px; }
.footer__col a {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s;
}
.footer__col a:hover { color: #C4A882; }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer__legal { display: flex; gap: 20px; }
.footer__legal a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.70); }

/* ---- FILIGRANE VERTICAL (vague + traits) ---- */
.section.services,
.section.avis,
.section--sm.contact,
.section#praticien,
#praticien,
.prestation-types,
.prestation-remboursement,
.faq-page {
  position: relative;
  overflow: hidden;
}

.section.services::before,
.section.avis::before,
.section--sm.contact::before,
.section#praticien::before,
#praticien::before,
.prestation-types::before,
.prestation-remboursement::before,
.faq-page::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='300' viewBox='0 0 90 300'%3E%3Cpath d='M55 0 Q65 75 55 150 Q45 225 55 300' stroke='%23C4A882' stroke-width='1.2' fill='none' opacity='0.35'/%3E%3Cline x1='20' y1='0' x2='20' y2='300' stroke='%23C4A882' stroke-width='0.8' opacity='0.2'/%3E%3Cline x1='75' y1='0' x2='75' y2='300' stroke='%23C4A882' stroke-width='0.8' opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: 90px 300px;
  pointer-events: none;
  z-index: 0;
}

.section.services > *,
.section.avis > *,
.section--sm.contact > *,
.section#praticien > *,
#praticien > *,
.prestation-types > *,
.prestation-remboursement > *,
.faq-page > * {
  position: relative;
  z-index: 1;
}

/* ---- PAGE GÉNÉRIQUE ---- */
.page-hero {
  background-color: #1B3A2D;
  padding: 72px 0 60px;
}

.page-hero .label { margin-bottom: 12px; }
.page-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  color: #FFFFFF;
}

.page-content {
  padding: 64px 0;
  max-width: 860px;
  margin: 0 auto;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  h1 { font-size: 46px; }
  .hero__title { font-size: 50px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .praticien__inner { grid-template-columns: 1fr; }
  .praticien__img { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ---- PHOTOS DE SÉANCE ---- */
.seance-photos {
  background: #FAFAF8;
}
.seance-photos__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.seance-photos__header p {
  font-size: 15px;
  color: #5A5A5A;
  margin-top: 12px;
  line-height: 1.7;
}
.seance-photos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.seance-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 24px rgba(27,58,45,0.10);
}

@media (max-width: 768px) {
  .seance-photos__grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .section--sm { padding: 44px 0; }
  .container { padding: 0 18px; }

  /* Typographie */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  .hero__title { font-size: 34px; }
  .cta-final__title { font-size: 28px; }
  .single__title { font-size: 30px; }
  .page-hero__title { font-size: 28px; }

  /* Top bar : masquer les horaires sur mobile */
  .top-bar__hours { display: none; }
  .top-bar__info { gap: 14px; }

  /* Navigation */
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { height: 60px; }

  /* Hero */
  .hero { padding: 60px 0 48px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .stat__number { font-size: 24px; }
  .hero__actions { gap: 10px; }

  /* Grilles */
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .raisons__grid { grid-template-columns: 1fr; gap: 12px; }
  .avis__grid { grid-template-columns: 1fr; gap: 14px; }
  .blog__grid { grid-template-columns: 1fr; gap: 20px; }
  .contact__cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact__bottom { grid-template-columns: 1fr; gap: 16px; }
  .contact__inner { grid-template-columns: 1fr; }

  /* Prestations */
  .prestation-vision__inner { grid-template-columns: 1fr; gap: 32px; }
  .prestation-types__grid { grid-template-columns: 1fr; gap: 16px; }
  .prestation-modalites__grid { grid-template-columns: 1fr; gap: 16px; }

  /* À propos */
  .apropos-bio__inner { grid-template-columns: 1fr; gap: 32px; }
  .apropos-bio__img { aspect-ratio: 3/2; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__col--nav ul { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer__legal { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .footer__social { gap: 8px; }

  /* FAQ */
  .faq-page__container { grid-template-columns: 1fr; }
  .faq-nav { display: none; }
  .faq-page__content h2 { font-size: 16px !important; padding: 12px 16px 12px 38px !important; }
  .faq-page__content h3 { font-size: 14px !important; padding: 13px 16px !important; }

  /* Page hero */
  .page-hero { padding: 52px 0 44px; }
  .page-hero__sub { font-size: 14px; }

  /* CTA final */
  .cta-final__actions { flex-direction: column; align-items: center; gap: 10px; }
  .cta-final__actions .btn { width: 100%; max-width: 280px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .hero__stats { gap: 20px; }
  .cta-final__actions { flex-direction: column; align-items: center; }
  .contact__cards { grid-template-columns: 1fr; }
}

/* ---- FAQ PAGE ---- */
.faq-page { background-color: #FAFAF8; }

.faq-page__container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sidebar */
.faq-nav {
  position: sticky;
  top: 88px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 2px 16px rgba(27,58,45,0.07);
  border: 1px solid #EDE8DF;
}

.faq-nav__title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C4A882;
  margin-bottom: 16px;
}

.faq-nav ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }

.faq-nav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #4A4A4A;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.faq-nav__link::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #C4A882;
  flex-shrink: 0;
}
.faq-nav__link:hover,
.faq-nav__link.active { background: #F5F2EB; color: #1B3A2D; }

/* ---- FAQ BLOCKS (new structure) ---- */
.faq-block {
  margin-bottom: 40px;
  scroll-margin-top: 100px;
}

.faq-block__header {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #1B3A2D;
  color: #FFFFFF;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
}

.faq-block__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C4A882;
  flex-shrink: 0;
}

.faq-block__item {
  background: #FFFFFF;
  border: 1px solid #EDE8DF;
  border-top: none;
}
.faq-block__item:last-child {
  border-radius: 0 0 10px 10px;
}

.faq-block__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1C1C1C;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.faq-block__question:hover,
.faq-block__item.open .faq-block__question {
  background: #FAFAF8;
  color: #1B3A2D;
}

.faq-block__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #EDE8DF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: #C4A882;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}
.faq-block__item.open .faq-block__icon {
  background: #1B3A2D;
  border-color: #1B3A2D;
  color: #FFFFFF;
}

.faq-block__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-block__answer-inner {
  padding: 4px 20px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #5A5A5A;
  background: #FAFAF8;
  border-top: 1px solid #F0EDE6;
}
.faq-block__answer-inner strong { color: #1B3A2D; }
.faq-block__answer-inner br + br { display: block; margin-top: 8px; }
