/* ============================================================
   Nicole Bartoli — Design System — MOBILE FIRST
   Base = mobile · @media min-width pour les enrichissements
   ============================================================ */

/* Fonts Google chargées via wp_enqueue_style + preconnect/preload
   (voir functions.php > nb_assets_version) */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --ivory:      #F9F7F2;
  --forest:     #2D4636;
  --ochre:      #D97724;
  --anthracite: #333333;
  --white:      #FFFFFF;
  --grey-light: #E8E5DF;
  --grey-text:  #888880;
  --sage:       #7A9980;
  --moss:       #4A6B51;
  --earth:      #B8895A;
  --parchment:  #EEE8DA;

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Montserrat', Arial, sans-serif;

  --radius:     3px;
  --shadow:     0 2px 24px rgba(0,0,0,0.08);
  --shadow-sm:  0 1px 8px rgba(0,0,0,0.05);
  --transition: 0.3s ease;

  --max-w: 1160px;

  /* Mobile par défaut */
  --section-py:  48px;
  --container-px: 20px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--anthracite);
  line-height: 1.6;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Grain papier ───────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23g)' opacity='1'/></svg>");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9997;
  mix-blend-mode: multiply;
}

/* ── Utilitaires ────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.section { padding: var(--section-py) 0; }
.section--white   { background: var(--white); }
.section--ivory   { background: var(--ivory); }
.section--forest  { background: var(--forest); color: var(--white); }
.section--sand    { background: #EDE7DB; }
.section--bark    { background: #F3EDE0; }
.section--parch   { background: var(--parchment); }

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  display: block;
  margin-bottom: 12px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 20'><path d='M7 1 C4 4 1 9 2.5 14 C4 18 7 19.5 7 19.5 C7 19.5 10 18 11.5 14 C13 9 10 4 7 1Z' fill='none' stroke='%23D97724' stroke-width='1.2' opacity='0.9'/><line x1='7' y1='1' x2='7' y2='19.5' stroke='%23D97724' stroke-width='0.7' opacity='0.7'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Typographie ────────────────────────────────────────── */
h1 {
  font-family: var(--font-title);
  font-size: clamp(30px, 7vw, 56px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
}
h2 {
  font-family: var(--font-title);
  font-size: clamp(22px, 5vw, 38px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.25;
}
h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--anthracite);
}
p { font-size: 15px; line-height: 1.8; color: var(--anthracite); }
p.lead { font-size: 17px; line-height: 1.75; }
.italic { font-style: italic; }

/* ── Boutons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: normal;
  text-align: center;
}
.btn-primary { background: var(--ochre); color: var(--white); }
.btn-primary:hover { background: var(--forest); }
.btn-outline { background: transparent; color: var(--ochre); border: 1px solid var(--ochre); }
.btn-outline:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: var(--white); color: var(--forest); }

/* ── Photo placeholder ──────────────────────────────────── */
.photo-slot {
  background: linear-gradient(135deg, #E8E2D6 0%, #DDD5C5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.photo-slot::after {
  content: '↳ Photo';
  font-family: var(--font-title);
  font-style: italic;
  font-size: 12px;
  color: #A89880;
}
.photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Navigation — mobile d'abord ────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--container-px);
  background: rgba(249,247,242,0.95);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(45,70,54,0.08); }
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img { height: 40px !important; width: auto !important; max-width: 180px; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav__logo-text strong { font-family: var(--font-title); font-size: 15px; color: var(--forest); }
.nav__logo-text span { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ochre); }

/* Menu caché sur mobile */
.nav__menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: var(--ivory);
  padding: 16px var(--container-px) 24px;
  box-shadow: 0 8px 32px rgba(45,70,54,0.1);
  gap: 4px;
  border-top: 1px solid var(--grey-light);
}
.nav__menu.open { display: flex; }
.nav__menu a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--anthracite);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav__menu a:hover { color: var(--ochre); background: rgba(217,119,36,0.05); }
.nav__menu a.active { color: var(--forest); }
.nav__menu .btn { width: 100%; margin-top: 8px; }

/* Hamburger visible sur mobile */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--forest);
  transition: var(--transition);
}

/* ── Vague séparatrice ──────────────────────────────────── */
.wave-sep { display: block; line-height: 0; overflow: hidden; }
.wave-sep svg { display: block; width: 100%; height: 40px; }

/* ── Hero — mobile (colonne unique) ─────────────────────── */
.hero {
  padding-top: 80px;
  padding-bottom: 48px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 16px;
}
.hero h1 { margin-bottom: 20px; }
.hero p.lead { margin-bottom: 32px; }
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.hero__ctas .btn { width: 100%; }
.hero__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
}
.hero__phone::before { content: '—  '; color: var(--ochre); }
.hero__visual { width: 100%; }
.hero__photo { width: 100%; height: auto; border-radius: 14px; display: block; object-fit: cover; object-position: center; }

/* ── Titre de section ───────────────────────────────────── */
.section-title { margin-bottom: 40px; }
.section-title::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--sage);
  margin-bottom: 16px;
  opacity: 0.6;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p { max-width: 600px; }
.section-title.center { text-align: center; }
.section-title.center::before { margin-left: auto; margin-right: auto; }
.section-title.center p { margin: 0 auto; }

