/*
Theme Name:  Lien Zen
Theme URI:   https://lien-zen.fr
Author:      Anaïs — Lien Zen
Description: Thème sur-mesure pour Lien Zen, accompagnante à la parentalité en Seine-Maritime (76). Design doux, moderne et élégant.
Version:     2.0.0
License:     GNU General Public License v2 or later
Text Domain: lien-zen
Tags:        one-page, custom-colors, custom-logo, custom-menu, full-width-template
*/

/* ================================================================
   VARIABLES — Charte Lien Zen
   ================================================================ */
:root {
  /* Couleurs du logo */
  --purple:     #7B35C0;
  --purple-lt:  #A366D6;
  --purple-bg:  #F0E8FA;
  --purple-dk:  #5B1FA0;
  --cyan:       #2DD4BF;
  --cyan-lt:    #5BE0CE;
  --cyan-bg:    #D4F7F3;
  /* CTA & accents */
  --mauve:      #8B5563;
  --mauve-lt:   #B8899A;
  /* Fonds */
  --cream:      #F8F5F0;
  --cream-dk:   #EDE8E0;
  --off-white:  #FDFCFB;
  --accent:     #E4DDD5;
  /* Texte */
  --ink:        #1C1917;
  --ink-lt:     #44403C;
  --ink-xs:     #78716C;
  --white:      #FFFFFF;
  /* Typo */
  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Rayons */
  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 36px;
  /* Ombres */
  --sh-sm: 0 2px 10px rgba(123,53,192,.07);
  --sh-md: 0 6px 28px rgba(123,53,192,.11);
  --sh-lg: 0 18px 60px rgba(123,53,192,.16);
  /* Transitions */
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
h1,h2,h3,h4 { line-height: 1.2; }

/* ================================================================
   TEXTURE DE FOND (grain léger)
   ================================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 250px;
}

/* ================================================================
   UTILITAIRES
   ================================================================ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}
.section-pad { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.text-center { text-align: center; }

/* Labels de section */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after {
  content: '';
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
}

/* Titres de section */
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--purple); }
.section-title.center { text-align: center; }

/* Séparateur */
.sep {
  height: 1px;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

/* ================================================================
   BOUTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.9rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--mauve);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(139,85,99,.3);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(139,85,99,.42); }
.btn-secondary {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.btn-secondary:hover { background: var(--purple-bg); }
.btn-white {
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.btn-white:hover { box-shadow: 0 12px 40px rgba(0,0,0,.28); }

/* Lien flèche */
.link-arr {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  transition: color .2s, gap .2s;
}
.link-arr .i { transition: transform .2s; }
.link-arr:hover { color: var(--purple); gap: .75rem; }
.link-arr:hover .i { transform: translateX(3px); }

/* ================================================================
   ANIMATIONS AU SCROLL
   ================================================================ */
.anim { opacity: 0; transition: opacity .75s var(--ease), transform .75s var(--ease); }
.anim-up    { transform: translateY(36px); }
.anim-left  { transform: translateX(-40px); }
.anim-right { transform: translateX(40px); }
.anim-scale { transform: scale(.93); }
.anim.in    { opacity: 1; transform: translate(0) scale(1); }

/* Respect du choix "Réduire les animations" de l'OS */
@media (prefers-reduced-motion: reduce) {
  .anim { opacity: 1; transform: none; transition: none; }
  html  { scroll-behavior: auto; }
}

/* ================================================================
   BARRE DE PROGRESSION
   ================================================================ */
#lz-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  z-index: 9998;
  transition: width .12s linear;
}

/* ================================================================
   HEADER / NAVIGATION
   ================================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 1.1rem 0;
}
#site-header.stuck {
  background: rgba(253,252,251,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(123,53,192,.09);
  padding: .7rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Branding */
.site-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
}
.logo-img-link {
  display: block;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
  line-height: 0;
}
.logo-img-link:hover { transform: rotate(5deg) scale(1.06); }
/* Fallback si pas de logo uploadé */
.logo-fallback {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dk), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.logo-fallback:hover { transform: rotate(5deg) scale(1.06); }
.site-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .02em;
}
.site-name a { color: inherit; }

