/* ==========================================================================
   NEYBRAS · by Dalal Fahmi — Page d'accueil (refonte « consulting »)
   Direction : ivoire qui respire · bleu nuit qui structure · bordeaux en accent.
   Mise en page inspirée d'un layout cabinet de conseil, réécrite intégralement
   en vanilla (zéro framework, zéro code tiers). Feuille autonome : ne dépend
   pas de neybras.css (réservé aux autres pages).
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --nuit:           #0F2238;
  --nuit-2:         #16304B;
  --bordeaux:       #6E2332;
  --bordeaux-hover: #561A27;
  --bordeaux-soft:  rgba(110,35,50,0.08);
  --ivoire:         #FBF9F4;
  --ivoire-clair:   #FFFFFF;
  --creme:          #F0EBE1;
  --pierre:         #8D8D93;
  --graphite:       #1C1C22;
  --blanc:          #FFFFFF;
  --filet:          rgba(15,34,56,0.10);
  --filet-fort:     rgba(15,34,56,0.16);

  --font-titre:   'Fraunces', Georgia, 'Times New Roman', serif;
  --font-courant: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius:      16px;
  --radius-sm:   10px;
  --radius-btn:  6px;
  --maxw:        1180px;
  --pad-x:       clamp(1.15rem, 4vw, 2.2rem);
  --pad-section: clamp(4.5rem, 9vw, 8rem);
  --ease:        cubic-bezier(.22,.61,.36,1);
  --shadow-sm:   0 6px 20px rgba(15,34,56,0.06);
  --shadow-md:   0 18px 50px rgba(15,34,56,0.12);
  --shadow-lg:   0 30px 70px rgba(15,34,56,0.18);
}

/* --- Reset léger -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  font-family: var(--font-courant);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--graphite);
  background: var(--ivoire);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--bordeaux); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--bordeaux-hover); }
h1, h2, h3, h4, h5 { font-family: var(--font-titre); font-weight: 400; color: var(--nuit); line-height: 1.14; margin: 0 0 .6em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; color: var(--bordeaux); }

/* --- Utilitaires ------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--pad-section); scroll-margin-top: 88px; }
.section--ivoire { background: var(--ivoire); }
.section--blanc  { background: var(--blanc); }
.section--creme  { background: var(--creme); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-courant);
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--bordeaux); margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--bordeaux); display: inline-block;
}
.section-head { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); max-width: 60ch; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); max-width: 24ch; }
.section-head--center .section-title { margin-inline: auto; }
.section-intro { font-size: 1.12rem; color: var(--graphite); max-width: 56ch; }
.section-head--center .section-intro { margin-inline: auto; }
.muted { color: var(--pierre); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 1200;
  background: var(--nuit); color: #fff; padding: .6rem 1rem; border-radius: var(--radius-btn);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color: #fff; }

/* --- Boutons ----------------------------------------------------------- */
.btn {
  --b: var(--bordeaux);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-courant); font-weight: 600; font-size: .98rem;
  line-height: 1.2; text-align: center;
  padding: .95rem 1.5rem; border-radius: var(--radius-btn);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn--bordeaux { background: var(--bordeaux); color: #fff; box-shadow: 0 10px 26px rgba(110,35,50,0.28); }
.btn--bordeaux:hover { background: var(--bordeaux-hover); color: #fff; box-shadow: 0 16px 34px rgba(110,35,50,0.34); }
.btn--outline-nuit { background: transparent; color: var(--nuit); border-color: var(--filet-fort); }
.btn--outline-nuit:hover { color: var(--nuit); border-color: var(--nuit); background: rgba(15,34,56,0.04); }
.btn--light { background: #fff; color: var(--nuit); }
.btn--light:hover { color: var(--nuit); background: #fff; box-shadow: var(--shadow-md); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--block { width: 100%; }

/* --- Header / Navigation ----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(246,242,234,0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--filet);
  box-shadow: 0 4px 24px rgba(15,34,56,0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; }
.brand { display: flex; flex-direction: row; align-items: center; gap: .6rem; line-height: 1.05; color: var(--nuit); }
.brand:hover { color: var(--nuit); }
.brand__logo { height: 46px; width: 46px; display: block; flex-shrink: 0; border-radius: 50%; box-shadow: 0 0 0 1.5px var(--filet), 0 2px 8px rgba(15,34,56,.18); }
.brand__text { display: flex; flex-direction: column; }
.brand__name { font-family: var(--font-titre); font-size: 1.5rem; letter-spacing: .12em; }
.brand__accent { color: var(--bordeaux); }
.brand__sub { font-size: .72rem; color: var(--bordeaux); font-weight: 600; letter-spacing: .04em; }
.brand__base { font-size: .66rem; color: var(--pierre); text-transform: uppercase; letter-spacing: .18em; margin-top: 2px; }

.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__links { display: flex; align-items: center; gap: 1.7rem; }
.nav__links a {
  position: relative; color: var(--nuit); font-size: .94rem; font-weight: 500;
  padding: .35rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--bordeaux); transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--bordeaux); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__actions .btn { padding: .7rem 1.15rem; font-size: .9rem; }

.lang { display: inline-flex; border: 1px solid var(--filet-fort); border-radius: 999px; overflow: hidden; }
.lang button {
  font: inherit; font-size: .8rem; font-weight: 600; cursor: pointer;
  background: transparent; color: var(--pierre); border: 0; padding: .35rem .7rem;
}
.lang button.is-active { background: var(--nuit); color: #fff; }

.burger {
  display: none; background: transparent; border: 0; color: var(--nuit);
  padding: .35rem; cursor: pointer;
}
.burger svg { width: 28px; height: 28px; }

/* --- Hero -------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(110,35,50,0.06), transparent 55%),
    var(--ivoire);
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__text { max-width: 38rem; }
.hero__title { font-size: clamp(2.5rem, 5.6vw, 4.2rem); line-height: 1.05; margin-bottom: 1.1rem; letter-spacing: -0.01em; }
.hero__lead { font-size: 1.2rem; color: var(--graphite); margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.2rem; }
.hero__assurance { display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: .86rem; color: var(--pierre); }
.hero__assurance span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__assurance svg { width: 1rem; height: 1rem; color: var(--bordeaux); }

.hero__media { position: relative; justify-self: center; }
.hero__media img {
  position: relative; z-index: 2;
  width: min(420px, 100%); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4/5;
}
.hero__media::before {
  content: ""; position: absolute; z-index: 1;
  inset: auto -18px -18px auto; width: 62%; height: 70%;
  background: var(--bordeaux); border-radius: var(--radius);
  opacity: .9;
}
.hero__media::after {
  content: ""; position: absolute; z-index: 0;
  top: -22px; left: -22px; width: 120px; height: 120px;
  border: 2px solid var(--bordeaux); border-radius: var(--radius-sm); opacity: .35;
}

/* --- Bande de confiance ------------------------------------------------ */
.trust-bar { background: var(--nuit); color: rgba(255,255,255,0.86); }
.trust-bar .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .6rem 1.4rem; padding-block: 1.15rem; text-align: center;
}
.trust-line { font-size: .9rem; font-weight: 500; letter-spacing: .01em; }
.trust-dot { color: var(--bordeaux); font-weight: 700; }

/* --- Intro / À propos teaser ------------------------------------------- */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.intro__title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.about__link {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.4rem;
  font-weight: 600; color: var(--bordeaux);
}
.about__link svg { width: 1.05em; height: 1.05em; transition: transform .2s var(--ease); }
.about__link:hover svg { transform: translateX(4px); }

.pillars { display: grid; gap: 1.4rem; }
.pillar {
  background: var(--blanc); border: 1px solid var(--filet); border-radius: var(--radius-sm);
  padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
}
.pillar h4 { font-size: 1.2rem; margin-bottom: .4rem; }
.pillar p { margin: 0; color: var(--graphite); font-size: .98rem; }

/* --- Grilles de cartes ------------------------------------------------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 760px; margin-inline: auto; }
.cards-2 .pillar { text-align: center; }
.cards-2 .about__link { margin-top: 1rem; justify-content: center; }

.signal-card {
  position: relative; background: var(--blanc); border: 1px solid var(--filet);
  border-radius: var(--radius); padding: 2rem 1.8rem 1.8rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.signal-card::before {
  content: ""; position: absolute; top: 0; left: 1.8rem; right: 1.8rem; height: 3px;
  background: var(--bordeaux); border-radius: 0 0 3px 3px; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.signal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.signal-card:hover::before { transform: scaleX(1); }
.signal-card__num { font-family: var(--font-titre); font-size: 2.4rem; color: var(--bordeaux); opacity: .55; display: block; margin-bottom: .4rem; }
.signal-card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.signal-card p { margin: 0; color: var(--graphite); font-size: .98rem; }

/* --- Bande « bascule » (déclaration forte) ----------------------------- */
.bascule { background: var(--nuit); color: #fff; }
.bascule .container { padding-block: clamp(3.5rem, 7vw, 5.5rem); text-align: center; }
.bascule p { margin: 0; max-width: 46ch; margin-inline: auto; }
.bascule__soft { display: block; font-family: var(--font-titre); font-size: clamp(1.5rem, 3vw, 2.1rem); color: rgba(255,255,255,0.9); line-height: 1.3; margin-bottom: 1rem; }
.bascule__punch { display: block; font-size: 1.1rem; color: rgba(255,255,255,0.78); }
.bascule__punch em { color: #E8B7BF; font-style: italic; }

/* --- Offres ------------------------------------------------------------ */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: stretch; }
.offer-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--blanc); border: 1px solid var(--filet); border-radius: var(--radius);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.offer-card--featured {
  border-color: transparent; background: var(--nuit); color: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-lg);
}
.offer-card--featured h3 { color: #fff; }
.offer-card--featured .offer-card__from,
.offer-card--featured .offer-card__meta { color: rgba(255,255,255,0.6); }
.offer-card--featured .offer-card__list li { color: rgba(255,255,255,0.85); }
.offer-card--featured .offer-card__list li::before { color: #E8B7BF; }
.offer-card__badge {
  position: absolute; top: -.85rem; left: 1.8rem;
  background: var(--bordeaux); color: #fff; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; padding: .4rem .85rem; border-radius: 999px;
}
.offer-card__badge--start { background: var(--nuit); }
.offer-card__from { font-size: .8rem; color: var(--pierre); text-transform: uppercase; letter-spacing: .1em; }
.offer-card__amount { font-family: var(--font-titre); font-size: 2.1rem; color: var(--nuit); display: block; line-height: 1.1; }
.offer-card--featured .offer-card__amount { color: #fff; }
.offer-card__meta { font-size: .85rem; color: var(--pierre); margin-bottom: 1rem; display: block; }
.offer-card h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.offer-card__promise { font-size: .98rem; margin-bottom: 1.2rem; }
.offer-card__list { display: grid; gap: .5rem; margin-bottom: 1.5rem; }
.offer-card__list li { position: relative; padding-left: 1.5rem; font-size: .94rem; }
.offer-card__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--bordeaux); font-weight: 700;
}
.offer-card .btn { margin-top: auto; }
.offer-card__more { display: inline-block; margin-top: .8rem; font-size: .88rem; font-weight: 600; }

.site-option {
  position: relative; overflow: hidden;
  margin-top: 2.4rem; padding: 2rem 2.1rem;
  border-radius: var(--radius); border: 1px solid rgba(232,183,191,0.18);
  color: rgba(255,255,255,0.82);
  background:
    radial-gradient(130% 120% at 100% 0%, rgba(110,35,50,0.45), transparent 55%),
    linear-gradient(135deg, var(--nuit) 0%, var(--nuit-2) 100%);
  box-shadow: var(--shadow-md);
}
.site-option::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--bordeaux);
}
.site-option p { color: rgba(255,255,255,0.74); }
.site-option__price { font-family: var(--font-titre); font-size: 1.5rem; color: #fff; margin-bottom: .4rem; }
.site-option__price b { color: #E8B7BF; font-weight: 400; }
.site-option ul { display: grid; gap: .55rem; margin-top: 1rem; }
.site-option li { position: relative; padding-left: 1.5rem; font-size: .96rem; color: rgba(255,255,255,0.82); }
.site-option li::before { content: "—"; position: absolute; left: 0; color: #E8B7BF; }
.site-option__highlight {
  margin-top: .35rem; font-weight: 600; color: #fff !important;
}
.site-option__highlight::before { content: "★" !important; color: #E8B7BF; font-size: .85em; }

/* --- Méthode (frise process) ------------------------------------------- */
.methode-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; position: relative;
}
.methode-grid::before {
  content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--bordeaux), var(--filet-fort));
  opacity: .4;
}
.method-step { position: relative; text-align: center; padding: 0 .5rem; }
.method-step__num {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--blanc); border: 2px solid var(--bordeaux); color: var(--bordeaux);
  font-family: var(--font-titre); font-size: 1.5rem; margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm); transition: background .25s var(--ease), color .25s var(--ease);
}
.method-step:hover .method-step__num { background: var(--bordeaux); color: #fff; }
.method-step h3 { font-size: 1.25rem; margin-bottom: .35rem; }
.method-step p { margin: 0; font-size: .94rem; color: var(--graphite); }

/* --- Pont vers Signatures ---------------------------------------------- */
.bridge {
  background:
    radial-gradient(120% 140% at 0% 100%, rgba(110,35,50,0.10), transparent 50%),
    var(--creme);
}
.bridge .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.bridge p { margin: 0; font-family: var(--font-titre); font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--nuit); max-width: 30ch; }
.bridge a {
  display: inline-flex; align-items: center; gap: .55rem; font-weight: 600;
  color: var(--bordeaux); font-size: 1.05rem;
}
.bridge a svg { width: 1.1em; height: 1.1em; transition: transform .2s var(--ease); }
.bridge a:hover svg { transform: translateX(5px); }

