/* =============================================
   LOR Accompagnement — CSS (fonctionne en local)
   ============================================= */

/* Polices Google Fonts — chargées UNIQUEMENT si connexion internet
   Le site reste fonctionnel sans elles grâce aux fallbacks */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&family=Vidaloka&family=Open+Sans:wght@300;400;600;700&family=Dancing+Script:wght@700&display=swap');

:root {
  --vert-nav:    #6b7a2a;
  --vert-fonce:  #4a521f;
  --vert-moyen:  #7a8c30;
  --vert-clair:  #a8b96a;
  --vert-titre:  #718138;
  --blanc:       #ffffff;
  --gris-bg:     #f5f5f5;
  --texte:       #333333;
  --texte-leger: #555555;
  --bordure:     #cccccc;

  /* Fallbacks sûrs qui fonctionnent partout */
  --font-script: 'Dancing Script', 'Brush Script MT', cursive;
  --font-serif:  'Vidaloka', Georgia, 'Times New Roman', serif;
  --font-nav:    'Raleway', Arial, Helvetica, sans-serif;
  --font-corps:  'Open Sans', Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-corps);
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   NAVIGATION — affichage garanti en local
   ============================================= */
nav {
  background: var(--vert-nav);
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100%;
  display: block;        /* force l'affichage */
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  height: 64px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 0;
}

/* La liste de navigation */
.nav-menu {
  display: flex !important;  /* force l'affichage même sans JS */
  align-items: center;
  height: 64px;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0;
  flex-wrap: nowrap;
}

.nav-menu li {
  display: flex;
  align-items: center;
  height: 64px;
}

.nav-menu a {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 14px;
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  -webkit-font-smoothing: antialiased;
}

.nav-menu a:hover,
.nav-menu li.active a {
  background: rgba(255, 255, 255, 0.15);
}

/* Icônes sociales */
.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
  flex-shrink: 0;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 28px;
  height: 28px;
  transition: opacity 0.2s;
}
.nav-social a:hover { opacity: 0.7; }

.nav-social svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Burger — caché par défaut sur desktop */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* =============================================
   LOGO + EN-TÊTE DE PAGE
   ============================================= */
.page-header {
  background: #fff;
  text-align: center;
  padding: 36px 20px 20px;
}

.logo-feuilles {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 4px;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--texte);
  margin-top: 20px;
  letter-spacing: 0.01em;
}

/* =============================================
   HERO ACCUEIL
   ============================================= */
.accueil-hero {
  background: #fff;
  padding: 0 0 48px;
}

.accueil-hero-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 460px;
}

.accueil-hero-texte {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.accueil-hero-texte h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--vert-titre);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 22px;
}

.accueil-hero-texte p {
  font-size: 0.95rem;
  color: var(--texte);
  line-height: 1.85;
  text-align: center;
  font-weight: 300;
}

.accueil-hero-photo {
  overflow: hidden;
}
.accueil-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* =============================================
   UTILITAIRES / CONTENEUR
   ============================================= */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-titre {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--vert-titre);
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.3;
}

.btn-vert {
  display: inline-block;
  background: var(--vert-nav);
  color: #fff;
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-vert:hover { background: var(--vert-fonce); }

/* =============================================
   PAGE RDV — Grille photo + formulaire
   ============================================= */
.rdv-section { padding: 48px 0 0; background: #fff; }

.rdv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--bordure);
}

.rdv-photo { overflow: hidden; }
.rdv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  display: block;
}
.rdv-photo-ph {
  width: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, #c8d8a0, #8aaa50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a6020;
  font-style: italic;
}

/* Formulaire */
.rdv-form {
  display: flex;
  flex-direction: column;
}

