@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/manrope-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/manrope-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/manrope-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


:root {
  --ink: #171714;
  --paper: #f7f4ee;
  --stone: #ebe5db;
  --white: #fffdf8;
  --muted: #777167;
  --accent: #b49a72;
  --line: rgba(23, 23, 20, .14);
  --max: 1380px;
  --pad: clamp(24px, 5vw, 84px);
  --header-h: 79px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
::selection { background: #cdbc9f; color: var(--ink); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
}

/* Shared components */
.eyebrow {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #6c6559; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: transform .2s ease, background-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.text-link {
  width: max-content;
  max-width: 100%;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  font-size: 13px;
}
.inline-cta {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

/* Home hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: 54px;
  padding: 180px var(--pad) 62px;
  overflow: hidden;
  background: #161613;
  color: var(--white);
}
.home-hero::before,
.page-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(12, 12, 10, .80), rgba(12, 12, 10, .55) 48%, rgba(12, 12, 10, .30)),
    var(--hero-image, url('hero-accueil-2200.webp'));
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 56%;
  transform: scale(1.02);
}
.hero::after,
.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .12) 52%, rgba(0, 0, 0, .5));
}
.hero > *, .page-hero-image > * { position: relative; z-index: 1; }
.hero-content { max-width: 920px; }
.hero h1 {
  max-width: 1200px;
  margin-bottom: 28px;
  font-size: clamp(61px, 8.4vw, 132px);
}
.hero-lead {
  max-width: 770px;
  color: rgba(255, 255, 255, .85);
  font-size: clamp(18px, 1.8vw, 27px);
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}
.hero-note {
  justify-self: end;
  max-width: 330px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .45);
  color: rgba(255, 255, 255, .78);
}
.hero-note span {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 1;
}
.hero-note p { margin: 10px 0 0; font-size: 14px; }

/* Inner hero */
.page-hero {
  min-height: 74svh;
  padding: 190px var(--pad) 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #191916;
  color: #fff;
}
.page-hero h1 {
  max-width: 1150px;
  margin: 0 0 28px;
  font-size: clamp(60px, 8vw, 118px);
}
.page-hero > p:last-child {
  max-width: 770px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(18px, 1.7vw, 25px);
}
.page-hero.warm { background: linear-gradient(135deg, #302921, #171714); }
.page-hero.soft { background: linear-gradient(135deg, #4f514b, #1d1d1a); }
.page-hero.night { background: linear-gradient(145deg, #13171a, #1b1b18); }
.page-hero.faq-hero { background: linear-gradient(145deg, #29261f, #171714); }
.page-hero.contact-hero { background: linear-gradient(145deg, #272721, #171714); }
.portrait-hero {
  display: grid;
  grid-template-columns: 1.05fr .65fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 0;
}
.portrait-hero > div { padding-bottom: 80px; }
.portrait-hero picture { align-self: end; justify-self: end; max-width: 540px; }
.portrait-hero img {
  width: 100%;
  max-height: 70svh;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}

/* Sections */
.section-light,
.section-stone,
.section-dark,
.section { padding: clamp(90px, 10vw, 150px) var(--pad); }
.section-light { background: var(--paper); }
.section-stone { background: var(--stone); }
.section-dark { background: var(--ink); color: var(--white); }
.section-kicker {
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.intro-grid,
.content-split {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(50px, 9vw, 140px);
}
.intro h2,
.content-split h2,
.section-heading h2,
.profile-copy h2,
.contact-page h2,
.clinical-box h2,
.centered h2 {
  margin-bottom: 0;
  font-size: clamp(45px, 5.2vw, 82px);
}
.intro-copy { max-width: 650px; padding-top: 10px; font-size: 18px; }
.intro-copy p + p,
.long-copy p + p { margin-top: 24px; }
.long-copy { max-width: 700px; font-size: 18px; }
.long-copy.centered,
.centered { max-width: 900px; margin: auto; }
.light-copy { color: rgba(255, 255, 255, .72); }
.section-heading { max-width: 1050px; margin: 0 auto 70px; }
.section-heading.split {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 90px;
  align-items: end;
}
.section-heading.split > p { max-width: 480px; color: rgba(255, 255, 255, .62); font-size: 15px; }

.principles {
  max-width: var(--max);
  margin: 90px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.principle { min-height: 230px; padding: 26px 40px 0 0; border-right: 1px solid var(--line); }
.principle + .principle { padding-left: 40px; }
.principle:last-child { border-right: 0; }
.principle > span,
.route-card > span,
.format-card > span,
.context-grid span,
.steps span { color: var(--muted); font-size: 11px; letter-spacing: .14em; }
.principle h3 { margin: 48px 0 12px; font-size: 34px; }
.principle p { max-width: 320px; color: #5d584f; font-size: 14px; }

.route-grid,
.scenario-grid,
.context-grid,
.method-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.route-card,
.scenario-grid article,
.context-grid article,
.method-grid article {
  min-height: 280px;
  padding: 34px 38px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.route-card { display: flex; flex-direction: column; transition: background-color .2s ease; }
.route-card:hover { background: rgba(255, 255, 255, .42); }
.route-card h3,
.scenario-grid h3,
.context-grid h3,
.method-grid h3 { margin: 52px 0 14px; font-size: 42px; }
.route-card p,
.scenario-grid p,
.method-grid p { max-width: 500px; color: #615b52; }
.route-card b { margin-top: auto; font-size: 12px; font-weight: 500; }
.context-grid,
.context-grid article { border-color: rgba(255, 255, 255, .16); }
.context-grid p { color: rgba(255, 255, 255, .63); }
.context-grid span { color: rgba(255, 255, 255, .46); }

.profile {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(55px, 9vw, 140px);
  align-items: start;
}
.profile-visual {
  position: sticky;
  top: 110px;
  margin: 0;
  overflow: hidden;
  background: #d9d0c4;
}
.profile-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}
.profile-visual figcaption {
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding: 12px 15px;
  background: rgba(247, 244, 238, .94);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .08em;
}
.profile-copy { max-width: 760px; padding-top: 20px; }
.profile-copy h2 { margin-bottom: 36px; }
.profile-copy > p { color: #565149; font-size: 17px; }
.profile-stats { margin-top: 55px; border-top: 1px solid var(--line); }
.profile-stats > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.profile-stats strong { font-family: 'Cormorant Garamond', serif; font-size: 31px; }
.profile-stats span { color: var(--muted); font-size: 13px; }

.compact-cta { display: grid; grid-template-columns: 1fr .65fr; gap: 100px; align-items: end; }
.compact-cta h2 { margin: 0; font-size: clamp(44px, 5vw, 76px); }
.compact-cta > div:last-child p { color: rgba(255, 255, 255, .65); }
.compact-cta.light > div:last-child p { color: #625d55; }

.format-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-left: 1px solid rgba(255, 255, 255, .18);
}
.format-card {
  min-height: 330px;
  padding: 36px 40px 42px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.format-card h3 { margin: 55px 0 8px; font-size: 44px; }
.format-meta { color: var(--accent); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.format-card > p:last-child { max-width: 520px; margin-top: auto; color: rgba(255, 255, 255, .64); font-size: 14px; }
.format-card.featured { background: #211f1a; }
.format-card > span { color: rgba(255, 255, 255, .5); }

.editorial-list { display: grid; grid-template-columns: .75fr 1fr; gap: 100px; }
.editorial-list h2 { font-size: clamp(44px, 5vw, 76px); }
.editorial-list ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.editorial-list li { padding: 20px 0; border-bottom: 1px solid var(--line); }

.clinical-box { max-width: none; }
.clinical-box > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.clinical-box h2 { margin-bottom: 30px; }
.clinical-box p { color: #5b564e; font-size: 18px; }
.clinical-box.emph { border-top: 1px solid var(--line); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); }
.steps > div { padding: 30px; border-left: 1px solid var(--line); }
.steps > div:last-child { border-right: 1px solid var(--line); }
.steps h3 { margin: 50px 0 14px; font-size: 31px; }

.story-section { display: grid; grid-template-columns: 1fr .85fr; gap: 100px; }
.story-section h2 { font-size: clamp(45px, 5vw, 78px); }
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 70px;
  padding-bottom: 70px;
}
.stats-band > div { padding: 24px; border-right: 1px solid rgba(255, 255, 255, .16); min-width: 0; }
.stats-band > div:last-child { border-right: 0; }
.stats-band strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.stats-band span { color: rgba(255, 255, 255, .55); font-size: 12px; }

.faq-section { max-width: 1100px; margin: auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  position: relative;
  padding: 28px 45px 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 31px;
  line-height: 1.1;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 26px;
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 300;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item div { max-width: 800px; padding-bottom: 28px; color: #5d584f; }

.contact-page { display: grid; grid-template-columns: 1fr .8fr; gap: 100px; }
.contact-copy { max-width: 700px; }
.contact-panel { border-top: 1px solid var(--line); }
.contact-line {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-line span { color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.contact-line strong { min-width: 0; font-size: 14px; font-weight: 500; overflow-wrap: anywhere; }
.contact-panel .button { margin-top: 28px; }
.contact-panel.large { padding-top: 10px; }

/* First-generation page compatibility */
.wrap { max-width: var(--max); margin: auto; }
.split { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(48px, 8vw, 120px); }
.lead { color: #59544d; font-size: 18px; }
.prose { max-width: 860px; margin: auto; }
.prose h2 { margin-top: 58px; font-size: clamp(40px, 4.5vw, 64px); }
.prose h3 { margin-top: 38px; font-size: 30px; }
.prose p, .prose li { color: #565149; font-size: 17px; }
.breadcrumbs { margin-bottom: 28px; color: var(--muted); font-size: 11px; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.notice { margin-top: 36px; padding: 22px 26px; border-left: 2px solid var(--accent); background: rgba(180, 154, 114, .12); color: #5b554d; font-size: 14px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 58px; border-top: 1px solid var(--line); }
.card { min-height: 250px; padding: 30px 34px 24px 0; border-right: 1px solid var(--line); }
.card + .card { padding-left: 34px; }
.card:last-child { border-right: 0; }
.card h3 { margin: 42px 0 14px; font-size: 34px; }
.card p { color: #5f5a52; font-size: 14px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 42px; border-top: 1px solid var(--line); }
.stat { padding: 18px 20px 0 0; }
.stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 32px; }
.stat span { color: var(--muted); font-size: 12px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-lines { border-top: 1px solid var(--line); }

.site-footer {
  padding: 45px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  background: #11110f;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}
.site-footer strong { color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 24px; }
.site-footer p { margin: 5px 0 0; }
.footer-links { display: flex; gap: 22px; align-items: flex-start; }
.photo-credits {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .38);
  font-size: 10px;
}

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

/* Tablet */
@media (max-width: 1180px) {
  :root { --pad: clamp(24px, 4vw, 48px); }
}

/* Mobile navigation + stacked layout */
@media (max-width: 1200px) {
  :root { --header-h: 70px; }

  .reveal { opacity: 1; transform: none; transition: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: 92svh;
    gap: 44px;
    padding-top: 130px;
    padding-bottom: 44px;
  }
  .hero-note { justify-self: start; max-width: 520px; }
  .hero h1 { font-size: clamp(58px, 11vw, 88px); }

  .intro-grid,
  .content-split,
  .section-heading.split,
  .profile,
  .compact-cta,
  .editorial-list,
  .story-section,
  .contact-page,
  .split,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .route-grid,
  .scenario-grid,
  .context-grid,
  .method-grid { grid-template-columns: 1fr; }

  .principles { grid-template-columns: 1fr; margin-top: 60px; }
  .principle,
  .principle + .principle {
    min-height: 0;
    padding: 24px 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .principle h3 { margin-top: 22px; }

  .profile-visual { position: relative; top: auto; width: min(100%, 650px); margin: 0 auto; }
  .portrait-hero { grid-template-columns: minmax(0, 1fr); gap: 42px; padding-bottom: 0; }
  .portrait-hero > * { min-width: 0; }
  .portrait-hero picture { width: 100%; min-width: 0; }
  .portrait-hero > div { padding-bottom: 0; }
  .portrait-hero picture { justify-self: start; max-width: 520px; }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .card,
  .card + .card { min-height: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .stats { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

/* Phone */
@media (max-width: 640px) {
  :root { --pad: 20px; --header-h: 64px; }

  .hero {
    min-height: 100svh;
    gap: 34px;
    padding: 118px 20px 34px;
  }
  .home-hero::before { background-position: 62% center; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(50px, 14.5vw, 68px); line-height: .94; }
  .hero-lead { font-size: 16px; line-height: 1.55; }
  .hero-actions { align-items: stretch; gap: 16px; margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .hero-note { padding-top: 16px; }
  .hero-note span { font-size: 34px; }
  .hero-note p { font-size: 13px; line-height: 1.5; }

  .page-hero {
    min-height: auto;
    padding: 126px 20px 58px;
  }
  .page-hero h1 { margin-bottom: 22px; font-size: clamp(46px, 13.5vw, 62px); line-height: .95; }
  .page-hero > p:last-child { font-size: 17px; line-height: 1.55; }
  .portrait-hero { padding-bottom: 0; }
  .portrait-hero picture { max-width: 100%; }
  .portrait-hero img { max-height: none; }

  .section-light,
  .section-stone,
  .section-dark,
  .section { padding: 70px 20px; }
  .section-heading { margin-bottom: 44px; }
  .section-kicker { margin-bottom: 24px; }
  .intro h2,
  .content-split h2,
  .section-heading h2,
  .profile-copy h2,
  .contact-page h2,
  .clinical-box h2,
  .centered h2 { font-size: clamp(39px, 11.5vw, 52px); line-height: .98; }
  .intro-copy,
  .long-copy,
  .lead,
  .clinical-box p { font-size: 16px; }

  .route-card,
  .scenario-grid article,
  .context-grid article,
  .method-grid article { min-height: 0; padding: 26px 22px 30px; }
  .route-card h3,
  .scenario-grid h3,
  .context-grid h3,
  .method-grid h3 { margin: 30px 0 12px; font-size: 34px; }
  .route-card p,
  .scenario-grid p,
  .context-grid p,
  .method-grid p { font-size: 14px; }

  .format-grid { grid-template-columns: 1fr; }
  .format-card { min-height: 280px; padding: 28px 24px; }
  .format-card h3 { margin-top: 36px; font-size: 38px; }

  .profile { gap: 38px; }
  .profile-visual { width: 100%; }
  .profile-visual figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    text-align: center;
    font-size: 10px;
  }
  .profile-copy { padding-top: 0; }
  .profile-copy > p { font-size: 16px; }
  .profile-stats { margin-top: 38px; }
  .profile-stats > div { grid-template-columns: 1fr; gap: 2px; padding: 16px 0; }
  .profile-stats strong { font-size: 29px; }

  .compact-cta { gap: 28px; }
  .compact-cta h2 { font-size: clamp(40px, 11.5vw, 54px); }

  .editorial-list { gap: 28px; }
  .steps { grid-template-columns: 1fr; }
  .steps > div,
  .steps > div:last-child { padding: 24px 0; border-right: 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .steps > div:first-child { border-top: 1px solid var(--line); }
  .steps h3 { margin-top: 28px; }

  .stats-band { grid-template-columns: 1fr; padding-top: 44px; padding-bottom: 44px; }
  .stats-band > div { padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
  .stats-band > div:last-child { border-bottom: 0; }
  .stats-band strong { font-size: 34px; overflow-wrap: normal; }

  .faq-item summary { padding: 23px 38px 23px 0; font-size: 26px; line-height: 1.1; }
  .faq-item summary::after { top: 21px; }
  .faq-item div { padding-bottom: 24px; font-size: 15px; }

  .contact-line { grid-template-columns: 1fr; gap: 4px; padding: 17px 0; }
  .contact-panel .button { width: 100%; }
  .prose h2 { margin-top: 46px; font-size: 40px; }
  .prose h3 { margin-top: 34px; font-size: 28px; }
  .prose p,
  .prose li { font-size: 16px; }
  .notice { padding: 20px; }

  .site-footer { grid-template-columns: 1fr; gap: 26px; padding: 38px 20px; }
  .footer-links { margin-top: 0; }
  .photo-credits { padding-top: 16px; }
}

@media (max-width: 370px) {
  .hero h1 { font-size: 49px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* Editorial refinement and accessible progressive enhancement */
:root { --muted: #625d54; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #a77c38; outline-offset: 6px; }
.skip-link { position: fixed; top: 12px; left: 16px; z-index: 200; background: var(--paper); color: var(--ink); padding: 12px 20px; transform: translateY(-180%); }
.skip-link:focus { transform: none; }
main:focus { outline: none; }
.hero { min-height: min(860px, 100svh); grid-template-columns: minmax(0, 1fr) 240px; gap: 48px; }
.hero h1 { font-size: clamp(52px, 6.6vw, 100px); max-width: 900px; line-height: 1.02; }
.hero-lead { max-width: 690px; font-size: clamp(17px, 1.4vw, 21px); }
.hero-note span { font-size: 34px; }
.page-hero { min-height: 560px; padding-top: 145px; padding-bottom: 65px; }
.page-hero h1 { font-size: clamp(46px, 5.8vw, 86px); max-width: 1050px; line-height: 1.04; }
.page-hero .breadcrumbs { color: #d4c8b4; margin-bottom: 30px; font-size: 12px; }
.portrait-hero { padding-bottom: 0; }
.portrait-hero h1 { font-size: clamp(42px, 4.8vw, 72px); }
.intro h2, .section-heading h2, .content-split h2, .profile-copy h2, .contact-page h2, .clinical-box h2, .centered h2 { font-size: clamp(38px, 4vw, 62px); line-height: 1.08; }
.section-light, .section-stone, .section-dark { padding-top: clamp(64px, 7vw, 110px); padding-bottom: clamp(64px, 7vw, 110px); }
.route-card { transition: background-color .2s ease; }
.route-card:hover, .route-card:focus-visible { background: #e0d6c6; }
.route-card b { color: #57442a; }
.practical-section h2, .related-pages h2 { font-size: clamp(36px, 4vw, 58px); max-width: 760px; }
.practical-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; list-style: decimal-leading-zero; padding-left: 26px; margin-top: 45px; }
.practical-steps li { padding: 18px 12px 0 4px; border-top: 1px solid var(--line); }
.practical-steps li::marker { color: #765c35; font-size: 13px; }
.practical-steps h3 { font-size: 30px; line-height: 1.1; }
.practical-steps p { color: #565149; }
.related-pages .hero-actions { margin-top: 22px; }
.related-pages .inline-cta { margin-top: 0; }
.photo-credits { color: #b3aea4; font-size: 12px; line-height: 1.6; }
.footer-meta a:hover, .footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-copy h2 { margin-bottom: 28px; }
@media (max-width: 1100px) and (min-width: 981px) { }
@media (max-width: 1200px) {
 .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 145px; }
 .hero h1 { max-width: 750px; }
 .page-hero { min-height: auto; padding-top: 130px; }
 .practical-steps { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 640px) {
 .hero { padding: 124px 20px 44px; gap: 34px; }
 .hero h1 { font-size: clamp(44px, 11.5vw, 64px); }
 .page-hero { padding: 115px 20px 48px; }
 .page-hero h1 { font-size: clamp(40px, 10.5vw, 58px); }
 .portrait-hero { padding-bottom: 0; }
 .contact-page, .content-split, .profile { gap: 32px; }
 .related-pages .hero-actions { align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }

/* FIDES: quiet editorial treatment, shared with the existing warm palette. */
.fides-feature { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(48px, 8vw, 130px); align-items: center; background: #24271f; }
.fides-signature { border-right: 1px solid #6f715f; padding-right: 36px; }
.fides-signature > span { display: block; font-family: 'Cormorant Garamond',serif; font-size: clamp(72px, 8vw, 124px); letter-spacing: .08em; line-height: 1; color: #d4c3a4; margin-bottom: 28px; }
.fides-signature > p:last-child { color: #d5d4c9; font-size: 14px; }
.fides-feature-copy h2 { font-size: clamp(38px,4.4vw,68px); line-height: 1.08; }
.fides-feature-copy em, .fides-hero em { color: #dbc7a4; font-weight: 500; }
.fides-feature-copy > p { color: #e0dfd6; max-width: 650px; margin-bottom: 30px; }
.fides-hero { background: #24271f; }
.fides-hero-grid { display: grid; grid-template-columns: 1fr .38fr; gap: 70px; align-items: end; }
.fides-hero h1 { max-width: 900px; }
.fides-lead { max-width: 650px; font-size: 20px; color: #e0dfd6; margin-bottom: 32px; }
.fides-aside { border-top: 1px solid #818375; padding-top: 20px; padding-bottom: 8px; }
.fides-aside > span { text-transform: uppercase; letter-spacing: .14em; font-size: 10px; color: #d4c3a4; }
.fides-aside p { font-family: 'Cormorant Garamond',serif; font-size: 30px; line-height: 1.2; margin-top: 18px; }
#approche { scroll-margin-top: 100px; }
.fides-reflection .section-heading { max-width: none; margin-bottom: 46px; }
.fides-reflection .section-heading h2 { max-width: 920px; margin-bottom: 22px; }
.fides-questions { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 40px; }
.fides-questions article { border-top: 1px solid #b8ad9c; padding-top: 28px; }
.fides-questions h3 { font-size: 34px; line-height: 1.1; }
.fides-questions article > p:last-child { color: #5b564b; }
.fides-presence { max-width: none; }
.fides-details { display: grid; grid-template-columns: .65fr 1fr; gap: 80px; }
.fides-details h2 { font-size: clamp(38px,4vw,60px); line-height: 1.1; }
.fides-attribution { grid-column: 1 / -1; margin: 0; color: #b3aea4; font-size: 11px; }
.footer-links { flex-wrap: wrap; gap: 14px 22px; }
@media (max-width: 1200px) { .fides-feature, .fides-hero-grid, .fides-details { grid-template-columns: 1fr; gap: 40px; } .fides-signature { border-right: 0; padding-right: 0; border-bottom: 1px solid #6f715f; padding-bottom: 24px; } .fides-signature > span { font-size: 80px; } .fides-aside { max-width: 400px; } }
@media (max-width: 640px) { .fides-questions { grid-template-columns: 1fr; gap: 24px; } .fides-lead { font-size: 17px; } .fides-feature-copy h2 { font-size: 38px; } .fides-hero h1 { font-size: clamp(42px,11vw,62px); } .fides-details .faq-item summary { font-size: 25px; } }

/* A grounded portrait: relational intelligence shown through the practice. */
.portrait-insight { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px 90px; background: #24271f; }
.insight-heading h2 { font-size: clamp(40px,4.5vw,70px); line-height: 1.08; }
.insight-heading em { color: #dbc7a4; font-weight: 500; }
.insight-heading > p:last-child { color: #d5d4c9; max-width: 460px; }
.insight-copy { color: #e0dfd6; max-width: 680px; font-size: 18px; }
.insight-copy p + p { margin-top: 24px; }
.insight-principles { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 40px; }
.insight-principles article { border-top: 1px solid #707465; padding-top: 26px; }
.insight-principles h3 { font-size: 30px; line-height: 1.15; color: #fffdf8; }
.insight-principles p { font-size: 15px; color: #d5d4c9; }
@media (max-width: 980px) { .portrait-insight { grid-template-columns: 1fr; gap: 34px; } }
@media (max-width: 640px) { .insight-principles { grid-template-columns: 1fr; gap: 24px; } .insight-copy { font-size: 16px; } }

/* Shared navigation: one row on desktop, one coherent expandable menu on mobile. */
:root { --header-h: 88px; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h); padding: 0 clamp(24px,3vw,60px); color: #fffdf8; background: #171714; border-bottom: 1px solid #ffffff1f; }
.header-inner { width: 100%; max-width: 1440px; height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; min-width: 0; position: relative; z-index: 2; }
.brand-logo { display: block; width: 44px; height: 44px; object-fit: contain; flex: 0 0 44px; }
.brand-name { font-family: 'Cormorant Garamond',serif; font-size: 24px; font-weight: 600; line-height: 1; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: clamp(20px,2vw,32px); font-size: 13px; font-weight: 500; letter-spacing: .015em; line-height: 1; }
.main-nav > a, .nav-disclosure > summary { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0; white-space: nowrap; color: #d7d4cc; text-decoration: none; transition: color .15s ease; }
.main-nav > a:hover, .main-nav > a[aria-current='page'], .nav-disclosure[data-active] > summary, .nav-disclosure > summary:hover { color: #fffdf8; }
.nav-disclosure { position: relative; }
.nav-disclosure > summary { cursor: pointer; list-style: none; gap: 10px; }
.nav-disclosure > summary::-webkit-details-marker { display: none; }
.nav-chevron { display: block; width: 6px; height: 6px; border: solid currentColor; border-width: 0 1px 1px 0; transform: rotate(45deg) translateY(-2px); transition: transform .15s ease; }
.nav-disclosure[open] .nav-chevron { transform: rotate(225deg) translate(-1px,-1px); }
.nav-submenu { position: absolute; top: calc(100% + 12px); left: -22px; width: 280px; padding: 12px; background: #24251f; border: 1px solid #ffffff29; border-radius: 8px; box-shadow: 0 14px 35px #0003; }
.nav-submenu a { display: flex; align-items: center; min-height: 44px; padding: 12px; font-size: 13px; line-height: 1.4; color: #e1ddd4; border-radius: 4px; white-space: nowrap; }
.nav-submenu a:hover, .nav-submenu a[aria-current='page'] { background: #ffffff0d; color: #dbc7a4; }
.main-nav > .nav-cta { flex: 0 0 auto; min-width: 150px; height: 44px; padding: 0 22px; border: 1px solid #b49a72; border-radius: 4px; color: #fffdf8; white-space: nowrap; }
.main-nav > .nav-cta:hover { background: #b49a721a; }
.menu-toggle { display: none; }
.page-hero { min-height: auto; padding-top: calc(var(--header-h) + 64px); padding-bottom: 64px; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero .breadcrumbs { margin-bottom: 32px; }
.page-hero h1 { margin-bottom: 24px; max-width: 1100px; line-height: 1.06; }
.page-hero > p:last-child { margin-bottom: 0; max-width: 760px; line-height: 1.6; }
.portrait-hero { grid-template-columns: minmax(0,1.1fr) minmax(0,.7fr); gap: 64px; align-items: end; padding-bottom: 0; }
.portrait-hero > div { padding-bottom: 64px; }
.portrait-hero picture { display: block; width: 100%; max-width: 440px; }
.portrait-hero h1 { max-width: 640px; }
.hero-actions { align-items: center; }
.hero-actions > .button { flex-shrink: 0; white-space: nowrap; }
.hero-actions > .inline-cta { margin-top: 0; }
@media (min-width: 981px) and (max-width: 1100px) { .header-inner { gap: 24px; } .brand-name { font-size: 22px; } .main-nav { gap: 18px; } .main-nav > .nav-cta { min-width: 136px; padding: 0 16px; } }
@media (max-width: 980px) {
 :root { --header-h: 76px; }
 .site-header { padding: 0 24px; }
 .header-inner { gap: 16px; }
 .brand-name { font-size: 23px; }
 .menu-toggle { position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: center; height: 42px; min-width: 78px; padding: 0 14px; font: 500 13px 'Manrope',sans-serif; letter-spacing: .02em; color: #fffdf8; background: transparent; border: 1px solid #ffffff66; border-radius: 4px; cursor: pointer; }
 .main-nav { position: fixed; top: var(--header-h); bottom: 0; left: 0; right: 0; z-index: 1; display: none; padding: 28px 24px 40px; background: #171714; overflow-y: auto; overscroll-behavior: contain; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; }
 .main-nav.open { display: flex; }
 .main-nav > a, .nav-disclosure > summary { width: 100%; min-height: 62px; height: auto; justify-content: flex-start; padding: 18px 0; font-family: 'Cormorant Garamond',serif; font-size: 28px; line-height: 1.15; border-bottom: 1px solid #ffffff24; }
 .nav-disclosure > summary { justify-content: space-between; }
 .nav-submenu { position: static; width: 100%; padding: 6px 0 18px 14px; border: 0; border-left: 1px solid #b49a7266; border-radius: 0; box-shadow: none; background: transparent; margin: 12px 0; }
 .nav-submenu a { padding: 12px; min-height: 44px; font-size: 14px; white-space: normal; }
 .main-nav > .nav-cta { justify-content: center; min-height: 48px; height: 48px; margin-top: 28px; width: 100%; font-family: 'Manrope',sans-serif; font-size: 14px; }
 .portrait-hero { grid-template-columns: 1fr; gap: 32px; }
 .portrait-hero > div { padding-bottom: 0; }
 .portrait-hero picture { justify-self: start; }
 html:not(.js) .site-header { position: relative; height: auto; }
 html:not(.js) .header-inner { flex-wrap: wrap; padding: 16px 0; }
 html:not(.js) .menu-toggle { display: none; }
 html:not(.js) .main-nav { display: flex; position: static; width: 100%; padding: 0; overflow: visible; }
}
@media (max-width: 640px) {
 :root { --header-h: 72px; }
 .site-header { padding: 0 20px; }
 .brand { gap: 9px; }
 .brand-logo { width: 36px; height: 36px; flex-basis: 36px; }
 .brand-name { font-size: 20px; }
 .header-inner { gap: 12px; }
 .menu-toggle { min-width: 64px; height: 40px; padding: 0 10px; }
 .main-nav { padding: 20px 24px 36px; }
 .page-hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 44px; }
 .portrait-hero { padding-bottom: 0; }
 .page-hero .breadcrumbs { margin-bottom: 24px; }
}
@media (max-width: 360px) { .brand-name { font-size: 17px; } .brand-logo { width: 32px; height: 32px; flex-basis: 32px; } .site-header { padding: 0 16px; } }
/* A shared horizontal guide for the header, page titles and full-width sections. */
:root { --pad: max(clamp(20px, 4.5vw, 72px), calc((100vw - 1440px) / 2)); }
.site-header { padding-left: var(--pad); padding-right: var(--pad); }
.header-inner { max-width: none; }
main > .content-split { max-width: none; }
main > .faq-section { max-width: none; padding-left: max(var(--pad), calc((100% - 1100px) / 2)); padding-right: max(var(--pad), calc((100% - 1100px) / 2)); }
main > .long-copy.centered { max-width: none; padding-left: max(var(--pad), calc((100% - 900px) / 2)); padding-right: max(var(--pad), calc((100% - 900px) / 2)); }
.route-section > .section-heading { max-width: none; margin-left: 0; }
.route-section > .section-heading h2 { max-width: 960px; }
/* Avoid a horizontal scrollbar on narrow windows with non-overlay scrollbars. */
body { min-width: 0; }

.button { border-radius: 4px; }

/* Requested additions: hero imagery, one CTA and the professional/privacy details. */
:root { --hero-min-height: min(860px, 100svh); }
.hero, .page-hero-image { min-height: var(--hero-min-height); }
.page-hero-image { position: relative; isolation: isolate; overflow: hidden; }
.portrait-hero.page-hero-image { display: flex; align-items: stretch; padding-bottom: 64px; }
.portrait-hero.page-hero-image > div { padding-bottom: 0; }
.portrait-hero.page-hero-image > div > p:last-child { max-width: 760px; }
.hero-interieur { --hero-image: url('hero-interieur-1600.webp'); }
.hero-chemin { --hero-image: url('hero-chemin-1600.webp'); }
.hero-horizon { --hero-image: url('hero-horizon-1600.webp'); }
.hero-mission { --hero-image: url('hero-mission-1600.webp'); }
.hero-parcours { --hero-image: url('hero-parcours-1600.webp'); }
.hero-elan { --hero-image: url('hero-elan-1600.webp'); }
.hero-questions { --hero-image: url('hero-questions-1600.webp'); }
.hero-contact { --hero-image: url('hero-contact-1600.webp'); }
.method-discover { display: table; margin-top: 0; }
.professional-experience { padding-left: 24px; border-left: 1px solid var(--accent); }
.privacy-section { padding-top: 48px; padding-bottom: 48px; }
.privacy-inner { max-width: var(--max); margin: auto; padding-top: 28px; border-top: 1px solid var(--accent); display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: 32px 64px; }
.privacy-inner h2 { margin-bottom: 0; font-size: clamp(30px, 3vw, 42px); line-height: 1.1; }
.privacy-inner p { margin-bottom: 0; }
@media (max-width: 980px) { .privacy-inner { grid-template-columns: 1fr; } }
@media (max-width: 1200px) { .hero { align-content: end; } }
@media (max-width: 640px) {
  :root { --hero-min-height: 900px; }
  .portrait-hero.page-hero-image { padding-bottom: 44px; }
  .hero-interieur { --hero-image: url('hero-interieur-640.webp'); }
  .hero-chemin { --hero-image: url('hero-chemin-640.webp'); }
  .hero-horizon { --hero-image: url('hero-horizon-640.webp'); }
  .hero-mission { --hero-image: url('hero-mission-640.webp'); }
  .hero-parcours { --hero-image: url('hero-parcours-640.webp'); }
  .hero-elan { --hero-image: url('hero-elan-640.webp'); }
  .hero-questions { --hero-image: url('hero-questions-640.webp'); }
  .hero-contact { --hero-image: url('hero-contact-640.webp'); }
  .professional-experience { padding-left: 18px; }
}
@media (max-width: 370px) { :root { --hero-min-height: 1000px; } }

/* Requested portrait and professional category; existing desktop heroes stay unchanged. */
.parcours-portrait { width: min(100%, 420px); margin: 36px 0 0; }
.parcours-portrait img { display: block; width: 100%; height: auto; }
.nav-submenu .nav-professional { white-space: normal; }
#reinsertion-reconversion { scroll-margin-top: var(--header-h); }
@media (min-width: 1201px) { .route-grid-professional > :last-child { grid-column: 1 / -1; } }
@media (max-width: 1200px) { .parcours-portrait { max-width: 350px; } }
@media (min-width: 1201px) {
  .parcours-section { align-items: center; }
  .parcours-section .parcours-portrait { margin-left: auto; margin-right: auto; }
}

/* Mobile/tablet-only image heights and subject positioning. */
@media (max-width: 1024px) {
  .hero, .page-hero-image { min-height: 640px; }
  .home-hero::before, .page-hero-image::before { background-position: var(--hero-position, center 56%); }
  .home-hero { --hero-position: 62% center; --hero-image: url('hero-accueil-1600.webp'); }
  .hero-interieur { --hero-position: 60% center; }
  .hero-chemin { --hero-position: 54% center; }
  .hero-horizon { --hero-position: 55% center; }
  .hero-mission { --hero-position: 69% center; }
  .hero-parcours { --hero-position: 54% center; }
  .hero-elan { --hero-position: 62% center; }
  .hero-questions { --hero-position: 58% center; }
  .hero-contact { --hero-position: 64% center; }
}
@media (max-width: 640px) {
  .hero { min-height: 0; }
  .home-hero { --hero-image: url('hero-accueil-1200.webp'); }
  .page-hero-image { min-height: 560px; }
  .hero-interieur, .hero-chemin, .hero-horizon, .hero-mission,
  .hero-parcours, .hero-elan, .hero-questions, .hero-contact { --hero-position: center; }
  .hero-mission { --hero-position: 75% center; }
}

/* The new data notice uses the existing typefaces, spacing and light section palette. */
.privacy-document { padding-top: 0; }
.privacy-document > div { max-width: 860px; margin: auto; }
.privacy-document h2 { font-size: clamp(30px, 3.5vw, 44px); }
.privacy-document a { text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