/* Menu desktop */
#main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
#main-nav ul li a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-lt);
  position: relative;
  transition: color .22s;
}
#main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
#main-nav ul li a:hover { color: var(--purple); }
#main-nav ul li a:hover::after { transform: scaleX(1); }
#main-nav ul li.nav-cta a {
  background: var(--mauve);
  color: var(--white);
  padding: .5rem 1.2rem;
  border-radius: 100px;
  font-size: .845rem;
  transition: background .22s, transform .22s;
}
#main-nav ul li.nav-cta a::after { display: none; }
#main-nav ul li.nav-cta a:hover { background: var(--mauve-lt); transform: translateY(-1px); }

/* Burger mobile */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .3rem;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s, opacity .28s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer mobile */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.mobile-drawer a {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s;
}
.mobile-drawer a:hover { color: var(--purple); }
.drawer-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.4rem;
  color: var(--ink-lt);
  padding: .5rem;
}

/* Admin bar fix */
.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar #site-header { top: 46px; } }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 68% 28%, rgba(123,53,192,.13) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 18% 72%, rgba(45,212,191,.10) 0%, transparent 55%),
    var(--cream);
  animation: hbg 14s ease-in-out infinite alternate;
}
@keyframes hbg {
  to {
    background:
      radial-gradient(ellipse 75% 65% at 72% 22%, rgba(123,53,192,.17) 0%, transparent 60%),
      radial-gradient(ellipse 55% 70% at 14% 76%, rgba(45,212,191,.13) 0%, transparent 55%),
      var(--cream);
  }
}
/* Plage photo droite */
.hero-img-panel {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.hero-img-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, rgba(248,245,240,.15) 40%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}
.hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  opacity: .55;
}
/* Placeholder si pas d'image */
.hero-img-panel .hero-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--purple-bg), var(--cyan-bg) 60%, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .7;
}

/* Contenu hero */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 590px;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero-location::before { content: ''; display: block; width: 24px; height: 1.5px; background: currentColor; }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .5s forwards;
}
.hero-h1 em { font-style: italic; color: var(--purple); }
.hero-tagline {
  font-size: clamp(.95rem, 2vw, 1.12rem);
  color: var(--ink-lt);
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .7s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .9s forwards;
}
/* Indicateur scroll */
.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1.4s forwards;
}
.scroll-cue span { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-xs); }
.scroll-line {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes pulse { 0%,100% { opacity:.45; } 50% { opacity:1; } }

/* ================================================================
   INTRO (photo gauche | texte droite)
   ================================================================ */
.intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.intro-photo {
  border-radius: var(--r-lg);
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(160deg, var(--purple-bg), var(--cyan-bg) 80%);
  position: relative;
}
.intro-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: .82;
}
.intro-photo .ph-label {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  padding: .6rem 1rem;
  border-radius: var(--r-xs);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-lt);
}
.intro-text .lead-q {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: .9rem;
}
.intro-text p {
  font-size: .95rem;
  color: var(--ink-lt);
  line-height: 1.82;
  margin-bottom: 1rem;
}
.intro-text p:last-of-type { margin-bottom: 1.75rem; }

/* ================================================================
   PAIN POINTS (questions centrées)
   ================================================================ */
.pain { background: linear-gradient(to bottom, var(--cream), var(--cream-dk)); }
.pain-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.pain-lead {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
  font-weight: 400;
  color: var(--ink-lt);
  margin-bottom: 2.75rem;
}
.pain-cards {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2.75rem;
}
.pain-card {
  background: var(--white);
  border-left: 3px solid var(--purple);
  border-radius: var(--r-md);
  padding: 1.35rem 1.75rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink);
  text-align: left;
  box-shadow: var(--sh-sm);
  transition: transform .28s var(--ease), box-shadow .28s;
}
.pain-card:nth-child(2) { border-color: var(--cyan); }
.pain-card:nth-child(3) { border-color: var(--mauve); }
.pain-card:nth-child(4) { border-color: var(--purple-lt); }
.pain-card:hover { transform: translateX(5px); box-shadow: var(--sh-md); }
.pain-conclusion {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  border-radius: var(--r-lg);
  padding: 2.25rem 2.5rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  line-height: 1.65;
}
.pain-conclusion strong { font-weight: 700; display: block; margin-bottom: .35rem; }

