/* Page « Qui je suis » — alignée sur Séances v3
   Système : DM Serif Display + Manrope + Cormorant Garamond
   Palette : ivoire / encre / or / vert sapin
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');

:root {
  --b-encre: #0E2540; --b-nuit: #16314F; --b-marine: #1F3F5C; --b-ardoise: #2C4A6B;
  --b-brume: #C8D2DF; --b-pale: #E8EBF0;
  --v-sapin: #26466B; --v-mid: #5A7A9E; --v-pale: #B8CADC; --v-light: #DDE6F1;
  --or: #C9A86C; --or-deep: #A8884B; --or-pale: #E8D7AA;
  --casse: #FBF8F1; --ivoire: #F4ECDC; --ivoire-soft: #FAF4E6; --ivoire-deep: #EBDFC4;
  --gris-1: #E8E5DD; --gris-2: #6B6B6B;
  --noir: #0A0A0A; --blanc: #FFFFFF;
  --f-display: 'DM Serif Display', Georgia, serif;
  --f-sans: 'Manrope', system-ui, sans-serif;
  --f-serif: 'Cormorant Garamond', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: var(--f-sans); color: var(--b-encre); background: var(--ivoire); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== NAV ===== */
.v7__nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 14px 40px;
  color: var(--b-encre);
  background: rgba(251,248,241,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gris-1);
  transition: padding .3s ease, box-shadow .3s ease;
  --prog: 0%;
}
.v7__nav::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 2px;
  width: var(--prog); background: var(--or);
  transition: width .12s linear;
}
.v7__nav.is-scrolled { padding: 10px 40px; box-shadow: 0 6px 18px rgba(14,37,64,.06); }
.v7__nav-logo-badge {
  background: #fff; padding: 10px 16px; border-radius: 10px;
  display: inline-flex; align-items: center;
  box-shadow: 0 6px 18px rgba(14,37,64,.12), 0 0 0 1px rgba(217,168,95,.25) inset;
  transition: transform .3s ease, box-shadow .3s ease;
}
.v7__nav-logo-badge:hover { transform: rotate(-2deg) scale(1.05); box-shadow: 0 12px 32px rgba(14,37,64,.28), 0 0 0 1px var(--or) inset; }
.v7__nav-logo img { height: 56px; width: auto; transition: height .3s ease; }
.v7__nav.is-scrolled .v7__nav-logo img { height: 44px; }
.v7__nav-c { display: flex; gap: 26px; justify-content: center; }
.v7__nav-c a { color: inherit; text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: .04em; padding: 6px 0; position: relative; }
.v7__nav-c a.is-active { color: var(--or-deep); }
.v7__nav-c a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px;
  background: var(--or); transition: right .35s cubic-bezier(.2,.7,.2,1);
}
.v7__nav-c a:hover::after, .v7__nav-c a.is-active::after { right: 0; }
.v7__nav-r { display: flex; justify-content: flex-end; }
.v7__nav-cta {
  background: var(--or); color: var(--b-encre);
  padding: 10px 20px; text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 999px;
  transition: background .25s, color .25s, transform .25s, box-shadow .25s;
}
.v7__nav-cta:hover { background: var(--b-encre); color: var(--ivoire); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(14,37,64,.25); }

/* ===== HERO ===== */
.qjs__hero {
  position: relative; background: var(--ivoire); color: var(--b-encre);
  padding: 160px 48px 96px;
  overflow: hidden; isolation: isolate;
}
.qjs__hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  font-family: var(--f-display); font-style: italic;
  color: rgba(168,136,75,.08); letter-spacing: -.04em;
}
.qjs__hero-bg .word { position: absolute; line-height: .85; white-space: nowrap; }
.qjs__hero-bg .w1 { font-size: 220px; top: 100px; left: -40px; }
.qjs__hero-bg .w2 { font-size: 180px; top: 320px; right: -30px; color: rgba(38, 70, 107,.07); }
.qjs__hero-bg .w3 { font-size: 200px; bottom: 60px; left: 220px; color: rgba(168,136,75,.07); }
.qjs__hero::before {
  content: ""; position: absolute; right: -160px; top: 60px;
  width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid rgba(168,136,75,.18); pointer-events: none; z-index: 1;
}