/* --- Témoignages ------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.quote {
  margin: 0; background: var(--blanc); border: 1px solid var(--filet); border-radius: var(--radius);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.quote::before {
  content: "\201C"; font-family: var(--font-titre); font-size: 3.2rem; line-height: .6;
  color: var(--bordeaux); opacity: .35; margin-bottom: .6rem;
}
.quote__text { font-size: 1rem; color: var(--graphite); margin-bottom: 1.4rem; }
.quote__author { display: flex; align-items: center; gap: .9rem; margin-top: auto; }
.avatar { flex: none; width: 52px; height: 52px; border-radius: 50%; overflow: hidden; background: var(--creme); border: 2px solid var(--bordeaux-soft); }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote__author cite { font-style: normal; font-weight: 600; color: var(--nuit); display: block; }
.quote__role { font-size: .82rem; color: var(--pierre); }

/* --- FAQ --------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq__item {
  background: var(--blanc); border: 1px solid var(--filet); border-radius: var(--radius-sm);
  padding: 0 1.4rem; transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--filet-fort); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 0;
  font-family: var(--font-titre); font-size: 1.12rem; color: var(--nuit);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; color: var(--bordeaux); font-size: 1.5rem; font-family: var(--font-courant);
  transition: transform .2s var(--ease);
}
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p { margin: 0 0 1.15rem; color: var(--graphite); font-size: .98rem; }

/* --- Contact (bande nuit) ---------------------------------------------- */
.contact {
  background:
    radial-gradient(120% 130% at 90% 10%, rgba(110,35,50,0.22), transparent 55%),
    var(--nuit);
  color: rgba(255,255,255,0.86); text-align: center;
}
.contact__inner { max-width: 720px; margin-inline: auto; }
.contact .eyebrow { color: #E8B7BF; justify-content: center; }
.contact .eyebrow::before { background: #E8B7BF; }
.contact .section-title { color: #fff; margin-inline: auto; }
.contact__body { font-size: 1.12rem; line-height: 1.9; color: rgba(255,255,255,0.82); margin-bottom: 2rem; }
.contact__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-bottom: 1.4rem; }
.contact__note { font-size: .9rem; color: rgba(255,255,255,0.62); margin-bottom: .2rem; }
.contact__loc { font-size: .85rem; color: rgba(255,255,255,0.5); margin: 0; }
.contact .btn--outline-nuit { color: #fff; border-color: rgba(255,255,255,0.4); }
.contact .btn--outline-nuit:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.08); }

/* --- Bande preuve médias ----------------------------------------------- */
.proof-bar { background: var(--creme); border-top: 1px solid var(--filet); }
.proof-bar .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .8rem 2rem; padding-block: 1.6rem; text-align: center;
}
.proof-bar__label { font-size: .74rem; text-transform: uppercase; letter-spacing: .2em; color: var(--pierre); font-weight: 600; }
.proof-bar__links { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: center; }
.proof-bar__links a { font-weight: 600; color: var(--nuit); font-size: .94rem; }
.proof-bar__links a:hover { color: var(--bordeaux); }