/* ================================================================
   CE QUE J'APPORTE (valeurs)
   ================================================================ */
.values { background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.val-card {
  background: var(--cream);
  border: 1px solid var(--accent);
  border-radius: var(--r-md);
  padding: 1.85rem 1.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.val-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--purple-bg), var(--cyan-bg));
  opacity: 0;
  transition: opacity .3s;
}
.val-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.val-card:hover::before { opacity: 1; }
.val-icon {
  position: relative;
  z-index: 1;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 14px rgba(123,53,192,.22);
}
.val-label {
  position: relative;
  z-index: 1;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.values-blockquote {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.values-blockquote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--ink-lt);
  line-height: 1.72;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1.5rem;
}
.values-blockquote blockquote::before {
  content: '\201C';
  position: absolute;
  top: -.6rem; left: 0;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--purple-bg);
  font-family: var(--serif);
}

/* ================================================================
   PARCOURS 0-12 MOIS (timeline gauche | photo droite)
   ================================================================ */
.parcours {
  background: linear-gradient(135deg, var(--purple-bg) 0%, var(--cream) 55%, var(--cyan-bg) 100%);
}
.parcours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.parcours-sub {
  font-style: italic;
  color: var(--ink-lt);
  font-size: .95rem;
  margin-bottom: 1.75rem;
}
/* Timeline verticale */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 19px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--cyan));
}
.tl-item {
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
  padding-bottom: 1.85rem;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative; z-index: 1;
  box-shadow: var(--sh-sm);
}
.tl-item:nth-child(2) .tl-dot { border-color: var(--cyan); }
.tl-item:nth-child(3) .tl-dot { border-color: var(--mauve); }
.tl-item:nth-child(4) .tl-dot { border-color: var(--purple-lt); }
.tl-item:nth-child(5) .tl-dot { border-color: var(--cyan-lt); }
.tl-text {
  padding-top: .55rem;
  font-size: .965rem;
  color: var(--ink);
  line-height: 1.55;
}
.tl-text strong { font-weight: 700; color: var(--ink); }
.parcours-note {
  margin-top: 1.75rem;
  padding: .9rem 1.3rem;
  background: rgba(255,255,255,.65);
  border-radius: var(--r-xs);
  font-size: .82rem;
  color: var(--ink-xs);
  border: 1px solid var(--accent);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
/* Photo parcours */
.parcours-photo {
  border-radius: var(--r-lg);
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, rgba(123,53,192,.15), rgba(45,212,191,.18));
}
.parcours-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: .78;
}
.parcours-photo .ph-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: var(--white);
  padding: 1.1rem 1.4rem;
  border-radius: var(--r-md);
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: var(--sh-md);
}
.parcours-photo .ph-badge big {
  display: block;
  font-size: 1.45rem;
  font-family: var(--serif);
}

