/* ============================================================================
   Easypeak — Page À propos (storytelling éditorial)
   Standalone : tous styles dans <style>, aucune dépendance externe sauf fonts
   ============================================================================ */

:root {
  --paper:    #FAF7F2;
  --paper-2:  #F2ECE2;
  --paper-3:  #EDE4D4;
  --ink:      #1C1613;
  --ink-2:    #2A221C;
  --muted:    #6B5D52;
  --terra:    #B54A2A;
  --terra-d:  #8F3B20;
  --terra-l:  #E8A284;
  --sand:     #D9C9B0;
  --ink-deep: #1A0F0A;

  --line:        rgba(28, 22, 19, 0.11);
  --line-s:      rgba(28, 22, 19, 0.06);
  --line-paper:  rgba(232, 162, 132, 0.18);

  --font-display: "Unbounded", "Helvetica Neue", Arial, sans-serif;
  --font-serif:   "Fraunces", "Times New Roman", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "SF Mono", ui-monospace, Menlo, monospace;

  --ease: cubic-bezier(.2,.6,.2,1);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ============================================================================
   Reusable primitives
   ============================================================================ */
.grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11  0 0 0 0 0.09  0 0 0 0 0.07  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.grain--paper {
  opacity: .045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.grain--terra {
  opacity: .08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
.halo {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(
    circle var(--halo-size, 75vh) at var(--halo-x, 50%) var(--halo-y, 50%),
    var(--halo-color, rgba(181, 74, 42, .42)) 0%,
    transparent 70%
  );
  mix-blend-mode: screen;
}
.vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(10,6,3,.55) 100%);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
}
.eyebrow .dash {
  width: 28px; height: 1px; background: currentColor; opacity: .55;
}
.eyebrow--paper { color: rgba(250, 247, 242, .68); }
.eyebrow--terra { color: var(--terra); }
.eyebrow--terra-l { color: var(--terra-l); }

/* Mask-line — révélation au scroll */
.mask-line { display: block; overflow: hidden; padding-bottom: .14em; margin-bottom: -.14em; }
.mask-inner {
  display: block; transform: translateY(110%);
  transition: transform 1.05s cubic-bezier(.2,.8,.2,1);
}
.in .mask-inner,
.mask-line.in .mask-inner { transform: translateY(0); }
.mask-line.d1 .mask-inner { transition-delay: .12s; }
.mask-line.d2 .mask-inner { transition-delay: .24s; }
.mask-line.d3 .mask-inner { transition-delay: .36s; }
.mask-line.d4 .mask-inner { transition-delay: .48s; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }

em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--terra);
  letter-spacing: -.005em;
}
.on-dark em { color: var(--terra-l); }
.on-terra em { color: var(--paper); font-weight: 500; }

::selection { background: var(--terra); color: var(--paper); }

/* ============================================================================
   Boutons
   ============================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  padding: 18px 26px; border-radius: 2px; border: none;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              box-shadow .35s var(--ease), transform .25s var(--ease),
              border-color .25s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform .25s var(--ease); display: inline-flex; }
.btn:hover .arrow { transform: translate(3px, -3px); }
.btn--terra {
  background: var(--terra); color: var(--paper);
  box-shadow: 0 18px 40px -18px rgba(143,59,32,.55);
}
.btn--terra:hover {
  background: var(--terra-d);
  box-shadow: 0 22px 50px -16px rgba(143,59,32,.7);
  transform: translateY(-2px);
}
.btn--lg {
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px; padding: 24px 40px; letter-spacing: -.005em;
}

/* ============================================================================
   Portrait placeholder (data-mood gradient + monospace caption)
   ============================================================================ */
