/* === Juliane V2 — Editorial · Laboratory === */
:root {
  --bg: #f7f4ef;
  --bg-2: #f1ede5;
  --ink: #15140f;
  --ink-soft: #6b6862;
  --ink-mute: #b3aea3;
  --rule: #1514101a;
  --rule-2: #15141033;
  --accent: #fc2603;
  --max: 1400px;
  --pad: clamp(24px, 3.4vw, 56px);
  --gutter: clamp(16px, 2vw, 32px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: var(--bg);
  color: var(--ink);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  scroll-behavior: smooth;
}
body { min-height: 100vh; overflow-x: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

/* === Micro typography === */
.mono {
  font-family: "Poppins", monospace;
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}
.mono.mute { color: var(--ink-soft); }
.mono.bold { font-weight: 500; }
.mono .sup {
  display: inline-block;
  font-size: 8px;
  vertical-align: super;
  margin-left: 1px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 8px;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* === Ruler / tick rule === */
.ruler {
  position: relative;
  height: 22px;
  border-bottom: 1px solid var(--ink);
  background-image:
    /* tall ticks every 50px */
    linear-gradient(to right, var(--ink) 1px, transparent 1px),
    /* short ticks every 10px */
    linear-gradient(to right, var(--rule-2) 1px, transparent 1px);
  background-size: 50px 12px, 10px 6px;
  background-position: 0 100%, 0 100%;
  background-repeat: repeat-x;
}
.ruler.top {
  border-top: 1px solid var(--ink);
  border-bottom: none;
  background-position: 0 0, 0 0;
}
.ruler.thin {
  height: 14px;
  background-size: 100px 8px, 20px 4px;
}

/* === Topbar === */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px var(--pad) 0;
  background: color-mix(in oklch, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px) saturate(1.05);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
}
.topbar-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  padding-bottom: 14px;
}
.topbar .left, .topbar .right {
  display: flex; align-items: center;
  gap: clamp(14px, 2vw, 28px);
}
.topbar .right { justify-content: flex-end; }
.topbar .mark {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1;
  display: flex; align-items: center; gap: 4px;
}
.topbar .mark .reg { color: var(--accent); font-size: 8px; vertical-align: super; }
.topbar .mark .slash { color: var(--accent); padding: 0 2px; }
.topbar nav.right a { position: relative; padding: 4px 0; transition: color 0.2s; }
.topbar nav.right a:hover { color: var(--accent); }
.topbar .ruler { margin: 0 calc(var(--pad) * -1); height: 12px; }

/* === Layout container === */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* === Hero === */
.hero {
  padding: 80px 0 0;
  position: relative;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  padding: 18px var(--pad) 26px;
  gap: 16px;
  border-bottom: 1px solid var(--rule);
}
.hero-meta .col { display: flex; flex-direction: column; gap: 6px; }
.hero-meta .col.right { text-align: right; align-items: flex-end; }
.hero-meta .col.center { text-align: center; align-items: center; }

.hero-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: clamp(40px, 6vh, 70px) var(--pad) 0;
}
.hero-tagline {
  text-align: center;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.18;
  margin: 0;
  max-width: 24ch;
  text-wrap: balance;
  position: relative;
  z-index: 2;
}
.hero-tagline .em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.hero-tagline .accent { color: var(--accent); font-style: italic; }

.hero-photo {
  position: relative;
  width: clamp(220px, 24vw, 320px);
  margin: 0;
  z-index: 1;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
}
.hero-photo .crosshair {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-photo .crosshair::before,
.hero-photo .crosshair::after {
  content: "";
  position: absolute;
  background: var(--ink);
  opacity: 0.18;
}
.hero-photo .crosshair::before {
  left: -24px; right: -24px; top: 50%;
  height: 1px;
}
.hero-photo .crosshair::after {
  top: -24px; bottom: -24px; left: 50%;
  width: 1px;
}
.hero-photo .corner {
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--ink);
  z-index: 3;
}
.hero-photo .corner.tl { top: -6px; left: -6px; border-right: none; border-bottom: none; }
.hero-photo .corner.tr { top: -6px; right: -6px; border-left: none; border-bottom: none; }
.hero-photo .corner.bl { bottom: -6px; left: -6px; border-right: none; border-top: none; }
.hero-photo .corner.br { bottom: -6px; right: -6px; border-left: none; border-top: none; }
.hero-photo .pin {
  position: absolute;
  top: 18%;
  right: -8px;
  transform: translateX(100%);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 3;
}
.hero-photo .pin::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--ink);
  order: -1;
}
.hero-photo .pin-left {
  position: absolute;
  bottom: 24%;
  left: -8px;
  transform: translateX(-100%);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 3;
}
.hero-photo .pin-left::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--ink);
}

