/* ============================================
   MAYLIS DE CRÉMIERS — STYLES GLOBAUX
   ============================================ */

:root {
  --or: #9a7d3a;
  --prune: #4a3060;
  --texte: #3a3a3a;
  --fond: #fafaf8;
  --fond-section: #f5f3ef;
  --separateur: #d0c9bc;
  --max-width: 960px;
}

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--fond);
  color: var(--texte);
  font-size: 16px;
  line-height: 1.9;
}

/* ============================================
   HEADER
   ============================================ */
header {
  padding: 28px 32px 16px;
  border-bottom: 1px solid var(--separateur);
}

header .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--or);
  font-weight: 600;
  letter-spacing: 0.02em;
}

header p.subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--or);
  font-size: 1.05rem;
  margin-top: 2px;
}

/* ============================================
   NAV STICKY
   ============================================ */
nav {
  background: var(--fond);
  border-bottom: 1px solid var(--separateur);
  padding: 0 32px;
  overflow-x: auto;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

nav .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

nav a {
  display: inline-block;
  padding: 14px 16px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texte);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover { color: var(--or); }
nav a.active { color: var(--or); border-bottom: 2px solid var(--or); }

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 56px 32px;
  border-bottom: 1px solid var(--separateur);
}

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

section .inner,
.page-title .inner,
.hero-photo .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--prune);
  font-weight: 600;
  margin-bottom: 20px;
}

section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--prune);
  font-weight: 600;
  margin: 28px 0 10px;
}

section p {
  margin-bottom: 16px;
  font-weight: 300;
  max-width: 720px;
}

strong { font-weight: 700; }

/* ============================================
   PAGE TITLE
   ============================================ */
.page-title {
  padding: 48px 32px 28px;
  border-bottom: 1px solid var(--separateur);
}

.page-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--prune);
  font-weight: 600;
}

.page-title p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--or);
  font-size: 1.1rem;
  margin-top: 8px;
}

/* ============================================
   HERO PHOTO
   ============================================ */
.hero-photo {
  width: 100%;
  height: 320px;
  background: #c9b8c0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}

.hero-photo .photo-placeholder {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  opacity: 0.7;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(74,48,96,0.85));
  padding: 32px;
  z-index: 2;
}

.hero-overlay .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-overlay h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: white;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 600px;
}

/* ============================================
   BOUTONS
   ============================================ */
.btn-rdv {
  display: inline-block;
  background: var(--or);
  color: white;
  padding: 13px 30px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-rdv:hover { background: #7a6228; }

.lien-page {
  display: inline-block;
  margin-top: 10px;
  color: var(--or);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid var(--or);
  padding-bottom: 2px;
}

/* ============================================
   GRILLES — ACCUEIL
   ============================================ */
.methodes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 12px;
}

.methode-card {
  background: white;
  padding: 32px;
  border-left: 3px solid var(--or);
}

.accompagnements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.accomp-card {
  background: white;
  padding: 22px 18px;
  border: 1px solid var(--separateur);
  text-decoration: none;
  color: var(--texte);
  transition: border-color 0.2s;
  display: block;
}

.accomp-card:hover { border-color: var(--or); }
.accomp-card .emoji { font-size: 1.4rem; margin-bottom: 8px; display: block; }
.accomp-card strong { display: block; color: var(--prune); font-size: 0.9rem; margin-bottom: 4px; }
.accomp-card span { font-size: 0.8rem; color: #777; font-weight: 300; }

/* ============================================
   TÉMOIGNAGES
   ============================================ */
.temoignage {
  border-left: 2px solid var(--or);
  padding: 18px 22px;
  margin-bottom: 20px;
  background: white;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--texte);
}

/* ============================================
   TARIFS
   ============================================ */
.tarifs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
  max-width: 400px;
}

.tarif-card {
  background: white;
  border: 1px solid var(--separateur);
  padding: 28px;
  text-align: center;
}

.tarif-card .label { font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: #777; margin-bottom: 8px; }
.tarif-card .prix { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--or); font-weight: 600; }
.tarif-card .detail { font-size: 0.8rem; color: #999; font-weight: 300; margin-top: 4px; }

/* ============================================
   DIPLÔMES
   ============================================ */
.diplomes {
  background: white;
  border: 1px solid var(--separateur);
  padding: 32px;
  max-width: 600px;
}

.diplomes h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--prune);
  font-weight: 600;
  margin-bottom: 24px;
}