.qjs__hero-in {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr .9fr; gap: 80px;
  align-items: end;
}
.qjs__hero-l { }
.qjs__hero-crumbs {
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 600; color: var(--gris-2);
  display: flex; gap: 14px; align-items: center; margin-bottom: 28px;
}
.qjs__hero-crumbs a { color: var(--gris-2); text-decoration: none; transition: color .25s; }
.qjs__hero-crumbs a:hover { color: var(--or-deep); }
.qjs__hero-crumbs .cur { color: var(--b-encre); font-weight: 700; }
.qjs__hero-eb {
  font-family: var(--f-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: var(--or-deep);
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.qjs__hero-eb::before { content: ""; width: 36px; height: 1px; background: currentColor; }
.qjs__hero-pipes {
  font-family: var(--f-display); font-style: italic;
  color: var(--or); font-size: 56px; line-height: 1; letter-spacing: -.04em;
  margin-bottom: 6px;
}
.qjs__hero h1 {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(88px, 11vw, 168px);
  line-height: .92; letter-spacing: -0.03em;
  color: var(--b-encre); margin: 0;
  font-weight: 400;
}
.qjs__hero h1 .line { display: block; }
.qjs__hero h1 .dot { color: var(--or); }
.qjs__hero-sub {
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px); line-height: 1.3;
  color: var(--gris-2); margin: 28px 0 0;
  max-width: 36ch; font-weight: 400; text-wrap: balance;
}

/* trio identité dans hero */
.qjs__hero-trio {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 0;
  background: var(--blanc);
  border-top: 4px solid var(--or);
  box-shadow: 0 18px 48px rgba(14,37,64,.08);
}
.qjs__hero-trio .cell {
  flex: 1 1 0; min-width: 160px;
  padding: 22px 24px;
  border-right: 1px solid var(--gris-1);
}
.qjs__hero-trio .cell:last-child { border-right: 0; }
.qjs__hero-trio .lab {
  font-family: var(--f-sans); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 700; color: var(--or-deep);
}
.qjs__hero-trio .val {
  font-family: var(--f-display); font-style: italic;
  font-size: 26px; line-height: 1.05; color: var(--b-encre);
  margin-top: 6px;
}

/* portrait du hero */
.qjs__hero-portrait {
  position: relative;
  align-self: end;
}
.qjs__hero-portrait .frame {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ivoire-deep);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(14,37,64,.18);
}
.qjs__hero-portrait .frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.qjs__hero-portrait .badge {
  position: absolute; right: -28px; top: -28px;
  width: 124px; height: 124px;
  border-radius: 50%; background: var(--ivoire);
  border: 1.5px solid var(--or-deep);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  text-align: center; line-height: 1.3; padding: 12px;
  font-family: var(--f-sans); font-size: 9px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--b-encre);
  rotate: 6deg;
  box-shadow: 0 12px 32px rgba(14,37,64,.16);
  z-index: 2;
}
.qjs__hero-portrait .badge em {
  font-style: italic; font-family: var(--f-display); font-size: 18px;
  color: var(--or-deep); display: block; margin: 4px 0;
  letter-spacing: -.01em; text-transform: none; font-weight: 400;
}
.qjs__hero-portrait .credit {
  margin-top: 12px;
  font-family: var(--f-sans); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gris-2); text-align: right;
}

/* ===== Section header générique ===== */
.qjs__sec-h { text-align: center; max-width: 760px; margin: 0 auto 64px; padding: 0 32px; }
.qjs__sec-h .eb {
  font-family: var(--f-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--or-deep);
  display: inline-flex; align-items: center; gap: 14px;
}
.qjs__sec-h.on-dark .eb { color: var(--or); }
.qjs__sec-h .eb::before, .qjs__sec-h .eb::after { content: ""; width: 32px; height: 1px; background: currentColor; }
.qjs__sec-h h2 {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(44px, 5.6vw, 72px); line-height: .98; color: var(--b-encre);
  margin: 18px 0 0; font-weight: 400; letter-spacing: -0.02em; text-wrap: balance;
}
.qjs__sec-h.on-dark h2 { color: var(--ivoire); }
.qjs__sec-h p {
  font-family: var(--f-serif); font-style: italic;
  font-size: 22px; color: var(--gris-2); line-height: 1.4;
  margin: 22px auto 0; max-width: 56ch;
}
.qjs__sec-h.on-dark p { color: var(--or-pale); }