/* ── Cartes service (mobile : colonne unique) ────────────── */
.services-grid { display: flex; flex-direction: column; gap: 24px; }
.service-card {
  background: var(--white);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { border-top-color: var(--ochre); transform: translateY(-3px); box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.service-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.service-card__icon--ochre { background: rgba(217,119,36,0.1); }
.service-card__icon--forest { background: rgba(45,70,54,0.1); }
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 { margin-bottom: 4px; }
.service-card p { flex: 1; }

/* ── Split éditorial (mobile : empilé) ──────────────────── */
.editorial-split,
.editorial-split__inner {
  display: flex;
  flex-direction: column;
}
.editorial-split__visual {
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.editorial-split__visual .photo-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.editorial-split__visual .photo-slot::after { font-size: 13px; }
.editorial-split__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.editorial-split__content {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section--bark .editorial-split__content {
  background: var(--forest) !important;
  color: var(--white);
}
.editorial-split__content p { max-width: 480px; }
.editorial-split__content .btn { align-self: flex-start; width: auto; }
.editorial-num {
  font-family: var(--font-title);
  font-size: 64px;
  font-weight: 700;
  color: var(--grey-light);
  line-height: 1;
  margin-bottom: -12px;
  display: block;
}

/* ── À propos (mobile : empilé) ─────────────────────────── */
.about__inner { display: flex; flex-direction: column; gap: 40px; }
.about__photo { width: 100%; height: auto; border-radius: 14px; display: block; object-fit: cover; object-position: center; }
.about__content .label { margin-bottom: 16px; }
.about__content h2 { margin-bottom: 20px; }
.about__content p { margin-bottom: 16px; }
.about__content p:last-of-type { margin-bottom: 28px; }

/* ── Highlights ─────────────────────────────────────────── */
.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.highlight {
  background: var(--white);
  padding: 24px 20px;
  text-align: center;
  border-top: 2px solid var(--grey-light);
  transition: border-color var(--transition);
}
.highlight:hover { border-top-color: var(--ochre); }
.highlight__num {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.highlight__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
}

/* ── Citation / pull quote ──────────────────────────────── */
.quote-block {
  border-left: 3px solid var(--ochre);
  padding: 12px 24px;
  margin: 28px 0;
  position: relative;
}
.quote-block::before {
  content: '"';
  font-family: var(--font-title);
  font-size: 80px;
  color: var(--ochre);
  opacity: 0.15;
  position: absolute;
  top: -16px; left: 16px;
  line-height: 1;
  pointer-events: none;
}
.quote-block p {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(17px, 3vw, 21px);
  line-height: 1.6;
  color: var(--forest);
}
.quote-block cite {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-top: 10px;
  font-style: normal;
}

/* ── Bullets feuille ────────────────────────────────────── */
.nature-list { list-style: none; }
.nature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
}
.nature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 14px; height: 20px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 20'><path d='M7 1 C4 4 1 9 2.5 14 C4 18 7 19.5 7 19.5 C7 19.5 10 18 11.5 14 C13 9 10 4 7 1Z' fill='none' stroke='%232D4636' stroke-width='1.2'/><line x1='7' y1='1' x2='7' y2='19.5' stroke='%232D4636' stroke-width='0.7'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── Bannière CTA ───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(150deg, #2D4636 0%, #3A5A47 60%, #2D4636 100%);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(217,119,36,0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(217,119,36,0.1) 0%, transparent 50%);
}
.cta-banner > .container { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin: 0 auto 28px; }
.cta-banner .btn { width: 100%; max-width: 360px; }

/* ── Grand CTA émotionnel (page Femmes) ─────────────────── */
.big-cta-section {
  background: linear-gradient(150deg, #2D4636 0%, #3A5A47 60%, #253D30 100%);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(217,119,36,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(217,119,36,0.08) 0%, transparent 50%);
}
.big-cta-section > .container { position: relative; }
.big-cta-section h2 {
  font-family: var(--font-title);
  font-size: clamp(24px, 5vw, 46px);
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 20px;
  line-height: 1.2;
}
.big-cta-section .ochre-tag {
  display: inline-block;
  background: var(--ochre);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  margin-bottom: 24px;
}
.big-cta-section p { color: rgba(255,255,255,0.85); margin: 0 auto 28px; }
.big-cta-section .btn { width: 100%; max-width: 400px; }

/* ── Urgency strip ──────────────────────────────────────── */
.urgency-strip {
  background: linear-gradient(90deg, var(--earth) 0%, var(--ochre) 50%, var(--earth) 100%);
  padding: 14px 0;
  text-align: center;
}
.urgency-strip p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 var(--container-px);
}
.urgency-strip p::before { content: '● '; }

/* ── Empathy block ──────────────────────────────────────── */
.empathy-block {
  border-left: 4px solid var(--sage);
  padding: 28px 28px;
  background: linear-gradient(to right, rgba(122,153,128,0.05) 0%, transparent 60%);
  max-width: 820px;
  margin: 0 auto;
}
.empathy-block p { font-size: 15px; line-height: 1.85; margin-bottom: 12px; }
.empathy-block p:last-child { margin-bottom: 0; }
.empathy-block strong { color: var(--forest); }

/* ── Pain strip ─────────────────────────────────────────── */
.pain-strip {
  background: linear-gradient(135deg, #EDE7DB 0%, #E4DDD0 100%);
  padding: 40px 0;
  text-align: center;
  position: relative;
}
.pain-strip p {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(17px, 3vw, 24px);
  color: var(--forest);
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 var(--container-px);
}

/* ── Solution block ─────────────────────────────────────── */
.solution-block { background: var(--ivory); padding: var(--section-py) 0; }
.solution-block__headline {
  font-family: var(--font-title);
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 700;
  color: var(--forest);
  margin: 0 auto 24px;
  text-align: center;
  line-height: 1.3;
  padding: 0 var(--container-px);
}
.solution-block p { text-align: center; padding: 0 var(--container-px); }

/* ── 3 clés (mobile : colonne) ──────────────────────────── */
.cles-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.cle-card {
  background: var(--white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 2px solid rgba(45,70,54,0.1);
  border-radius: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.cle-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cle-card::before {
  content: attr(data-num);
  font-family: var(--font-title);
  font-size: 72px;
  font-weight: 700;
  color: var(--grey-light);
  line-height: 1;
  display: block;
}
.cle-card h3 {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  color: var(--forest);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
}
.cle-card p { font-size: 14px; }

/* ── Piliers (mobile : colonne) ─────────────────────────── */
.pillars-grid { display: flex; flex-direction: column; gap: 16px; }
.pillar {
  background: var(--white);
  padding: 36px 28px;
  border-top: 2px solid transparent;
  border-radius: 10px;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.pillar:hover { background: var(--parchment); border-top-color: var(--sage); box-shadow: var(--shadow-sm); }
.pillar__number {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: var(--ochre);
  line-height: 1;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-light);
}
.pillar h3 { color: var(--forest); margin-bottom: 12px; display: none; }
.pillar p { font-size: 14px; }

/* ── Offre block (mobile : colonne) ─────────────────────── */
.offer-block {
  background: var(--white);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.offer-block h2 { margin-bottom: 16px; }
.offer-block p { margin-bottom: 12px; font-size: 15px; }
.offer-visual {
  aspect-ratio: 4/3;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

/* ── Testimonial ────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--sage);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(to right, rgba(122,153,128,0.05) 0%, white 30%);
}
.testimonial-card p {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.7;
  color: var(--forest);
  margin-bottom: 20px;
}
.testimonial-card__author {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
}

/* ── Blob organique de fond ─────────────────────────────── */
.blob-bg { position: relative; overflow: hidden; }
.blob-bg::before {
  content: '';
  position: absolute;
  right: -8%;
  top: -10%;
  width: 55%;
  max-width: 560px;
  aspect-ratio: 1;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M46,-62C58,-53,65,-38,71,-22C77,-6,82,11,78,27C74,44,62,60,46,70C30,80,11,84,-10,83C-31,82,-54,76,-66,62C-78,48,-80,27,-76,9C-72,-9,-62,-25,-50,-38C-38,-51,-25,-61,-9,-66C7,-71,34,-71,46,-62Z' transform='translate(100 100)' fill='%232D4636' opacity='0.03'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.blob-bg > * { position: relative; z-index: 1; }
.blob-bg--left::before { right: auto; left: -8%; top: -10%; }

/* ── Soulignement courbe sur les em ─────────────────────── */
.hero em,
.solution-block em,
.symbiose-hero em,
.page-hero em {
  font-style: italic;
  text-decoration: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' preserveAspectRatio='none'><path d='M0,6 C20,2 40,7 60,4 C80,1 100,6 120,3' stroke='%23D97724' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.7'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 8px;
  padding-bottom: 4px;
}

/* ── Vague miroir ───────────────────────────────────────── */
.wave-sep--flip svg { transform: scaleX(-1); }

/* ── Organic accent ─────────────────────────────────────── */
.organic-divider {
  display: flex; align-items: center; gap: 16px; margin: 40px 0;
}
.organic-divider::before, .organic-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--grey-light);
}
.organic-divider span { color: var(--ochre); font-size: 18px; }

/* ── Botanical decoration ───────────────────────────────── */
.botanical-bg { position: relative; overflow: hidden; }
.botanical-bg::after {
  content: '';
  position: absolute;
  right: -40px; bottom: -20px;
  width: 240px; height: 360px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 220'><path d='M70 6 C42 32 10 82 24 138 C38 190 70 210 70 210 C70 210 102 190 116 138 C130 82 98 32 70 6Z' fill='none' stroke='%232D4636' stroke-width='1.4' opacity='0.12'/><line x1='70' y1='6' x2='70' y2='210' stroke='%232D4636' stroke-width='0.9' opacity='0.1'/><path d='M70 60 C58 50 42 48 34 57' fill='none' stroke='%232D4636' stroke-width='0.9' opacity='0.08'/><path d='M70 90 C82 80 98 78 106 87' fill='none' stroke='%232D4636' stroke-width='0.9' opacity='0.08'/><path d='M70 120 C58 110 42 108 34 117' fill='none' stroke='%232D4636' stroke-width='0.9' opacity='0.08'/><path d='M70 150 C82 140 98 138 106 147' fill='none' stroke='%232D4636' stroke-width='0.9' opacity='0.08'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.botanical-bg--light::after { opacity: 0.5; }
.botanical-bg--inv::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 220'><path d='M70 6 C42 32 10 82 24 138 C38 190 70 210 70 210 C70 210 102 190 116 138 C130 82 98 32 70 6Z' fill='none' stroke='%23ffffff' stroke-width='1.4' opacity='0.1'/><line x1='70' y1='6' x2='70' y2='210' stroke='%23ffffff' stroke-width='0.9' opacity='0.08'/><path d='M70 90 C82 80 98 78 106 87' fill='none' stroke='%23ffffff' stroke-width='0.9' opacity='0.06'/><path d='M70 130 C58 120 42 118 34 127' fill='none' stroke='%23ffffff' stroke-width='0.9' opacity='0.06'/><path d='M70 170 C82 160 98 158 106 167' fill='none' stroke='%23ffffff' stroke-width='0.9' opacity='0.06'/></svg>");
}
.branch-deco { position: relative; }
.branch-deco::before {
  content: '';
  position: absolute;
  left: -20px; top: 0;
  width: 160px; height: 300px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'><path d='M50 180 L50 20' stroke='%232D4636' stroke-width='1.2' fill='none' opacity='0.12'/><path d='M50 60 C30 45 15 50 15 50' stroke='%232D4636' stroke-width='1' fill='none' opacity='0.1'/><path d='M50 90 C70 75 85 80 85 80' stroke='%232D4636' stroke-width='1' fill='none' opacity='0.1'/><path d='M50 120 C28 108 12 112 12 112' stroke='%232D4636' stroke-width='1' fill='none' opacity='0.1'/><ellipse cx='15' cy='44' rx='9' ry='14' transform='rotate(-30 15 44)' fill='none' stroke='%232D4636' stroke-width='0.8' opacity='0.09'/><ellipse cx='85' cy='74' rx='9' ry='14' transform='rotate(25 85 74)' fill='none' stroke='%232D4636' stroke-width='0.8' opacity='0.09'/><ellipse cx='12' cy='106' rx='9' ry='14' transform='rotate(-20 12 106)' fill='none' stroke='%232D4636' stroke-width='0.8' opacity='0.09'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  display: none; /* caché mobile */
}
.branch-deco > * { position: relative; z-index: 1; }

/* ── Page hero (RSE, etc.) ──────────────────────────────── */
.page-hero {
  padding-top: 80px;
  padding-bottom: 48px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-hero__photo { width: 100%; height: auto; border-radius: 14px; display: block; object-fit: cover; object-position: center; }

/* ── Symbiose hero ──────────────────────────────────────── */
.symbiose-hero {
  padding-top: 80px;
  padding-bottom: 0;
  background: var(--ivory);
  overflow: hidden;
  position: relative;
}
.symbiose-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.symbiose-hero__content { padding-bottom: 40px; }
.symbiose-hero__photo { width: 100%; height: auto; border-radius: 14px; display: block; object-fit: cover; object-position: center; }

/* ── Grille avantages (mobile : colonne) ────────────────── */
.advantages-grid { display: flex; flex-direction: column; gap: 24px; }
.advantage {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: 10px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.advantage:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.advantage__icon {
  width: 44px; height: 44px;
  border: 1px solid var(--grey-light);
  display: flex; align-items: center; justify-content: center;
}
.advantage__icon svg { width: 22px; height: 22px; }
.advantage h3 { font-size: 12px; }
.advantage p { font-size: 14px; }

/* ── Conversion cards (mobile) ──────────────────────────── */
.conversion-grid { display: flex; flex-direction: column; gap: 2px; }
.conversion-card {
  background: var(--white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition);
}
.conversion-card:hover { border-bottom-color: var(--ochre); }
.conversion-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--grey-light);
}
.conversion-card__icon svg { width: 24px; height: 24px; stroke: var(--ochre); }
.conversion-card h3 { font-size: 14px; margin-bottom: 4px; }
.conversion-card p { flex: 1; font-size: 14px; }
.conversion-card .btn { align-self: flex-start; width: auto; margin-top: 8px; }

/* ── Blog ───────────────────────────────────────────────── */
.blog-layout { display: flex; flex-direction: column; gap: 48px; }
.blog-grid { display: flex; flex-direction: column; gap: 24px; }

.article-card { background: var(--white); box-shadow: var(--shadow-sm); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; }
.article-card__thumb { aspect-ratio: 16/9; width: 100%; }
.article-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.article-card__badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white); background: var(--forest);
  padding: 3px 10px; align-self: flex-start;
}
.article-card h3 {
  font-family: var(--font-title); font-size: 18px; font-weight: 700;
  color: var(--forest); letter-spacing: 0; text-transform: none;
  line-height: 1.35; flex: 1;
}
.article-card__excerpt { font-size: 13px; color: var(--grey-text); line-height: 1.7; }
.article-card__meta { font-size: 11px; color: var(--grey-text); letter-spacing: 0.08em; }
.article-card__link {
  font-size: 12px; font-weight: 700; color: var(--ochre);
  letter-spacing: 0.1em; text-transform: uppercase; transition: color var(--transition);
}
.article-card__link:hover { color: var(--forest); }
.article-card__link::after { content: ' →'; }

/* ── Article vedette ────────────────────────────────────── */
.featured-article {
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  overflow: hidden;
}
.featured-article__visual { min-height: 240px; position: relative; }
.featured-article__visual .photo-slot {
  position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0;
}
.featured-article__content { padding: 32px 24px; display: flex; flex-direction: column; gap: 14px; }
.featured-article__content h2 {
  font-size: clamp(20px, 4vw, 28px); font-weight: 700;
  color: var(--forest); line-height: 1.3; margin-bottom: 0;
}
.featured-article__tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ochre);
  border: 1px solid var(--ochre); padding: 3px 12px; align-self: flex-start;
}
.featured-article__meta { font-size: 11px; color: var(--grey-text); letter-spacing: 0.08em; }
.featured-article .btn { width: auto; align-self: flex-start; }

/* ── Sidebar blog ───────────────────────────────────────── */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: var(--white); padding: 24px; box-shadow: var(--shadow-sm); }
.sidebar-widget h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-light);
}
.sidebar-bio { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.sidebar-bio__avatar { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; }
.sidebar-bio__avatar.photo-slot::after { font-size: 9px; }
.sidebar-bio p { font-size: 13px; line-height: 1.7; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input {
  width: 100%; padding: 10px 14px; font-family: var(--font-body); font-size: 13px;
  border: 1px solid var(--grey-light); background: var(--ivory);
  outline: none; transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--ochre); }
.newsletter-form .btn { width: 100%; text-align: center; }
.sidebar-cats ul li { padding: 6px 0; border-bottom: 1px solid var(--grey-light); }
.sidebar-cats ul li a {
  font-size: 13px; color: var(--anthracite);
  transition: color var(--transition); display: flex; justify-content: space-between;
}
.sidebar-cats ul li a:hover { color: var(--ochre); }
.sidebar-cats ul li a span { color: var(--grey-text); }

/* ── Encart participatif ────────────────────────────────── */
.participatif-block {
  border: 1px solid var(--ochre);
  padding: 24px;
  margin-bottom: 40px;
}
.participatif-block p { font-family: var(--font-title); font-style: italic; font-size: 15px; color: var(--forest); }
.participatif-block a { color: var(--ochre); text-decoration: underline; }

/* ── Presse éditoriale ──────────────────────────────────── */
.presse-editorial { display: flex; flex-direction: column; gap: 24px; }
.presse-editorial__main { display: flex; flex-direction: column; }
.presse-editorial__aside { display: flex; flex-direction: column; gap: 16px; }

.presse-featured { background: var(--white); box-shadow: var(--shadow); overflow: hidden; }
.presse-featured__media { aspect-ratio: 16/7; position: relative; }
.presse-featured__media .photo-slot { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; }
.presse-featured__body { padding: 28px 24px; }
.presse-featured__body h3 {
  font-family: var(--font-title); font-style: italic; font-size: clamp(18px, 3vw, 22px);
  color: var(--ochre); line-height: 1.4; margin: 8px 0 12px;
}
.presse-small {
  background: var(--white); box-shadow: var(--shadow-sm);
  padding: 20px; display: flex; gap: 14px; align-items: flex-start;
  border-left: 3px solid var(--grey-light); transition: border-color var(--transition);
}
.presse-small:hover { border-left-color: var(--ochre); }
.presse-small__content { flex: 1; }
.presse-small h4 {
  font-family: var(--font-title); font-style: italic; font-size: 15px;
  color: var(--forest); font-weight: 400; line-height: 1.4; margin-bottom: 4px;
}
.presse-small__meta { font-size: 10px; color: var(--grey-text); letter-spacing: 0.1em; text-transform: uppercase; }

.presse-secondary-grid {
  display: flex; flex-direction: column;
  border-top: 2px solid var(--grey-light); margin-top: 0;
}
.presse-secondary-card {
  padding: 24px; border-bottom: 1px solid var(--grey-light); background: var(--white);
}
.presse-secondary-card:last-child { border-bottom: none; }
.presse-secondary-card h4 {
  font-family: var(--font-title); font-style: italic; font-size: 15px;
  color: var(--forest); font-weight: 400; line-height: 1.4; margin-bottom: 6px;
}
.presse-card__source {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--forest); margin-bottom: 6px; display: block;
}