.portrait-img {
  position: relative; overflow: hidden;
  background: var(--paper-3);
  border-radius: 4px;
  box-shadow: 0 30px 70px -32px rgba(28,22,19,.4);
}
.portrait-img::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.18) 0%, transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,.35) 0%, transparent 55%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.portrait-img::after {
  content: attr(data-name);
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(250,247,242,.55);
  pointer-events: none;
}
.portrait-img[data-mood="tom"]    { background: radial-gradient(circle at 40% 38%, #E8A284 0%, #8C6F52 55%, #2A1A12 100%); }
.portrait-img[data-mood="damien"] { background: radial-gradient(circle at 58% 32%, #C9B49A 0%, #6B5E52 50%, #1C1410 100%); }
.portrait-img[data-mood="louis"]  { background: radial-gradient(circle at 50% 50%, #D9C9B0 0%, #8F3B20 55%, #1C1410 100%); }

/* ============================================================================
   01 — Hero (sombre cinéma)
   ============================================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 76vh; width: 100%;
  background: var(--ink-deep);
  color: var(--paper);
  padding: 200px 64px 140px;
  display: flex; align-items: center;
}
.hero .halo {
  --halo-color: rgba(181, 74, 42, .55);
  --halo-size: 95vh;
  --halo-x: 70%; --halo-y: 30%;
}
.hero__particles {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(232,162,132,.5) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(232,162,132,.25) 1px, transparent 1.5px);
  background-size: 240px 220px, 380px 340px;
  background-position: 0 0, 90px 110px;
  opacity: .35;
  mix-blend-mode: screen;
  animation: drift 60s linear infinite;
}
@keyframes drift {
  from { background-position: 0 0, 90px 110px; }
  to   { background-position: 240px 220px, 470px 450px; }
}
.hero__timestamp {
  position: absolute; top: 110px; right: 64px; z-index: 4;
  display: flex; gap: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  color: rgba(232,162,132,.55);
}
.hero__inner {
  position: relative; z-index: 3;
  max-width: 1320px; margin: 0 auto; width: 100%;
}
.hero__eye { margin-bottom: 36px; }

.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 5.4vw, 92px);
  line-height: 1.04; letter-spacing: -.035em;
  color: #FFFFFF;
  margin: 0 0 48px;
  text-wrap: balance;
  max-width: 1180px;
}
.hero__title em { color: var(--terra-l); }

.hero__subs {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 660px;
}
.hero__sub {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.45;
  color: rgba(255, 255, 255, .82);
  margin: 0;
}
.hero__scroll {
  position: absolute; left: 64px; bottom: 48px; z-index: 4;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  color: rgba(232,162,132,.55);
  text-transform: uppercase;
}
.hero__scroll .bar {
  display: inline-block; width: 36px; height: 1px;
  background: currentColor; position: relative; overflow: hidden;
}
.hero__scroll .bar::after {
  content: ""; position: absolute; inset: 0;
  background: var(--terra-l);
  transform: translateX(-100%);
  animation: scrollHint 2.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0%    { transform: translateX(-100%); }
  50%   { transform: translateX(0); }
  100%  { transform: translateX(100%); }
}

/* ============================================================================
   02 — Portraits (alternance gauche/droite)
   ============================================================================ */
.portrait {
  position: relative;
  padding: 180px 64px;
  overflow: hidden;
}
.portrait--paper { background: var(--paper); }
.portrait--paper-2 { background: var(--paper-2); }
.portrait__inner {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.portrait__media { position: relative; }
.portrait__media .portrait-img {
  aspect-ratio: 4 / 5;
  width: 100%;
}
.portrait__caption {
  margin-top: 18px;
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; line-height: 1.45;
  color: var(--muted);
}
.portrait__caption .idx {
  font-family: var(--font-mono); font-style: normal;
  font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--terra);
}
.portrait__body { max-width: 540px; }
.portrait__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.06; letter-spacing: -.03em;
  color: var(--ink);
  margin: 28px 0 36px;
  text-wrap: balance;
}
.portrait__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--terra);
}
.portrait__p {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(17px, 1.35vw, 21px); line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.portrait__p:last-of-type { margin-bottom: 0; }
.portrait__p strong {
  font-family: var(--font-body); font-style: normal; font-weight: 600;
  color: var(--ink);
}
.portrait__p em { color: var(--terra-d); }
.portrait__closing {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(20px, 1.7vw, 26px); line-height: 1.4;
  color: var(--terra-d);
  text-wrap: balance;
}

/* alternance — media à droite par défaut, reversed via modifier */
.portrait--reverse .portrait__inner { direction: rtl; }
.portrait--reverse .portrait__media,
.portrait--reverse .portrait__body { direction: ltr; }

/* ============================================================================
   03 — Pullquote (sombre)
   ============================================================================ */
.pull {
  position: relative; overflow: hidden;
  background: var(--ink-deep);
  color: var(--paper);
  padding: 200px 64px;
  display: flex; align-items: center; justify-content: center;
}
.pull .halo {
  --halo-color: rgba(181, 74, 42, .5);
  --halo-size: 95vh;
  --halo-x: 50%; --halo-y: 50%;
}
.pull__inner {
  position: relative; z-index: 3;
  max-width: 1280px;
  text-align: center;
}
.pull__mark {
  display: inline-flex; font-family: var(--font-serif); font-style: italic;
  font-size: 96px; line-height: 1; color: var(--terra-l);
  opacity: .55;
  margin-bottom: 12px;
}
.pull__q {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 6.4vw, 116px);
  line-height: 1.02; letter-spacing: -.04em;
  color: #FFFFFF;
  margin: 0 0 56px;
  text-wrap: balance;
}
.pull__q em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--terra-l);
  letter-spacing: -.01em;
}
.pull__attr {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 11.5px; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra-l);
}
.pull__attr .dash {
  width: 28px; height: 1px; background: currentColor; opacity: .55;
}