/* ================================================================
   AUTRES ACCOMPAGNEMENTS (4 cartes)
   ================================================================ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.svc-card {
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--r-lg);
  padding: 2.25rem 1.85rem;
  position: relative;
  overflow: hidden;
  transition: transform .32s var(--ease), box-shadow .32s, border-color .32s;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.svc-card:nth-child(1) { border-color: rgba(123,53,192,.25); }
.svc-card:nth-child(1):hover { border-color: var(--purple); }
.svc-card:nth-child(2) { border-color: rgba(45,212,191,.25); }
.svc-card:nth-child(2):hover { border-color: var(--cyan); }
.svc-card:nth-child(3) { border-color: rgba(139,85,99,.25); }
.svc-card:nth-child(3):hover { border-color: var(--mauve); }
.svc-card:nth-child(4) { border-color: rgba(163,102,214,.25); }
.svc-card:nth-child(4):hover { border-color: var(--purple-lt); }
/* Blob de fond */
.svc-blob {
  position: absolute;
  top: -28px; right: -28px;
  width: 110px; height: 110px;
  border-radius: 50%;
  opacity: .1;
  transition: opacity .32s, transform .32s;
}
.svc-card:hover .svc-blob { opacity: .18; transform: scale(1.15); }
.svc-card:nth-child(1) .svc-blob { background: var(--purple); }
.svc-card:nth-child(2) .svc-blob { background: var(--cyan); }
.svc-card:nth-child(3) .svc-blob { background: var(--mauve); }
.svc-card:nth-child(4) .svc-blob { background: var(--purple-lt); }
/* Badge tag */
.svc-tag {
  display: inline-block;
  padding: .27rem .85rem;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.svc-card:nth-child(1) .svc-tag { background: var(--purple-bg); color: var(--purple); }
.svc-card:nth-child(2) .svc-tag { background: var(--cyan-bg); color: #1A7A70; }
.svc-card:nth-child(3) .svc-tag { background: #FDE8EC; color: var(--mauve); }
.svc-card:nth-child(4) .svc-tag { background: var(--purple-bg); color: var(--purple-lt); }
.svc-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .4rem;
}
.svc-sub {
  font-size: .82rem;
  font-style: italic;
  font-family: var(--serif);
  color: var(--ink-xs);
  margin-bottom: 1.35rem;
  line-height: 1.45;
  min-height: 2.4rem;
}
.svc-items { display: flex; flex-direction: column; gap: .55rem; }
.svc-items li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .845rem;
  color: var(--ink-lt);
}
.svc-items li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}
.svc-card:nth-child(2) .svc-items li::before { background: var(--cyan); }
.svc-card:nth-child(3) .svc-items li::before { background: var(--mauve); }
/* Carte saisonnière rentrée */
.svc-card--rentree { border-color: rgba(245,158,11,.35) !important; }
.svc-card--rentree:hover { border-color: #F59E0B !important; }
.svc-card--rentree .svc-blob { background: #F59E0B; }
.svc-card--rentree .svc-items li::before { background: #B45309; }
/* Grille 5 colonnes en saison */
.services-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
@media (max-width: 1100px) { .services-grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .services-grid--5 { grid-template-columns: 1fr; } }
.services-note {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-lt);
  font-size: .98rem;
  margin-bottom: 2rem;
}

/* ── Tarifs aperçu ── */
.tarifs-apercu {
  background: var(--cream);
  border: 1px solid var(--accent);
  border-radius: var(--r-lg);
  padding: 2rem 2.25rem;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}
.tarifs-grid {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .55rem .75rem;
  border-radius: var(--r-sm);
  background: var(--off-white);
  font-size: .9rem;
}
.tarif-item.tarif-highlight {
  background: var(--purple-bg);
  border: 1px solid var(--purple-lt);
  font-weight: 600;
}
.tarif-name { color: var(--ink); flex: 1; }
.tarif-price {
  color: var(--purple);
  font-weight: 700;
  white-space: nowrap;
  font-size: .95rem;
}

/* ================================================================
   TÉMOIGNAGES
   ================================================================ */
.temoignages {
  background: linear-gradient(to bottom right, var(--cream-dk), var(--cream));
  position: relative;
  overflow: hidden;
}
/* Cercle déco arrière-plan */
.temoignages::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-bg), var(--cyan-bg));
  opacity: .4;
  pointer-events: none;
}
.temoignages::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--purple-bg);
  opacity: .35;
  pointer-events: none;
}
.temoignages .section-title { position: relative; z-index: 1; }
.temoignages .eyebrow { position: relative; z-index: 1; }
.temoignages-header { text-align: center; margin-bottom: 3rem; }
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.temoignage-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.85rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--accent);
  transition: transform .3s var(--ease), box-shadow .3s;
  position: relative;
}
.temoignage-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1.1rem;
  color: #F5A623;
  font-size: 1.05rem;
}
.temoignage-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-lt);
  line-height: 1.72;
  margin-bottom: 1.4rem;
  position: relative;
}
.temoignage-text::before {
  content: '\201C';
  font-size: 3rem;
  line-height: .6;
  color: var(--purple-bg);
  font-family: var(--serif);
  display: block;
  margin-bottom: .3rem;
}
.temoignage-author {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  flex-shrink: 0;
  font-family: var(--serif);
}
.author-info .name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
}
.author-info .role {
  font-size: .78rem;
  color: var(--ink-xs);
}
/* Bandeau Google / réseau social */
.temoignages-cta {
  text-align: center;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}
