:root {
  /* Palette — par défaut */
  --bg: #F6F5F5;
  --bg-soft: #F2E8ED;
  --ink: #25264B;
  --ink-soft: #5B5C7E;
  --ink-mute: #9A9BB3;
  --line: #E6DDE2;
  --accent: #E63782;
  --accent-soft: #FBDDEA;
  --sky: #82CFCC;

  --font-display: "Avenir Next", "Avenir", "Nunito Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Avenir Next", "Avenir", "Nunito Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-accent: "Instrument Serif", "Times New Roman", serif;

  --max: 1280px;
  --pad-x: clamp(24px, 5vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.serif { font-family: var(--font-accent); }
.mono { font-family: var(--font-mono); font-weight: 400; letter-spacing: 0; }
.italic { }

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transition: all .2s;
}
.nav-links a.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── Burger mobile ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, #fff 50%, transparent);
  cursor: pointer;
  z-index: 42;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .34s cubic-bezier(.5,1.6,.4,1), opacity .2s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Panneau mobile ── */
.nav-sheet {
  position: fixed;
  inset: 0;
  z-index: 38;
  background: color-mix(in srgb, var(--ink) 32%, transparent);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav-sheet.is-open { opacity: 1; pointer-events: auto; }
.nav-sheet-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(82vw, 360px);
  height: 100%;
  background: var(--bg);
  box-shadow: -20px 0 50px -20px rgba(37,38,75,0.4);
  padding: 96px 28px 28px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.25,.9,.3,1);
  overflow-y: auto;
}
.nav-sheet.is-open .nav-sheet-panel { transform: translateX(0); }
.nav-sheet-list { list-style: none; margin: 0; padding: 0; flex: 1; }
.nav-sheet-list li {
  opacity: 0;
  transform: translateX(16px);
}
.nav-sheet.is-open .nav-sheet-list li {
  animation: navItemIn .42s cubic-bezier(.25,.9,.3,1) forwards;
  animation-delay: calc(0.06s * var(--d) + 0.12s);
}
@keyframes navItemIn {
  to { opacity: 1; transform: translateX(0); }
}
.nav-sheet-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 4px;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}
.nav-sheet-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: none;
  transition: transform .2s;
}
.nav-sheet-list a:active .nav-sheet-dot { transform: scale(1.5); }
.nav-sheet-cta-li { margin-top: 18px; }
.nav-sheet-cta {
  justify-content: center;
  background: var(--ink);
  color: #fff !important;
  border-radius: 999px;
  border-bottom: none !important;
  padding: 16px 20px !important;
  font-size: 15px !important;
}
.nav-sheet-foot {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}
.nav-sheet-foot img { width: 76px; height: auto; display: block; transform: scaleX(-1); }
.nav-sheet-bubble {
  position: relative;
  margin-bottom: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 6px 16px -10px rgba(37,38,75,0.4);
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ============ HERO ============ */
.hero {
  padding-top: clamp(60px, 8vw, 110px);
  padding-bottom: clamp(72px, 9vw, 130px);
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 50%, transparent); }
  70% { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 8.5vw, 124px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.hero-title .it {
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
  letter-spacing: -0.015em;
}
.hero-title .line2 { display: block; }

.hero-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
}
.hero-mark-bg {
  width: clamp(180px, 22vw, 320px);
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  filter: saturate(0.9);
  justify-self: end;
}
.hero-lede-wrap,
.hero-lede-logo {
  /* legacy classes — no longer rendered, kept harmless */
}
@media (max-width: 760px) {
  .hero-title-row { grid-template-columns: 1fr; }
  .hero-mark-bg { justify-self: start; width: clamp(140px, 36vw, 200px); margin-top: 12px; }
}
.hero > *:not(.hero-mark-bg) { position: relative; z-index: 1; }

.hero-meta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  margin-top: clamp(48px, 7vw, 80px);
  align-items: start;
}
.hero-lede-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}
.hero-lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  font-weight: 400;
  margin: 0;
}
.hero-lede-logo {
  width: clamp(160px, 22vw, 260px);
  height: auto;
  display: block;
  justify-self: end;
}
@media (max-width: 760px) {
  .hero-lede-wrap { grid-template-columns: 1fr; }
  .hero-lede-logo { justify-self: start; width: clamp(140px, 40vw, 200px); margin-top: 8px; }
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}
.hero-side-row {
  display: flex;
  gap: 14px;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.hero-side-row:last-child { border-bottom: 1px solid var(--line); }
.hero-side-row .key {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  width: 90px;
  flex-shrink: 0;
}
.hero-side-row .val { font-size: 14px; color: var(--ink); }

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: 999px;
  transition: all .2s;
  border: 1px solid var(--ink);
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); }
.btn .arrow { display: inline-block; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

@media (max-width: 760px) {
  .hero-meta { grid-template-columns: 1fr; }
}

/* ============ SECTION COMMON ============ */
.section {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--line);
}
.section-header {
  display: block;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
}
.section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: clamp(20px, 2.4vw, 32px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-num::after {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  text-wrap: balance;
  max-width: 22ch;
}
.section-title .it {
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
}
.section-lede {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}
@media (max-width: 760px) {
  .section-header { grid-template-columns: 1fr !important; gap: 14px !important; }
}

/* ============ TEAM ============ */
.section-team {
  background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--accent-soft) 30%, transparent) 100%);
  position: relative;
  overflow: hidden;
}
.section-team::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 30%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 30%),
    radial-gradient(circle at 88% 75%, color-mix(in srgb, var(--accent) 6%, transparent), transparent 35%);
  pointer-events: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.5vw, 20px);
  position: relative;
  align-items: stretch;
}
.team-card {
  background: var(--card-bg);
  border: 1px solid color-mix(in srgb, var(--card-accent) 22%, var(--line));
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .3s;
  overflow: hidden;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px -28px color-mix(in srgb, var(--card-accent) 55%, transparent);
}

.team-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  gap: 8px;
  min-height: 56px;
  background: #fff;
  border-bottom: 1px solid color-mix(in srgb, var(--card-accent) 18%, var(--line));
}
.team-card-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 55%, var(--card-accent));
}
.team-card-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--card-accent);
  color: #fff;
  padding: 4px 9px;
  border-radius: 999px;
}
.team-card-badge.selfportrait {
  background: transparent;
  color: var(--card-accent);
  border: 1px solid var(--card-accent);
}