.diplome-item {
  border-left: 3px solid var(--or);
  padding-left: 18px;
  margin-bottom: 24px;
}

.diplome-item strong { display: block; font-weight: 700; }
.diplome-item span { display: block; font-size: 0.85rem; color: #777; font-style: italic; }
.diplome-item a { color: var(--or); font-size: 0.82rem; text-decoration: none; border-bottom: 1px solid var(--or); }

/* ============================================
   PORTRAIT
   ============================================ */
.portrait-block {
  display: flex;
  justify-content: center;
  padding: 40px 32px 0;
  background: var(--fond-section);
}

.portrait-block .photo-placeholder {
  width: 200px;
  height: 250px;
  background: #d0c9bc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #888;
  font-size: 0.9rem;
  text-align: center;
}

.portrait-block img { width: 200px; height: 250px; object-fit: cover; }

/* ============================================
   PHOTOS SECTIONS
   ============================================ */
.photo-mains, .photo-cabinet, .photo-enfant {
  width: 100%;
  height: 240px;
  background: #c9b8c0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-mains img, .photo-cabinet img, .photo-enfant img {
  width: 100%; height: 100%; object-fit: cover;
}

.photo-mains .photo-placeholder,
.photo-cabinet .photo-placeholder,
.photo-enfant .photo-placeholder {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  opacity: 0.7;
}

/* ============================================
   BLOG
   ============================================ */
.articles { padding: 40px 32px; max-width: var(--max-width); margin: 0 auto; }

.article-card {
  background: white;
  border: 1px solid var(--separateur);
  margin-bottom: 24px;
  text-decoration: none;
  color: var(--texte);
  transition: border-color 0.2s;
  display: block;
}

.article-card:hover { border-color: var(--or); }

.article-photo {
  width: 100%;
  height: 180px;
  background: #c9b8c0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-photo img { width: 100%; height: 100%; object-fit: cover; }
.article-photo .photo-placeholder { color: white; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.9rem; opacity: 0.7; text-align: center; padding: 16px; }

.article-body { padding: 28px; }
.article-tag { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--or); margin-bottom: 8px; display: block; }
.article-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--prune); font-weight: 600; margin-bottom: 10px; line-height: 1.3; }
.article-excerpt { font-size: 0.9rem; font-weight: 300; color: #666; margin-bottom: 12px; }
.article-date { font-size: 0.78rem; color: #aaa; font-weight: 300; }

/* ============================================
   ARTICLE PAGE
   ============================================ */
.article-hero {
  width: 100%;
  height: 280px;
  background: #c9b8c0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero .photo-placeholder { color: white; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; opacity: 0.7; }

.article-content { padding: 48px 32px; max-width: 720px; margin: 0 auto; }
.article-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--prune); font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.article-meta { font-size: 0.82rem; color: #aaa; font-weight: 300; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--separateur); }
.article-content p { margin-bottom: 22px; font-weight: 300; font-size: 1rem; }

.references { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--separateur); }
.references p { margin-bottom: 8px; font-size: 0.82rem; color: #999; }
.references a { color: var(--or); text-decoration: none; border-bottom: 1px solid var(--or); font-size: 0.82rem; }

.retour { display: inline-block; margin: 32px 32px 0; color: var(--or); font-size: 0.85rem; text-decoration: none; border-bottom: 1px solid var(--or); }

/* ============================================
   CONTACT
   ============================================ */
.btn-rdv-large {
  display: block;
  background: var(--or);
  color: white;
  padding: 20px 32px;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  max-width: 400px;
  transition: background 0.2s;
}

.btn-rdv-large:hover { background: #7a6228; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid var(--separateur);
}

.contact-item .icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item .info strong { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: #999; margin-bottom: 4px; }
.contact-item .info span { font-weight: 300; }

.transport-item { padding: 14px 0; border-bottom: 1px solid var(--separateur); }
.transport-item:last-child { border-bottom: none; }
.transport-item strong { display: block; font-size: 0.82rem; color: var(--prune); margin-bottom: 4px; }
.transport-item span { font-size: 0.9rem; font-weight: 300; }

/* ============================================
   MENU ACCOMPAGNEMENTS
   ============================================ */
.menu-accomp {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 32px;
  background: var(--fond-section);
  border-bottom: 1px solid var(--separateur);
}

.menu-accomp .inner { max-width: var(--max-width); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 8px; }

.menu-accomp a {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--prune);
  text-decoration: none;
  border: 1px solid var(--prune);
  padding: 6px 12px;
  transition: all 0.2s;
}

.menu-accomp a:hover { background: var(--prune); color: white; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or);
  border: 1px solid var(--or);
  padding: 3px 10px;
  margin-bottom: 16px;
}

/* ============================================
   CITATION
   ============================================ */
.citation {
  border-left: 3px solid var(--or);
  padding: 18px 22px;
  background: white;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--prune);
  margin: 20px 0;
  max-width: 600px;
}

/* ============================================
   LIENS EXTERNES
   ============================================ */
a.lien-externe { color: var(--or); text-decoration: none; border-bottom: 1px solid var(--or); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--prune);
  color: white;
  padding: 40px 32px;
  text-align: center;
}