/* ── Contact ────────────────────────────────────────────── */
.contact-layout { display: flex; flex-direction: column; gap: 48px; }
.contact-form-wrap { background: var(--white); padding: 28px 24px; box-shadow: var(--shadow); }
.contact-form-wrap h2 { margin-bottom: 6px; }
.contact-form-wrap > p { margin-bottom: 28px; }
.form-grid { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body); font-size: 15px;
  padding: 13px 16px; background: var(--ivory);
  border: 1px solid var(--grey-light); outline: none;
  transition: border-color var(--transition); color: var(--anthracite);
  border-radius: var(--radius);
  -webkit-appearance: none; appearance: none;
  min-height: 48px; /* touch friendly */
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ochre); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 20px; }
.form-submit .btn { width: 100%; padding: 16px; font-size: 12px; }
.form-success {
  display: none; color: var(--forest); font-family: var(--font-title);
  font-style: italic; font-size: 16px; text-align: center;
  padding: 20px; background: rgba(45,70,54,0.06); margin-top: 14px;
}

/* ── Contact Form 7 — harmonisation ────────────────────── */
.wpcf7-form,
.wpcf7-form .form-grid,
.wpcf7-form .form-group { margin: 0; }
.wpcf7-form p { margin: 0; }

.wpcf7-form-control-wrap { display: block; width: 100%; }