.team-card-illu {
  flex-shrink: 0;
  height: clamp(180px, 15vw, 220px);
  display: block;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.team-card-illu::before {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 52%;
  height: 13px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--ink) 30%, transparent), transparent 70%);
  filter: blur(5px);
  z-index: 0;
}
.team-card-illu img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center bottom;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
  z-index: 1;
}
.team-card:hover .team-card-illu img {
  transform: translateY(-4px) rotate(-1.5deg) scale(1.04);
}

.team-card-body {
  background: #fff;
  border-top: 1px solid color-mix(in srgb, var(--card-accent) 25%, transparent);
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.team-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(13px, 1.15vw, 17px);
  letter-spacing: 0;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.team-card-name::first-letter {
  font-size: 22px;
}
.team-card-domain {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--card-accent);
  font-weight: 600;
  margin-top: -8px;
}

.team-card-traits {
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--card-accent) 18%, transparent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-card-trait { margin: 0; }
.team-card-trait dt {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 50%, var(--card-accent));
  margin-bottom: 3px;
}
.team-card-trait dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
}

.team-card-hashtag {
  align-self: flex-start;
  padding: 7px 13px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  border-radius: 999px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}

.team-note {
  margin-top: clamp(40px, 5vw, 64px);
  text-align: center;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.team-note .serif {
  font-family: var(--font-accent);
  font-size: 19px;
  color: var(--accent);
  margin-right: 6px;
}

@media (max-width: 1360px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card-name { white-space: normal; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ============ APPROCHE ============ */
.tools {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}
.tools-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line);
}
.tool-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: padding .25s;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  color: inherit;
}
.tool-item:hover { padding-left: 8px; }
.tool-item.active { padding-left: 8px; }
.tool-item-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  transition: color .2s;
  padding-right: 16px;
}
.tool-item.active .tool-item-name { color: var(--ink); font-weight: 500; }
.tool-item-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  flex-shrink: 0;
}
.tool-item.active .tool-item-num { color: var(--accent); }

.tool-detail {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 48px);
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.tool-detail-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.tool-detail-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 18ch;
  text-wrap: balance;
}
.tool-detail-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 32px;
}
.tool-detail-uses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  padding-right: clamp(210px, 30vw, 320px);
}
@media (max-width: 640px) {
  .tool-detail-uses { padding-right: 0; }
}
.tool-use {
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.tool-use-bullet {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
}
.tool-use-text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}

.tool-visual {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 110px;
  height: 110px;
  opacity: 0.5;
}

@media (max-width: 860px) {
  .tools { grid-template-columns: 1fr; }
  .tool-detail-uses { grid-template-columns: 1fr; }
}

/* ============ SERVICES — refonte 3 bandes ============ */
.services-grid {
  display: grid;
  gap: clamp(14px, 1.5vw, 20px);
  grid-template-rows: auto 1fr auto;
}
.services-grid-4 { grid-template-columns: repeat(4, 1fr); }
.services-grid-2 { grid-template-columns: repeat(2, 1fr); }
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }

.service-card {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--card-accent, var(--accent)) 22%, var(--line));
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -28px color-mix(in srgb, var(--card-accent, var(--accent)) 55%, transparent);
}

/* ── Header (white band) ─────────────────────────────── */
.service-head {
  background: #fff;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid color-mix(in srgb, var(--card-accent, var(--accent)) 14%, var(--line));
  min-height: 56px;
}
.service-code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.service-step {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--card-accent, var(--accent));
  font-weight: 700;
  text-align: right;
  line-height: 1.2;
}

/* ── Body (colored band) ─────────────────────────────── */
.service-body {
  background: var(--card-bg-tint, var(--bg-soft));
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  min-height: 2.3em;
  color: var(--ink);
}
.service-intent {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--card-accent, var(--accent));
  margin: 0;
  min-height: 2.8em;
}
.service-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

/* ── Footer (white band) ─────────────────────────────── */
.service-foot {
  background: #fff;
  padding: 18px 22px;
  border-top: 1px solid color-mix(in srgb, var(--card-accent, var(--accent)) 14%, var(--line));
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-meta-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
}
.service-meta-row .k {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  font-weight: 600;
}
.service-meta-row .v {
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .service-card { grid-row: auto; grid-template-rows: auto 1fr auto; }
}

/* ============ CASES ============ */
.cases-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.case-row {
  display: grid;
  grid-template-columns: 60px 1.4fr 1.6fr 1fr 1fr 24px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s, background .25s;
  cursor: pointer;
}
.case-row:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: color-mix(in srgb, var(--accent-soft) 40%, transparent);
}
.case-row:hover .case-arrow { transform: rotate(-45deg); color: var(--accent); }
.case-num { font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.1em; }
.case-client { font-family: var(--font-display); font-weight: 400; font-size: clamp(18px, 1.6vw, 22px); letter-spacing: -0.015em; }
.case-mission { font-size: 14.5px; color: var(--ink-soft); }
.case-tool { font-family: var(--font-mono); font-size: 11px; color: var(--ink); letter-spacing: 0.05em; }
.case-year { font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); text-align: right; letter-spacing: 0.05em; }
.case-arrow {
  font-size: 18px;
  color: var(--ink-mute);
  transition: transform .25s, color .25s;
  text-align: right;
}

@media (max-width: 860px) {
  .case-row {
    grid-template-columns: 40px 1fr 24px;
    grid-template-areas:
      "num client arrow"
      "num mission arrow"
      "num tool arrow";
    gap: 4px 16px;
  }
  .case-num { grid-area: num; align-self: start; padding-top: 6px; }
  .case-client { grid-area: client; }
  .case-mission { grid-area: mission; }
  .case-tool { grid-area: tool; opacity: 0.7; }
  .case-year { display: none; }
  .case-arrow { grid-area: arrow; align-self: center; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
  margin-bottom: clamp(48px, 5vw, 64px);
}
.testimonial {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}
@media (max-width: 860px) {
  .testimonial { grid-template-columns: 1fr; }
}

/* Cover card — modeled on the LinkedIn series style */
.testimonial-card {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -32px rgba(0, 0, 0, 0.4);
}
.testimonial-cover {
  position: absolute;
  inset: 0;
}
.testimonial-cover > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  position: relative;
  z-index: 1;
}
.testimonial-cover-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6b5a48 0%, #d68f5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.testimonial-cover-fallback .mono {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.testimonial-cover-mark {
  position: absolute;
  bottom: 12px;
  right: 14px;
  width: clamp(80px, 11vw, 130px);
  height: auto;
  z-index: 3;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
  transform-origin: bottom right;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}