/* ===== II — D'OÙ JE PARLE ===== */
.qjs__parle { background: var(--ivoire); padding: 144px 48px 120px; }
.qjs__parle-in {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px;
  align-items: start;
}
.qjs__parle-photo { position: sticky; top: 110px; }
.qjs__parle-photo .frame {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--ivoire-deep);
}
.qjs__parle-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.qjs__parle-photo .frame::after {
  content: ""; position: absolute; left: -16px; top: -16px;
  right: 16px; bottom: 16px; border: 1px solid var(--or);
  z-index: -1; opacity: .6;
}
.qjs__parle-photo .cap {
  margin-top: 16px;
  display: flex; gap: 12px; align-items: baseline;
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gris-2);
}
.qjs__parle-photo .cap b {
  font-family: var(--f-display); font-style: italic;
  color: var(--or-deep); font-size: 16px;
  letter-spacing: 0; font-weight: 400; text-transform: none;
}

.qjs__parle-prose { padding-top: 8px; }
.qjs__parle-prose .eb {
  font-family: var(--f-sans); font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--or-deep);
  display: inline-flex; align-items: center; gap: 14px;
}
.qjs__parle-prose .eb::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.qjs__parle-prose h2 {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(48px, 5.4vw, 76px); line-height: .98; color: var(--b-encre);
  margin: 16px 0 32px; font-weight: 400; letter-spacing: -0.02em; text-wrap: balance;
}
.qjs__parle-prose .lede {
  font-family: var(--f-serif); font-style: italic;
  font-size: 24px; line-height: 1.4; color: var(--b-encre);
  margin: 0 0 24px; max-width: 56ch; text-wrap: balance;
  padding-left: 20px; border-left: 3px solid var(--or);
}
.qjs__parle-prose p {
  font-family: var(--f-sans); font-size: 16.5px; line-height: 1.75;
  color: var(--b-encre); margin: 0 0 22px; max-width: 60ch; text-wrap: pretty;
}
.qjs__parle-prose p em {
  font-family: var(--f-serif); font-style: italic; color: var(--or-deep);
  font-size: 18px;
}
.qjs__parle-prose p strong { color: var(--b-encre); font-weight: 700; }

.qjs__parle-sign {
  margin-top: 32px;
  display: flex; align-items: center; gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(168,136,75,.3);
}
.qjs__parle-sign .qm {
  font-family: var(--f-display); font-style: italic;
  color: var(--or); font-size: 48px; line-height: 1;
}
.qjs__parle-sign .text {
  font-family: var(--f-serif); font-style: italic;
  font-size: 18px; line-height: 1.4; color: var(--gris-2);
  max-width: 44ch;
}
.qjs__parle-sign .text b { color: var(--b-encre); font-style: italic; font-weight: 400; }

/* ===== III — FORMATION ACADÉMIQUE ===== */
.qjs__acad { background: var(--ivoire-deep); padding: 144px 48px 120px; }
.qjs__acad-in { max-width: 1240px; margin: 0 auto; }

.qjs__acad-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.acard {
  background: var(--ivoire); padding: 36px 32px 32px;
  border-top: 4px solid var(--or);
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow .35s ease, transform .35s ease;
}
.acard:hover { box-shadow: 0 24px 60px rgba(14,37,64,.12); transform: translateY(-4px); }
.acard .num {
  font-family: var(--f-display); font-style: italic;
  font-size: 42px; line-height: 1; color: var(--or);
  letter-spacing: -.03em;
}
.acard .tag {
  display: inline-block;
  font-family: var(--f-sans); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 700; color: var(--or-deep);
  padding: 4px 0;
  margin-top: 4px;
}
.acard h3 {
  font-family: var(--f-display); font-style: italic;
  font-size: 26px; line-height: 1.1; color: var(--b-encre);
  margin: 4px 0 12px; font-weight: 400; letter-spacing: -.01em; text-wrap: balance;
}
.acard p {
  font-family: var(--f-sans); font-size: 14.5px; line-height: 1.7;
  color: var(--b-encre); margin: 0 0 12px; text-wrap: pretty;
}
.acard p:last-child { margin-bottom: 0; }
.acard p em { font-family: var(--f-serif); font-style: italic; color: var(--or-deep); font-size: 16px; }
.acard .meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(168,136,75,.3);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.acard .meta span {
  font-family: var(--f-sans); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600;
  padding: 5px 10px; background: var(--ivoire-soft); color: var(--b-encre);
  border: 1px solid rgba(168,136,75,.3);
}