/* Force les champs à prendre 100% et hériter du style existant */
.form-group .wpcf7-form-control-wrap input[type="text"],
.form-group .wpcf7-form-control-wrap input[type="email"],
.form-group .wpcf7-form-control-wrap input[type="tel"],
.form-group .wpcf7-form-control-wrap select,
.form-group .wpcf7-form-control-wrap textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  background: var(--ivory);
  border: 1px solid var(--grey-light);
  outline: none;
  transition: border-color var(--transition);
  color: var(--anthracite);
  border-radius: var(--radius);
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}
.form-group .wpcf7-form-control-wrap input:focus,
.form-group .wpcf7-form-control-wrap select:focus,
.form-group .wpcf7-form-control-wrap textarea:focus {
  border-color: var(--ochre);
}
.form-group .wpcf7-form-control-wrap textarea {
  resize: vertical;
  min-height: 130px;
}

/* Bouton submit — force le style btn */
.wpcf7-form .form-submit input[type="submit"].wpcf7-submit {
  width: 100%;
  padding: 16px;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Messages de validation inline */
.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #c44d3e;
  margin-top: 4px;
  display: block;
}
.form-group .wpcf7-form-control-wrap input.wpcf7-not-valid,
.form-group .wpcf7-form-control-wrap select.wpcf7-not-valid,
.form-group .wpcf7-form-control-wrap textarea.wpcf7-not-valid {
  border-color: #c44d3e;
}