.testimonial-card:hover .testimonial-cover-mark {
  transform: scale(1.08) rotate(-4deg);
}
.testimonial-overlay {
  position: absolute;
  top: 22px;
  left: 22px;
  bottom: 22px;
  width: 38%;
  max-width: 280px;
  padding: 22px 20px;
  background: rgba(40, 40, 40, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 4;
}
.testimonial-overlay-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  color: #F6D43A;
  margin-bottom: 2px;
}
.testimonial-overlay-serie {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.95;
}
.testimonial-overlay-name {
  margin-top: auto;
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.testimonial-overlay-name .firstname {
  font-family: var(--font-accent);
  font-size: clamp(28px, 3vw, 36px);
  color: #F8B9C7;
  font-weight: 400;
}
.testimonial-overlay-name .lastname {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: 0.02em;
  color: #F8B9C7;
  margin-top: 2px;
}
.testimonial-overlay-role {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  margin-top: 6px;
}
.testimonial-overlay-org {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #fff;
}
.testimonial-play {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform .25s, background .25s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.testimonial-play svg { margin-left: 3px; }
.testimonial-card:hover .testimonial-play {
  transform: translateX(-50%) scale(1.08);
  background: #fff;
}

@media (max-width: 540px) {
  .testimonial-overlay { width: auto; right: 22px; max-width: none; }
  .testimonial-cover > img:first-child { object-position: 70% center; }
}

/* Body — quote + meta */
.testimonial-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 8px;
}
.testimonial-quote {
  font-family: var(--font-accent);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  position: relative;
  padding-left: 28px;
  text-wrap: balance;
}
.testimonial-quote-mark {
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  font-family: var(--font-accent);
}

.testimonial-meta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 0.8fr;
  gap: 16px 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testimonial-meta-cell { display: flex; flex-direction: column; gap: 4px; }
.testimonial-meta-k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.testimonial-meta-v {
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--ink);
}
@media (max-width: 540px) {
  .testimonial-meta-grid { grid-template-columns: 1fr 1fr; }
}

.testimonial-context {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.testimonial-context-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 4px;
}

.testimonial-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  padding-top: 4px;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color .2s;
}
.testimonial-link:hover { border-bottom-color: var(--accent); }
.testimonial-link .arrow { transition: transform .2s; }
.testimonial-link:hover .arrow { transform: translate(2px, -2px); }

/* "Next episode" placeholder card */
.testimonial-next {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-soft) 60%, var(--bg)), var(--bg-soft));
  border: 1.5px dashed color-mix(in srgb, var(--accent) 40%, var(--line));
  border-radius: 12px;
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.testimonial-next-illu {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-next-illu img {
  width: 100%;
  max-width: 180px;
  height: auto;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
  animation: gentlePop 4s ease-in-out infinite;
}
@keyframes gentlePop {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-4px); }
}
.testimonial-next-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.testimonial-next-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.testimonial-next-title .serif {
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
}
.testimonial-next-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 52ch;
}
@media (max-width: 760px) {
  .testimonial-next { grid-template-columns: 1fr; text-align: center; }
  .testimonial-next-illu img { max-width: 140px; }
  .testimonial-next-sub { margin-left: auto; margin-right: auto; }
}

/* Cas list strip */
.references-strip {
  margin-top: clamp(40px, 4vw, 56px);
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
}
.references-strip .mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.references-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}
.references-list > span {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
}
.references-list > span:nth-child(even) { color: var(--ink-mute); }
.references-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: all .2s;
}
.references-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

/* Hide legacy cases-list styles — keep them but unused */
.cases-list, .case-row { display: none; }

/* ============ ABOUT ============ */
.about {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/mark-rose.png");
  background-size: 75%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
}
.about-portrait::after {
  content: "PORTRAIT — à fournir";
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  background: var(--bg);
  padding: 6px 10px;
  border: 1px solid var(--line);
}

.about-body {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.about-body p { margin: 0 0 24px; }
.about-body p:last-child { margin-bottom: 0; }
.about-body .accent-text {
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
}

.about-details {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  font-family: var(--font-body);
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.about-detail .k {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.about-detail .v {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}

@media (max-width: 760px) {
  .about { grid-template-columns: 1fr; }
}

/* ============ CONTACT ============ */
.contact {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.contact-info {
  padding-top: 8px;
}
/* Push the form-card down so its top aligns with the coords list (not the headline) */
@media (max-width: 900px) {
  .form-card { margin-top: 0; }
}
.contact-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.contact-headline .it {
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
}
.contact-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 32px;
}

.contact-coords {
  display: flex;
  flex-direction: column;
}
.contact-coord-row {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.contact-coord-row:last-child { border-bottom: 1px solid var(--line); }
.contact-coord-row .k {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  width: 80px;
  flex-shrink: 0;
  font-weight: 600;
}
.contact-coord-row .v {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink);
}
.contact-coord-row a.v {
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.contact-coord-row a.v:hover { border-bottom-color: var(--accent); color: var(--accent); }

/* ── Formulaire en carte blanche ───────────────────── */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 24px 48px -28px color-mix(in srgb, var(--ink) 18%, transparent);
}
.form-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  flex-wrap: wrap;
}
.form-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.form-card-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.full { grid-column: span 2; }
.form-row label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  font-weight: 600;
}
.form-row input, .form-row select, .form-row textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--accent);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.form-actions {
  grid-column: span 2;
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.form-success {
  grid-column: span 2;
  padding: 18px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-size: 14.5px;
  color: var(--ink);
}
.form-error {
  grid-column: span 2;
  padding: 18px;
  background: color-mix(in srgb, #C8326E 9%, #fff);
  border: 1px solid color-mix(in srgb, #C8326E 45%, transparent);
  border-radius: 6px;
  font-size: 14.5px;
  color: var(--ink);
}
.form-error a { color: var(--accent); text-decoration: underline; }
/* honeypot anti-spam — hors écran */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.btn-primary:disabled { opacity: 0.6; cursor: progress; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row.full, .form-actions { grid-column: span 1; }
}

/* ============ FOOTER — logo inline ============ */
.footer-mark-block {
  margin: clamp(32px, 4vw, 48px) 0 clamp(8px, 1.5vw, 16px);
}
.footer-mark-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.footer-mark-logo {
  height: clamp(110px, 12vw, 170px);
  width: auto;
  max-width: 100%;
  display: block;
  background: transparent;
}
.footer-bottom {
  margin-top: 0;
  padding-top: clamp(16px, 2vw, 24px);
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(60px, 6vw, 80px) 0 32px;
  background: var(--bg-soft);
}
.footer-mark {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
}
.footer-mark img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-bottom-links { display: flex; gap: 24px; }

/* ============ MARQUEE / VALUES STRIP ============ */
.values-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
}
.values-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  will-change: transform;
}
.values-run {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.values-word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.005em;
  padding: 0 18px;
  color: var(--bg);
}
.values-sep {
  width: clamp(18px, 1.8vw, 26px);
  height: clamp(18px, 1.8vw, 26px);
  object-fit: contain;
  vertical-align: middle;
  margin: 0 8px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% / 3)); }
}

