/*
Theme Name:   GeneratePress Child — Émilie Rose
Description:  Child theme for Algiz Therapy / Émilie Rose
Template:     generatepress
Version:      2.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════ */
:root {
  --er-vert:        #3D6B5A;
  --er-vert-light:  #4d7f6d;
  --er-vert-dark:   #2d5244;
  --er-sauge:       #8DA399;
  --er-sauge-pale:  #c5d5cf;
  --er-cuivre:      #C4906A;
  --er-cuivre-dark: #a8784f;
  --er-cuivre-glow: rgba(196,144,106,.35);
  --er-blanc:       #F9F7F2;
  --er-beige:       #EFE9E1;
  --er-beige-dark:  #e2d9ce;
  --er-bois:        #B8977E;
  --er-bleu:        #2C3E50;
  --er-texte:       #3d3d3d;
  --er-texte-light: #6b7a85;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', system-ui, sans-serif;

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill: 50px;

  --shadow-sm:  0 2px 12px rgba(44,62,80,.06);
  --shadow-md:  0 6px 28px rgba(44,62,80,.10);
  --shadow-lg:  0 16px 56px rgba(44,62,80,.14);
  --shadow-cu:  0 8px 32px rgba(196,144,106,.3);

  --ease:       cubic-bezier(.4,0,.2,1);
  --ease-out:   cubic-bezier(0,.55,.45,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  --section-pad: clamp(80px, 10vw, 140px);
}

/* ═══════════════════════════════════════════════
   ANIMATIONS KEYFRAMES
   ═══════════════════════════════════════════════ */
@keyframes er-fadeUp    { from { opacity:0; transform:translateY(40px) } to { opacity:1; transform:translateY(0) } }
@keyframes er-fadeIn    { from { opacity:0 } to { opacity:1 } }
@keyframes er-slideRight{ from { opacity:0; transform:translateX(-40px) } to { opacity:1; transform:translateX(0) } }
@keyframes er-slideLeft { from { opacity:0; transform:translateX(40px) } to { opacity:1; transform:translateX(0) } }
@keyframes er-scaleIn   { from { opacity:0; transform:scale(.92) } to { opacity:1; transform:scale(1) } }
@keyframes er-shimmer   { 0%,100%{opacity:.6} 50%{opacity:1} }
@keyframes er-float     { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes er-pulse-ring{ 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.5);opacity:0} }
@keyframes er-gradient  { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes er-bar-grow  { from{width:0} to{width:40px} }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
   ═══════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal="up"]    { transform: translateY(50px) }
[data-reveal="left"]  { transform: translateX(-50px) }
[data-reveal="right"] { transform: translateX(50px) }
[data-reveal="scale"] { transform: scale(.9) }
[data-reveal="fade"]  { transform: none }
[data-reveal].is-visible { opacity:1; transform:none }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal].is-visible { opacity:1; transform:none; transition:none }
}

/* ═══════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  background-color: var(--er-blanc) !important;
  color: var(--er-texte);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block }
a { color:var(--er-cuivre); text-decoration:none; transition:color .22s var(--ease) }
a:hover { color:var(--er-vert) }

/* ═══════════════════════════════════════════════
   GENERATEPRESS OVERRIDES
   ═══════════════════════════════════════════════ */
.site-header,
.site-header .inside-header {
  background-color: var(--er-blanc) !important;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: border-color .3s, box-shadow .3s, background-color .3s;
}
.site-header.is-scrolled {
  border-color: var(--er-beige) !important;
  box-shadow: 0 4px 24px rgba(44,62,80,.08) !important;
  background-color: rgba(249,247,242,.96) !important;
  backdrop-filter: blur(12px);
}
.inside-header {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 76px;
  display: flex;
  align-items: center;
}
.site-logo img,
.site-logo .is-logo-image,
.header-image.is-logo-image {
  max-height: 70px !important;
  width: auto !important;
  height: auto !important;
  transition: transform .3s var(--ease-spring);
  border-radius: 50%;
}
.site-logo:hover img { transform: scale(1.04) }

.main-navigation .main-nav ul li a {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--er-bleu) !important;
  padding: 8px 18px;
  transition: color .2s var(--ease);
  position: relative;
}
.main-navigation .main-nav ul li > a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 1.5px;
  background: var(--er-cuivre);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.main-navigation .main-nav ul li > a:hover::after,
.main-navigation .main-nav ul li[class*="current-menu-"] > a::after { transform: scaleX(1); transform-origin: left }
.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li[class*="current-menu-"] > a { color: var(--er-cuivre) !important }