/* Réponse globale (succès/erreur) */
.wpcf7 .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px 20px;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-title);
  font-style: italic;
  font-size: 15px;
  text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--forest);
  background: rgba(45,70,54,0.06);
  color: var(--forest);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-color: #c44d3e;
  background: rgba(196,77,62,0.06);
  color: #c44d3e;
}
.wpcf7-spinner { display: none; }

/* ══════════════════════════════════════════════════════════
   Archives (catégories, tags) & Single post
   ════════════════════════════════════════════════════════ */

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.blog-pagination .dots { border: none; background: transparent; }

/* ── Single post ─────────────────────────────────────────── */
.single-featured {
  padding: 48px 0 0;
}
.single-article {
  padding-top: 48px;
}
.single-content {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--anthracite);
}
.single-content h2,
.single-content h3,
.single-content h4 {
  font-family: var(--font-title);
  color: var(--forest);
  margin-top: 40px;
  margin-bottom: 16px;
}
.single-content h2 { font-size: 28px; }
.single-content h3 { font-size: 22px; font-family: var(--font-body); font-weight: 700; text-transform: none; letter-spacing: 0; }
.single-content h4 { font-size: 18px; font-family: var(--font-body); font-weight: 700; }
.single-content p { margin-bottom: 20px; }
.single-content a {
  color: var(--forest);
  border-bottom: 1px solid var(--ochre);
  transition: color var(--transition);
}
.single-content a:hover { color: var(--ochre); }
.single-content blockquote {
  border-left: 3px solid var(--ochre);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-family: var(--font-title);
  font-style: italic;
  font-size: 19px;
  color: var(--forest);
}
.single-content ul,
.single-content ol {
  margin: 0 0 20px 20px;
  padding-left: 20px;
}
.single-content ul { list-style: disc; }
.single-content ol { list-style: decimal; }
.single-content li { margin-bottom: 8px; }
.single-content img {
  border-radius: 8px;
  margin: 24px 0;
}
.single-content figure { margin: 32px 0; }
.single-content figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--grey-text);
  font-style: italic;
  margin-top: 10px;
}

.single-tags {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-light);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.single-tags a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 100px;
  transition: all var(--transition);
}
.single-tags a:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.single-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-light);
  text-align: center;
}
.single-nav__prev a,
.single-nav__next a {
  color: var(--grey-text);
  font-size: 13px;
  font-family: var(--font-title);
  font-style: italic;
  transition: color var(--transition);
}
.single-nav__prev a:hover,
.single-nav__next a:hover { color: var(--forest); }
.single-nav__back { margin: 8px 0; }

@media (min-width: 768px) {
  .single-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .single-nav__back { margin: 0; }
}