/* --- Footer ------------------------------------------------------------ */
.site-footer { background: var(--nuit); color: rgba(255,255,255,0.74); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2.5rem; }
.site-footer .brand__name { color: #fff; }
.footer-desc { font-size: .92rem; color: rgba(255,255,255,0.6); margin-top: .8rem; max-width: 32ch; }
.footer-col h5 { font-family: var(--font-courant); font-size: .76rem; text-transform: uppercase; letter-spacing: .16em; color: #E8B7BF; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.74); font-size: .94rem; padding: .25rem 0; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: .7rem; margin-top: .8rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; color: #fff; padding: 0;
}
.footer-social a:hover { background: var(--bordeaux); border-color: var(--bordeaux); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .8rem;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.6rem;
  font-size: .85rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: #fff; }

/* --- WhatsApp flottant ------------------------------------------------- */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.07); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* --- Pages internes : utilitaires partagés ----------------------------- */
.lead { font-size: 1.18rem; color: var(--graphite); max-width: 62ch; }
.nav__links a[aria-current="page"] { color: var(--bordeaux); }
.nav__links a[aria-current="page"]::after { width: 100%; }

/* Hero court (pages internes) */
.page-hero { background:
    radial-gradient(120% 120% at 85% 0%, rgba(110,35,50,0.06), transparent 55%),
    var(--ivoire);
}
.page-hero .hero__title { font-size: clamp(2.3rem, 5vw, 3.5rem); margin-bottom: 1.1rem; }

/* Signatures — grille d'experts */
.experts { display: grid; gap: 1.5rem; }
.experts--three { grid-template-columns: repeat(3, 1fr); }
.expert-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--blanc); border: 1px solid var(--filet); border-radius: var(--radius);
  padding: 2rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.expert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.expert-card img {
  width: 110px; height: 110px; border-radius: 50%; object-fit: cover;
  margin-bottom: 1.1rem; border: 3px solid var(--bordeaux-soft);
}
.expert-card__name { font-family: var(--font-titre); font-size: 1.25rem; color: var(--nuit); margin-bottom: .25rem; }
.expert-card__role { font-size: .88rem; color: var(--pierre); }