.temoignages-cta p {
  font-size: .88rem;
  color: var(--ink-xs);
  margin-top: .75rem;
}
.link-google-review {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--purple);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.link-google-review:hover { opacity: .75; }

/* ================================================================
   QUI SUIS-JE (photo gauche | bio droite)
   ================================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(160deg, var(--purple-bg), var(--cyan-bg) 80%);
  animation: blob 9s ease-in-out infinite alternate;
}
@keyframes blob {
  0%   { border-radius: 42% 58% 58% 42% / 52% 42% 58% 48%; }
  50%  { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; }
  100% { border-radius: 50% 50% 42% 58% / 52% 50% 50% 48%; }
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}
.about-badge {
  position: absolute;
  top: -1.25rem; right: -1.25rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--sh-md);
  border: 1px solid var(--accent);
  text-align: center;
}
.about-badge .big {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}
.about-badge .small { font-size: .72rem; color: var(--ink-xs); font-weight: 600; }
.about-badge2 {
  position: absolute;
  bottom: -1.25rem; left: -1.25rem;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  border-radius: var(--r-md);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--sh-md);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  max-width: 155px;
  line-height: 1.4;
}
.about-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .3rem;
}
.about-job {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.85rem;
}
.about-text p {
  font-size: .96rem;
  color: var(--ink-lt);
  line-height: 1.82;
  margin-bottom: 1.1rem;
}
.about-text p:first-child { font-weight: 600; color: var(--ink); }

/* ================================================================
   CTA CONTACT
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--purple-dk) 0%, var(--purple) 45%, var(--cyan) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255,255,255,.08), transparent);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: .9rem;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.25rem;
}
/* Formulaire contact intégré */
.contact-form {
  max-width: 540px;
  margin: 2rem auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .85rem 1.2rem;
  border-radius: var(--r-xs);
  border: 1.5px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--sans);
  font-size: .95rem;
  outline: none;
  transition: border-color .22s, background .22s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.52); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.18);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form button[type="submit"],
.contact-form input[type="submit"] {
  background: var(--white);
  color: var(--purple);
  font-weight: 700;
  font-size: .9rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: box-shadow .25s, transform .25s;
  align-self: flex-start;
}
.contact-form button[type="submit"]:hover,
.contact-form input[type="submit"]:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.28);
  transform: translateY(-2px);
}
.form-success {
  display: none;
  background: rgba(255,255,255,.18);
  border-radius: var(--r-sm);
  padding: 1rem 1.5rem;
  color: var(--white);
  text-align: center;
  margin-top: .5rem;
}
/* WP Contact Form 7 overrides */
.wpcf7-form { display: flex; flex-direction: column; gap: .9rem; }
.wpcf7-form-control-wrap { display: block; }
.wpcf7-form input:not([type="submit"]),
.wpcf7-form textarea {
  width: 100%;
  padding: .85rem 1.2rem;
  border-radius: var(--r-xs);
  border: 1.5px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--sans);
  font-size: .95rem;
  outline: none;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder { color: rgba(255,255,255,.52); }
.wpcf7-submit {
  background: var(--white) !important;
  color: var(--purple) !important;
  font-weight: 700 !important;
  padding: .85rem 2rem !important;
  border-radius: 100px !important;
  cursor: pointer;
}
.wpcf7-not-valid-tip { color: #fca5a5; font-size: .8rem; }
.wpcf7-mail-sent-ok { color: #bbf7d0; padding: .75rem; text-align: center; }

/* ================================================================
   FOOTER
   ================================================================ */
#site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.45);
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: .85rem;
}
#site-footer a { color: rgba(255,255,255,.75); transition: color .2s; }
#site-footer a:hover { color: #fff; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-brand { font-weight: 600; color: rgba(255,255,255,.8); margin-bottom: .5rem; }
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .3rem 1.5rem;
  margin: .75rem 0;
}
.footer-mention { font-size: .78rem; margin-top: .5rem; }
.footer-ei {
  display: inline-block;
  background: var(--purple-bg);
  color: var(--purple);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .1em .35em;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: .25rem;
  border: 1px solid var(--purple-lt);
}
.footer-tva {
  font-style: italic;
  color: var(--ink-xs);
}