.f-field {
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-bottom: 1px solid var(--bordure);
  background: #fff;
  font-family: var(--font-corps);
  font-size: 0.9rem;
  color: var(--texte);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.f-field:focus { background: #f9fbf4; }
.f-field::placeholder { color: #999; }

.f-select-wrap { position: relative; }
.f-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}
select.f-field { cursor: pointer; padding-right: 36px; }
textarea.f-field { min-height: 145px; resize: vertical; }

.f-checkboxes {
  padding: 14px 18px;
  border-bottom: 1px solid var(--bordure);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.f-check-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--texte-leger);
  cursor: pointer;
}
.f-check-label input { margin-top: 2px; flex-shrink: 0; accent-color: var(--vert-nav); }
.f-check-label a { color: #3a6ea8; text-decoration: underline; }

.f-submit-row { display: flex; justify-content: flex-end; padding: 12px 18px; }

.btn-submit {
  background: var(--vert-nav);
  color: #fff;
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 24px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--vert-fonce); }

/* =============================================
   3 CARTES INFO
   ============================================= */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.info-card {
  padding: 30px 28px 36px;
  color: #fff;
  min-height: 230px;
}
.info-card:nth-child(1) { background: #a8b96a; }
.info-card:nth-child(2) { background: #7a8c30; }
.info-card:nth-child(3) { background: #4a521f; }

.info-card h3 {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.info-card p,
.info-card address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.85;
}
.info-card strong { font-weight: 700; }

/* =============================================
   CARTE
   ============================================= */
.map-section { width: 100%; height: 310px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* =============================================
   CONTACT RAPIDE
   ============================================= */
.contact-rapide { background: #fff; padding: 52px 0 60px; }

.cr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.cr-info h3 {
  font-family: var(--font-nav);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.cr-info address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--texte-leger);
  line-height: 1.9;
}
.cr-info strong { color: var(--texte); font-weight: 700; }
.cr-info a { color: #3a6ea8; text-decoration: underline; }

.cr-table { width: 100%; border-collapse: collapse; }
.cr-table th {
  text-align: left;
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--texte);
  padding: 8px 16px 4px 0;
  white-space: nowrap;
  vertical-align: top;
  width: 28%;
}
.req { color: #c00; font-weight: 400; }
.cr-table td { padding: 4px 0; vertical-align: top; }
.cr-table input,
.cr-table textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--bordure);
  font-family: var(--font-corps);
  font-size: 0.88rem;
  color: var(--texte);
  outline: none;
  background: #fff;
}
.cr-table input:focus,
.cr-table textarea:focus { background: #f9fbf4; }
.cr-table textarea { min-height: 100px; resize: vertical; }

.btn-cr {
  background: #fff;
  color: var(--texte);
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 22px;
  border: 1px solid var(--bordure);
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-cr:hover { background: var(--gris-bg); }

.cr-spam { font-size: 0.75rem; color: #999; margin-top: 8px; font-style: italic; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--vert-nav);
  color: #fff;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.footer-copy a { color: rgba(255,255,255,0.7); }
.footer-social-links { display: flex; gap: 14px; }
.footer-social-links a { color: var(--vert-fonce); transition: opacity 0.2s; }
.footer-social-links a:hover { opacity: 0.7; }

/* =============================================
   SECTIONS PAGE ACCUEIL
   ============================================= */
.section-std { padding: 56px 0; }
.section-std-grey { padding: 56px 0; background: var(--gris-bg); }
.section-std-dark { padding: 56px 0; background: var(--vert-fonce); color: #fff; }
.section-std-dark .section-titre { color: #fff; }

.motif-bloc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #eee;
}
.motif-bloc:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.motif-bloc.img-gauche .motif-img { order: -1; }

.motif-img img { width: 100%; height: 270px; object-fit: cover; border-radius: 2px; }
.motif-texte h2 {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--vert-fonce);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.motif-texte p {
  font-size: 0.88rem;
  color: var(--texte);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
  text-align: justify;
}

.rituel-bloc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #eee;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}
.rituel-img { min-height: 240px; background: #d4ccbc; }
.rituel-img img { width: 100%; height: 100%; object-fit: cover; }
.rituel-texte { padding: 28px 30px; display: flex; flex-direction: column; justify-content: center; }
.rituel-texte h3 { font-family: var(--font-nav); font-size: 0.92rem; font-weight: 700; color: var(--vert-fonce); margin-bottom: 8px; }
.rituel-texte p { font-size: 0.87rem; line-height: 1.8; margin-bottom: 14px; font-weight: 300; }

.soins-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.soin-card { background: #fff; border-radius: 2px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.07); display: flex; flex-direction: column; transition: transform .2s; }
.soin-card:hover { transform: translateY(-3px); }
.soin-card img { width: 100%; height: 150px; object-fit: cover; }
.soin-card-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.soin-card h3 { font-family: var(--font-nav); font-size: 0.83rem; font-weight: 700; color: var(--vert-fonce); text-align: center; }

.visio-box { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 4px; padding: 26px; }
.visio-box h3 { font-family: var(--font-serif); font-size: 1.15rem; color: #a0bc60; margin-bottom: 6px; }
.visio-box h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.visio-box p { font-size: 0.87rem; color: rgba(255,255,255,.85); line-height: 1.8; margin-bottom: 7px; font-weight: 300; }
.visio-box strong { color: #fff; }

/* =============================================
   SECTION CTA VERT CLAIR
   ============================================= */
.section-cta {
  background: #f9f7f2;
  text-align: center;
  padding: 56px 24px;
}
.section-cta h3 {
  font-size: 1.4rem;
  color: var(--vert-fonce);
  margin-bottom: 12px;
  font-weight: 400;
}
.section-cta p {
  font-size: 0.9rem;
  max-width: 600px;
  margin: 0 auto 22px;
  line-height: 1.8;
  font-weight: 300;
}

/* =============================================
   TEXTE CENTRÉ GÉNÉRIQUE
   ============================================= */
.texte-centre {
  font-size: 0.92rem;
  color: var(--texte);
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto;
  font-weight: 300;
}
.texte-centre p { margin-bottom: 12px; }

/* =============================================
   SOIN CARD — description
   ============================================= */
.soin-desc {
  font-size: 0.82rem;
  color: var(--texte-leger);
  line-height: 1.7;
  font-weight: 300;
  text-align: center;
  flex: 1;
}

/* =============================================
   RITUEL — prix
   ============================================= */
.rituel-prix {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vert-titre);
  margin-bottom: 14px !important;
}

/* =============================================
   TARIFS — tableau de prix
   ============================================= */
.tarif-tableau {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
  margin: 12px 0;
}
.tarif-ligne {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
}
.tarif-ligne:last-child { border-bottom: none; }
.tarif-ligne:nth-child(even) { background: rgba(255,255,255,0.04); }
.tarif-prix {
  font-weight: 700;
  color: #a0bc60;
  white-space: nowrap;
  margin-left: 16px;
}

/* =============================================
   À PROPOS — grille photo + texte
   ============================================= */
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}
.apropos-photo img {
  width: 100%;
  border-radius: 3px;
  object-fit: cover;
  max-height: 500px;
}
.texte-apropos {
  font-size: 0.92rem;
  color: var(--texte);
  line-height: 1.9;
  font-weight: 300;
}
.texte-apropos p { margin-bottom: 12px; }

/* =============================================
   VALEURS
   ============================================= */
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.valeur-card {
  background: #fff;
  border-radius: 3px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.valeur-icon { font-size: 2.2rem; margin-bottom: 12px; }
.valeur-card h3 {
  font-family: var(--font-nav);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--vert-titre);
  margin-bottom: 10px;
}
.valeur-card p {
  font-size: 0.85rem;
  color: var(--texte-leger);
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
   TÉMOIGNAGES — grille de cartes
   ============================================= */
.temoignages-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.temoignage-card {
  background: #fff;
  border-radius: 3px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  position: relative;
}
.temoignage-card::before {
  content: '"';
  position: absolute;
  top: 8px; right: 16px;
  font-size: 4rem;
  color: var(--vert-titre);
  opacity: 0.12;
  line-height: 1;
  font-family: Georgia, serif;
}
.temoignage-stars { color: #f5a30a; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.temoignage-card blockquote {
  font-size: 0.88rem;
  color: var(--texte);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
  font-weight: 300;
}
.temoignage-auteur {
  display: flex;
  align-items: center;
  gap: 12px;
}
.auteur-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--vert-nav);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.temoignage-auteur strong { display: block; font-size: 0.85rem; color: var(--texte); }
.temoignage-auteur span { font-size: 0.76rem; color: var(--texte-leger); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .accueil-hero-grid { grid-template-columns: 1fr; }
  .accueil-hero-photo { display: none; }
  .soins-grid { grid-template-columns: repeat(2,1fr); }
  .rdv-grid { grid-template-columns: 1fr; }
  .rdv-photo img, .rdv-photo-ph { min-height: 240px; }
  .info-cards { grid-template-columns: 1fr; }
  .cr-grid { grid-template-columns: 1fr; gap: 32px; }
  .motif-bloc,
  .motif-bloc.img-gauche { grid-template-columns: 1fr; }
  .motif-bloc.img-gauche .motif-img { order: 0; }
  .rituel-bloc { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  /* Sur mobile, on cache la liste et on affiche le burger */
  .nav-menu {
    display: none !important;
  }
  .nav-menu.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--vert-nav);
    z-index: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    height: auto;
    padding: 8px 0;
  }
  .nav-menu.open li { height: auto; }
  .nav-menu.open a { height: auto; padding: 13px 24px; }
  .burger { display: flex !important; }
  .nav-social { margin-left: 8px; }
  .soins-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .accueil-hero-texte { padding: 32px 20px; }
}

/* Responsive — nouvelles sections */
@media (max-width: 960px) {
  .apropos-grid { grid-template-columns: 1fr; }
  .valeurs-grid { grid-template-columns: repeat(2,1fr); }
  .temoignages-grille { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
  .valeurs-grid { grid-template-columns: 1fr; }
  .temoignages-grille { grid-template-columns: 1fr; }
  .tarif-ligne { font-size: 0.8rem; padding: 8px 12px; }
}

/* Logo image réelle */
.logo-img {
  width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Bouton arrondi vert (style "Prendre Rendez-Vous" sur les pages soins) */
.btn-rdv {
  display: inline-block;
  background: var(--vert-fonce);
  color: #fff !important;
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
}

/* Centrage du bouton rdv */
.btn-rdv-wrap {
  text-align: center;
}
.btn-rdv:hover { background: #363d16; transform: translateY(-1px); }

/* Centrer le bouton */
.btn-rdv-wrap { text-align: center; padding: 28px 0; }

/* Page soin — structure générale */
.soin-header {
  text-align: center;
  padding: 36px 24px 20px;
  background: #fff;
}
.soin-header-img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
  display: block;
}
.soin-header-label {
  font-family: var(--font-nav);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--texte);
  margin-bottom: 0;
}

/* Titre principal soin — vert foncé centré */
.soin-titre-principal {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--vert-fonce);
  font-weight: 700;
  text-align: center;
  padding: 24px 10vw 20px;
  line-height: 1.35;
}

/* Contenu texte long */
.soin-contenu {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 40px;
  font-size: 0.92rem;
  color: var(--texte);
  line-height: 1.85;
  font-weight: 300;
}
.soin-contenu h2 {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--texte);
  margin: 22px 0 8px;
}
.soin-contenu p { margin-bottom: 12px; }
.soin-contenu ul { margin: 8px 0 12px 20px; }
.soin-contenu ul li { margin-bottom: 8px; }
.soin-contenu strong { font-weight: 700; }

/* Section finale tarifs + image (comme page psychocorporelle) */
.soin-tarifs-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 100%;
  margin-top: 16px;
}
.soin-tarifs-texte {
  padding: 36px 40px;
  font-size: 0.9rem;
  line-height: 1.9;
  font-weight: 300;
}
.soin-tarifs-texte h3 {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--texte);
  margin-bottom: 6px;
}
.soin-tarifs-texte p { margin-bottom: 6px; }
.soin-tarifs-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  min-height: 300px;
}

/* Bandeau vert titre (page psychocorporelle) */
.banniere-verte {
  background: var(--vert-nav);
  color: #fff;
  text-align: center;
  padding: 28px 10vw;
}
.banniere-verte h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .soin-tarifs-section { grid-template-columns: 1fr; }
  .soin-tarifs-img { display: none; }
  .soin-titre-principal { padding: 20px 24px; }
  .soin-contenu { padding: 0 20px 32px; }
}

/* =============================================
   RESPONSIVE COMPLÉMENTAIRE — tablettes & mobiles
   ============================================= */

/* Tablette intermédiaire */
@media (min-width: 681px) and (max-width: 860px) {
  .page-title { font-size: 1.3rem !important; }
  .valeurs-grid { grid-template-columns: repeat(2, 1fr); }
  .temoignages-grille { grid-template-columns: repeat(2, 1fr); }
  .soins-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .motifs-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .chemins-grid { grid-template-columns: 1fr 1fr !important; }
  .soin-tarifs-section { grid-template-columns: 1fr; }
  .soin-tarifs-img { display: none; }
  .banniere-verte { padding: 22px 24px; }
  /* Grilles inline 2 col → 1 col */
  .grid-2col { display: block !important; }
  .grid-2col > div { width: 100% !important; margin-bottom: 28px; }
}

/* Mobile */
@media (max-width: 680px) {
  /* Page header */
  .page-header { padding: 24px 16px 14px; }
  .logo-img { width: 130px; }
  .page-title { font-size: 1rem !important; }

  /* Hero */
  .accueil-hero { padding: 0 0 28px; }
  .accueil-hero-texte { padding: 24px 16px; text-align: center; }
  .accueil-hero-texte h2 { font-size: 1.2rem; }

  /* Sections */
  .section-std, .section-std-grey, .section-std-dark { padding: 36px 0; }
  .section-cta { padding: 36px 16px; }
  .section-cta h3 { font-size: 1.1rem; }

  /* Bannière verte */
  .banniere-verte { padding: 20px 16px; }
  .banniere-verte h2 { font-size: 1rem; }

  /* Boutons */
  .btn-rdv { padding: 11px 22px; font-size: 0.85rem; }
  .btn-vert { font-size: 0.78rem; padding: 9px 14px; }

  /* Grilles inline créées avec style= */
  .grid-2col { display: block !important; }
  .grid-2col > div { width: 100% !important; margin-bottom: 24px; }

  /* Contact rapide */
  .cr-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Formulaire RDV */
  .rdv-grid { grid-template-columns: 1fr; }
  .rdv-photo { display: none; }
  .info-cards { grid-template-columns: 1fr; }

  /* À propos */
  .apropos-grid { grid-template-columns: 1fr; gap: 24px; }
  .apropos-photo img { max-height: 260px; object-fit: cover; }

  /* Valeurs */
  .valeurs-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .valeur-card { padding: 18px 12px; }

  /* Témoignages */
  .temoignages-grille { grid-template-columns: 1fr; }

  /* Tarifs */
  .tarif-ligne { flex-direction: column; align-items: flex-start; gap: 2px; padding: 10px 12px; }
  .tarif-prix { margin-left: 0; }

  /* Footer */
  footer { flex-direction: column; align-items: center; text-align: center; padding: 16px; }

  /* Map */
  .map-section { height: 200px; }

  /* Soin tarifs */
  .soin-tarifs-section { grid-template-columns: 1fr; }
  .soin-tarifs-texte { padding: 24px 16px; }
  .soin-tarifs-img { display: none; }

  /* Motifs */
  .motifs-grid { grid-template-columns: 1fr !important; }
  .motif-mini img { height: 150px; }

  /* Soins grid */
  .soins-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Chemins */
  .chemins-grid { grid-template-columns: 1fr !important; }
  .chemins-grid img { height: 200px; }

  /* Texte */
  body { font-size: 0.9rem; }
  .soin-contenu { padding: 0 16px 24px; font-size: 0.88rem; }
  .soin-contenu ul { margin-left: 14px; }
}