.hero-tagline-2 {
  text-align: center;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  margin: 32px 0 0;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.hero-tagline-2 strong { color: var(--ink); font-weight: 500; }
.hero-tagline-2 .accent { color: var(--accent); }

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  padding: 16px var(--pad);
  gap: 12px;
}
.hero-bottom .cell {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-bottom .cell:first-child { text-align: left; align-items: flex-start; }
.hero-bottom .cell:last-child { text-align: right; align-items: flex-end; }
.hero-bottom .cell .v { color: var(--ink); font-weight: 500; }

/* === Marquee === */
.marquee-wrap {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
  background: var(--bg);
}
.marquee-wrap .ruler {
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  border: none;
  background-image: linear-gradient(to right, var(--rule-2) 1px, transparent 1px);
  background-size: 12px 4px;
  background-position: 0 100%;
  background-repeat: repeat-x;
  pointer-events: none;
}
.marquee-wrap .ruler.tk-top { top: 0; background-position: 0 0; }
.marquee-wrap .ruler.tk-bot { bottom: 0; }
.marquee {
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 42s linear infinite;
  width: max-content;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 56px;
  transition: color 0.2s;
}
.marquee-item .sep {
  font-size: 12px;
  color: var(--accent);
  font-weight: 400;
}
.marquee-item .em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
}
.marquee-item:hover { color: var(--accent); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* === Section === */
section {
  position: relative;
  padding: clamp(60px, 8vh, 100px) 0;
}
#approche { padding-bottom: clamp(40px, 6vh, 70px); }
#work { padding-top: clamp(40px, 6vh, 70px); }
section .container { position: relative; }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(20px, 3vw, 48px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: clamp(48px, 7vh, 88px);
}
.section-head .idx {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.section-head .right-meta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
}

/* === Approche === */
.approche-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.approche-quote {
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.approche-quote .accent { color: var(--accent); font-style: italic; font-weight: 300; }
.approche-body { padding-top: 8px; display: flex; flex-direction: column; gap: 18px; }
.approche-body p { margin: 0; font-size: 15px; line-height: 1.62; color: var(--ink-soft); }
.approche-body p:first-child { color: var(--ink); }

/* === Stats / Lab readout === */
.stats {
  margin-top: clamp(56px, 8vh, 96px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.stats::before, .stats::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 6px;
  background-image: linear-gradient(to right, var(--rule-2) 1px, transparent 1px);
  background-size: 16px 4px;
  background-repeat: repeat-x;
  pointer-events: none;
}
.stats::before { top: 0; background-position: 0 0; }
.stats::after { bottom: 0; background-position: 0 100%; }

.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat:last-child { border-right: none; }
.stat .lab {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; justify-content: space-between;
  font-weight: 500;
}
.stat .num {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  display: flex; align-items: baseline; gap: 4px;
}
.stat .num .accent { color: var(--accent); font-weight: 300; font-style: italic; }
.stat .num .unit { font-size: 0.5em; color: var(--ink-soft); font-weight: 400; }
.stat .desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  max-width: 28ch;
}

/* === Selected Work — HORIZONTAL === */
.work-wrap {
  position: relative;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.work-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.work-card .img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--rule-2);
}
.work-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.work-card:hover .img-wrap img { transform: scale(1.04); }
.work-card .img-wrap .tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 9px;
  line-height: 1;
}
.work-card .img-wrap .num-pin {
  position: absolute;
  bottom: 12px; right: 12px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg);
  padding: 5px 8px;
  border: 1px solid var(--ink);
  line-height: 1;
}
.work-card .meta {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.work-card h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.05;
  display: flex; align-items: baseline; gap: 8px;
  flex-wrap: wrap;
}
.work-card h3 .follow {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.work-card .sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: -8px 0 0;
}
.work-card .sub .role { color: var(--ink-soft); font-weight: 400; }
.work-card .body {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.work-card .result {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--rule);
}
.work-card .result .arrow { color: var(--accent); font-weight: 600; }