/* ================================================================
   PAGE MENTIONS LÉGALES
   ================================================================ */
.mentions-wrap {
  max-width: 820px;
  padding-top: 3rem;
  padding-bottom: 5rem;
}
.mentions-h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ink);
  margin-bottom: .4rem;
}
.mentions-update {
  font-size: .82rem;
  color: var(--ink-xs);
  margin-bottom: 3rem;
}
.mentions-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--accent);
}
.mentions-section:last-of-type { border-bottom: none; }
.mentions-section h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--purple);
  margin-bottom: 1rem;
}
.mentions-h3 {
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink-lt);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 1.75rem 0 .6rem;
}
.mentions-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.mentions-table tr { border-bottom: 1px solid var(--accent); }
.mentions-table th {
  text-align: left;
  font-weight: 600;
  color: var(--ink-lt);
  padding: .55rem .75rem .55rem 0;
  width: 36%;
  vertical-align: top;
}
.mentions-table td {
  padding: .55rem 0;
  color: var(--ink);
  line-height: 1.6;
}
.mentions-highlight {
  background: var(--purple-bg);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.1rem 1.4rem;
  font-size: .95rem;
}
.mentions-highlight p { margin: 0 0 .5rem; }
.mentions-highlight p:last-child { margin: 0; }
.mentions-list {
  list-style: none;
  padding: 0;
  margin: .75rem 0 .75rem 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.mentions-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  margin-right: .5rem;
}

/* ================================================================
   LIEN "DÉCOUVRIR" SUR LES CARTES SERVICE
   ================================================================ */
.svc-card { display: flex; flex-direction: column; }
.svc-items { flex: 1; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  transition: gap .2s var(--ease), color .2s;
}
.svc-link:hover { gap: .55rem; color: var(--purple-dk); }
.svc-link .i { transition: transform .2s var(--ease); }
.svc-link:hover .i { transform: translateX(3px); }

/* ================================================================
   PAGES ACCOMPAGNEMENT
   ================================================================ */
.ac-page { padding-bottom: 5rem; }

/* Hero bande colorée */
.ac-hero {
  background: var(--ac-bg, #F0E8FA);
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.ac-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--ink-xs);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.ac-breadcrumb a { color: var(--ink-lt); }
.ac-breadcrumb a:hover { color: var(--purple); }
.ac-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .25em .75em;
  border: 1.5px solid currentColor;
  border-radius: 20px;
  margin-bottom: .85rem;
}
.ac-titre {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: .6rem;
}
.ac-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-lt);
}

/* Corps de la page */
.ac-wrap { max-width: 820px; padding-top: 3rem; }

.ac-intro {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-lt);
}

/* Cartes de service */
.ac-services {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.ac-svc-card {
  background: var(--off-white);
  border: 1px solid var(--accent);
  border-radius: var(--r-md);
  padding: 1.75rem 2rem;
  transition: box-shadow .25s var(--ease);
}
.ac-svc-card:hover { box-shadow: var(--sh-sm); }
.ac-svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: .75rem;
}
.ac-svc-nom {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: .2rem;
}
.ac-svc-duree {
  font-size: .78rem;
  color: var(--ink-xs);
}
.ac-svc-desc {
  font-size: .93rem;
  color: var(--ink-lt);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

/* Tableau de tarifs */
.ac-tarifs {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding-top: .85rem;
  border-top: 1px solid var(--accent);
}
.ac-tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .88rem;
}
.ac-tarif-label { color: var(--ink-lt); flex: 1; }
.ac-tarif-prix {
  font-weight: 700;
  white-space: nowrap;
  font-size: .95rem;
}

/* Encadré Parcours Lien Zen */
.ac-parcours-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--purple-bg);
  border: 1.5px solid var(--purple-lt);
  border-radius: var(--r-md);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.ac-parcours-icon { font-size: 1.75rem; flex-shrink: 0; }
.ac-parcours-box > div { flex: 1; }
.ac-parcours-titre {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-dk);
  margin-bottom: .3rem;
}
.ac-parcours-desc { font-size: .88rem; color: var(--ink-lt); }
.ac-parcours-prix {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--purple);
  white-space: nowrap;
}