/* ============ UTIL ============ */
.fade-in {
  animation: fadeIn .5s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════
   v2 — additions pour structure refondue (mai 2026)
   ════════════════════════════════════════════════════════ */

/* ============ TEAM — bulle de dialogue avec Mme Innovation ============ */
.team-note-bubble {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: end;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.team-note-avatar {
  width: 180px;
  height: auto;
  display: block;
  align-self: flex-end;
  filter: drop-shadow(0 12px 18px color-mix(in srgb, var(--accent) 22%, transparent));
  animation: gentlePop 5s ease-in-out infinite;
}
.team-note-speech {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--line));
  border-radius: 18px;
  padding: clamp(20px, 2.5vw, 28px) clamp(22px, 2.8vw, 32px);
  position: relative;
  box-shadow: 0 12px 30px -18px color-mix(in srgb, var(--accent) 35%, transparent);
}
.team-note-speech p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--ink);
}
.team-note-speech-signature {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.team-note-speech-tail {
  position: absolute;
  left: -14px;
  bottom: 28px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 14px solid #fff;
  filter: drop-shadow(-1px 0 0 color-mix(in srgb, var(--accent) 25%, var(--line)));
}
@media (max-width: 640px) {
  .team-note-bubble { grid-template-columns: 1fr; text-align: center; }
  .team-note-avatar { width: 140px; margin: 0 auto; }
  .team-note-speech-tail { display: none; }
}

.team-card-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: 24px 16px;
  text-align: center;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 14px,
      color-mix(in srgb, var(--card-accent) 6%, transparent) 14px 15px
    );
}
.team-card-placeholder .mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 55%, var(--card-accent));
}
.team-card-placeholder .mono.small {
  font-size: 9px;
  opacity: 0.65;
  letter-spacing: 0.14em;
}
.team-card-placeholder .big {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.05;
  color: var(--card-accent);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 12ch;
}

/* ============ APPROCHE — schéma trajectoire ============ */
.schema {
  margin-bottom: clamp(56px, 7vw, 96px);
}
.schema-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.schema-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  max-width: 22ch;
}
.schema-title .it {
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
}
.schema-placeholder {
  background: var(--bg-soft);
  border: 1.5px dashed color-mix(in srgb, var(--accent) 40%, var(--line));
  border-radius: 12px;
  padding: clamp(28px, 4vw, 56px);
  margin-bottom: 32px;
}

/* ── Ruban de Möbius — schéma trajectoire ──────────── */
.schema-visual {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ribbon-stage {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 1200 / 812;
}
.ribbon-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: ribbonCycle 4.4s ease-in-out infinite;
  filter: drop-shadow(0 18px 28px color-mix(in srgb, var(--ink) 14%, transparent));
}
.ribbon-frame-1 { animation-delay: 0s; }
.ribbon-frame-2 { animation-delay: 1.1s; }
.ribbon-frame-3 { animation-delay: 2.2s; }
.ribbon-frame-4 { animation-delay: 3.3s; }
@keyframes ribbonCycle {
  0%   { opacity: 1; }
  25%  { opacity: 0; }
  75%  { opacity: 0; }
  100% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .ribbon-frame { animation: none; opacity: 1; }
  .ribbon-frame-2, .ribbon-frame-3, .ribbon-frame-4 { display: none; }
}

/* Static labels overlaid on the ribbon */
.ribbon-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ribbon-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.ribbon-label .num {
  font-family: var(--font-mono);
  font-size: clamp(9px, 0.9vw, 11px);
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.ribbon-label .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
  flex-shrink: 0;
}
.ribbon-label-3 .num, .ribbon-label-5 .num { flex-direction: row-reverse; }
.ribbon-label-3 .dot, .ribbon-label-5 .dot { margin-right: 0; margin-left: 5px; }
.ribbon-label .lbl {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
/* Positions follow color zones on the ribbon */
.ribbon-label-1 { /* Comprendre — zone BLEUE (lobe gauche) */
  top: 42%; left: 4%;
}
.ribbon-label-2 { /* Explorer — zone ROSE CLAIR (bas-centre pâle) */
  bottom: 4%; left: 42%;
}
.ribbon-label-3 { /* Transformer — zone ROSE FUCHSIA (haut-droite) */
  top: 16%; right: 4%; text-align: right; align-items: flex-end;
}
.ribbon-label-4 { /* Structurer — zone VERTE (haut-centre) */
  top: 1%; left: 33%;
}
.ribbon-label-5 { /* Expérimenter — zone JAUNE (bas-droite) */
  bottom: 22%; right: 3%; text-align: right; align-items: flex-end;
}
@media (max-width: 640px) {
  .ribbon-label .lbl { font-size: 11px; }
  .ribbon-label .num { font-size: 9px; }
}
.schema-placeholder-track {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 28px);
  flex-wrap: wrap;
}
.schema-step {
  flex: 1;
  min-width: 120px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: transform .3s, border-color .3s;
}
.schema-step:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.schema-step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  font-weight: 600;
}
.schema-step-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.schema-arrow {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent);
  display: flex;
  align-items: center;
  align-self: center;
}
.schema-placeholder-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
  color: var(--ink-soft);
}
.schema-placeholder-note .mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.schema-conclusion {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 70ch;
  margin: 0;
}
.schema-conclusion em {
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
}

@media (max-width: 760px) {
  .schema-placeholder-track { flex-direction: column; gap: 8px; }
  .schema-arrow { transform: rotate(90deg); align-self: center; }
}