/* ============================================================================
   04 — Fondation (amitié + photo équipe)
   ============================================================================ */
.found {
  position: relative;
  background: var(--paper-2);
  padding: 180px 64px;
  overflow: hidden;
}
.found__inner { max-width: 1180px; margin: 0 auto; }
.found__head { text-align: center; margin-bottom: 72px; max-width: 980px; margin-left: auto; margin-right: auto; }
.found__head .eyebrow { justify-content: center; }
.found__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(38px, 5.2vw, 84px);
  line-height: 1.04; letter-spacing: -.035em;
  color: var(--ink);
  margin: 28px 0 0; text-wrap: balance;
}
.found__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--terra);
}

.found__photo {
  position: relative;
  aspect-ratio: 21 / 9;
  margin: 0 -32px 80px;
  border-radius: 4px;
  background:
    radial-gradient(circle at 25% 40%, #E8A284 0%, transparent 45%),
    radial-gradient(circle at 50% 55%, #C9B49A 0%, transparent 50%),
    radial-gradient(circle at 78% 38%, #D9C9B0 0%, transparent 45%),
    linear-gradient(180deg, #2A1A12 0%, #1C1410 100%);
  box-shadow: 0 40px 100px -40px rgba(28,22,19,.5);
  overflow: hidden;
}
.found__photo::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.12) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,.45) 0%, transparent 60%);
  mix-blend-mode: overlay; pointer-events: none;
}
.found__photo::after {
  content: "equipe.png · 16/9 · Tom, Damien, Louis";
  position: absolute; left: 24px; bottom: 20px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(250,247,242,.55);
}

.found__article { max-width: 720px; margin: 0 auto; }
.found__article p {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(17px, 1.4vw, 22px); line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 26px;
  text-wrap: pretty;
}
.found__article p:last-child { margin-bottom: 0; }
.found__article p em { color: var(--terra-d); font-weight: 500; }
.found__article p strong {
  font-family: var(--font-body); font-style: normal; font-weight: 600;
  color: var(--ink);
}

/* ============================================================================
   05 — Chiffres signature
   ============================================================================ */