/* ── Capture form webinaire (page Femmes 50+) ──────────── */
.capture-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 440px;
  margin: 0 auto;
}
.capture-form-wrap .form-group { gap: 0; }
.capture-form-wrap .wpcf7-form-control-wrap input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  border: 1.5px solid #F3EDE0;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}
.capture-form-wrap .wpcf7-form-control-wrap input:focus {
  border-color: var(--ochre);
  outline: none;
}
.capture-form-wrap .form-submit { margin-top: 0; }
.capture-form-wrap .form-submit input[type="submit"] {
  width: 100%;
  padding: 14px 18px;
  cursor: pointer;
  border: none;
}

.contact-info { }
.contact-info h2 { margin-bottom: 6px; }
.contact-info > p { margin-bottom: 28px; font-size: 14px; }
.contact-channels { display: flex; flex-direction: column; gap: 20px; }
.contact-channel { display: flex; gap: 14px; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid var(--grey-light); }
.contact-channel:last-child { border-bottom: none; }
.contact-channel__icon { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid var(--grey-light); display: flex; align-items: center; justify-content: center; }
.contact-channel__icon svg { width: 18px; height: 18px; stroke: var(--forest); }
.contact-channel h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest); margin-bottom: 4px; }
.contact-channel p { font-size: 13px; color: var(--grey-text); }
.contact-channel a { color: var(--ochre); }
.contact-direct { margin-top: 24px; padding: 22px; background: var(--ivory); border-left: 3px solid var(--ochre); }
.contact-direct p { font-size: 13px; margin-bottom: 6px; }
.contact-direct a { color: var(--ochre); font-weight: 600; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #2A2A2A 0%, #1E2E22 100%);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; right: 0; bottom: 0;
  width: 220px; height: 320px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 220'><path d='M70 6 C42 32 10 82 24 138 C38 190 70 210 70 210 C70 210 102 190 116 138 C130 82 98 32 70 6Z' fill='none' stroke='%23ffffff' stroke-width='1.4' opacity='0.05'/><line x1='70' y1='6' x2='70' y2='210' stroke='%23ffffff' stroke-width='0.9' opacity='0.04'/></svg>");
  background-size: contain; background-repeat: no-repeat; background-position: bottom right;
  pointer-events: none; opacity: 0.5;
}
.footer__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--container-px); position: relative; z-index: 1; }
.footer__grid { display: flex; flex-direction: column; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer__brand img {
  height: 48px !important;
  width: auto !important;
  max-width: 220px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1) opacity(0.8);
}
.footer__brand p { font-size: 13px; line-height: 1.7; color: var(--white); }
.footer__col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a { font-size: 13px; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--ochre); }
.footer__contact p { font-size: 13px; margin-bottom: 8px; }
.footer__contact a { color: var(--ochre); }
.footer__social { display: flex; gap: 10px; margin-top: 14px; }
.footer__social a {
  width: 40px; height: 40px; /* touch friendly */
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  transition: border-color var(--transition), color var(--transition);
}
.footer__social a:hover { border-color: var(--ochre); color: var(--ochre); }
.footer__bottom { display: flex; flex-direction: column; gap: 8px; font-size: 12px; }
.footer__bottom a:hover { color: var(--ochre); }
.footer__bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Mentions légales ───────────────────────────────────── */
.mentions-hero { padding-top: 80px; padding-bottom: 36px; border-bottom: 1px solid var(--grey-light); }
.mentions-content { max-width: 800px; margin: 0 auto; padding: 48px var(--container-px); }
.mentions-content h2 {
  font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--forest); margin-top: 36px; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid var(--grey-light);
}
.mentions-content p { font-size: 14px; margin-bottom: 10px; }
.mentions-back { text-align: center; margin-top: 40px; }

/* ════════════════════════════════════════════════════════
   BREAKPOINTS — Progressive enhancement
   ════════════════════════════════════════════════════════ */

/* ── sm : 480px ─────────────────────────────────────────── */
@media (min-width: 480px) {
  .btn { white-space: nowrap; }
  .hero__ctas { flex-direction: row; flex-wrap: wrap; }
  .hero__ctas .btn { width: auto; }
  .cta-banner .btn, .big-cta-section .btn { width: auto; }
  .wave-sep svg { height: 50px; }
}