/* ============ APPROCHE — tool detail extras ============ */
.tool-detail-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.35;
  color: var(--accent);
  margin: -4px 0 18px;
  max-width: 50ch;
}
.tool-detail-position {
  background: var(--bg);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  margin-bottom: 22px;
}
.tool-detail-position-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
}
.tool-detail-position-k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.tool-detail-position-v {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.tool-detail { padding-bottom: clamp(96px, 13vw, 150px); }
.tool-detail-character {
  position: absolute;
  bottom: 14px;
  right: 16px;
  width: clamp(104px, 14vw, 150px);
  text-align: center;
  z-index: 1;
  opacity: 0.92;
}
.tool-detail-character img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
  filter: drop-shadow(0 6px 12px color-mix(in srgb, var(--ink) 12%, transparent));
}
.tool-detail-character:hover img {
  transform: translateY(-3px) scale(1.04);
}
.tool-detail-character-name {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 640px) {
  .tool-detail { padding-bottom: clamp(40px, 8vw, 60px); }
  .tool-detail-character { position: static; margin: 16px auto 0; width: clamp(120px, 38vw, 170px); }
}

/* ============ APPROCHE — finale (manifeste + invitation) ============ */
.approche-finale {
  margin-top: clamp(56px, 7vw, 88px);
  display: grid;
  gap: clamp(36px, 5vw, 64px);
}
.approche-finale-manifest {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: end;
  padding-bottom: clamp(36px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}
.approche-finale-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.approche-finale-text .it {
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
}
.approche-finale-cast {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  position: relative;
  padding-bottom: 0;
  width: 100%;
  min-width: 0;
}
.approche-finale-cast-item {
  flex: 0 1 auto;
  min-width: 0;
  width: clamp(96px, 13vw, 170px);
  height: auto;
  margin-left: -3.2%;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
  position: relative;
  z-index: 1;
}
.approche-finale-cast-item:first-child { margin-left: 0; }
/* Shadows below each character's feet (feet sit ~5% above image bottom) */
.approche-finale-cast::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 2px;
  height: 13px;
  background:
    radial-gradient(ellipse at 10% 50%, color-mix(in srgb, var(--ink) 26%, transparent) 0%, transparent 58%),
    radial-gradient(ellipse at 30% 50%, color-mix(in srgb, var(--ink) 26%, transparent) 0%, transparent 58%),
    radial-gradient(ellipse at 50% 50%, color-mix(in srgb, var(--ink) 26%, transparent) 0%, transparent 58%),
    radial-gradient(ellipse at 70% 50%, color-mix(in srgb, var(--ink) 26%, transparent) 0%, transparent 58%),
    radial-gradient(ellipse at 90% 50%, color-mix(in srgb, var(--ink) 26%, transparent) 0%, transparent 58%);
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}
.approche-finale-cast-item:nth-child(odd) { transform: translateY(0); }
.approche-finale-cast:hover .approche-finale-cast-item {
  transform: translateY(-6px);
}
.approche-finale-cast:hover .approche-finale-cast-item:nth-child(odd) {
  transform: translateY(-10px);
}

.approche-finale-invite {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.approche-finale-invite-q {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--ink);
}
.approche-finale-invite-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.step-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  transition: all .25s;
}
.step-btn .num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
}
.step-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.step-btn:hover .num { color: #fff; }

@media (max-width: 760px) {
  .approche-finale-manifest { grid-template-columns: 1fr; }
  .approche-finale-text { text-wrap: pretty; font-size: clamp(20px, 5vw, 26px); }
}

/* ============ ACCOMPAGNEMENTS — bands ============ */
.services-band {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.services-band-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.services-band-label .mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.services-band-desc {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink-soft);
}
.services-band-support {
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--bg-soft) 80%, transparent));
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
  border-radius: 12px;
  margin-top: clamp(40px, 5vw, 64px);
}
.services-band-support .service-card { background: transparent; }
.services-band-support .service-card:hover { background: color-mix(in srgb, #fff 50%, transparent); }

.services-transversal {
  margin: clamp(40px, 5vw, 64px) 0;
  padding: clamp(36px, 4vw, 56px) clamp(36px, 5vw, 80px) clamp(36px, 4vw, 56px) clamp(80px, 10vw, 140px);
  background: linear-gradient(115deg, #2a4d6f 0%, #d63a78 100%);
  color: var(--bg);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.services-transversal-plus {
  position: absolute;
  top: 50%;
  left: clamp(20px, 3vw, 44px);
  transform: translateY(-50%);
  font-family: var(--font-accent);
  font-size: clamp(120px, 14vw, 200px);
  line-height: 0.7;
  color: #fff;
  font-weight: 300;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.services-transversal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 100%, color-mix(in srgb, var(--accent) 25%, transparent), transparent 50%);
  pointer-events: none;
}
.services-transversal > *:not(.services-transversal-plus) { position: relative; }
.services-transversal-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #fff;
}
.services-transversal-title .it {
  font-family: var(--font-accent);
  color: #FFD8E5;
  font-weight: 400;
}
.services-transversal-lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 70ch;
  margin: 0 0 14px;
}
.services-transversal-lede em {
  color: #FFD8E5;
  font-style: normal;
  font-weight: 500;
}
.services-transversal-arrow {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 500;
  color: #FFD8E5;
  margin: 0;
}
@media (max-width: 760px) {
  .services-transversal {
    padding: clamp(24px, 4vw, 36px);
  }
  .services-transversal-plus {
    position: static;
    transform: none;
    display: block;
    font-size: 80px;
    line-height: 0.6;
    margin-bottom: -10px;
  }
}

/* ============ ACCOMPAGNEMENTS — pont vers Retours ============ */
.accompagnements-pont {
  margin-top: clamp(56px, 7vw, 88px);
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
  background: var(--bg-soft);
  border-radius: 14px;
  border: 1px solid var(--line);
}
.accompagnements-pont-q {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
  text-wrap: balance;
}
.accompagnements-pont-q .it {
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
}
.accompagnements-pont-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 28px;
}

/* ============ RETOURS — Moments de transformation (récits) ============ */
.rex-moments {
  margin-bottom: clamp(48px, 6vw, 72px);
}
.rex-moments-head {
  margin-bottom: clamp(24px, 3vw, 36px);
}
.rex-moments-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.rex-moments-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.015em;
  margin: 8px 0 8px;
  color: var(--ink);
}
.rex-moments-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
}