.main-navigation ul ul {
  background-color: var(--er-blanc) !important;
  border: 1px solid var(--er-beige);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  overflow: hidden;
}
.main-navigation ul ul li a {
  font-size: .75rem !important;
  padding: 10px 16px !important;
  margin: 2px 6px !important;
  border-radius: 6px !important;
  transition: background .2s, color .2s !important;
}
.main-navigation ul ul li a:hover {
  background: var(--er-beige) !important;
}
.main-navigation ul ul li a::after { display: none }
/* Couleurs EMDR / LaHoChi dans le dropdown */
.main-navigation ul ul li a[href*="/emdr/"] { color: var(--er-vert) !important; font-weight: 500 !important }
.main-navigation ul ul li a[href*="/lahochi/"] { color: var(--er-bleu) !important; font-weight: 500 !important }
/* Prose content (pages EMDR / LaHoChi) */
.er-content-prose { line-height: 1.9; color: var(--er-bleu) }
.er-content-prose p { margin: 0 0 1.4em }
.er-content-prose p:last-child { margin-bottom: 0 }
.er-content-prose h3 { margin: 2em 0 .6em }

.entry-title, .entry-header, .widget-area, #secondary, .sidebar { display:none !important }
/* ── Suppression du cadre GP : site pleine largeur ── */
.site-container,
.grid-container { max-width:100% !important; padding-left:0 !important; padding-right:0 !important; }

/* Header : remettre un peu de respiration interne */
.site-header .inside-header { padding-inline: clamp(20px,4vw,64px) !important; }

.content-area, .site-content .content-area { width:100% !important; max-width:100% !important }
.entry-content { padding:0 !important; max-width:100% !important }
.separate-containers .inside-article { padding:0 !important; background:transparent !important; box-shadow:none !important; border-radius:0 !important }
.site-main { max-width:100% !important; padding:0 !important }
.site-main .wp-block-group__inner-container,
.entry-content .wp-block-group__inner-container { padding:0 !important; max-width:100% !important }

/* ═══════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════ */
.er-section { width:100%; overflow:hidden; position:relative }
.er-container { max-width:1440px; margin-inline:auto; padding-inline:clamp(20px,4vw,64px) }
.er-container--narrow { max-width:800px }
.er-container--wide   { max-width:1600px }

.er-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center }
.er-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:32px }
.er-grid-3--services { display:grid; grid-template-columns:repeat(3,1fr); gap:28px }

@media (max-width:960px) {
  .er-grid-2 { grid-template-columns:1fr; gap:48px }
  .er-grid-3, .er-grid-3--services { grid-template-columns:1fr; gap:20px }
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.er-hero {
  background-color: var(--er-vert);
  background-image:
    radial-gradient(ellipse 70% 60% at var(--cursor-x, 30%) var(--cursor-y, 70%), rgba(196,144,106,.18) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 80% 20%, rgba(141,163,153,.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 10%, rgba(61,107,90,.8) 0%, transparent 70%);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  --cursor-x: 30%;
  --cursor-y: 70%;
}

/* Rune Algiz en filigrane */
.er-hero::before {
  content: 'ᛉ';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(260px, 30vw, 420px);
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: serif;
}

/* Ligne décorative gauche */
.er-hero::after {
  content: '';
  position: absolute;
  left: clamp(24px, 5vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.3), transparent);
}

.er-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  padding: 100px clamp(24px,6vw,80px);
}

.er-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--er-sauge-pale);
  margin-bottom: 32px;
  animation: er-fadeIn 1s both .2s;
}
.er-hero__eyebrow::before,
.er-hero__eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--er-sauge-pale);
  opacity: .6;
}

.er-hero__title {
  font-family: var(--font-serif) !important;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 36px;
  letter-spacing: -.02em;
  animation: er-fadeUp 1s var(--ease-out) both .4s;
}

/* Soulignement cuivre sur le dernier mot */
.er-hero__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.er-hero__title em::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--er-cuivre);
  transform-origin: left;
  animation: er-bar-grow .8s var(--ease-out) both 1.2s;
}

.er-hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,.72);
  margin: 0 auto 56px;
  max-width: 500px;
  animation: er-fadeUp .9s var(--ease-out) both .7s;
}

.er-hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: er-fadeUp .8s var(--ease-out) both .9s;
}

/* Scroll indicator */
.er-hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  animation: er-fadeIn 1s both 1.5s;
}
.er-hero__scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: er-float 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   BOUTONS
   ═══════════════════════════════════════════════ */
.er-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: var(--r-pill);
  transition: transform .3s var(--ease-spring), box-shadow .3s var(--ease), background-color .25s, color .25s, border-color .25s;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Shimmer au survol */
.er-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transition: left .5s var(--ease);
}
.er-btn:hover::before { left: 160% }

.er-btn--primary {
  background-color: var(--er-cuivre);
  color: #fff !important;
  border: 2px solid var(--er-cuivre);
  box-shadow: 0 4px 20px rgba(196,144,106,.25);
}
.er-btn--primary:hover {
  background-color: var(--er-cuivre-dark);
  border-color: var(--er-cuivre-dark);
  box-shadow: var(--shadow-cu);
  color: #fff !important;
}

.er-btn--outline {
  background: transparent;
  color: rgba(255,255,255,.88) !important;
  border: 1.5px solid rgba(255,255,255,.32);
  backdrop-filter: blur(8px);
}
.er-btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: #fff !important;
}

.er-btn--outline-dark {
  background: transparent;
  color: var(--er-bleu) !important;
  border: 1.5px solid var(--er-bleu);
}
.er-btn--outline-dark:hover {
  background: var(--er-bleu);
  color: #fff !important;
}