/* Signatures — liste de sujets */
.topics { display: grid; gap: .8rem; }
.topic {
  display: flex; align-items: flex-start; gap: .9rem;
  background: var(--blanc); border: 1px solid var(--filet); border-left: 3px solid var(--bordeaux);
  border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; color: var(--nuit);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.topic:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); color: var(--bordeaux); }
.topic svg { width: 1.2em; height: 1.2em; flex: none; color: var(--bordeaux); margin-top: .25rem; }
.topic__title { font-family: var(--font-titre); font-size: 1.08rem; line-height: 1.4; }
.topic__author { color: var(--pierre); font-family: var(--font-courant); font-size: .85rem; }

/* Mentions légales — texte juridique */
.legal h2 { font-size: 1.4rem; margin: 2rem 0 .5rem; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--graphite); }

/* --- Reveal ------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__media { justify-self: start; }
  .hero__media img { width: min(320px, 70%); }
  .intro__grid { grid-template-columns: 1fr; }
  .cards-3, .cards-2, .offers, .quotes { grid-template-columns: 1fr; }
  .methode-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .methode-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .burger { display: inline-flex; }
  .nav__menu {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--filet);
    box-shadow: var(--shadow-md); padding: 1rem var(--pad-x) 1.5rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
  }
  .nav__menu.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__links a { padding: .85rem 0; border-bottom: 1px solid var(--filet); }
  .nav__actions { flex-direction: column; align-items: stretch; gap: .8rem; margin-top: 1rem; }
  .nav__actions .btn { width: 100%; }
  .lang { align-self: center; }
}

@media (max-width: 560px) {
  .methode-grid, .footer-grid { grid-template-columns: 1fr; }
  .bridge .container { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; }
}