.rex-story {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(24px, 3vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 24px 48px -32px color-mix(in srgb, var(--ink) 22%, transparent);
}
.rex-story + .rex-story { margin-top: 20px; }

.rex-story-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: clamp(16px, 2vw, 28px);
  border-right: 1px solid var(--line);
}
.rex-story-portrait {
  margin: 0 0 4px;
}
.rex-story-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 30% center;
  border-radius: 10px;
  display: block;
}
.rex-story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.rex-story-link:hover { border-bottom-color: var(--accent); }
.rex-story-link .arrow { transition: transform .2s; }
.rex-story-link:hover .arrow { transform: translate(2px, -2px); }
.rex-story-portrait figcaption {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.rex-story-portrait-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.rex-story-portrait-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 3px;
}
.rex-story-badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
}
.rex-retained-mark {
  width: 52px;
  height: 52px;
  margin-top: 4px;
}
.rex-story-retained {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.rex-story-retained-k {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
  font-weight: 600;
}

/* Module triangle "co-réalisé" — petit bouton cliquable vers l'écosystème */
.rex-cotri {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  text-align: left;
  margin-top: 16px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, #fff 60%, transparent);
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color .25s, background .25s, transform .25s;
}
.rex-cotri:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
  background: color-mix(in srgb, var(--accent) 7%, #fff);
  transform: translateY(-1px);
}
.rex-cotri:hover .rex-cotri-poly { fill: color-mix(in srgb, var(--accent) 18%, transparent); }
.rex-cotri:hover .rex-cotri-arrow { color: var(--accent); transform: translate(2px, 2px); }
.rex-cotri:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.rex-cotri-ico { flex: none; width: 40px; height: 28px; overflow: visible; }
.rex-cotri-poly { fill: color-mix(in srgb, var(--ink) 12%, transparent); stroke: none; transition: fill .25s; }
.rex-cotri-edge {
  stroke: color-mix(in srgb, var(--ink) 30%, transparent);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.rex-cotri-dot { fill: var(--ink-soft); }
.rex-cotri-dot-self { fill: var(--accent); }
.rex-cotri-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.rex-cotri-note {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.rex-cotri-names { font-size: 12px; line-height: 1.3; color: var(--ink); font-weight: 500; }
.rex-cotri-arrow {
  flex: none;
  font-size: 14px;
  color: var(--ink-mute);
  transition: color .25s, transform .25s;
}

.rex-story-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.rex-story-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.rex-story-quote {
  font-family: var(--font-accent);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  color: var(--accent);
  margin: 0 0 26px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}
.rex-story-quote::before { content: "« "; }
.rex-story-quote::after { content: " »"; }

.rex-story-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}
.rex-step { margin: 0; }
.rex-step-k {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}
.rex-step-t {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.rex-step-words { grid-column: 1 / -1; }
.rex-words {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.rex-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  background: var(--accent-soft);
  padding: 8px 16px;
  border-radius: 999px;
}

.rex-long {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.rex-long summary {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rex-long summary::-webkit-details-marker { display: none; }
.rex-long summary::after {
  content: "↓";
  transition: transform .25s;
}
.rex-long[open] summary::after { transform: rotate(180deg); }
.rex-long .rex-long-close { display: none; }
.rex-long[open] .rex-long-open { display: none; }
.rex-long[open] .rex-long-close { display: inline; }
.rex-long-body {
  margin-top: 16px;
}
.rex-long-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 14px;
  max-width: 72ch;
}
.rex-long-body p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .rex-story { grid-template-columns: 1fr; }
  .rex-story-aside {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-right: 0;
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .rex-retained-mark { width: 40px; height: 40px; margin: 0; }
  .rex-story-retained { flex: 1; min-width: 220px; }
  .rex-story-steps { grid-template-columns: 1fr; }
}

/* Carnets de terrain — bande pleine largeur, mur d'atelier */
.carnet-band {
  margin: clamp(40px, 5vw, 72px) 0 clamp(32px, 4vw, 56px);
}
.carnet-band-head {
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.carnet-band-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
}
.carnet-band-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 8px 0 8px;
  color: var(--ink);
}
.carnet-band-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0;
}
.carnet-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}
.carnet-pin {
  margin: 0;
  background: #fff;
  padding: 10px 10px 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 10px 24px -16px color-mix(in srgb, var(--ink) 45%, transparent);
  transform: rotate(var(--tilt, -1.2deg));
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s;
}
.carnet-pin:nth-child(2) { --tilt: 1.4deg; }
.carnet-pin:nth-child(3) { --tilt: -0.8deg; }
.carnet-pin:nth-child(4) { --tilt: 1deg; }
.carnet-pin:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.02);
  box-shadow: 0 24px 40px -20px color-mix(in srgb, var(--ink) 50%, transparent);
  z-index: 2;
}
.carnet-pin img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.carnet-pin figcaption {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink-soft);
  padding: 10px 4px 12px;
  text-align: center;
}
.carnet-pin-loc {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 3px;
}
@media (max-width: 900px) {
  .carnet-wall { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 460px) {
  .carnet-wall { grid-template-columns: 1fr; }
  .carnet-pin { transform: rotate(0); }
}

/* ============ RETOURS — Paroles de clients (mur de citations) ============ */
.paroles-band {
  margin: clamp(40px, 5vw, 72px) 0 clamp(32px, 4vw, 56px);
}
.paroles-head { margin-bottom: clamp(20px, 2.5vw, 32px); }
.paroles-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
}
.paroles-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 8px 0 8px;
  color: var(--ink);
}
.paroles-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0;
}
.paroles-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}
.parole-card {
  margin: 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(24px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.parole-card::before {
  content: "\201C";
  font-family: var(--font-accent);
  font-size: 64px;
  line-height: 0.6;
  color: var(--accent);
  display: block;
  height: 28px;
}
.parole-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 22px 40px -28px color-mix(in srgb, var(--accent) 50%, transparent);
}
.parole-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 1;
  text-wrap: pretty;
}
.parole-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.parole-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.parole-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.4;
}
@media (max-width: 860px) {
  .paroles-wall { grid-template-columns: 1fr; }
}

/* ============ RETOURS — Écosystème de confiance (constellation) ============ */
.ecosystem {
  margin: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 56px);
}
.ecosystem-head {
  text-align: center;
  max-width: 64ch;
  margin: 0 auto clamp(20px, 3vw, 36px);
}
.ecosystem-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
}
.ecosystem-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 8px 0 12px;
  color: var(--ink);
}
.ecosystem-title .it {
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
}
.ecosystem-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* Stage */
.ecosystem-stage {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 100 / 62;
}