.er-btn--light {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: #fff !important;
}
.er-btn--light:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.er-btn--light::before { background: rgba(255,255,255,.1) }

.er-btn--ghost {
  background: none;
  border: none;
  padding-inline: 0;
  color: var(--er-cuivre) !important;
  font-size: .72rem;
  letter-spacing: .14em;
  position: relative;
}
.er-btn--ghost::after { content: ' →'; transition: margin-left .25s var(--ease) }
.er-btn--ghost::before { display: none }
.er-btn--ghost:hover { color: var(--er-vert) !important }
.er-btn--ghost:hover::after { margin-left: 4px }

/* Underline animé */
.er-btn--ghost .er-btn__line {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--er-cuivre);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.er-btn--ghost:hover .er-btn__line { transform: scaleX(1); transform-origin: left }

/* ═══════════════════════════════════════════════
   SECTION HELPERS
   ═══════════════════════════════════════════════ */
.er-section-header { margin-bottom: 64px }
.er-section-header--center { text-align: center }
.er-section-header__label {
  font-family: var(--font-sans);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--er-sauge);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.er-section-header--center .er-section-header__label { justify-content: center }
.er-section-header__label::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--er-cuivre);
  flex-shrink: 0;
}
.er-section-header__title {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--er-bleu);
  margin: 0;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════
   INTRO
   ═══════════════════════════════════════════════ */
.er-intro { background:#fff; padding: var(--section-pad) 0 }
.er-intro__text-col { padding-right: 24px }
.er-intro__bar {
  width: 0; height: 2px;
  background: var(--er-cuivre);
  border: none;
  margin: 0 0 36px;
}
.er-intro__bar.is-visible { animation: er-bar-grow .7s var(--ease-out) forwards }
.er-intro__body { color: var(--er-texte-light); margin-bottom: 18px; font-size: 1rem; line-height: 1.9 }

.er-intro__img-col { position: relative }
.er-intro__img-col img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  transition: transform .6s var(--ease);
}
.er-intro__img-col:hover img { transform: scale(1.02) }

.er-intro__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--er-cuivre);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  max-width: 200px;
  line-height: 1.5;
  box-shadow: var(--shadow-cu);
  user-select: none;
  word-break: keep-all;
  animation: er-float 4s ease-in-out infinite;
}

@media (max-width: 960px) {
  .er-intro__text-col { padding-right: 0 }
  .er-intro__img-col img { height: 360px }
  .er-intro__badge { bottom: 16px; left: 16px; font-size: .9rem; padding: 14px 16px }
}

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
.er-services { background: var(--er-beige); padding: var(--section-pad) 0 }

.er-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 44px 36px 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* Bord gradient top */
.er-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--er-cuivre), var(--er-sauge));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.er-card:hover::before { transform: scaleX(1) }
.er-card:hover { box-shadow: var(--shadow-lg) }

.er-card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--er-beige), var(--er-beige-dark));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  font-size: 24px;
  transition: transform .3s var(--ease-spring);
}
.er-card:hover .er-card__icon { transform: scale(1.12) rotate(-5deg) }

.er-card__title {
  font-family: var(--font-serif) !important;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--er-vert);
  margin: 0 0 12px;
}
.er-card__body {
  font-size: .92rem;
  color: var(--er-texte-light);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 28px;
}
.er-card__link {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--er-cuivre) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s var(--ease), color .25s;
}
.er-card__link span { transition: transform .25s var(--ease) }
.er-card:hover .er-card__link { color: var(--er-vert) !important }
.er-card:hover .er-card__link span { transform: translateX(4px) }

/* ═══════════════════════════════════════════════
   VALEURS
   ═══════════════════════════════════════════════ */
.er-valeurs { background: #fff; padding: var(--section-pad) 0 }
.er-valeur { position: relative; padding-left: 0 }

.er-valeur__num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--er-beige-dark);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
  transition: color .4s var(--ease);
}
.er-valeur:hover .er-valeur__num { color: var(--er-cuivre) }

.er-valeur__title {
  font-family: var(--font-serif) !important;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--er-vert);
  margin: 0 0 12px;
}
.er-valeur__body {
  font-size: .92rem;
  color: var(--er-texte-light);
  line-height: 1.85;
  margin: 0;
}

/* Séparateur vertical */
.er-grid-3.er-valeurs__grid > .er-valeur:not(:last-child) {
  border-right: 1px solid var(--er-beige);
  padding-right: 40px;
}
.er-grid-3.er-valeurs__grid > .er-valeur:not(:first-child) { padding-left: 40px }

@media (max-width: 960px) {
  .er-grid-3.er-valeurs__grid > .er-valeur:not(:last-child) { border-right: none; border-bottom: 1px solid var(--er-beige); padding-right: 0; padding-bottom: 32px }
  .er-grid-3.er-valeurs__grid > .er-valeur:not(:first-child) { padding-left: 0; padding-top: 32px }
}

/* ═══════════════════════════════════════════════
   CITATION
   ═══════════════════════════════════════════════ */