.numbers {
  position: relative;
  background: var(--paper);
  padding: 200px 64px;
  overflow: hidden;
}
.numbers__inner { max-width: 1380px; margin: 0 auto; }
.numbers__head { text-align: center; margin-bottom: 120px; }
.numbers__head .eyebrow { justify-content: center; }
.numbers__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(38px, 5.2vw, 80px);
  line-height: 1.04; letter-spacing: -.035em;
  color: var(--ink);
  margin: 28px 0 0; text-wrap: balance;
}
.numbers__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--terra);
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.nfig {
  position: relative;
  padding: 80px 32px 80px 0;
  border-right: 1px solid var(--line);
  text-align: left;
}
.nfig:last-child { border-right: none; }
.nfig:not(:first-child) { padding-left: 48px; }
.nfig__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(120px, 14vw, 220px);
  line-height: .92;
  letter-spacing: -.05em;
  color: var(--terra);
  margin: 0 0 24px;
  font-variant-numeric: tabular-nums;
}
.nfig__label {
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.nfig__caption {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 16px; line-height: 1.5;
  color: var(--ink-2);
  max-width: 280px;
  margin: 0;
}

/* ============================================================================
   06 — Refus IA (chapitre terracotta foncé)
   ============================================================================ */
.refus {
  position: relative;
  background: var(--terra-d);
  color: var(--paper);
  padding: 200px 64px;
  overflow: hidden;
}
.refus__corner {
  position: absolute; pointer-events: none;
  width: 60vh; height: 60vh;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.refus__corner--tl {
  top: -20vh; left: -10vh;
  background: radial-gradient(circle, rgba(232,162,132,.6) 0%, transparent 70%);
}
.refus__corner--br {
  bottom: -20vh; right: -10vh;
  background: radial-gradient(circle, rgba(26,15,10,.7) 0%, transparent 70%);
}
.refus__inner {
  position: relative; z-index: 2;
  max-width: 920px; margin: 0 auto;
  text-align: center;
}
.refus__inner .eyebrow { justify-content: center; color: rgba(250,247,242,.55); }
.refus__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(38px, 5.4vw, 88px);
  line-height: 1.02; letter-spacing: -.035em;
  color: #FFFFFF;
  margin: 28px 0 80px; text-wrap: balance;
}
.refus__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--terra-l);
}
.refus__article { max-width: 720px; margin: 0 auto; text-align: left; }
.refus__article p {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(17px, 1.4vw, 22px); line-height: 1.65;
  color: rgba(250,247,242,.88);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.refus__article p:last-child { margin-bottom: 0; }
.refus__article p em {
  color: var(--terra-l);
  font-weight: 500;
}
.refus__article p strong {
  font-family: var(--font-body); font-style: normal; font-weight: 600;
  color: #FFFFFF;
}
.refus__article p.refus__closing {
  margin-top: 12px;
  padding-top: 32px;
  border-top: 1px solid rgba(232,162,132,.25);
  font-size: clamp(19px, 1.6vw, 25px);
  font-weight: 500;
  color: var(--terra-l);
  font-style: italic;
}

/* ============================================================================
   07 — Équipe (3 cards synthétiques)
   ============================================================================ */
.team {
  position: relative;
  background: var(--paper);
  padding: 200px 64px;
}
.team__inner { max-width: 1380px; margin: 0 auto; }
.team__head { text-align: center; margin-bottom: 96px; }
.team__head .eyebrow { justify-content: center; }
.team__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(38px, 5.2vw, 80px);
  line-height: 1.04; letter-spacing: -.035em;
  color: var(--ink);
  margin: 28px 0 0; text-wrap: balance;
}
.team__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--terra);
}