/* étoiles de fond */
.eco-stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.eco-star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-mute);
  opacity: 0.3;
  transform: translate(-50%, -50%);
}
@media (prefers-reduced-motion: no-preference) {
  .eco-star { animation: ecoTwinkle 3.6s ease-in-out infinite; }
}
@keyframes ecoTwinkle {
  0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(0.7); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.2); }
}

.ecosystem-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
}
.eco-mesh {
  stroke: var(--ink-mute);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  opacity: 0.16;
}
.eco-spoke {
  stroke: var(--ink-mute);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  opacity: 0.22;
  transition: opacity .3s;
}
.eco-spoke.dim { opacity: 0.08; }

/* squelette des groupes — contours permanents gris clair */
.eco-skel {
  fill: none;
  stroke: var(--ink-mute);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
  opacity: 0.2;
}
.eco-poly {
  fill: color-mix(in srgb, var(--ink) 22%, transparent);
  stroke: color-mix(in srgb, var(--ink) 30%, transparent);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
  opacity: 0;
  transform: translateY(2px);
  transform-origin: center;
  transition: opacity .42s ease, transform .42s cubic-bezier(.2,.7,.3,1), fill .42s;
}
.eco-poly-line {
  fill: none;
  stroke: color-mix(in srgb, var(--ink) 34%, transparent);
  stroke-width: 9;
  stroke-linecap: round;
}
.eco-depth-1 { fill: color-mix(in srgb, var(--ink) 14%, transparent); }
.eco-depth-2 { fill: color-mix(in srgb, var(--ink) 22%, transparent); }
.eco-depth-3 { fill: color-mix(in srgb, var(--ink) 30%, transparent); }
.eco-poly.on {
  opacity: 1;
  transform: translateY(-1.6px) scale(1.012);
  filter: drop-shadow(0 6px 10px rgba(37,38,75,0.18));
}
.eco-coop {
  stroke: var(--accent);
  stroke-width: 1;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.25;
  transition: opacity .3s;
}
.eco-coop.dim { opacity: 0.08; }

/* triangle coopération (rose) */
.eco-poly-coop {
  fill: color-mix(in srgb, var(--accent) 20%, transparent);
  stroke: color-mix(in srgb, var(--accent) 45%, transparent);
}
.eco-poly-coop.on {
  filter: drop-shadow(0 6px 12px color-mix(in srgb, var(--accent) 35%, transparent));
}
.eco-label-coop {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
}
.eco-labels { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.eco-label {
  position: absolute;
  transform: translate(-50%, -50%) translateY(4px);
  font-family: var(--font-mono);
  font-size: clamp(9px, 0.86vw, 11px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: color-mix(in srgb, #fff 90%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px;
  white-space: nowrap;
  box-shadow: 0 6px 16px -8px rgba(37,38,75,0.3);
  opacity: 0;
  transition: opacity .4s ease, transform .4s cubic-bezier(.2,.7,.3,1);
}
.eco-label.on { opacity: 1; transform: translate(-50%, -50%) translateY(0); }

.eco-center {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: clamp(58px, 6.4vw, 82px);
  height: clamp(58px, 6.4vw, 82px);
}
.eco-center-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--bg), 0 0 0 8px color-mix(in srgb, var(--accent) 22%, transparent), 0 14px 34px -14px color-mix(in srgb, var(--accent) 55%, transparent);
}
@media (prefers-reduced-motion: no-preference) {
  .eco-center-inner { animation: ecoPulse 5s ease-in-out infinite; }
}
@keyframes ecoPulse {
  0%, 100% { box-shadow: 0 0 0 7px var(--bg), 0 0 0 8px color-mix(in srgb, var(--accent) 22%, transparent), 0 14px 34px -14px color-mix(in srgb, var(--accent) 45%, transparent); }
  50% { box-shadow: 0 0 0 7px var(--bg), 0 0 0 10px color-mix(in srgb, var(--accent) 36%, transparent), 0 14px 40px -12px color-mix(in srgb, var(--accent) 65%, transparent); }
}
.eco-center img { width: 72%; height: auto; display: block; }

.eco-nodes { position: absolute; inset: 0; z-index: 2; }
.eco-node {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(64px, 7vw, 96px);
  height: clamp(40px, 4.4vw, 58px);
  cursor: default;
}
.eco-node-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  box-shadow: 0 6px 16px -10px color-mix(in srgb, var(--ink) 40%, transparent);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s, opacity .3s;
}
@media (prefers-reduced-motion: no-preference) {
  .eco-node-inner { animation: ecoDrift 7s ease-in-out infinite; }
}
@keyframes ecoDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.eco-node.is-coop .eco-node-inner {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}
.eco-node img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter .3s, opacity .3s;
}
.eco-node-big img { transform: scale(1.34); }
.eco-node-xbig img { transform: scale(1.62); }
.eco-node.is-hover { z-index: 6; }
.eco-node.is-hover .eco-node-inner {
  transform: translateY(-6px) scale(1.16);
  box-shadow: 0 18px 32px -14px color-mix(in srgb, var(--accent) 55%, transparent);
  border-color: color-mix(in srgb, var(--accent) 60%, var(--line));
  animation-play-state: paused;
}
.eco-node.is-hover img { filter: grayscale(0); opacity: 1; }
.eco-node.is-lit { z-index: 5; }
.eco-node.is-lit .eco-node-inner {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 24px -12px color-mix(in srgb, var(--accent) 40%, transparent);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  animation-play-state: paused;
}
.eco-node.is-lit img { filter: grayscale(0); opacity: 1; }
.eco-node.is-dim .eco-node-inner { opacity: 0.35; }
.eco-node.is-dim img { filter: grayscale(1); opacity: 0.5; }