.er-citation {
  background-color: var(--er-vert);
  background-image: linear-gradient(135deg, var(--er-vert-dark) 0%, var(--er-vert) 50%, var(--er-vert-light) 100%);
  background-size: 200% 200%;
  animation: er-gradient 8s ease infinite;
  padding: clamp(80px, 12vw, 140px) 0;
}
.er-citation::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(180px, 22vw, 320px);
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.er-citation__inner { max-width: 760px; margin-inline: auto; text-align: center; position: relative; z-index: 1 }
.er-citation__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.55;
  margin: 0 0 32px;
}
.er-citation__quote em {
  font-style: normal;
  color: var(--er-cuivre);
  position: relative;
}
.er-citation__source {
  font-family: var(--font-sans);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--er-sauge-pale);
}

/* ═══════════════════════════════════════════════
   CABINET
   ═══════════════════════════════════════════════ */
.er-cabinet { background: var(--er-beige); padding: var(--section-pad) 0 }
.er-cabinet__text { padding-right: 24px }
.er-cabinet__body { font-size: 1rem; color: var(--er-texte-light); line-height: 1.9; margin-bottom: 14px }
.er-cabinet__address {
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 500;
  color: var(--er-vert);
  margin: 24px 0 36px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.er-cabinet__photos {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.er-cabinet__photos img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  opacity: 0;
  transform: scale(.97);
}
.er-cabinet__photos img.is-loaded { opacity: 1; transform: scale(1) }
.er-cabinet__photos img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); z-index: 1; position: relative }
.er-cabinet__photos img:first-child {
  grid-row: span 2;
  border-radius: var(--r-xl);
}

@media (max-width: 960px) {
  .er-cabinet__text { padding-right: 0; margin-bottom: 40px }
  .er-cabinet__photos { grid-template-columns: 1fr; grid-template-rows: 280px 200px 200px }
  .er-cabinet__photos img:first-child { grid-row: span 1 }
}

/* ═══════════════════════════════════════════════
   TÉMOIGNAGES
   ═══════════════════════════════════════════════ */
.er-temoignages { background: #fff; padding: var(--section-pad) 0 }

.er-temoignage {
  background: var(--er-blanc);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease);
}
.er-temoignage::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 28px;
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--er-cuivre);
  opacity: .15;
  line-height: 1;
  pointer-events: none;
}
.er-temoignage:hover { transform: translateY(-6px); box-shadow: var(--shadow-md) }

.er-temoignage__stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.er-temoignage__quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--er-bleu);
  line-height: 1.85;
  margin: 0 0 24px;
}
.er-temoignage__author {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  color: var(--er-sauge);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.er-temoignage__author::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--er-cuivre);
}

/* Slider */
.er-slider { position: relative; overflow: hidden }
.er-slider__track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.er-slider__slide {
  min-width: 100%;
  padding: 0 8px;
  box-sizing: border-box;
}
.er-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.er-slider__btn {
  background: transparent;
  border: 1.5px solid var(--er-cuivre);
  color: var(--er-cuivre);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: background .2s, color .2s;
  display: flex; align-items: center; justify-content: center;
}
.er-slider__btn:hover { background: var(--er-cuivre); color: #fff }
.er-slider__dots { display: flex; gap: 8px }
.er-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--er-bois);
  opacity: .3;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.er-slider__dot.is-active { opacity: 1; transform: scale(1.3) }

/* Google badge */
.er-temoignages__google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: var(--er-bleu);
  opacity: .7;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════ */
.er-cta {
  background-color: var(--er-vert);
  background-image:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(196,144,106,.12) 0%, transparent 70%),
    linear-gradient(135deg, var(--er-vert-dark), var(--er-vert) 50%, var(--er-vert-light));
  padding: var(--section-pad) 0;
  text-align: center;
}
.er-cta__inner { position: relative; z-index: 1 }

.er-cta__title {
  font-family: var(--font-serif) !important;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.1;
}
.er-cta__body,
.er-cta__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  line-height: 1.85;
  max-width: 440px;
  margin: 0 auto 52px;
}
.er-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap }

/* ═══════════════════════════════════════════════
   RESPONSIVE UTILS
   ═══════════════════════════════════════════════ */
@media (max-width: 640px) {
  .er-hero::before { display: none }
  .er-hero__title { font-size: clamp(2.6rem, 10vw, 3.5rem) }
  .er-intro__badge { display: none }
  .er-card { padding: 32px 24px }
}

/* ═══════════════════════════════════════════════
   PAGE HERO (pages intérieures)
   ═══════════════════════════════════════════════ */