.qjs__these-pull {
  margin: 40px 0 0;
  background: var(--blanc); padding: 36px 44px;
  border-left: 4px solid var(--or);
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center;
  box-shadow: 0 12px 32px rgba(14,37,64,.06);
}
.qjs__these-pull .marker {
  font-family: var(--f-display); font-style: italic;
  font-size: 64px; line-height: 1; color: var(--or-deep); letter-spacing: -.04em;
}
.qjs__these-pull .body p {
  font-family: var(--f-serif); font-style: italic;
  font-size: 22px; line-height: 1.4; color: var(--b-encre);
  margin: 0; text-wrap: balance;
}
.qjs__these-pull .body p strong { font-style: italic; color: var(--or-deep); font-weight: 400; }
.qjs__these-pull .body .sub {
  margin-top: 10px;
  font-family: var(--f-sans); font-style: normal; font-size: 13px;
  color: var(--gris-2); letter-spacing: .04em;
}

/* ===== IV — FORMATION CLINIQUE ===== */
.qjs__clin {
  background: var(--b-encre); color: var(--ivoire);
  padding: 144px 48px 120px;
  position: relative; overflow: hidden;
}
.qjs__clin::before {
  content: ""; position: absolute; left: -180px; top: 200px;
  width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid rgba(217,168,95,.16); pointer-events: none;
}
.qjs__clin::after {
  content: ""; position: absolute; right: -120px; bottom: 120px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(217,168,95,.10); pointer-events: none;
}
.qjs__clin-in { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }

.qjs__clin-intro {
  max-width: 700px; margin: 0 auto 64px; text-align: center;
  font-family: var(--f-serif); font-style: italic;
  font-size: 22px; line-height: 1.45; color: var(--or-pale);
}

.qjs__clin-blocs {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
.cbloc {
  display: grid; grid-template-columns: 220px 1fr; gap: 56px;
  padding: 40px 0;
  border-top: 1px solid rgba(217,168,95,.25);
}
.cbloc:first-child { border-top: 1px solid rgba(217,168,95,.5); }
.cbloc .head { padding-top: 8px; }
.cbloc .head .num {
  font-family: var(--f-display); font-style: italic;
  font-size: 42px; line-height: 1; color: var(--or);
  letter-spacing: -.03em; margin-bottom: 12px;
}
.cbloc .head h3 {
  font-family: var(--f-display); font-style: italic;
  font-size: 28px; line-height: 1.1; color: var(--ivoire);
  margin: 0 0 10px; font-weight: 400; letter-spacing: -.01em; text-wrap: balance;
}
.cbloc .head .meta {
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 600; color: var(--or-pale);
}

.cbloc .body .amorce {
  font-family: var(--f-sans); font-size: 15px; line-height: 1.65;
  color: var(--b-brume); margin: 0 0 20px; max-width: 60ch;
}
.cbloc .body .amorce strong { color: var(--ivoire); font-weight: 700; }

.cbloc .body ul.flist {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid rgba(217,168,95,.18);
}
.cbloc .body ul.flist li {
  padding: 16px 16px 16px 40px;
  position: relative;
  font-family: var(--f-sans); font-size: 14.5px; line-height: 1.55;
  color: var(--ivoire);
  border-bottom: 1px solid rgba(217,168,95,.18);
}
.cbloc .body ul.flist li:nth-child(odd) { border-right: 1px solid rgba(217,168,95,.18); }
.cbloc .body ul.flist li::before {
  content: "—"; position: absolute; left: 14px; top: 16px;
  font-family: var(--f-display); color: var(--or); font-style: italic;
}
.cbloc .body ul.flist li b {
  display: block;
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 17px; color: var(--ivoire); letter-spacing: -.01em;
  margin-bottom: 4px;
}
.cbloc .body ul.flist li em {
  font-family: var(--f-serif); font-style: italic;
  color: var(--or-pale); font-size: 14.5px;
}
.cbloc .body ul.flist li .hours {
  display: inline-block; margin-left: 6px;
  font-family: var(--f-sans); font-style: normal;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--or);
  padding: 2px 8px; border: 1px solid rgba(217,168,95,.4); border-radius: 999px;
}
.cbloc .body ul.flist--single { grid-template-columns: 1fr; }
.cbloc .body ul.flist--single li { border-right: 0 !important; }