footer .inner { max-width: var(--max-width); margin: 0 auto; }
footer p { font-size: 0.85rem; font-weight: 300; margin-bottom: 6px; opacity: 0.85; }
footer a { color: var(--or); text-decoration: none; }

footer .btn-rdv-footer {
  display: inline-block;
  margin: 20px 0 16px;
  background: var(--or);
  color: white;
  padding: 14px 32px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
}

footer .btn-rdv-footer:hover { background: #7a6228; }

/* ============================================
   RESPONSIVE DESKTOP
   ============================================ */
@media (min-width: 768px) {

  header { padding: 32px 48px 20px; }
  header h1 { font-size: 2.6rem; }

  nav { padding: 0 48px; }

  section { padding: 72px 48px; }

  .page-title { padding: 56px 48px 32px; }
  .page-title h2 { font-size: 3rem; }

  .hero-photo { height: 460px; }
  .hero-overlay { padding: 40px 48px; }
  .hero-overlay h2 { font-size: 2rem; }

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

  .accompagnements-grid { grid-template-columns: repeat(4, 1fr); }

  .portrait-block { padding: 56px 48px 0; }
  .portrait-block .photo-placeholder,
  .portrait-block img { width: 240px; height: 300px; }

  .photo-mains, .photo-cabinet, .photo-enfant { height: 320px; }

  .articles { padding: 56px 48px; }

  .article-card { display: grid; grid-template-columns: 280px 1fr; }
  .article-photo { height: 100%; min-height: 200px; }

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

  .menu-accomp { padding: 20px 48px; }

  footer { padding: 48px; }
}

/* ============================================
   BOUTON RETOUR EN HAUT
   ============================================ */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--or);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 200;
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover { background: #7a6228; }

/* ============================================
   FIL D'ARIANE
   ============================================ */
.breadcrumb {
  padding: 12px 32px;
  background: var(--fond);
  border-bottom: 1px solid var(--separateur);
  font-size: 0.78rem;
  color: #999;
  font-weight: 300;
}

.breadcrumb .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.breadcrumb a {
  color: var(--or);
  text-decoration: none;
}

.breadcrumb span { margin: 0 6px; }

/* ============================================
   LIENS ENTRE PAGES
   ============================================ */
.liens-pages {
  background: var(--fond-section);
  padding: 32px;
  border-top: 1px solid var(--separateur);
}

.liens-pages .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.liens-pages h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--prune);
  margin-bottom: 16px;
}

.liens-pages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lien-page-card {
  background: white;
  border: 1px solid var(--separateur);
  padding: 16px 20px;
  text-decoration: none;
  color: var(--texte);
  transition: border-color 0.2s;
  display: block;
  font-size: 0.9rem;
}