.er-page-hero {
  background: var(--er-beige);
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.er-page-hero::before {
  content: attr(data-rune);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(200px, 28vw, 380px);
  color: rgba(61,107,90,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.er-page-hero--vert {
  background: var(--er-vert);
  background-image: linear-gradient(135deg, var(--er-vert-dark), var(--er-vert) 60%, var(--er-vert-light));
}
.er-page-hero--vert .er-page-hero__eyebrow { color: var(--er-sauge-pale) }
.er-page-hero--vert .er-page-hero__title { color: #fff }
.er-page-hero--vert .er-page-hero__subtitle { color: rgba(255,255,255,.72) }
.er-page-hero--vert::before { color: rgba(255,255,255,.04) }
.er-page-hero--bleu {
  background: var(--er-bleu);
  background-image: linear-gradient(135deg, #1e2d3d, var(--er-bleu));
}
.er-page-hero--bleu .er-page-hero__eyebrow { color: var(--er-sauge) }
.er-page-hero--bleu .er-page-hero__title { color: #fff }
.er-page-hero--bleu .er-page-hero__subtitle { color: rgba(255,255,255,.68) }
.er-page-hero--bleu::before { color: rgba(255,255,255,.03) }

.er-page-hero__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; padding-inline: 24px }
.er-page-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--er-sauge);
  display: block;
  margin-bottom: 20px;
}
.er-page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--er-bleu);
  line-height: 1.1;
  margin: 0 0 24px;
}
.er-page-hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--er-texte-light);
  line-height: 1.9;
  margin: 0 0 40px;
}

/* ═══════════════════════════════════════════════
   STEPS (étapes numérotées)
   ═══════════════════════════════════════════════ */
.er-steps { display: flex; flex-direction: column; gap: 0 }
.er-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 32px;
  position: relative;
  padding-bottom: 48px;
}
.er-step:last-child { padding-bottom: 0 }
.er-step__num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--er-beige-dark);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.er-step__line {
  position: absolute;
  top: 56px; left: 35px;
  width: 2px;
  height: calc(100% - 56px);
  background: linear-gradient(to bottom, var(--er-beige-dark), transparent);
}
.er-step:last-child .er-step__line { display: none }
.er-step__content { padding-top: 8px }
.er-step__icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}
.er-step__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--er-bleu);
  margin: 0 0 12px;
}
.er-step__body {
  font-size: .97rem;
  color: var(--er-texte-light);
  line-height: 1.9;
  margin: 0;
}

/* ═══════════════════════════════════════════════
   POUR QUI (liste stylisée)
   ═══════════════════════════════════════════════ */
.er-pour-qui { background: var(--er-beige); padding: var(--section-pad) 0 }
.er-pour-qui__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.er-pour-qui__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.7);
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-size: .97rem;
  color: var(--er-texte);
  line-height: 1.7;
  transition: background .25s var(--ease), transform .25s var(--ease-spring);
}
.er-pour-qui__list li:hover { background: #fff; transform: translateY(-2px) }
.er-pour-qui__list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--er-sauge);
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.er-pour-qui__note {
  margin-top: 36px;
  font-size: .97rem;
  font-style: italic;
  color: var(--er-texte-light);
  line-height: 1.8;
  padding: 20px 28px;
  border-left: 3px solid var(--er-sauge);
  background: rgba(255,255,255,.5);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* ═══════════════════════════════════════════════
   VALIDATION (institutions)
   ═══════════════════════════════════════════════ */
.er-validation { background: var(--er-bleu); padding: var(--section-pad) 0 }
.er-validation .er-section-header__label { color: var(--er-sauge) }
.er-validation .er-section-header__title { color: #fff }
.er-validation__intro { color: rgba(255,255,255,.7); font-size: .97rem; line-height: 1.9; margin-bottom: 48px; text-align: center }
.er-grid-3--validation { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px }
.er-valid-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  text-align: center;
  transition: background .3s var(--ease), transform .3s var(--ease-spring);
}
.er-valid-card:hover { background: rgba(255,255,255,.1); transform: translateY(-6px) }
.er-valid-card__org {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--er-cuivre);
  margin-bottom: 16px;
}
.er-valid-card__body { font-size: .93rem; color: rgba(255,255,255,.68); line-height: 1.8 }
@media (max-width: 760px) { .er-grid-3--validation { grid-template-columns: 1fr } }

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════ */
.er-faq { padding: var(--section-pad) 0; background: #fff }
.er-faq__list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 0 }
.er-faq__item {
  border-bottom: 1px solid var(--er-beige-dark);
  overflow: hidden;
}
.er-faq__item:first-child { border-top: 1px solid var(--er-beige-dark) }
.er-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--er-bleu);
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color .2s var(--ease);
}
.er-faq__q:hover { color: var(--er-vert) }
.er-faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--er-beige-dark);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease-spring), border-color .2s, background .2s;
}
.er-faq__icon::before, .er-faq__icon::after {
  content: '';
  position: absolute;
  background: var(--er-vert);
  border-radius: 2px;
  transition: transform .3s var(--ease-spring), opacity .3s;
}
.er-faq__icon::before { width: 12px; height: 1.5px }
.er-faq__icon::after  { width: 1.5px; height: 12px }
.er-faq__item.is-open .er-faq__icon { border-color: var(--er-vert); background: var(--er-vert) }
.er-faq__item.is-open .er-faq__icon::before,
.er-faq__item.is-open .er-faq__icon::after { background: #fff }
.er-faq__item.is-open .er-faq__icon::after { transform: rotate(90deg); opacity: 0 }
.er-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.er-faq__item.is-open .er-faq__a { grid-template-rows: 1fr }
.er-faq__a-inner {
  overflow: hidden;
  font-size: .97rem;
  color: var(--er-texte-light);
  line-height: 1.9;
  padding: 0;
  transition: padding .35s var(--ease);
}
.er-faq__item.is-open .er-faq__a-inner { padding: 0 0 22px }

/* ═══════════════════════════════════════════════
   TARIF CARDS
   ═══════════════════════════════════════════════ */
.er-tarifs { background: var(--er-blanc); padding: var(--section-pad) 0 }
.er-grid-tarifs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.er-tarif-card {
  background: #fff;
  border-radius: var(--r-xl);
  border-top: 4px solid var(--er-vert);
  padding: 36px 32px 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease);
}
.er-tarif-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md) }
.er-tarif-card--featured {
  border-top-color: var(--er-cuivre);
  background: var(--er-bleu);
}
.er-tarif-card--featured .er-tarif-card__label,
.er-tarif-card--featured .er-tarif-card__title,
.er-tarif-card--featured .er-tarif-card__note { color: rgba(255,255,255,.7) }
.er-tarif-card--featured .er-tarif-card__price { color: var(--er-cuivre) }
.er-tarif-card--featured .er-tarif-card__body { color: rgba(255,255,255,.6) }
.er-tarif-card__badge {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--er-cuivre);
  color: #fff;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.er-tarif-card__label {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--er-sauge);
  margin-bottom: 10px;
}
.er-tarif-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--er-bleu);
  margin: 0 0 6px;
}
.er-tarif-card__price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--er-vert);
  line-height: 1;
  margin: 20px 0 6px;
}
.er-tarif-card__price small {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--er-texte-light);
  vertical-align: super;
}
.er-tarif-card__duration {
  font-size: .8rem;
  color: var(--er-texte-light);
  margin-bottom: 20px;
}
.er-tarif-card__sep { border: none; border-top: 1px solid var(--er-beige-dark); margin: 20px 0 }
.er-tarif-card--featured .er-tarif-card__sep { border-top-color: rgba(255,255,255,.12) }
.er-tarif-card__body { font-size: .9rem; color: var(--er-texte-light); line-height: 1.75 }
.er-tarif-card__note {
  margin-top: 16px;
  font-size: .78rem;
  font-style: italic;
  color: var(--er-texte-light);
}