/* Note pratique */
.ac-note {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .83rem;
  color: var(--ink-xs);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* CTA */
.ac-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 940px) {
  .hero-img-panel { width: 45%; opacity: .7; }
  .intro-grid,
  .parcours-grid,
  .about-grid { grid-template-columns: 1fr; }
  .intro-photo { aspect-ratio: 16/10; }
  .parcours-photo { aspect-ratio: 16/10; }
  .about-photo { border-radius: var(--r-lg); animation: none; }
  .about-badge, .about-badge2 { display: none; }
  #main-nav { display: none; }
  .burger { display: flex; }
}
@media (max-width: 640px) {
  .hero-img-panel { display: none; }
  .hero-h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .pain-conclusion { padding: 1.75rem 1.5rem; }
  /* Photo Anaïs — fix mobile */
  .about-photo-wrap,
  .about-photo { width: 100%; }
  .about-photo { min-height: 300px; }
  .about-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
}

/* ================================================================
   PAGES INTERNES (blog, page statique)
   ================================================================ */
.page-content {
  padding-top: calc(80px + 3rem);
  padding-bottom: 5rem;
  min-height: 60vh;
}
.page-content h1 { font-family: var(--serif); font-size: clamp(1.9rem,4vw,2.8rem); margin-bottom: 1.5rem; }
.entry-content h2,
.entry-content h3 { font-family: var(--serif); margin: 1.75rem 0 .75rem; }
.entry-content p { color: var(--ink-lt); line-height: 1.82; margin-bottom: 1rem; }
.entry-content a { color: var(--purple); text-decoration: underline; }
.entry-content ul { list-style: disc; padding-left: 1.5rem; }
.entry-content ul li { margin-bottom: .4rem; color: var(--ink-lt); }

/* ================================================================
   BLOG — LISTING (home.php) & SECTION ACCUEIL
   ================================================================ */

/* Hero blog */
.blog-hero {
  background: var(--purple-bg);
  padding: calc(80px + 3rem) 0 3.5rem;
}
.blog-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: .6rem 0 .75rem;
}
.blog-hero-title em { color: var(--purple); font-style: italic; }
.blog-hero-sub {
  color: var(--ink-lt);
  max-width: 540px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Wrap listing */
.blog-wrap { padding: 4rem 0 5rem; }

/* Grille articles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 2rem;
}
.blog-grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }

/* Carte article */
.blog-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

/* Image vignette */
.blog-card-img-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-dk);
}
.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.04); }

/* Placeholder sans image */
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-bg), var(--cyan-bg));
  color: var(--purple-lt);
}

/* Corps de la carte */
.blog-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}

/* Méta */
.blog-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
}
.blog-card-cat {
  background: var(--purple-bg);
  color: var(--purple);
  padding: .18em .65em;
  border-radius: 20px;
  font-weight: 600;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
}
.blog-card-cat:hover { background: var(--purple); color: var(--white); }
.blog-card-date, .blog-card-read { color: var(--ink-xs); }
.blog-card-date::before, .blog-card-read::before { content: '·'; margin-right: .4rem; color: var(--accent); }

/* Titre carte */
.blog-card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.3;
  margin: .2rem 0;
}
.blog-card-title a { color: var(--ink); transition: color .2s; }
.blog-card-title a:hover { color: var(--purple); }

/* Extrait */
.blog-card-excerpt {
  font-size: .9rem;
  color: var(--ink-lt);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Lien lire la suite */
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--purple);
  margin-top: .5rem;
  transition: gap .2s;
}
.blog-card-link:hover { gap: .6rem; }

/* Pagination */
.blog-pagination { margin-top: 3.5rem; display: flex; justify-content: center; }
.blog-pagination .nav-links { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.blog-pagination .page-numbers {
  padding: .45rem .9rem;
  border-radius: var(--r-xs);
  border: 1.5px solid var(--accent);
  font-size: .9rem;
  color: var(--ink-lt);
  transition: all .2s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}
.blog-pagination .page-numbers.dots { border: none; background: none; }

/* État vide */
.blog-empty {
  text-align: center;
  padding: 6rem 1rem;
}
.blog-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.blog-empty h2 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: .75rem; }
.blog-empty p { color: var(--ink-lt); max-width: 440px; margin: 0 auto; }

