*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0d0d0b;
  --paper: #f5f2ec;
  --ivory: #faf8f3;
  --ash: #8a8680;
  --chalk: #d4cfc6;
  --accent: #3d5a47;
  --gold: #b8965a;
  --gold-soft: rgba(184,150,90,.65);
  --line-soft: rgba(138,134,128,.1);
  --line-mid: rgba(138,134,128,.15);
  --line-dark: rgba(13,13,11,.1);
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Outfit', sans-serif;
  --f-mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025;
  pointer-events: none;
  z-index: 9990;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.cursor {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, opacity .3s;
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(184,150,90,.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s, opacity .3s;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  mix-blend-mode: difference;
}

.nav-logo {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link,
.nav-cta,
.link-understated,
.btn-primary,
.form-submit,
.perspectives-more,
.sig-linkedin,
.footer-link,
.associes-link {
  cursor: none;
}

.nav-link {
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  opacity: .55;
  transition: opacity .2s;
}

.nav-link:hover { opacity: 1; }

.nav-cta {
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: 1;
  transition: opacity .2s;
}

.nav-cta:hover { opacity: .6; }

section { padding: 8rem 4rem; }

.section-tag {
  font-family: var(--f-mono);
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.divider-label {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 4rem;
}

.divider-label::before,
.divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-mid);
}

.divider-label span {
  font-family: var(--f-mono);
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ash);
  white-space: nowrap;
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 6rem;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.hero-bg-letter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(18rem, 28vw, 32rem);
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  color: var(--ivory);
}

.hero-line { display: block; overflow: hidden; padding: .08em 0; }
.hero-line-inner {
  display: block;
  transform: translateY(100%);
  animation: slideUp .9s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-line:nth-child(2) .hero-line-inner { animation-delay: .1s; }

@keyframes slideUp { to { transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes revealUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-title {
  position: relative;
  z-index: 1;
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 7rem;
}

.hero-title em,
.miroir-headline em,
.methode-headline em,
.exp-headline em,
.contact-headline em,
.sig-name em {
  font-style: italic;
  color: var(--gold);
}

.hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 5rem;
  align-items: flex-end;
  opacity: 0;
  animation: fadeIn .8s ease .7s forwards;
}

.hero-sub {
  font-size: .9rem;
  color: var(--ash);
  line-height: 1.65;
  max-width: 560px;
}

.hero-sub strong {
  color: #5a5650;
  font-weight: 400;
}

.hero-geo {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-family: var(--f-mono);
  font-size: .58rem;
  letter-spacing: .15em;
  color: var(--accent);
  text-transform: uppercase;
}

.hero-geo::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: auto;
}

.btn-primary {
  display: inline-block;
  padding: .9rem 2.5rem;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.btn-primary:hover { background: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeIn .6s ease 1.2s forwards;
}

.hero-scroll span {
  font-family: var(--f-mono);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ash);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--ash), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

#miroir,
#experience,
#perspectives,
#associes,
#signature {
  background: var(--ink);
}

.miroir-headline,
.methode-headline,
.exp-headline {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
}

.miroir-headline {
  margin-bottom: 6rem;
  max-width: 850px;
}

.situations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.situation {
  padding: 3.5rem 4rem;
  border: 1px solid var(--line-soft);
  position: relative;
  transition: background .3s;
}

.situation::before {
  content: attr(data-n);
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-family: var(--f-display);
  font-size: 5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(138,134,128,.07);
  line-height: 1;
}

.situation:hover,
.exp-card:hover,
.perspective-card:hover {
  background: rgba(245,242,236,.02);
}

.sit-title,
.exp-title,
.perspective-title {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--chalk);
  transition: color .3s;
}

.sit-title { margin-bottom: 1rem; }
.situation:hover .sit-title,
.exp-card:hover .exp-title,
.perspective-card:hover .perspective-title {
  color: var(--paper);
}

.sit-body,
.exp-body,
.perspective-excerpt,
.associes-text,
.marker-text span {
  color: var(--ash);
}

.sit-body,
.exp-body { font-size: .85rem; line-height: 1.75; }

#methode {
  background: var(--paper);
  color: var(--ink);
}

.methode-headline { color: var(--ink); margin-bottom: 2rem; }
.methode-intro {
  font-size: .88rem;
  color: #6a655e;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 5rem;
}

.methode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-dark);
}

.methode-phase {
  background: var(--paper);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  border-right: 1px solid var(--line-dark);
}

.methode-phase:last-child { border-right: none; }
.methode-phase::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 3rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .4s cubic-bezier(.16,1,.3,1);
}
.methode-phase:hover::after { width: calc(100% - 6rem); }
.methode-phase:hover { background: var(--ivory); }

.phase-num {
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(184,150,90,.25);
  line-height: 1;
  margin-bottom: 2rem;
}

.phase-title {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: .5rem;
  line-height: 1.2;
}

.phase-duration,
.exp-phase,
.perspective-date,
.sig-role,
.footer-copy {
  font-family: var(--f-mono);
  text-transform: uppercase;
}

.phase-duration,
.exp-phase,
.perspective-date {
  font-size: .55rem;
  letter-spacing: .15em;
  color: var(--accent);
}