/* ═══════════════════════════════════════════════
   INFOS PRATIQUES
   ═══════════════════════════════════════════════ */
.er-infos { background: var(--er-beige); padding: var(--section-pad) 0 }
.er-infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.er-info-bloc {
  background: rgba(255,255,255,.65);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  transition: background .25s var(--ease), transform .25s var(--ease-spring);
}
.er-info-bloc:hover { background: #fff; transform: translateY(-4px) }
.er-info-bloc__icon { font-size: 1.8rem; margin-bottom: 16px }
.er-info-bloc__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--er-bleu);
  margin: 0 0 12px;
}
.er-info-bloc__body { font-size: .93rem; color: var(--er-texte-light); line-height: 1.85 }
@media (max-width: 760px) { .er-infos-grid { grid-template-columns: 1fr } }

/* ═══════════════════════════════════════════════
   ENCADRÉ (note info)
   ═══════════════════════════════════════════════ */
.er-encadre {
  background: var(--er-blanc);
  border-left: 4px solid var(--er-sauge);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 22px 28px;
  font-size: .97rem;
  color: var(--er-texte);
  line-height: 1.85;
  margin-top: 36px;
}
.er-encadre strong { color: var(--er-vert); font-weight: 600 }
.er-encadre--vert { border-left-color: var(--er-vert) }
.er-encadre--cuivre { border-left-color: var(--er-cuivre) }

/* ═══════════════════════════════════════════════
   PHILOSOPHIE (3 croyances)
   ═══════════════════════════════════════════════ */
.er-philosophie { background: #fff; padding: var(--section-pad) 0 }
.er-philo-card {
  background: var(--er-blanc);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease);
}
.er-philo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md) }
.er-philo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--er-vert), var(--er-cuivre));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.er-philo-card:hover::before { opacity: 1 }
.er-philo-card__num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--er-beige-dark);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.er-philo-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--er-bleu);
  margin: 0 0 14px;
}
.er-philo-card__body { font-size: .95rem; color: var(--er-texte-light); line-height: 1.85 }

/* ═══════════════════════════════════════════════
   ALGIZ SECTION (pourquoi ce nom)
   ═══════════════════════════════════════════════ */
.er-algiz { background: var(--er-blanc); padding: var(--section-pad) 0 }
.er-algiz__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  max-width: 840px;
  margin-inline: auto;
}
.er-algiz__rune {
  font-size: clamp(100px, 14vw, 180px);
  color: var(--er-vert);
  opacity: .15;
  line-height: 1;
  font-family: serif;
  user-select: none;
  animation: er-float 6s ease-in-out infinite;
}
.er-algiz__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--er-bleu);
  margin: 0 0 20px;
}
.er-algiz__body { font-size: .97rem; color: var(--er-texte-light); line-height: 1.9 }
@media (max-width: 640px) {
  .er-algiz__inner { grid-template-columns: 1fr }
  .er-algiz__rune { display: none }
}