.lien-page-card:hover { border-color: var(--or); color: var(--or); }
.lien-page-card span { display: block; font-size: 0.78rem; color: #999; font-weight: 300; margin-top: 2px; }

@media (min-width: 768px) {
  .liens-pages-grid { grid-template-columns: repeat(4, 1fr); }
  .breadcrumb { padding: 12px 48px; }
  .liens-pages { padding: 40px 48px; }
}

/* ============================================
   CORRECTIONS DESKTOP — PROPORTIONS
   ============================================ */
@media (min-width: 768px) {

  /* Réduire la hauteur des photos */
  .hero-photo { height: 380px !important; }
  .photo-mains, .photo-cabinet, .photo-enfant { height: 260px !important; }
  .article-hero { height: 220px !important; }
  .portrait-block .photo-placeholder,
  .portrait-block img { width: 200px !important; height: 250px !important; }

  /* Resserrer les sections */
  section { padding: 48px 48px !important; }
  .page-title { padding: 40px 48px 24px !important; }

  /* Limiter la largeur des textes */
  section p { max-width: 640px !important; }
  section h2 { max-width: 640px !important; }

  /* Resserrer le conteneur principal */
  :root { --max-width: 860px !important; }

  /* Réduire l'espacement des sections liens */
  .liens-pages { padding: 28px 48px !important; }
  .liens-pages-grid { gap: 10px !important; }
}

/* ============================================
   CORRECTIONS DESKTOP SUPPLÉMENTAIRES
   ============================================ */
@media (min-width: 768px) {

  /* Forcer les fonds alternés visibles */
  section.alt { background: var(--fond-section) !important; }

  /* Empêcher le texte de déborder */
  section p, section li, section h2, section h3 {
    max-width: 700px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Limiter la largeur globale du contenu */
  section > * { max-width: 860px; margin-left: auto; margin-right: auto; }
  
  /* Réduire padding sections */
  section { padding: 40px 60px !important; }

  /* Menu accompagnements */
  .menu-accomp { padding: 16px 60px !important; }
}

/* ============================================
   CORRECTIONS DESKTOP — TEXTE ET CONTRASTES
   ============================================ */
@media (min-width: 768px) {

  /* Limiter la largeur de TOUT le contenu des sections */
  section { 
    max-width: 100% !important;
    padding: 40px 10% !important;
  }

  /* Forcer contraste sections alternées */
  section:nth-child(even) { background: var(--fond-section) !important; }
  
  /* Empêcher débordement texte */
  section p, section li {
    max-width: 680px !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  /* Page title */
  .page-title {
    padding: 40px 10% 24px !important;
  }

  /* Breadcrumb */
  .breadcrumb { padding: 12px 10% !important; }

  /* Menu accompagnements */
  .menu-accomp { padding: 16px 10% !important; }

  /* Liens pages */
  .liens-pages { padding: 28px 10% !important; }
}

/* Supprimer le fil d'ariane */
.breadcrumb { display: none !important; }

/* Photos blog desktop */
@media (min-width: 768px) {
  .article-photo { height: 180px !important; min-height: 180px !important; }
  .article-card { max-width: 860px !important; margin: 0 auto 24px !important; }
  .articles { padding: 40px 10% !important; }
}

/* ============================================
   TITRES PLUS DENSES
   ============================================ */

/* Charger la variante bold de Cormorant Garamond */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&display=swap');

header h1 { font-weight: 700 !important; }
section h2 { font-weight: 700 !important; }
section h3 { font-weight: 700 !important; }
.page-title h2 { font-weight: 700 !important; }
.article-title { font-weight: 700 !important; }
.hero-overlay h2 { font-weight: 600 !important; }

/* ============================================
   CORRECTION SECTION EXPLORER LE SITE
   ============================================ */
.liens-pages-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
}

.lien-page-card {
  display: block !important;
  background: white !important;
  border: 1px solid var(--separateur) !important;
  padding: 16px 20px !important;
  text-decoration: none !important;
  color: var(--texte) !important;
  margin: 0 !important;
}

@media (min-width: 768px) {
  .liens-pages-grid { grid-template-columns: repeat(4, 1fr) !important; }
}

/* ============================================
   PAGE ACCOMPAGNEMENTS — BLOCS DESKTOP
   ============================================ */
@media (min-width: 768px) {

  /* Blocs bien délimités avec padding égal */
  #douleurs-aigues,
  #douleurs-chroniques,
  #stress-burnout,
  #traumatismes,
  #transgenereationnel,
  #feminin,
  #enfants,
  #hypersensibilite,
  #tnf {
    padding: 48px 10% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Blocs blancs */
  #douleurs-aigues,
  #traumatismes,
  #feminin,
  #hypersensibilite {
    background: var(--fond) !important;
  }

  /* Blocs gris clair */
  #douleurs-chroniques,
  #stress-burnout,
  #transgenereationnel,
  #enfants,
  #tnf {
    background: var(--fond-section) !important;
  }

  /* Textes bien centrés et pas trop larges */
  #douleurs-aigues p, #douleurs-chroniques p,
  #stress-burnout p, #traumatismes p,
  #transgenereationnel p, #feminin p,
  #enfants p, #hypersensibilite p, #tnf p,
  #douleurs-aigues li, #douleurs-chroniques li,
  #stress-burnout li, #traumatismes li,
  #transgenereationnel li, #feminin li,
  #enfants li, #hypersensibilite li, #tnf li {
    max-width: 680px !important;
  }

  /* Menu accompagnements padding cohérent */
  .menu-accomp { padding: 20px 10% !important; }
}