/* ── md : 768px ─────────────────────────────────────────── */
@media (min-width: 768px) {
  :root {
    --section-py: 72px;
    --container-px: 32px;
  }

  .nav { padding: 0 32px; }
  .nav__inner { height: 72px; }
  .nav__logo img { height: 48px !important; }
  .nav__logo-text strong { font-size: 16px; }

  .hero { padding-top: 100px; padding-bottom: 64px; }
  .page-hero, .symbiose-hero { padding-top: 100px; }
  .mentions-hero { padding-top: 100px; }

  /* Grilles 2 colonnes */
  .highlights { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group.full { grid-column: 1 / -1; }
  .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
  .conversion-grid { display: grid; grid-template-columns: repeat(2, 1fr); }

  /* Presse secondary */
  .presse-secondary-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
  .presse-secondary-card { border-bottom: none; border-right: 1px solid var(--grey-light); }
  .presse-secondary-card:last-child { border-right: none; }

  /* Featured article 2 cols */
  .featured-article { display: grid; grid-template-columns: 1fr 1fr; }
  .featured-article__visual { min-height: 360px; }
  .featured-article__content { padding: 48px 40px; }

  /* Advantages 2 cols */
  .advantages-grid { display: grid; grid-template-columns: repeat(2, 1fr); }

  /* Piliers 3 cols */
  .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
  .pillar h3 { display: block; }

  /* Offer block */
  .offer-block { padding: 48px; }

  /* Contact form */
  .contact-form-wrap { padding: 48px; }

  /* Cles 3 cols */
  .cles-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
}

/* ── lg : 1024px ────────────────────────────────────────── */
@media (min-width: 1024px) {
  :root { --section-py: 96px; }

  /* Nav — menu horizontal */
  .nav__menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-top: none;
    gap: 4px;
  }
  .nav__menu a { padding: 8px 12px; }
  .nav__menu .btn { width: auto; margin-top: 0; margin-left: 8px; padding: 9px 20px; }
  .nav__toggle { display: none; }

  /* Hero 2 colonnes */
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
    flex-direction: unset;
  }
  .hero__photo { aspect-ratio: 3/4; }
  .hero__ctas .btn { width: auto; }

  /* Page hero 2 colonnes */
  .page-hero__inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 80px;
    align-items: center;
    flex-direction: unset;
  }
  .page-hero__photo { aspect-ratio: 3/4; }

  /* Symbiose hero 2 colonnes */
  .symbiose-hero__inner {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 64px;
    align-items: end;
    flex-direction: unset;
  }
  .symbiose-hero__content { padding-bottom: 72px; }
  .symbiose-hero__photo { aspect-ratio: 4/5; }

  /* About 2 colonnes */
  .about__inner {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 80px;
    align-items: center;
    flex-direction: unset;
  }
  .about__photo { aspect-ratio: 4/5; }

  /* Editorial split 2 colonnes */
  .editorial-split,
  .editorial-split__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    flex-direction: unset;
  }
  .editorial-split > .editorial-split__inner {
    grid-column: 1 / -1;
  }
  .editorial-split__visual { min-height: 480px; }
  .editorial-split__content { padding: 72px 64px; }
  .editorial-num { font-size: 96px; margin-bottom: -16px; }
  .branch-deco::before { display: block; }

  /* Offer block 2 colonnes */
  .offer-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 64px;
    flex-direction: unset;
  }
  .offer-visual { aspect-ratio: 1; }

  /* Blog avec sidebar */
  .blog-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 56px;
    flex-direction: unset;
  }
  .blog-sidebar { position: sticky; top: 88px; }

  /* Advantages 4 colonnes */
  .advantages-grid { grid-template-columns: repeat(4, 1fr); }

  /* Presse éditoriale */
  .presse-editorial {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    flex-direction: unset;
  }

  /* Contact 2 colonnes */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    flex-direction: unset;
  }
  .contact-info { position: sticky; top: 88px; }
  .contact-form-wrap { padding: 56px; }

  /* Footer 4 colonnes */
  .footer__grid { grid-template-columns: 220px 1fr 1fr 1fr; gap: 48px; }

  /* Botanical decoration taille desktop */
  .botanical-bg::after { width: 320px; height: 480px; }

  /* CTA */
  .cta-banner::after {
    content: '';
    position: absolute;
    left: -60px; top: 50%;
    transform: translateY(-50%);
    width: 280px; height: 420px;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 220'><path d='M70 6 C42 32 10 82 24 138 C38 190 70 210 70 210 C70 210 102 190 116 138 C130 82 98 32 70 6Z' fill='none' stroke='%23ffffff' stroke-width='1.4' opacity='0.08'/><line x1='70' y1='6' x2='70' y2='210' stroke='%23ffffff' stroke-width='0.9' opacity='0.06'/></svg>");
    background-size: contain; background-repeat: no-repeat;
    pointer-events: none; z-index: 0;
  }
}

/* ── xl : 1280px ────────────────────────────────────────── */
@media (min-width: 1280px) {
  .hero__inner { grid-template-columns: 1fr 440px; gap: 96px; }
  .about__inner { grid-template-columns: 1fr 480px; gap: 96px; }
  .symbiose-hero__inner { grid-template-columns: 1fr 480px; }
}

/* ══════════════════════════════════════════════════════════
   Touches originales — curseur · reveal · typo · boutons
   ══════════════════════════════════════════════════════════ */

/* Sélection de texte */
::selection { background: var(--ochre); color: #fff; }


/* ── Nav — underline wipe droite→gauche ─────────────────── */
.nav__menu a:not(.btn) { position: relative; }
.nav__menu a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--ochre);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__menu a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__menu a:not(.btn).active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── Boutons — slide fill ────────────────────────────────── */
.btn-primary {
  background-image: linear-gradient(to right, var(--forest) 50%, var(--ochre) 50%);
  background-size: 201% 100%;
  background-position: right center;
  transition: background-position 0.5s cubic-bezier(0.22,1,0.36,1),
              color var(--transition), border-color var(--transition);
}
.btn-primary:hover {
  background: unset;
  background-image: linear-gradient(to right, var(--forest) 50%, var(--ochre) 50%);
  background-size: 201% 100%;
  background-position: left center;
}
.btn-outline {
  background-image: linear-gradient(to right, var(--forest) 50%, transparent 50%);
  background-size: 201% 100%;
  background-position: right center;
  transition: background-position 0.5s cubic-bezier(0.22,1,0.36,1),
              color var(--transition), border-color var(--transition);
}
.btn-outline:hover {
  background: unset;
  background-image: linear-gradient(to right, var(--forest) 50%, transparent 50%);
  background-size: 201% 100%;
  background-position: left center;
  color: var(--white);
  border-color: var(--forest);
}
.btn-outline-white {
  background-image: linear-gradient(to right, rgba(255,255,255,0.18) 50%, transparent 50%);
  background-size: 201% 100%;
  background-position: right center;
  transition: background-position 0.5s cubic-bezier(0.22,1,0.36,1),
              color var(--transition), border-color var(--transition);
}
.btn-outline-white:hover {
  background: unset;
  background-image: linear-gradient(to right, rgba(255,255,255,0.18) 50%, transparent 50%);
  background-size: 201% 100%;
  background-position: left center;
  color: var(--white);
}

/* ── Lettrine sur les leads ──────────────────────────────── */
.section .lead::first-letter,
.article-header__intro::first-letter {
  font-family: var(--font-title);
  font-size: 3.8em;
  line-height: 0.72;
  float: left;
  margin: 4px 10px 0 0;
  color: var(--ochre);
  font-weight: 400;
  font-style: italic;
}

/* ── Ligne animée sous les titres (scroll reveal) ────────── */
.title-line { position: relative; }
.title-line::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--ochre);
  margin-top: 18px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
.title-line.in-view::after { transform: scaleX(1); }

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   Page Femmes Actives 50+ — accent féminin
   ════════════════════════════════════════════════════════ */