.cbloc .body .prose {
  font-family: var(--f-sans); font-size: 15px; line-height: 1.75;
  color: var(--b-brume); margin: 0; max-width: 64ch;
}
.cbloc .body .prose .axes {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px;
}
.cbloc .body .prose .axes span {
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600; color: var(--or-pale);
  padding: 5px 10px; background: rgba(217,168,95,.08);
  border: 1px solid rgba(217,168,95,.25);
}

.qjs__clin-cloture {
  margin-top: 56px; text-align: center;
  font-family: var(--f-serif); font-style: italic;
  font-size: 22px; line-height: 1.4; color: var(--or-pale);
  max-width: 56ch; margin-left: auto; margin-right: auto;
}
.qjs__clin-cloture::before {
  content: "||"; display: block;
  font-family: var(--f-display); font-style: italic;
  color: var(--or); font-size: 36px; line-height: 1; margin-bottom: 12px;
}

/* ===== V — RECHERCHE / ENSEIGNEMENT / PUBLI / INTERVENTIONS ===== */
.qjs__rech { background: var(--ivoire); padding: 144px 48px 120px; }
.qjs__rech-in { max-width: 1240px; margin: 0 auto; }

.qjs__rech-tabs {
  position: sticky; top: 96px; z-index: 5;
  display: flex; gap: 4px; padding: 8px;
  background: rgba(251,248,241,.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gris-1);
  margin: 0 auto 64px;
  width: fit-content;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(14,37,64,.05);
}
.qjs__rech-tabs .tab {
  background: transparent; border: 0; cursor: pointer;
  padding: 10px 18px; border-radius: 999px;
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; color: var(--gris-2);
  transition: background .25s, color .25s;
}
.qjs__rech-tabs .tab:hover { color: var(--b-encre); }
.qjs__rech-tabs .tab.is-active { background: var(--b-encre); color: var(--ivoire); }
.qjs__rech-tabs .tab .n {
  font-family: var(--f-display); font-style: italic;
  margin-right: 6px; color: var(--or); font-size: 14px;
}

/* sous-section générique */
.rblock {
  margin-bottom: 96px; scroll-margin-top: 160px;
}
.rblock:last-child { margin-bottom: 0; }
.rblock-h {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  align-items: baseline;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(168,136,75,.3);
  margin-bottom: 36px;
}
.rblock-h .num {
  font-family: var(--f-display); font-style: italic;
  font-size: 56px; line-height: 1; color: var(--or-deep);
  letter-spacing: -.03em;
}
.rblock-h h3 {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(36px, 4vw, 52px); line-height: 1; color: var(--b-encre);
  margin: 0; font-weight: 400; letter-spacing: -.02em; text-wrap: balance;
}