/* === Ensemble === */
.travailler {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.travailler .lead {
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
.travailler .lead .accent { color: var(--accent); }
.travailler .lead .em { font-style: italic; font-weight: 300; }
.paths { display: flex; flex-direction: column; }
.path {
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}
.path:last-child { border-bottom: 1px solid var(--rule); }
.path .idx {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink);
  padding-top: 4px;
}
.path .title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.path .title .accent { color: var(--accent); }
.path .title .em { font-style: italic; font-weight: 300; }
.path .desc { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }
.path .desc a { border-bottom: 1px solid var(--ink-soft); }
.path .desc a:hover { color: var(--accent); border-color: var(--accent); }

/* === Contact === */
.contact { display: grid; grid-template-columns: 1fr; gap: 32px; }
.contact .big {
  font-size: clamp(44px, 8vw, 128px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.94;
  margin: 0;
  text-wrap: balance;
}
.contact .big a { position: relative; display: inline-block; }
.contact .big a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 8%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.contact .big a:hover::after { transform: scaleX(1); background: var(--accent); }
.contact .big a:hover { color: var(--accent); }
.contact .big .arr { color: var(--accent); display: inline-block; transition: transform 0.3s; }
.contact .big a:hover .arr { transform: translate(8px, -8px); }

.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  padding-top: clamp(40px, 6vh, 64px);
  border-top: 1px solid var(--ink);
  margin-top: clamp(40px, 6vh, 64px);
}
.contact-row .col .lab {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.contact-row .col .val { font-size: 14px; line-height: 1.5; }
.contact-row .col .val a { border-bottom: 1px solid var(--rule-2); }
.contact-row .col .val a:hover { color: var(--accent); border-color: var(--accent); }

/* === Footer === */
.foot-wrap {
  border-top: 1px solid var(--ink);
  margin-top: clamp(40px, 6vh, 80px);
}
.foot {
  padding: 16px var(--pad);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 16px;
}
.foot .cell { display: flex; flex-direction: column; gap: 3px; }
.foot .cell.center { text-align: center; align-items: center; }
.foot .cell.right { text-align: right; align-items: flex-end; }

/* === Hero V4 — photo centrée + copy left/right === */
.hero-stage {
  position: relative;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(20px, 3vh, 36px);
  position: relative;
  z-index: 3;
}
.hero-eyebrow .line {
  width: clamp(40px, 6vw, 80px);
  height: 1px;
  background: var(--ink);
  opacity: 0.5;
}
.hero-eyebrow .mono {
  font-size: 11px;
  letter-spacing: 0.22em;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 80px);
  width: 100%;
  max-width: var(--max);
  min-height: clamp(420px, 64vh, 720px);
}

.hero-layout .hero-photo {
  position: relative;
  width: clamp(220px, 26vw, 360px);
  z-index: 2;
  justify-self: center;
}
.hero-layout .hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 78% 88% at 50% 50%, #000 60%, transparent 100%);
          mask-image: radial-gradient(ellipse 78% 88% at 50% 50%, #000 60%, transparent 100%);
}
.hero-layout .hero-photo .pin {
  position: absolute;
  top: 14%;
  right: -8px;
  transform: translateX(100%);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 3;
}
.hero-layout .hero-photo .pin::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--ink);
  order: -1;
}
.hero-layout .hero-photo .pin-left {
  position: absolute;
  bottom: 22%;
  left: -8px;
  transform: translateX(-100%);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 3;
}
.hero-layout .hero-photo .pin-left::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--ink);
}

.hero-copy-l, .hero-copy-r {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 28ch;
}
.hero-copy-r {
  justify-self: end;
  text-align: right;
  align-items: flex-end;
}
.hero-copy-l {
  justify-self: start;
}
.hero-layout p {
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-weight: 500;
  text-wrap: balance;
}
.hero-layout p em { font-style: italic; font-weight: 300; color: var(--ink-soft); }
.hero-layout p .accent em { color: var(--accent); font-weight: 400; }


.ensemble-cta {
  display: flex;
  justify-content: center;
  padding-bottom: clamp(20px, 4vh, 48px);
}
.ensemble-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ensemble-cta a:hover {
  background: #fff;
  color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 880px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
  }
  .hero-layout .hero-photo {
    grid-row: 1;
    width: 60vw;
    max-width: 280px;
  }
  .hero-layout .hero-photo .pin,
  .hero-layout .hero-photo .pin-left { display: none; }
  .hero-copy-l, .hero-copy-r {
    justify-self: start;
    text-align: left;
    align-items: flex-start;
    max-width: 100%;
  }
}

/* === Ensemble orange block === */
.ensemble-orange {
  background: var(--accent);
  color: #fff;
  padding: clamp(80px, 12vh, 150px) 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.ensemble-orange::before,
.ensemble-orange::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background-image: linear-gradient(to right, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 12px 4px;
  background-repeat: repeat-x;
  pointer-events: none;
}
.ensemble-orange::before { top: 0; background-position: 0 0; }
.ensemble-orange::after { bottom: 0; background-position: 0 100%; }

.ensemble-orange .section-head {
  border-bottom-color: rgba(255,255,255,0.5);
}
.ensemble-orange .section-head .idx { color: #fff; }
.ensemble-orange .section-head h2 { color: #fff; }
.ensemble-orange .section-head .right-meta { color: rgba(255,255,255,0.7); }

.ensemble-statement {
  display: flex;
  justify-content: center;
  padding: clamp(20px, 4vh, 48px) 0;
}
.ensemble-statement p {
  margin: 0;
  text-align: center;
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.018em;
  color: #fff;
  max-width: 28ch;
  text-wrap: balance;
}
.ensemble-statement p em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 880px) {
  .topbar-grid { grid-template-columns: auto 1fr; }
  .topbar .right { display: none; }
  .hero-meta { flex-wrap: wrap; gap: 12px; }
  .hero-photo { width: 70vw; max-width: 320px; }
  .hero-photo .pin, .hero-photo .pin-left { display: none; }
  .hero-bottom { grid-template-columns: 1fr 1fr; }
  .approche-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: none; }
  .work-grid { grid-template-columns: 1fr; }
  .travailler { grid-template-columns: 1fr; gap: 32px; }
  .contact-row { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: auto 1fr; }
  .section-head .right-meta { display: none; }
}