/* ═══════════════════════════════════════════════
   RENDEZ-VOUS PAGE
   ═══════════════════════════════════════════════ */
.er-contact { background: #fff; padding: var(--section-pad) 0 }
.er-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.er-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.er-contact-info__icon {
  width: 44px; height: 44px;
  background: var(--er-beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.er-contact-info__label {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--er-sauge);
  margin-bottom: 4px;
}
.er-contact-info__value { font-size: .97rem; color: var(--er-texte); line-height: 1.7 }
.er-contact-info__value a { color: var(--er-cuivre); transition: color .2s }
.er-contact-info__value a:hover { color: var(--er-vert) }
.er-contact-form-wrap {
  background: var(--er-blanc);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
}
.er-contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--er-bleu);
  margin: 0 0 28px;
}
@media (max-width: 900px) { .er-contact-grid { grid-template-columns: 1fr } }

/* ═══════════════════════════════════════════════
   SYNERGIE EMDR + LaHoChi
   ═══════════════════════════════════════════════ */
.er-synergie {
  background: var(--er-beige);
  padding: var(--section-pad) 0;
}
.er-synergie__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.er-synergie__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.er-synergie__pill {
  background: #fff;
  border-radius: var(--r-pill);
  padding: 20px 28px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--er-bleu);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-spring);
}
.er-synergie__pill:hover { transform: scale(1.02) }
.er-synergie__plus {
  text-align: center;
  font-size: 1.5rem;
  color: var(--er-sauge);
  font-weight: 300;
}
.er-synergie__arrow {
  text-align: center;
  font-size: 1.2rem;
  color: var(--er-vert);
  padding: 8px 0;
}
.er-synergie__result {
  background: var(--er-vert);
  border-radius: var(--r-pill);
  padding: 22px 28px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-cu);
}
@media (max-width: 760px) {
  .er-synergie__inner { grid-template-columns: 1fr }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE INNER PAGES
   ═══════════════════════════════════════════════ */
@media (max-width: 760px) {
  .er-step { grid-template-columns: 52px 1fr; gap: 0 20px }
  .er-step__num { font-size: 3rem }
  .er-tarif-card { padding: 28px 24px 32px }
  .er-tarif-card__price { font-size: 2.4rem }
  .er-contact-form-wrap { padding: 32px 24px }
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.er-footer {
  background-color: var(--er-bleu);
  background-image: linear-gradient(160deg, #1e2d3d 0%, var(--er-bleu) 50%, #1a3040 100%);
  color: rgba(255,255,255,.7);
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
}
.er-footer::before {
  content: 'ᛉ';
  position: absolute;
  bottom: -60px; right: -40px;
  font-size: clamp(200px, 28vw, 380px);
  color: rgba(255,255,255,.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.er-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: clamp(64px, 8vw, 100px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Colonne brand */
.er-footer__logo {
  max-height: 64px;
  width: auto;
  margin-bottom: 20px;
  opacity: .88;
  transition: opacity .25s, transform .25s var(--ease-spring);
}
.er-footer__logo:hover { opacity: 1; transform: scale(1.03) }
.er-footer__tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.er-footer__social {
  display: flex;
  gap: 12px;
}
.er-footer__social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  transition: background .25s var(--ease), border-color .25s, color .25s, transform .25s var(--ease-spring);
  text-decoration: none;
}
.er-footer__social-link:hover {
  background: var(--er-cuivre);
  border-color: var(--er-cuivre);
  color: #fff;
  transform: translateY(-3px);
}

/* Colonnes nav */
.er-footer__col-title {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--er-cuivre);
  margin-bottom: 20px;
  display: block;
}
.er-footer__nav {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.er-footer__nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
  display: inline-block;
  position: relative;
}
.er-footer__nav a::before {
  content: '→';
  position: absolute;
  left: -18px;
  opacity: 0;
  transition: opacity .2s, left .2s var(--ease);
  color: var(--er-cuivre);
  font-size: .8rem;
}
.er-footer__nav a:hover {
  color: #fff;
  padding-left: 18px;
}
.er-footer__nav a:hover::before { opacity: 1; left: 0 }

/* Colonne contact */
.er-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.er-footer__contact-item span:first-child { flex-shrink: 0; font-size: 1rem; margin-top: 1px }
.er-footer__contact-item a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s }
.er-footer__contact-item a:hover { color: var(--er-cuivre) }

/* Barre de bas */
.er-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  flex-wrap: wrap;
}
.er-footer__copy {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}
.er-footer__copy a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s }
.er-footer__copy a:hover { color: var(--er-cuivre) }
.er-footer__legal {
  display: flex;
  gap: 20px;
}
.er-footer__legal a {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  letter-spacing: .06em;
  transition: color .2s;
}
.er-footer__legal a:hover { color: rgba(255,255,255,.6) }

/* ═══════════════════════════════════════════════
   FORMULAIRE DE CONTACT
   ═══════════════════════════════════════════════ */
.er-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.er-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.er-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.er-form__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--er-texte-light);
}
.er-form__label span { color: var(--er-cuivre); margin-left: 2px }
.er-form__input,
.er-form__select,
.er-form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--er-blanc);
  border: 1.5px solid var(--er-beige-dark);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--er-bleu);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  outline: none;
  appearance: none;
}
.er-form__input:focus,
.er-form__select:focus,
.er-form__textarea:focus {
  border-color: var(--er-vert);
  box-shadow: 0 0 0 4px rgba(61,107,90,.1);
  background: #fff;
}
.er-form__input.is-error,
.er-form__select.is-error,
.er-form__textarea.is-error {
  border-color: #e05555;
  box-shadow: 0 0 0 4px rgba(224,85,85,.08);
}
.er-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238DA399' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
.er-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}
.er-form__submit {
  align-self: flex-start;
  cursor: pointer;
  border: none;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--er-vert), var(--er-vert-light));
  color: #fff;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 24px rgba(61,107,90,.3);
  transition: transform .25s var(--ease-spring), box-shadow .25s, opacity .25s;
}
.er-form__submit:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(61,107,90,.4) }
.er-form__submit:disabled { opacity: .6; cursor: not-allowed; transform: none }
.er-form__feedback {
  font-size: .9rem;
  line-height: 1.7;
  border-radius: var(--r-md);
  padding: 0;
  transition: all .3s;
}
.er-form__feedback--ok {
  background: rgba(61,107,90,.08);
  color: var(--er-vert);
  padding: 14px 18px;
  border-left: 3px solid var(--er-vert);
}
.er-form__feedback--err {
  background: rgba(224,85,85,.06);
  color: #c0392b;
  padding: 14px 18px;
  border-left: 3px solid #e05555;
}
@media (max-width: 580px) {
  .er-form__row { grid-template-columns: 1fr }
  .er-form__submit { width: 100%; text-align: center }
}