/* ============================================
   ALTERNANCE BLANC / GRIS SUR TOUTES LES PAGES
   ============================================ */
@media (min-width: 768px) {

  /* Toutes les sections avec padding cohérent */
  section {
    padding: 48px 10% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Alternance automatique */
  section:nth-child(odd) { background: var(--fond) !important; }
  section:nth-child(even) { background: var(--fond-section) !important; }

  /* Textes limités en largeur */
  section p, section li, section h2, section h3 {
    max-width: 680px !important;
  }
}

/* ============================================
   PAS DE TEXTE COLLÉ À GAUCHE
   ============================================ */

/* Mobile ET desktop — padding minimum partout */
section { padding-left: max(24px, 5%) !important; padding-right: max(24px, 5%) !important; }
.page-title { padding-left: max(24px, 5%) !important; padding-right: max(24px, 5%) !important; }
.menu-accomp { padding-left: max(24px, 5%) !important; padding-right: max(24px, 5%) !important; }
.liens-pages { padding-left: max(24px, 5%) !important; padding-right: max(24px, 5%) !important; }
header .inner, nav .inner, footer .inner { padding-left: max(24px, 5%) !important; padding-right: max(24px, 5%) !important; }

@media (min-width: 768px) {
  section { padding-left: 10% !important; padding-right: 10% !important; }
  .page-title { padding-left: 10% !important; padding-right: 10% !important; }
}

/* ============================================

/* ============================================
   RESET DESKTOP — VERSION FINALE PROPRE
   ============================================ */
@media (min-width: 768px) {

  /* Sections — blocs propres */
  section {
    display: block !important;
    padding: 48px 10% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-bottom: 1px solid var(--separateur) !important;
  }

  /* Alternance blanc / gris clair */
  section:nth-child(odd)  { background: #fafaf8 !important; }
  section:nth-child(even) { background: #f5f3ef !important; }

  /* Textes pas trop larges */
  section p, section li {
    max-width: 680px !important;
    word-wrap: break-word !important;
  }

  /* Titres */
  section h2 { font-weight: 700 !important; }
  section h3 { font-weight: 700 !important; }

  /* Pas de fil d'ariane */
  .breadcrumb { display: none !important; }

  /* Page title */
  .page-title {
    display: block !important;
    padding: 40px 10% 24px !important;
    background: #fafaf8 !important;
  }

  /* Explorer le site */
  .liens-pages {
    display: block !important;
    padding: 32px 10% !important;
    background: #f5f3ef !important;
  }

  .liens-pages-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
  }

  .lien-page-card {
    display: block !important;
    background: white !important;
    border: 1px solid #d0c9bc !important;
    padding: 16px 20px !important;
    text-decoration: none !important;
  }

  /* Photos blog */
  .article-photo { height: 200px !important; }

  /* Menu accompagnements */
  .menu-accomp {
    display: flex !important;
    flex-wrap: wrap !important;
    padding: 20px 10% !important;
  }

  /* Footer */
  footer { display: block !important; }
  header { display: block !important; }
}