/* 5.1 recherche & enseignement */
.qjs__rech51 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.qjs__rech51 .col { }
.qjs__rech51 .col-eb {
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 700; color: var(--or-deep);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.qjs__rech51 .col-eb::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.qjs__rech51 .col h4 {
  font-family: var(--f-display); font-style: italic;
  font-size: 26px; line-height: 1.15; color: var(--b-encre);
  margin: 0 0 14px; font-weight: 400; letter-spacing: -.01em;
}
.qjs__rech51 .col p {
  font-family: var(--f-sans); font-size: 15.5px; line-height: 1.7;
  color: var(--b-encre); margin: 0 0 16px; text-wrap: pretty;
}
.qjs__rech51 .insts {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 12px;
}
.qjs__rech51 .insts span {
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .08em;
  font-weight: 600; color: var(--b-encre);
  padding: 6px 11px;
  background: var(--blanc);
  border: 1px solid var(--gris-1);
}

/* 5.2 livres */
.qjs__livres { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.lcard {
  background: var(--blanc); padding: 36px 36px 32px;
  border-top: 4px solid var(--or);
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 6px 18px rgba(14,37,64,.05);
  transition: box-shadow .35s ease, transform .35s ease;
}
.lcard:hover { box-shadow: 0 24px 60px rgba(14,37,64,.12); transform: translateY(-3px); }
.lcard.lcard--soon {
  background: var(--b-encre); color: var(--ivoire);
  border-top-color: var(--or);
}
/* lcard avec couverture intégrée — couverture en haut, layout vertical */
.lcard.lcard--withcover {
  padding: 0 0 32px;
  overflow: hidden;
}
.lcard.lcard--withcover .lcard__cover {
  width: 100%;
  aspect-ratio: 3 / 4.4;
  object-fit: cover;
  display: block;
  margin: -4px 0 28px;
  background: var(--b-encre);
}
.lcard.lcard--withcover .eb,
.lcard.lcard--withcover h4,
.lcard.lcard--withcover .editeur,
.lcard.lcard--withcover p,
.lcard.lcard--withcover .ulule {
  margin-left: 36px; margin-right: 36px;
}
.lcard .eb {
  font-family: var(--f-sans); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 700; color: var(--or-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.lcard.lcard--soon .eb { color: var(--or); }
.lcard .eb .pill {
  padding: 3px 9px; background: var(--or); color: var(--b-encre);
  font-weight: 800;
}
.lcard h4 {
  font-family: var(--f-display); font-style: italic;
  font-size: 32px; line-height: 1.1; color: var(--b-encre);
  margin: 0; font-weight: 400; letter-spacing: -.015em; text-wrap: balance;
}
.lcard.lcard--soon h4 { color: var(--ivoire); }
.lcard .editeur {
  font-family: var(--f-serif); font-style: italic;
  font-size: 17px; color: var(--gris-2);
}
.lcard.lcard--soon .editeur { color: var(--or-pale); }
.lcard p {
  font-family: var(--f-sans); font-size: 14.5px; line-height: 1.65;
  color: var(--b-encre); margin: 0;
  padding-top: 14px; border-top: 1px solid rgba(168,136,75,.3);
  max-width: 50ch;
}
.lcard.lcard--soon p { color: var(--b-brume); border-color: rgba(217,168,95,.3); }
.lcard .ulule {
  margin-top: 6px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; color: var(--or);
  text-decoration: none;
  padding: 10px 0; border-bottom: 1px solid var(--or);
  width: fit-content;
  transition: gap .25s, color .25s;
}
.lcard .ulule:hover { gap: 16px; color: var(--ivoire); border-color: var(--ivoire); }

/* 5.3 articles académiques */
.qjs__acad-arts {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid rgba(168,136,75,.3);
}
.aart {
  display: grid; grid-template-columns: 76px 1fr 200px; gap: 28px;
  padding: 22px 0; align-items: baseline;
  border-bottom: 1px solid rgba(168,136,75,.18);
  transition: background .25s;
}
.aart:hover { background: var(--ivoire-soft); }
.aart .year {
  font-family: var(--f-display); font-style: italic;
  font-size: 32px; line-height: 1; color: var(--or-deep);
  letter-spacing: -.02em;
}
.aart .title {
  font-family: var(--f-sans); font-size: 15.5px; line-height: 1.55;
  color: var(--b-encre);
}
.aart .title b {
  font-family: var(--f-display); font-style: italic;
  font-weight: 400; font-size: 18px; color: var(--b-encre);
  display: block; margin-bottom: 4px; letter-spacing: -.01em;
}
.aart .title i {
  font-style: italic; color: var(--or-deep);
}
.aart .revue {
  font-family: var(--f-serif); font-style: italic;
  font-size: 16px; color: var(--gris-2); line-height: 1.3;
  text-align: right;
}
.aart .revue em { color: var(--b-encre); font-style: italic; }

.qjs__scholar {
  margin-top: 32px; padding: 22px 28px;
  background: var(--blanc); border-left: 4px solid var(--or);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.qjs__scholar .lab {
  font-family: var(--f-serif); font-style: italic;
  font-size: 18px; color: var(--b-encre); max-width: 50ch;
}
.qjs__scholar a {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; color: var(--b-encre);
  text-decoration: none;
  padding: 12px 22px; border: 1.5px solid var(--b-encre);
  border-radius: 999px;
  transition: background .25s, color .25s, gap .25s;
}
.qjs__scholar a:hover { background: var(--b-encre); color: var(--ivoire); gap: 18px; }

/* 5.4 articles grand public + médias */
.qjs__gp { }
.qjs__gp .conv {
  background: var(--blanc); padding: 28px 32px;
  border-left: 4px solid var(--or);
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  margin-bottom: 36px;
}
.qjs__gp .conv .ic {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ivoire-deep); color: var(--or-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-style: italic;
  font-size: 24px; line-height: 1;
}
.qjs__gp .conv .body {
  font-family: var(--f-sans); font-size: 14.5px; line-height: 1.6;
  color: var(--b-encre);
}
.qjs__gp .conv .body b {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 19px; display: block; margin-bottom: 4px;
}
.qjs__gp .conv .body em { font-family: var(--f-serif); font-style: italic; color: var(--or-deep); }

.qjs__gp .amorce {
  font-family: var(--f-serif); font-style: italic;
  font-size: 22px; line-height: 1.4; color: var(--b-encre);
  margin: 0 0 28px; max-width: 56ch;
}

.qjs__medias {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid rgba(168,136,75,.3);
  border-left: 1px solid rgba(168,136,75,.3);
}
.qjs__medias .m {
  flex: 1 1 180px;
  padding: 22px 24px;
  border-right: 1px solid rgba(168,136,75,.3);
  border-bottom: 1px solid rgba(168,136,75,.3);
  background: var(--blanc);
  font-family: var(--f-display); font-style: italic;
  font-size: 22px; line-height: 1; color: var(--b-encre);
  letter-spacing: -.01em;
  display: flex; align-items: baseline; gap: 10px;
  transition: background .25s, color .25s;
}
.qjs__medias .m:hover { background: var(--b-encre); color: var(--ivoire); }
.qjs__medias .m::before {
  content: "·"; color: var(--or); font-size: 24px;
}
.qjs__medias .m.is-press::before { content: "★"; font-size: 14px; color: var(--or-deep); }

/* 5.5 conférences */
.qjs__conf {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.cline {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(168,136,75,.18);
  align-items: baseline;
}
.cline:first-child { border-top: 1px solid rgba(168,136,75,.5); }
.cline .when {
  font-family: var(--f-display); font-style: italic;
  font-size: 22px; line-height: 1; color: var(--or-deep);
  letter-spacing: -.01em;
}
.cline .when .y {
  display: block; font-size: 36px; color: var(--b-encre); line-height: 1;
}
.cline .what {
  font-family: var(--f-sans); font-size: 16px; line-height: 1.55;
  color: var(--b-encre);
}
.cline .what b {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 22px; display: block; margin-bottom: 6px;
  color: var(--b-encre); letter-spacing: -.01em;
}
.cline .what em { font-style: italic; color: var(--or-deep); }

.qjs__cv {
  margin-top: 48px; padding: 28px 36px;
  background: var(--b-encre); color: var(--ivoire);
  display: flex; justify-content: space-between; align-items: center;
  gap: 28px; flex-wrap: wrap;
}
.qjs__cv .lab {
  font-family: var(--f-display); font-style: italic;
  font-size: 24px; color: var(--ivoire);
  letter-spacing: -.01em;
}
.qjs__cv .lab em { color: var(--or); font-style: italic; }
.qjs__cv a {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--or); color: var(--b-encre);
  padding: 16px 28px; font-family: var(--f-sans); font-size: 12px;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; border-radius: 999px;
  transition: background .25s, gap .25s, transform .25s, box-shadow .25s;
}
.qjs__cv a:hover { background: var(--ivoire); transform: translateY(-2px); gap: 22px; box-shadow: 0 12px 28px rgba(201,168,108,.3); }

/* ===== CTA FINAL ===== */
.qjs__cta {
  padding: 144px 48px; background: var(--b-encre); color: var(--ivoire);
  text-align: center; position: relative; overflow: hidden;
}
.qjs__cta-orb {
  position: absolute; left: 50%; top: 50%;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(217,168,95,.18), transparent 70%);
  transform: translate(-50%, -50%); pointer-events: none;
  filter: blur(20px);
}
.qjs__cta::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: rgba(217,168,95,.2); transform: translateX(-50%);
}
.qjs__cta-in { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.qjs__cta-pp { font-family: var(--f-display); font-style: italic; color: var(--or); font-size: 64px; line-height: 1; letter-spacing: -.04em; margin-bottom: 12px; }
.qjs__cta-eb {
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; font-weight: 700; color: var(--or);
  margin-bottom: 14px;
  display: inline-flex; gap: 12px; align-items: center;
}
.qjs__cta-eb::before, .qjs__cta-eb::after { content: ""; width: 24px; height: 1px; background: currentColor; }
.qjs__cta h2 {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(56px, 6vw, 88px); line-height: 1;
  color: var(--ivoire); margin: 0 0 24px; font-weight: 400; letter-spacing: -.02em;
}
.qjs__cta-lede {
  font-family: var(--f-display); font-style: italic;
  font-size: 22px; color: var(--or-pale); line-height: 1.4; margin: 0 auto 40px;
  max-width: 56ch; text-wrap: balance;
}
.qjs__cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.qjs__btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--or); color: var(--b-encre);
  padding: 18px 28px; font-family: var(--f-sans); font-size: 12px;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; border-radius: 999px;
  transition: background .25s, color .25s, transform .25s, box-shadow .25s, gap .25s;
}
.qjs__btn-primary .arr { font-family: var(--f-display); font-style: italic; font-size: 18px; }
.qjs__btn-primary:hover { background: var(--ivoire); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,168,108,.3); gap: 22px; }
.qjs__btn-secondary {
  background: transparent; color: var(--ivoire);
  padding: 18px 28px; font-family: var(--f-sans); font-size: 12px;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid var(--ivoire); border-radius: 999px;
  transition: background .25s, color .25s, transform .25s;
}
.qjs__btn-secondary:hover { background: var(--ivoire); color: var(--b-encre); transform: translateY(-2px); }

/* ===== MENTIONS + FOOTER ===== */
.qjs__mentions { background: var(--ivoire); padding: 0 48px 64px; }
.qjs__mentions-in { max-width: 760px; margin: 0 auto; padding: 32px 0 0; border-top: 1px solid rgba(14,37,64,.12); }
.qjs__mentions h3 { font-family: var(--f-sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gris-2); font-weight: 700; margin: 0 0 16px; }
.qjs__mentions p { font-family: var(--f-sans); font-size: 13px; line-height: 1.65; color: var(--gris-2); margin: 0; max-width: 70ch; }

.qjs__foot { background: var(--rlg-encre); color: var(--ivoire); padding: 80px 48px 28px; } /* MAJ 2026-05-12 clip 181 : ex var(--noir), bleu marine */
.qjs__foot-in { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px; }
.qjs__foot h4 { font-family: var(--f-sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--or); margin: 0 0 18px; font-weight: 700; }
.qjs__foot a, .qjs__foot p { font-family: var(--f-sans); font-size: 14px; color: var(--ivoire); display: block; margin-bottom: 8px; text-decoration: none; line-height: 1.6; transition: color .25s, transform .25s; }
.qjs__foot a:hover { color: var(--or); transform: translateX(2px); }
.qjs__foot-logo { display: inline-flex; background: var(--ivoire); padding: 14px 18px; border-radius: 8px; margin-bottom: 18px; }
.qjs__foot-logo img { height: 64px; width: auto; }
.qjs__foot-tag { font-family: var(--f-serif); font-style: italic; color: var(--b-brume); font-size: 16px; max-width: 30ch; }
.qjs__foot-bottom { max-width: 1240px; margin: 56px auto 0; padding-top: 24px; border-top: 1px solid rgba(244,236,220,.16); display: flex; justify-content: space-between; font-size: 12px; color: var(--b-brume); flex-wrap: wrap; gap: 12px; }

/* ===== Scroll reveal ===== */
.qjs-reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.qjs-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .qjs-reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .v7__nav-c { display: none; }
  .v7__nav { grid-template-columns: 1fr auto; }
  .qjs__hero-in { grid-template-columns: 1fr; gap: 56px; }
  .qjs__hero-portrait { max-width: 420px; }
  .qjs__parle-in { grid-template-columns: 1fr; gap: 48px; }
  .qjs__parle-photo { position: relative; top: 0; max-width: 380px; }
  .qjs__acad-grid { grid-template-columns: 1fr; }
  .cbloc { grid-template-columns: 1fr; gap: 24px; }
  .cbloc .body ul.flist { grid-template-columns: 1fr; }
  .cbloc .body ul.flist li:nth-child(odd) { border-right: 0; }
  .qjs__rech51 { grid-template-columns: 1fr; }
  .qjs__livres { grid-template-columns: 1fr; }
  .aart { grid-template-columns: 60px 1fr; }
  .aart .revue { grid-column: 2; text-align: left; padding-top: 6px; }
  .cline { grid-template-columns: 1fr; gap: 8px; }
  .qjs__foot-in { grid-template-columns: 1fr 1fr; }
  .rblock-h { grid-template-columns: 60px 1fr; gap: 16px; }
}