.team__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.tcard {
  background: var(--paper-3);
  border: 1px solid var(--line-s);
  border-radius: 6px;
  padding: 48px 40px 40px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .45s var(--ease), border-color .35s var(--ease);
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -28px rgba(143,59,32,.3);
  border-color: var(--terra-l);
}
.tcard__photo {
  width: 200px; height: 200px;
  border-radius: 50%;
  position: relative; overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 18px 40px -16px rgba(28,22,19,.35);
  transition: box-shadow .35s var(--ease);
}
.tcard__photo[data-mood="tom"]    { background: radial-gradient(circle at 40% 38%, #E8A284 0%, #8C6F52 55%, #2A1A12 100%); }
.tcard__photo[data-mood="damien"] { background: radial-gradient(circle at 58% 32%, #C9B49A 0%, #6B5E52 50%, #1C1410 100%); }
.tcard__photo[data-mood="louis"]  { background: radial-gradient(circle at 50% 50%, #D9C9B0 0%, #8F3B20 55%, #1C1410 100%); }
.tcard__photo::after {
  content: attr(data-name); position: absolute;
  left: 50%; bottom: 18%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(250,247,242,.58);
}
.tcard:hover .tcard__photo {
  box-shadow: 0 26px 50px -16px rgba(143,59,32,.5);
}
.tcard__role {
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 14px;
}
.tcard__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(24px, 2.2vw, 32px); letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 24px;
}
.tcard__bio {
  font-family: var(--font-serif); font-style: italic;
  font-size: 15.5px; line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}
.tcard__bio em { color: var(--terra-d); font-weight: 500; }

/* ============================================================================
   08 — CTA final (sombre, bouclage)
   ============================================================================ */
.cta {
  position: relative; overflow: hidden;
  min-height: 92vh; width: 100%;
  background: var(--ink-deep);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  padding: 160px 64px 120px;
}
.cta .halo {
  --halo-color: rgba(181, 74, 42, .55);
  --halo-size: 100vh;
  --halo-x: 50%; --halo-y: 50%;
}
.cta__inner {
  position: relative; z-index: 3;
  max-width: 1200px; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.cta__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 5.8vw, 96px);
  line-height: 1.02; letter-spacing: -.038em;
  color: #FFFFFF; margin: 36px 0 28px;
  text-wrap: balance;
}
.cta__title em { color: var(--terra-l); }
.cta__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(18px, 1.5vw, 23px); line-height: 1.5;
  color: rgba(255,255,255,.78);
  max-width: 660px; margin: 0 0 64px;
}
.cta__btn { animation: ctaPulse 3.4s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 24px 60px -20px rgba(143,59,32,.55), 0 0 0 0 rgba(232,162,132,0); }
  50%      { box-shadow: 0 30px 80px -22px rgba(143,59,32,.7),  0 0 0 14px rgba(232,162,132,.06); }
}
.cta__sig {
  margin-top: 96px;
  display: flex; align-items: center; gap: 20px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  color: rgba(232,162,132,.6);
  text-transform: uppercase;
  flex-wrap: wrap; justify-content: center;
}
.cta__sig .dot { width: 4px; height: 4px; background: var(--terra-l); border-radius: 50%; opacity: .8; }

/* ============================================================================
   Reduced motion
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .mask-inner { transform: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 1080px) {
  .hero, .portrait, .pull, .found, .numbers, .refus, .team, .cta { padding-left: 32px; padding-right: 32px; }
  .hero__timestamp { display: none; }
  .hero__scroll { left: 32px; }
  .portrait { padding-top: 130px; padding-bottom: 130px; }
  .portrait__inner { grid-template-columns: 1fr; gap: 56px; }
  .portrait--reverse .portrait__inner { direction: ltr; }
  .portrait__media .portrait-img { max-width: 480px; }
  .found__photo { margin: 0 0 64px; }
  .numbers__grid { grid-template-columns: 1fr; }
  .nfig { border-right: none; border-bottom: 1px solid var(--line); padding: 56px 0; }
  .nfig:last-child { border-bottom: none; }
  .nfig:not(:first-child) { padding-left: 0; }
  .team__cards { grid-template-columns: 1fr; gap: 28px; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .hero { padding: 130px 20px 120px; min-height: auto; }
  .hero__scroll { left: 20px; bottom: 24px; }
  .portrait, .pull, .found, .numbers, .refus, .team, .cta {
    padding-left: 20px; padding-right: 20px;
    padding-top: 110px; padding-bottom: 110px;
  }
}
/* ============================================================================
   Header — repris à l'identique de index.html (home.css)
   ============================================================================ */
.ai-quick-answer {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 250;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 22px 48px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: background .4s var(--ease), color .4s var(--ease), padding .3s var(--ease);
  color: var(--paper);
}
.nav--paper { background: rgba(250, 247, 242, .75); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); color: var(--ink); padding: 16px 48px; border-bottom: 1px solid var(--line-s); }
.nav__logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo-img { height: 28px; width: auto; display: block; filter: brightness(0) invert(1); transition: filter .4s var(--ease); }
.nav--paper .nav__logo-img { filter: none; }
.nav__logo-text { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -.02em; line-height: 1; }
.nav__logo-text em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--terra-l); }
.nav--paper .nav__logo-text em { color: var(--terra); }

.nav__links { display: flex; gap: 36px; justify-content: center; }
.nav__link {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  position: relative; padding: 4px 0;
}
.nav__link::after {
  content: ""; position: absolute; bottom: 0; left: 50%; height: 1px; width: 0;
  background: currentColor; transition: width .3s var(--ease), left .3s var(--ease);
}
.nav__link:hover::after { width: 100%; left: 0; }
.nav__link.is-active::after { width: 100%; left: 0; }
.nav__link.is-active { color: var(--terra-l); }
.nav--paper .nav__link.is-active { color: var(--terra); }