.page-femmes { --femme-rose: #B5736C; }

.page-femmes .label                  { color: var(--femme-rose); }
.page-femmes .section-title::before  { background: var(--femme-rose); opacity: 0.5; }
.page-femmes .pillar__number         { color: var(--femme-rose); }
.page-femmes .pillar:hover           { border-top-color: var(--femme-rose); }
.page-femmes .big-cta-section .ochre-tag { background: var(--femme-rose); }
.page-femmes .cle-card::before { color: rgba(181, 115, 108, 0.22); }
.page-femmes .section-title h2 { font-style: italic; }
.page-femmes .section-title::after {
  content: '✦';
  display: block;
  font-size: 11px;
  color: var(--femme-rose);
  opacity: 0.55;
  margin-top: 14px;
  letter-spacing: 0.3em;
}
.page-femmes .section-title.center::after { text-align: center; }
.page-femmes .empathy-block { border-left-color: var(--femme-rose); }
.page-femmes .urgency-strip {
  background: linear-gradient(90deg, #9E5B55 0%, var(--femme-rose) 50%, #9E5B55 100%);
}
.page-femmes .testimonial-card {
  border-left-color: var(--femme-rose);
  background: linear-gradient(to right, rgba(181,115,108,0.07) 0%, var(--white) 35%);
  position: relative;
  overflow: visible;
}
.page-femmes .testimonial-card::before {
  content: '\201C';
  font-family: var(--font-title);
  font-size: 130px;
  line-height: 1;
  color: rgba(181, 115, 108, 0.16);
  position: absolute;
  top: -22px;
  left: 8px;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   Originalité — curseur · botaniques · compteurs
   ════════════════════════════════════════════════════════ */

/* ── Flottement des botaniques ───────────────────────────── */
@keyframes botanical-float {
  0%   { transform: translateY(0px)   rotate(0deg); }
  50%  { transform: translateY(-9px)  rotate(1.2deg); }
  100% { transform: translateY(0px)   rotate(0deg); }
}
@media (prefers-reduced-motion: no-preference) {
  .botanical-bg::after {
    animation: botanical-float 8s ease-in-out infinite;
  }
  .botanical-bg--inv::after {
    animation: botanical-float 10s ease-in-out infinite reverse;
  }
}

/* ── Compteurs — legère mise en valeur au démarrage ─────── */
.highlight__num {
  display: inline-block;
  transition: opacity 0.4s ease;
}

/* ══════════════════════════════════════════════════════════
   Entrées de page — fade global + cascade hero
   ════════════════════════════════════════════════════════ */

@keyframes nb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes nb-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes nb-fade-right {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes nb-slide-down {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: no-preference) {

  body { animation: nb-fade-in 0.5s ease both; }

  .nav { animation: nb-slide-down 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both; }

  .hero__content > *,
  .page-hero__content > *,
  .symbiose-hero__content > * {
    animation: nb-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero__content > *:nth-child(1),
  .page-hero__content > *:nth-child(1),
  .symbiose-hero__content > *:nth-child(1) { animation-delay: 0.20s; }
  .hero__content > *:nth-child(2),
  .page-hero__content > *:nth-child(2),
  .symbiose-hero__content > *:nth-child(2) { animation-delay: 0.32s; }
  .hero__content > *:nth-child(3),
  .page-hero__content > *:nth-child(3),
  .symbiose-hero__content > *:nth-child(3) { animation-delay: 0.44s; }
  .hero__content > *:nth-child(4),
  .page-hero__content > *:nth-child(4),
  .symbiose-hero__content > *:nth-child(4) { animation-delay: 0.56s; }
  .hero__content > *:nth-child(5),
  .page-hero__content > *:nth-child(5),
  .symbiose-hero__content > *:nth-child(5) { animation-delay: 0.68s; }

  .hero__visual,
  .page-hero__visual,
  .symbiose-hero__visual {
    animation: nb-fade-right 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
  }
}

/* ══════════════════════════════════════════════════════════
   Fantaisie — feuilles flottantes · pulse · shimmer titres
   ════════════════════════════════════════════════════════ */

/* ── Feuilles qui dérivent dans le fond ──────────────────── */
.nb-leaves {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.nb-leaf {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><path d='M30 4 C16 16 8 32 14 46 C20 56 36 56 44 46 C52 34 48 18 30 4 Z M30 14 L30 50' fill='none' stroke='%232D4636' stroke-width='1.6' stroke-linecap='round'/></svg>");
}
@keyframes nb-drift-1 {
  0%   { transform: translate(0, -10vh) rotate(0deg);    opacity: 0; }
  10%  { opacity: 0.35; }
  90%  { opacity: 0.35; }
  100% { transform: translate(40px, 110vh) rotate(160deg); opacity: 0; }
}
@keyframes nb-drift-2 {
  0%   { transform: translate(0, -10vh) rotate(-20deg);   opacity: 0; }
  15%  { opacity: 0.28; }
  85%  { opacity: 0.28; }
  100% { transform: translate(-60px, 110vh) rotate(-200deg); opacity: 0; }
}
@media (prefers-reduced-motion: no-preference) {
  .nb-leaf--a { animation: nb-drift-1 34s linear infinite; }
  .nb-leaf--b { animation: nb-drift-2 42s linear infinite; }
}
@media (max-width: 768px) {
  .nb-leaves { display: none; }
}

/* ── Respiration douce des CTA primaires ─────────────────── */
@keyframes nb-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 119, 36, 0.45); }
  50%      { box-shadow: 0 0 0 10px rgba(217, 119, 36, 0); }
}
@media (prefers-reduced-motion: no-preference) {
  .btn-primary {
    animation: nb-breathe 3.2s ease-in-out infinite;
  }
  .btn-primary:hover { animation: none; }
}

/* ── Shimmer doré sur les italiques des grands titres ───── */
@keyframes nb-shimmer {
  0%   { background-position:  200% center; }
  100% { background-position: -200% center; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero h1 em,
  .symbiose-hero h1 em {
    background-image: linear-gradient(
      100deg,
      var(--forest) 0%,
      var(--forest) 40%,
      var(--ochre)  50%,
      var(--forest) 60%,
      var(--forest) 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: nb-shimmer 6s linear infinite;
  }
  .symbiose-hero h1 em {
    background-image: linear-gradient(
      100deg,
      var(--femme-rose, #B5736C) 0%,
      var(--femme-rose, #B5736C) 40%,
      var(--ochre)               50%,
      var(--femme-rose, #B5736C) 60%,
      var(--femme-rose, #B5736C) 100%
    );
  }
}