.ecosystem-hint {
  text-align: center;
  margin-top: clamp(18px, 2.4vw, 30px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eco-hint-coop { color: var(--accent); font-weight: 700; letter-spacing: -0.1em; }

/* Mobile → grille lisible (N&B par défaut, couleur au tap). Connexions réservées au grand écran. */
@media (max-width: 760px) {
  .ecosystem-stage {
    aspect-ratio: auto;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .ecosystem-svg, .eco-center, .eco-stars, .eco-labels { display: none; }
  .eco-nodes { position: static; display: contents; }
  .eco-node {
    position: static;
    transform: none;
    width: 100%;
    height: 68px;
  }
  .eco-node-inner { animation: none; transform: none !important; }
  .eco-node img { filter: grayscale(1); opacity: 0.72; transform: none; }
  .eco-node-big img { transform: scale(1.2); }
  .eco-node.is-hover img, .eco-node:active img, .eco-node:focus-visible img,
  .eco-node.is-lit img { filter: grayscale(0); opacity: 1; }
  .eco-node-big.is-hover img, .eco-node-big:active img, .eco-node-big:focus-visible img,
  .eco-node-big.is-lit img { transform: scale(1.28); }
  .ecosystem-hint { display: none; }
}
@media (max-width: 440px) {
  .ecosystem-stage { grid-template-columns: repeat(2, 1fr); }
}

/* ============ RETOURS — placeholder grid ============ */
.retours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.retours-grid-soon { grid-template-columns: repeat(3, 1fr); }
.retours-grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) {
  .retours-grid-soon, .retours-grid-2 { grid-template-columns: 1fr; }
}
.retours-block {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(22px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s, transform .25s;
  min-height: 220px;
}
.retours-block:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
  transform: translateY(-3px);
}

.retours-block-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.retours-block-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.retours-block-sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
}
.retours-placeholder {
  margin-top: auto;
  background: var(--bg);
  border: 1.5px dashed color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: 6px;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 80px;
  flex-direction: column;
  color: var(--ink-mute);
}
.retours-placeholder .mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.retours-placeholder-icon {
  font-size: 24px;
  color: var(--accent);
  opacity: 0.4;
}
.retours-placeholder-quotes .quote-mark {
  font-family: var(--font-accent);
  font-size: 52px;
  color: var(--accent);
  line-height: 0.6;
  opacity: 0.4;
}
.retours-placeholder-feed {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.feed-stub {
  height: 10px;
  background: color-mix(in srgb, var(--accent) 12%, var(--line));
  border-radius: 3px;
}
.feed-stub-small { width: 60%; }
.retours-placeholder-logos {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.logo-stub {
  width: 56px;
  height: 24px;
  background: color-mix(in srgb, var(--ink) 8%, var(--bg));
  border: 1px solid var(--line);
  border-radius: 4px;
}
.retours-placeholder-network svg {
  width: 100px;
  height: auto;
}

@media (max-width: 900px) {
  .retours-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .retours-grid { grid-template-columns: 1fr; }
}

/* ============ FOOTER — manifeste + rythme + coords ============ */
.footer-manifest {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  padding: clamp(32px, 5vw, 64px) 0 clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}
.footer-manifest-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.footer-manifest-accent {
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
  display: inline-block;
  animation: subtleBreathe 5s ease-in-out infinite;
}
@keyframes subtleBreathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.footer-manifest-illu {
  width: clamp(110px, 14vw, 180px);
  height: auto;
  align-self: end;
  margin-bottom: -8px;
  animation: gentlePop 4s ease-in-out infinite;
}

.footer-rythme {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.footer-rythme span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.02em;
  color: var(--ink);
}
.footer-rythme .dot {
  font-size: 8px;
  color: var(--accent);
}

.footer-coords {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--line);
}
.footer-coord { display: flex; flex-direction: column; gap: 6px; }
.footer-coord .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer-coord .v {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink);
}
.footer-coord .v a {
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.footer-coord .v a:hover { border-bottom-color: var(--accent); }

.footer-mark {
  padding: clamp(32px, 4vw, 48px) 0;
}

@media (max-width: 900px) {
  .footer-manifest { grid-template-columns: 1fr; align-items: start; }
  .footer-manifest-illu { width: 120px; margin: 0 auto; }
  .footer-coords { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .footer-coords { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ============ RESPONSIVE marges section ============ */
@media (max-width: 760px) {
  .section-header {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .hero-meta { grid-template-columns: 1fr !important; }
  .contact { grid-template-columns: 1fr !important; }
}


/* ════════════════════════════════════════════════════════
   v3 overrides — explicit cascade winners (mai 2026)
   ════════════════════════════════════════════════════════ */

/* Transversal banner — ink + radial pink, fuchsia + */
.services-transversal {
  background: var(--ink) !important;
  color: #fff !important;
  padding: clamp(36px, 4vw, 56px) clamp(36px, 5vw, 80px) clamp(36px, 4vw, 56px) clamp(180px, 18vw, 260px) !important;
}
.services-transversal::before {
  background: radial-gradient(circle at 85% 100%, color-mix(in srgb, var(--accent) 35%, transparent), transparent 55%) !important;
}
.services-transversal-plus {
  color: var(--accent) !important;
  font-size: clamp(140px, 16vw, 220px) !important;
  left: clamp(28px, 4vw, 60px) !important;
  z-index: 1 !important;
}
.services-transversal > *:not(.services-transversal-plus) { z-index: 2 !important; }
.services-transversal-title .it { color: var(--accent) !important; }
.services-transversal-lede em { color: var(--accent) !important; }
.services-transversal-arrow { color: var(--accent) !important; }
@media (max-width: 1100px) {
  .services-transversal { padding: clamp(36px, 5vw, 56px) !important; }
  .services-transversal-plus {
    position: static !important;
    transform: none !important;
    font-size: clamp(90px, 12vw, 130px) !important;
    margin-bottom: 40px !important;
    line-height: 0.6 !important;
    display: block !important;
  }
}
@media (max-width: 760px) {
  .services-transversal { padding: clamp(24px, 4vw, 36px) !important; }
  .services-transversal-plus {
    font-size: 90px !important;
    margin-bottom: 32px !important;
  }
}

/* Team hashtag — push to bottom of card via body flex */
.team-card-hashtag {
  margin-top: auto;
}
.team-card-name { min-height: 1.4em; }
.team-card-domain { min-height: 47px; display: flex; align-items: flex-start; }
.team-card-traits {
  flex: 1;
  margin-bottom: 14px;
}
/* Aligne les rangées de traits entre vignettes (même hauteur par position) */
.team-card-trait:nth-child(1) dd { min-height: 1.45em; }
.team-card-trait:nth-child(2) dd { min-height: 4.35em; }
.team-card-trait:nth-child(3) dd { min-height: 2.9em; }
.team-card-hashtag {
  margin-top: auto !important;
  align-self: flex-start;
}