.nav__right { justify-self: end; display: inline-flex; align-items: center; gap: 14px; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  background: var(--terra); color: var(--paper);
  padding: 11px 18px; border-radius: 2px;
  transition: background .2s var(--ease);
}
.nav__cta:hover { background: var(--terra-d); }
.nav__cta .arrow { transition: transform .25s var(--ease); display: inline-block; }
.nav__cta:hover .arrow { transform: translate(2px, -2px); }

.menu-trigger {
  background: transparent; border: 1px solid rgba(250,247,242,.35);
  border-radius: 2px; padding: 9px 14px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--paper);
  cursor: pointer; transition: all .35s var(--ease);
}
.nav--paper .menu-trigger { color: var(--ink); border-color: var(--line); }
.menu-trigger:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.nav--paper .menu-trigger:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.menu-trigger-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terra-l); transition: transform .35s var(--ease); }
.nav--paper .menu-trigger-dot { background: var(--terra); }
.menu-trigger:hover .menu-trigger-dot { transform: scale(1.3); }

/* ============================================================================
   Sticky CTA — repris à l'identique de index.html (home.css)
   ============================================================================ */
.sticky-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--terra); color: var(--paper);
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  padding: 14px 22px; border-radius: 2px;
  box-shadow: 0 20px 40px -16px rgba(143, 59, 32, .55);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .2s var(--ease);
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { background: var(--terra-d); }
.sticky-cta .arrow { display: inline-block; transition: transform .25s var(--ease); }
.sticky-cta:hover .arrow { transform: translate(2px, -2px); }

/* ============================================================================
   Menu fullscreen overlay — repris à l'identique de index.html (home.css)
   ============================================================================ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 180;
  background: var(--ink); color: var(--paper);
  background-image: radial-gradient(circle at 50% 50%, rgba(181,74,42,.08) 0%, transparent 60%);
  padding: 120px 60px 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s linear .5s;
}
.menu-overlay.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s;
}
.menu-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; max-width: 1440px; margin: 0 auto; width: 100%; flex: 1; align-items: start; }
.menu-eyebrow { font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(250,247,242,.5); margin-bottom: 36px; opacity: 0; transform: translateY(8px); transition: all .4s var(--ease) .1s; }
.menu-overlay.is-open .menu-eyebrow { opacity: 1; transform: translateY(0); }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { opacity: 0; transform: translateY(20px); transition: all .5s var(--ease); }
.menu-overlay.is-open .menu-list li { opacity: 1; transform: translateY(0); }
.menu-overlay.is-open .menu-list li:nth-child(1) { transition-delay: .20s; }
.menu-overlay.is-open .menu-list li:nth-child(2) { transition-delay: .26s; }
.menu-overlay.is-open .menu-list li:nth-child(3) { transition-delay: .32s; }
.menu-overlay.is-open .menu-list li:nth-child(4) { transition-delay: .38s; }
.menu-overlay.is-open .menu-list li:nth-child(5) { transition-delay: .44s; }
.menu-overlay.is-open .menu-list li:nth-child(6) { transition-delay: .50s; }
.menu-list a {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.1; letter-spacing: -.02em;
  color: var(--paper); display: inline-flex; align-items: baseline; gap: 12px;
  padding: 14px 0; transition: color .3s var(--ease);
}
.menu-list a:hover { color: var(--terra-l); }
.menu-list .menu-arrow { font-size: .5em; opacity: .5; transition: transform .35s var(--ease); }
.menu-list a:hover .menu-arrow { transform: translate(3px, -3px); opacity: 1; }
.menu-list-sub a { font-size: clamp(20px, 2vw, 28px); font-weight: 400; padding: 8px 0; }

.menu-footer {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
  max-width: 1440px; margin: 0 auto; width: 100%;
  padding-top: 60px; border-top: 1px solid rgba(250,247,242,.1);
  opacity: 0; transform: translateY(20px);
  transition: all .5s var(--ease) .5s;
}
.menu-overlay.is-open .menu-footer { opacity: 1; transform: translateY(0); }
.menu-footer-label { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 22px; color: rgba(250,247,242,.75); margin-bottom: 16px; }
.menu-footer-meta { font-family: var(--font-body); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(250,247,242,.5); line-height: 2; }
.menu-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--terra); color: var(--paper); padding: 14px 22px; border-radius: 2px; font-family: var(--font-body); font-weight: 500; font-size: 13px; transition: background .25s var(--ease); }
.menu-cta:hover { background: var(--terra-d); }
.menu-cta .arr { font-size: 14px; transition: transform .25s var(--ease); }
.menu-cta:hover .arr { transform: translate(2px, -2px); }
.menu-footer .footer-social { display: flex; gap: 16px; margin-top: 18px; }
.menu-footer .footer-social a { color: rgba(250,247,242,.6); transition: color .25s var(--ease); }
.menu-footer .footer-social a:hover { color: var(--terra-l); }

/* ============================================================================
   Footer — repris à l'identique de index.html (home.css)
   ============================================================================ */