/* Bande CTA bas de page listing */
.blog-cta-strip {
  background: var(--purple-bg);
  padding: 3rem 0;
  margin-top: 2rem;
}

/* Section "Derniers articles" sur la homepage */
.blog-preview { background: var(--off-white); }
.blog-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

/* ================================================================
   ARTICLE INDIVIDUEL (single.php)
   ================================================================ */

/* Hero article */
.art-hero {
  background: var(--purple-bg);
  padding: calc(80px + 3rem) 0 3rem;
  position: relative;
  overflow: hidden;
}
.art-hero--img {
  background: var(--ink);
  padding-bottom: 3.5rem;
}
.art-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.art-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  filter: grayscale(30%);
}
.art-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,25,23,.55) 0%, rgba(28,25,23,.8) 100%);
}
.art-hero-inner {
  position: relative;
  z-index: 1;
}
.art-hero--img .ac-breadcrumb a,
.art-hero--img .ac-breadcrumb span { color: rgba(255,255,255,.75); }
.art-hero--img .ac-tag { color: var(--cyan-lt); border-color: var(--cyan); }
.art-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.18;
  margin: .7rem 0 1.2rem;
  color: var(--ink);
}
.art-hero--img .art-title { color: var(--white); }
.art-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: .85rem;
  color: var(--ink-lt);
}
.art-hero--img .art-meta { color: rgba(255,255,255,.8); }
.art-meta-item {
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* Breadcrumb article */
.art-breadcrumb { margin-bottom: 1.25rem; }

/* Corps article */
.art-body-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3.5rem 0 4rem;
  max-width: 1000px;
}
@media (min-width: 900px) {
  .art-body-wrap { grid-template-columns: 1fr 300px; }
}

/* Contenu principal */
.art-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-lt);
}
.art-content h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--ink);
  margin: 2.5rem 0 .85rem;
}
.art-content h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 2rem 0 .6rem;
}
.art-content p { margin-bottom: 1.2rem; }
.art-content ul, .art-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.art-content ul { list-style: disc; }
.art-content ol { list-style: decimal; }
.art-content li { margin-bottom: .5rem; }
.art-content a { color: var(--purple); text-decoration: underline; }
.art-content blockquote {
  border-left: 3px solid var(--purple-lt);
  padding: .75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--purple-bg);
  border-radius: 0 var(--r-xs) var(--r-xs) 0;
  font-style: italic;
  color: var(--ink);
}
.art-content img {
  border-radius: var(--r-sm);
  width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

/* Tags */
.art-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--accent);
}
.art-tag-pill {
  padding: .3em .85em;
  border-radius: 20px;
  border: 1.5px solid var(--accent);
  font-size: .8rem;
  color: var(--ink-lt);
  transition: all .2s;
}
.art-tag-pill:hover { border-color: var(--purple); color: var(--purple); }

/* Navigation prev/next */
.art-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--accent);
  font-size: .88rem;
}
.art-nav a { color: var(--purple); font-weight: 500; }
.art-nav a:hover { text-decoration: underline; }
.art-nav-next { text-align: right; }

/* Carte auteure */
.art-author-card {
  position: sticky;
  top: calc(80px + 1.5rem);
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  padding: 1.75rem;
  align-self: start;
  height: fit-content;
}
.art-author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.art-author-img img { width: 100%; height: 100%; object-fit: cover; }
.art-author-placeholder {
  width: 100%;
  height: 100%;
  background: var(--purple-bg);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
}
.art-author-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: .2rem;
}
.art-author-role {
  font-size: .78rem;
  color: var(--purple);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.art-author-bio {
  font-size: .88rem;
  color: var(--ink-lt);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.art-author-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--purple);
  transition: gap .2s;
}
.art-author-link:hover { text-decoration: underline; }

/* Articles liés */
.art-related {
  background: var(--cream-dk);
  padding: 4rem 0;
}
.art-related-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

/* CTA final article */
.art-cta {
  background: var(--purple-bg);
  padding: 4rem 0;
}
.art-cta-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.3;
}

/* Retirer le padding générique pour single et blog */
.single-article.page-content,
.blog-listing.page-content {
  padding-top: 0;
  padding-bottom: 0;
}