.phase-duration { margin-bottom: 1.5rem; }
.phase-body {
  font-size: .82rem;
  color: #5a5650;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.phase-includes {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.phase-includes span,
.exp-bullets span {
  display: block;
  line-height: 1.55;
}

.phase-includes span {
  font-size: .78rem;
  color: #6a655e;
}

.phase-includes span::before,
.exp-bullets span::before {
  content: '— ';
  color: var(--gold-soft);
}

.exp-headline {
  max-width: 780px;
  margin: 0 auto 4rem;
  text-align: center;
}
.exp-headline2 {
  margin: 0 auto 1.5rem;
}

.exp-grid,
.perspectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.exp-grid-6 {
  grid-template-rows: auto auto;
}

/* ── Exp card thumbnail ── */
.exp-thumb {
  height: 140px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  margin: -3rem -3rem 1.75rem -3rem;
  width: calc(100% + 6rem);
  opacity: .7;
  mix-blend-mode: screen;
  filter: grayscale(100%) brightness(1.25);
  transition: opacity .35s, filter .35s;
}

.exp-card:hover .exp-thumb {
  opacity: .9;
  filter: grayscale(80%) brightness(1.35);
}

/* ── Brand strip ── */
.brand-strip {
  background: var(--ink);
  padding: 2.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.brand-strip-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.brand-strip:hover .brand-strip-track {
  animation-play-state: paused;
}

.brand-name {
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(138,134,128,.35);
  padding: 0 1.5rem;
  transition: color .25s;
}

.brand-strip:hover .brand-name:hover {
  color: rgba(138,134,128,.75);
}

.brand-sep {
  color: rgba(138,134,128,.15);
  font-size: .6rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.exp-card,
.perspective-card {
  display: flex;
  flex-direction: column;
  padding: 3rem;
  border: 1px solid var(--line-soft);
  transition: background .3s;
}

.perspective-card {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.perspective-card * {
  text-decoration: none;
}

.exp-title { margin-bottom: 1rem; }
.exp-phase {
  margin-top: -.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: .18em;
  font-size: .58rem;
}

.perspective-title {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  transition: color .3s;
}

.perspective-excerpt {
  font-size: .82rem;
  line-height: 1.75;
  flex: 1;
  transition: color .3s;
}

.perspective-card:hover .perspective-excerpt {
  color: var(--chalk);
}

.perspective-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: rgba(245,242,236,.85);
  transition: width .35s ease;
}

.perspective-card:hover .perspective-title::after {
  width: 72px;
}

.exp-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.exp-bullets {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}

.exp-bullets span {
  font-size: .82rem;
  color: rgba(138,134,128,.92);
}

.exp-result {
  margin-top: 1.5rem;
  font-size: .8rem;
  line-height: 1.6;
}

.exp-result strong { color: var(--gold); font-weight: 400; }
.exp-result span { color: rgba(245,242,236,.92); }

#signature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.sig-left {
  padding: 10rem 5rem 8rem;
  border-right: 1px solid rgba(138,134,128,.12);
}

.sig-header {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-bottom: 1.25rem;
}

.sig-photo {
  width: 150px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
  flex-shrink: 0;
}

.sig-name {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
}

.sig-role {
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--ash);
  margin-top: 10px;
}

.sig-bio {
  font-size: .9rem;
  color: var(--chalk);
  line-height: 1.8;
  max-width: 440px;
  font-weight: 200;
}

.sig-bio p + p { margin-top: 1.2em; }

.sig-linkedin {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 2rem;
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  border-bottom: 1px solid rgba(138,134,128,.2);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}

.sig-linkedin:hover { color: var(--chalk); border-color: var(--chalk); }
.sig-linkedin svg { width: 12px; height: 12px; fill: currentColor; opacity: .7; }

.sig-right { padding: 10rem 5rem 8rem; }
.sig-markers { display: flex; flex-direction: column; gap: 2rem; }
.sig-marker { display: flex; gap: 2rem; align-items: flex-start; }
.marker-icon {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  min-width: 2.5rem;
}

.marker-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--chalk);
  margin-bottom: .2rem;
}

#associes {
  padding: 5rem 4rem;
  border-top: 1px solid var(--line-soft);
}

.associes-inner {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  max-width: 820px;
  margin: 0 auto;
}

.associes-mark {
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(184,150,90,.15);
  line-height: 1;
  flex-shrink: 0;
}

.associes-text {
  font-size: .85rem;
  line-height: 1.8;
}

.associes-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--chalk);
  margin-bottom: .5rem;
}

.associes-link {
  color: var(--chalk);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,207,198,.25);
  transition: border-color .2s;
}

.associes-link:hover { border-color: rgba(212,207,198,.6); }