/* Override GP footer par défaut */
.site-footer,
.site-footer.er-footer {
  padding: 0 !important;
  background-color: #2C3E50 !important;
  background-image: linear-gradient(160deg, #1e2d3d 0%, #2C3E50 50%, #1a3040 100%) !important;
  color: rgba(255,255,255,.7) !important;
  margin-top: 0 !important;
}
/* Supprimer tout espace entre le contenu et le footer */
.site-content,
.content-area,
.site-main,
.inside-article {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.separate-containers .inside-article {
  margin-bottom: 0 !important;
}
.site-footer .inside-footer,
footer .inside-footer {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

@media (max-width: 960px) {
  .er-footer__main { grid-template-columns: 1fr 1fr; gap: 36px }
}
@media (max-width: 580px) {
  .er-footer__main { grid-template-columns: 1fr; gap: 32px }
  .er-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px }
}

/* ── Bouton retour en haut ── */
#er-back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--er-vert);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s;
  pointer-events: none;
}
#er-back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#er-back-top:hover { background: var(--er-vert-dark) }
@media (max-width: 640px) {
  #er-back-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* ═══════════════════════════════════════════════
   BLOG — Actualités
   ═══════════════════════════════════════════════ */
.er-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 64px;
}
@media (max-width: 960px) { .er-blog__grid { grid-template-columns: repeat(2,1fr) } }
@media (max-width: 640px) { .er-blog__grid { grid-template-columns: 1fr } }

.er-blog-card {
  background: var(--er-blanc);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.er-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.er-blog-card__img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.er-blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.er-blog-card:hover .er-blog-card__img { transform: scale(1.04); }

.er-blog-card__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }

.er-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--er-sauge);
  margin-bottom: 14px;
}
.er-blog-card__cat {
  background: rgba(61,107,90,.1);
  color: var(--er-vert);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .68rem;
}
.er-blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--er-bleu);
  line-height: 1.4;
  margin-bottom: 12px;
}
.er-blog-card__title a { color: inherit; text-decoration: none; }
.er-blog-card__title a:hover { color: var(--er-vert); }

.er-blog-card__excerpt {
  font-size: .92rem;
  color: var(--er-texte-light);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.er-blog-card__link {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--er-vert);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease;
}
.er-blog-card__link:hover { gap: 10px; }

/* Pagination */
.er-blog__pagination { text-align: center; }
.er-blog__pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.er-blog__pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border-radius: var(--r-md);
  font-size: .85rem; font-weight: 600;
  color: var(--er-bleu);
  background: var(--er-beige);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.er-blog__pagination .page-numbers.current,
.er-blog__pagination .page-numbers:hover { background: var(--er-vert); color: #fff; }

/* Article individuel */
.er-article__cover { margin-bottom: 48px; }
.er-article__content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--er-texte-light);
}
.er-article__content h2 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--er-bleu); margin: 40px 0 16px; }
.er-article__content h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--er-bleu); margin: 32px 0 12px; }
.er-article__content p { margin-bottom: 20px; }
.er-article__content a { color: var(--er-vert); }
.er-article__content blockquote {
  border-left: 3px solid var(--er-vert);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(61,107,90,.06);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--er-bleu);
}
.er-article__footer { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--er-beige); }