footer.site-footer {
  background: var(--ink); color: rgba(250,247,242,.3);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,.06);
}
footer.site-footer .wrap { max-width: 1440px; margin: 0 auto; padding: 0 60px; }
footer.site-footer .seo-footer { max-width: 900px; margin: 0 auto; padding: 0 20px 40px; border-bottom: 1px solid rgba(250,247,242,.08); margin-bottom: 30px; }
footer.site-footer .seo-footer p { font-family: var(--font-body); font-weight: 400; font-size: 12px; line-height: 1.7; color: rgba(250,247,242,.35); letter-spacing: .01em; text-align: center; max-width: 72ch; margin: 0 auto; }
footer.site-footer .footer-social { display: flex; gap: 18px; align-items: center; margin: 16px 0; }
footer.site-footer .social-icon { color: rgba(250,247,242,.5); transition: color .25s var(--ease); }
footer.site-footer .social-icon:hover { color: var(--terra-l); }
footer.site-footer .row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-family: var(--font-body); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
footer.site-footer .row em { font-family: var(--font-serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--terra-l); opacity: .55; }
footer.site-footer .row a { color: inherit; opacity: .7; transition: opacity .25s; }
footer.site-footer .row a:hover { opacity: 1; }

/* ============================================================================
   Header / menu / footer — responsive (repris de home.css)
   ============================================================================ */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
  .nav__logo-img { height: 24px; }
  .nav__logo-text { font-size: 15px; }
  .nav__right { gap: 10px; }
  .nav__cta { padding: 9px 14px; font-size: 12px; }
  .menu-trigger { padding: 8px 12px; font-size: 11px; }
  .menu-trigger-label { display: none; }

  footer.site-footer .wrap { padding: 0 24px; }
  footer.site-footer .row { flex-direction: column; align-items: flex-start; gap: 12px; }

  .sticky-cta { bottom: 18px; right: 18px; padding: 12px 18px; font-size: 12px; }

  .menu-overlay { padding: 100px 24px 32px; }
  .menu-inner { grid-template-columns: 1fr; gap: 48px; }
  .menu-footer { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
}

@media (max-width: 480px) {
  .menu-overlay { padding: 80px 18px 24px; }
}

/* ============================================================================
   Photos fondateurs / équipe — <img> réelle, fallback gradient si onerror
   ============================================================================ */
.portrait-img__photo, .found__photo-img, .tcard__photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.portrait-img.has-photo::before,
.portrait-img.has-photo::after,
.found__photo.has-photo::before,
.found__photo.has-photo::after,
.tcard__photo.has-photo::after { display: none; }

/* Logo wordmark caché (icône seule) */
.nav__logo-text { display: none !important; }


/* ─── Fix navbar : espace entre liens centraux et boutons droite ─── */
.nav { column-gap: 32px; }
.nav__links { gap: 28px !important; }
.nav__right { padding-left: 8px; }

/* ─── Bouton fermer (X) défensif dans le menu plein écran ─── */
.menu-close-x {
  position: absolute; top: 24px; right: 24px;
  background: transparent;
  border: 1px solid rgba(250, 247, 242, .4);
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper, #FAF7F2); cursor: pointer;
  z-index: 50;
  transition: background .25s, border-color .25s, transform .25s;
}
.menu-close-x:hover {
  background: rgba(232, 162, 132, .12);
  border-color: var(--terra-l, #E8A284);
  transform: scale(1.06);
}
@media (max-width: 768px) {
  .menu-close-x { top: 14px; right: 14px; width: 40px; height: 40px; }
}