#contact {
  background: var(--paper);
  color: var(--ink);
  padding: 10rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-display);
  font-size: clamp(10rem, 20vw, 22rem);
  font-weight: 300;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(13,13,11,.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.contact-inner { position: relative; z-index: 1; }
.contact-tag {
  font-family: var(--f-mono);
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.contact-tag::before,
.contact-tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.contact-headline {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 2rem;
}

.contact-sub {
  font-size: .88rem;
  color: #6a655e;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 3rem;
}

.contact-form {
  max-width: 540px;
  margin: 0 auto 3rem;
  text-align: left;
}

.form-row { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: var(--f-mono);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(13,13,11,.2);
  padding: .6rem 0;
  font-family: var(--f-body);
  font-size: .85rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
  cursor: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(13,13,11,.3); }
.form-input:focus,
.form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: none; height: 80px; line-height: 1.6; }

.form-submit {
  display: inline-block;
  padding: .9rem 2.5rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: none;
  transition: background .2s;
  width: 100%;
  margin-top: .5rem;
}

.form-submit:hover { background: var(--accent); }

.contact-confirm-title {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--chalk);
  margin-bottom: 1rem;
}

.contact-confirm-copy {
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ash);
}

#perspectives { padding: 8rem 4rem; }
.perspective-date {
  margin-bottom: 1.5rem;
  font-size: .55rem;
  letter-spacing: .18em;
}
.perspective-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: .5rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(184,150,90,.7);
  margin-top: 1.5rem;
}

.perspectives-more-wrap {
  text-align: center;
  margin-top: 4rem;
}

.perspectives-more {
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  border-bottom: 1px solid rgba(138,134,128,.3);
  padding-bottom: 3px;
}

footer {
  background: var(--ink);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line-soft);
}

.footer-logo {
  font-family: var(--f-display);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ash);
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-link {
  font-family: var(--f-mono);
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(138,134,128,.5);
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover { color: var(--ash); }
.footer-copy {
  font-size: .55rem;
  letter-spacing: .1em;
  color: rgba(138,134,128,.3);
  text-align: right;
}

.reveal { opacity: 1; transform: translateY(0); }
.reveal.animate-in { animation: revealUp .8s cubic-bezier(.16,1,.3,1) both; }

@media (max-width: 900px) {
  nav { padding: 1.5rem 2rem; }
  .nav-links { gap: 1.5rem; }
  .nav-link { display: none; }

  #hero,
  section,
  .divider-label,
  #associes,
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
  }

  .hero-actions { margin-left: 0; }
  .hero-scroll { display: none; }

  .situations,
  .methode-grid,
  .exp-grid,
  .perspectives-grid,
  #signature {
    grid-template-columns: 1fr;
  }

  .methode-phase {
    border-right: none;
    border-bottom: 1px solid var(--line-dark);
  }
  .methode-phase:last-child { border-bottom: none; }

  .sig-left {
    border-right: none;
    border-bottom: 1px solid rgba(138,134,128,.12);
    padding: 5rem 2rem;
  }

  .sig-photo { width: 72px; height: 72px; }
  .sig-right { padding: 5rem 2rem; }
  .sig-header { align-items: flex-start; }

  #contact { padding: 7rem 2rem; }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links { justify-content: center; }
  .footer-copy { text-align: center; }

  .associes-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cursor,
  .cursor-ring { display: none; }

  body { cursor: auto; }
  a, button, input, textarea { cursor: pointer; }
  .form-input, .form-textarea, .btn-primary, .form-submit { cursor: auto; }
}

/* ───────────────────────────── */
/* STATS / CHIFFRES             */
/* ───────────────────────────── */

.stats {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 6rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  min-width: 180px;
}

.stat-number {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.stat-label {
  font-family: var(--f-mono);
  font-size: .55rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ash);
  line-height: 1.7;
}

.container-sm {
  max-width: 780px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 2.5rem;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.section-intro {
  font-size: .88rem;
  color: var(--ash);
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.transition-block {
  background: #0d0d0b;
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
}

.transition-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.transition-line {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #cfc8bc;
  background: linear-gradient(
    180deg,
    #f3efe8 0%,
    #cfc8bc 22%,
    #8e877d 48%,
    #e7e1d7 72%,
    #a39b90 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.transition-line em {
  font-style: italic;
  font-weight: 400;
}

@media (max-width: 768px) {
  .transition-block {
    padding: 6rem 1.5rem;
  }

  .transition-line br {
    display: none;
  }
}

/* ── Phase section label ── */
.phase-section-label {
  font-family: var(--f-mono);
  font-size: .52rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .8;
  margin-top: 1.75rem;
  margin-bottom: .75rem;
}

/* ── Livrables list (I & III) ── */
.phase-deliverables {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.phase-deliverables span {
  display: block;
  font-size: .78rem;
  color: #6a655e;
  line-height: 1.55;
}

.phase-deliverables span::before {
  content: '— ';
  color: var(--gold-soft);
}

/* ── Mission cards (II) ── */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
}

.mission-card {
  background: rgba(13,13,11,.04);
  border: 1px solid rgba(13,13,11,.08);
  padding: .8rem .9rem;
  transition: background .25s, border-color .25s;
}

.mission-card:hover {
  background: rgba(13,13,11,.07);
  border-color: rgba(13,13,11,.14);
}

.mission-card-full {
  grid-column: 1 / -1;
}

.mission-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .2rem;
}

.mission-sub {
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 300;
  color: #8a8680;
  line-height: 1.5;
}