/* Volum.co — refonte 2026
   Direction : opérateur d'actifs tertiaires, ton institutionnel + visionnaire.
   Système : éditorial, sobre, beaucoup d'air ; serif Newsreader en display,
   grotesque Hanken en courant, mono pour les labels ; accent rust rare.
*/

:root {
  --ink: #17120D;
  --ink-2: #2A2119;
  --paper: #F4F0E8;
  --paper-2: #ECE6DA;
  --line: #17120D1F;
  --line-strong: #17120D3D;
  --muted: #6E665B;
  --accent: #A83A1B; /* rust brûlé — accent rare */
  --accent-soft: #E7DCCB;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 64px);

  /* Type scale */
  --t-mega: clamp(60px, 8.4vw, 150px);
  --t-h1: clamp(48px, 6.4vw, 104px);
  --t-h2: clamp(36px, 4.6vw, 76px);
  --t-h3: clamp(26px, 2.8vw, 42px);
  --t-h4: clamp(20px, 1.8vw, 26px);
  --t-body-lg: clamp(18px, 1.4vw, 22px);
  --t-body: 17px;
  --t-small: 14px;
  --t-eyebrow: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ============ TYPOGRAPHY ============ */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.02; }
.sans { font-family: var(--sans); }
.mono { font-family: var(--mono); }

.eyebrow {
  font-family: var(--mono);
  font-size: var(--t-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--ink);
  display: inline-block;
}

.eyebrow.no-rule::before { display: none; }
.sec-eyebrow { display: flex; margin-bottom: clamp(20px, 2.4vw, 32px); }

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(80px, 10vw, 160px); }
.section-tight { padding-block: clamp(60px, 7vw, 100px); }

.divider { height: 1px; background: var(--line); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in oklch, var(--paper) 82%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  height: 34px;
  width: auto;
}
.nav-logo svg { height: 100%; width: auto; }
.nav-logo svg path, .nav-logo svg rect, .nav-logo svg polygon { fill: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  font-size: 14px;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--ink);
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.55; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: 14px;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }
.nav-cta .arrow {
  width: 14px; height: 14px;
  display: inline-block;
}

.nav-mobile-toggle { display: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn .arrow { width: 14px; height: 14px; }

/* ============ HERO ============ */
.hero {
  padding-top: clamp(60px, 7vw, 100px);
  padding-bottom: clamp(40px, 5vw, 80px);
  position: relative;
}
.hero-eyebrow-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}
.hero-lead .hero-tagline { max-width: 44ch; }
.hero-lead { min-width: 0; }
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(46px, 5.4vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  text-wrap: balance;
}
.hero-headline .accent-dot { color: var(--accent); font-style: normal; }
.hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

/* right rail — rotating building illustration */
.hero-aside {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(48px, 6vw, 88px);
  border-top: 1px solid var(--line-strong);
}
.hero-stat {
  padding: clamp(24px, 2.6vw, 40px) clamp(20px, 2.4vw, 40px) 0 0;
}
.hero-stat + .hero-stat {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 3vw, 44px);
}
.hs-num {
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.015em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.hs-num span {
  font-size: 0.42em;
  color: var(--muted);
  letter-spacing: 0;
}
.hs-label {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 10px;
}
/* ---- rotating 3D building ---- */
.hero-illo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}
.illo-scene {
  position: relative;
  width: 150px;
  height: 300px;
  transform-style: preserve-3d;
  transform: rotateX(-13deg);
}
.illo-building {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: illoSpin 26s linear infinite;
}
.illo-face,
.illo-roof {
  position: absolute;
  left: 50%;
  top: 50%;
  box-sizing: border-box;
}
.illo-front,
.illo-back {
  width: 150px; height: 300px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 7px;
  padding: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line-strong);
}
.illo-front { transform: translate(-50%, -50%) translateZ(55px); }
.illo-back  { transform: translate(-50%, -50%) rotateY(180deg) translateZ(55px); }
.illo-left,
.illo-right {
  width: 110px; height: 300px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 7px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
}
.illo-left  { transform: translate(-50%, -50%) rotateY(-90deg) translateZ(75px); filter: brightness(0.955); }
.illo-right { transform: translate(-50%, -50%) rotateY(90deg)  translateZ(75px); filter: brightness(0.955); }
.illo-roof {
  width: 150px; height: 110px;
  transform: translate(-50%, -50%) rotateX(90deg) translateZ(150px);
  background: var(--ink);
}
.illo-win {
  background: #17120D14;
  border-radius: 1px;
  animation: winFill 15s ease-in-out infinite;
}
.illo-ground {
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 200px;
  height: 46px;
  transform: translateX(-50%) rotateX(78deg);
  background: radial-gradient(ellipse at center, #17120D2E, transparent 68%);
  filter: blur(2px);
}
@keyframes illoSpin { to { transform: rotateY(360deg); } }
@keyframes winFill {
  0%, 6%    { background: #17120D12; }
  15%, 72%  { background: var(--accent); }
  84%, 100% { background: #17120D12; }
}
@media (prefers-reduced-motion: reduce) {
  .illo-building { animation: none; }
  .illo-win { animation: none; background: #17120D14; }
}
.hero-subrow {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-top: clamp(32px, 4vw, 56px);
}
.hero-tagline {
  font-size: var(--t-body-lg);
  line-height: 1.4;
  margin-top: clamp(28px, 3vw, 40px);
  color: var(--ink);
  max-width: 38ch;
  text-wrap: pretty;
}
.hero-meta {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.hero-meta-row { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); padding-top: 12px; }
.hero-meta-row strong { color: var(--ink); font-weight: 500; }

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: clamp(32px, 4vw, 48px);
}

/* full-bleed image marquee under hero */
.hero-marquee {
  margin-top: clamp(48px, 6vw, 96px);
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 18px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  display: flex;
  gap: 64px;
  white-space: nowrap;
}
.hero-marquee-inner {
  display: flex; gap: 64px;
  animation: marquee 50s linear infinite;
  flex-shrink: 0;
}
.hero-marquee-inner span { display: inline-flex; align-items: center; gap: 12px; }
.hero-marquee-inner span::after {
  content: ""; width: 4px; height: 4px; background: var(--ink); border-radius: 50%;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ STATEMENT MARQUEE (big letters, Blackstone-style) ============ */
.statement-marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding-block: clamp(28px, 3.5vw, 52px);
}
.sm-track {
  display: flex;
  width: max-content;
  animation: smScroll 34s linear infinite;
}
.sm-row {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 0;
}
.sm-row span {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 104px);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  padding: 0 clamp(24px, 3vw, 56px);
}
.sm-dot { color: var(--accent); font-size: clamp(24px, 3vw, 56px) !important; padding: 0 !important; }
@keyframes smScroll {
  to { transform: translateX(-50%); }
}
.statement-marquee:hover .sm-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .sm-track { animation: none; }
}

/* ============ MISSION / VISION ============ */
.mission {
  background: var(--paper);
  color: var(--ink);
  padding-block: clamp(56px, 6vw, 88px);
}
.mission-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.mission-statement {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  text-wrap: balance;
}
.mission-statement em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

/* two stacked visual points (Carta-style line diagrams) */
.vision-duo {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.6vw, 36px);
}
.vision-point {
  display: grid;
  grid-template-columns: clamp(120px, 13vw, 168px) 1fr;
  gap: clamp(20px, 2.4vw, 34px);
  align-items: center;
  padding-top: clamp(24px, 2.6vw, 36px);
  border-top: 1px solid var(--line);
}
.vision-point:first-child { border-top: none; padding-top: 0; }
.vp-viz svg { width: 100%; height: auto; display: block; overflow: visible; }
.vp-viz line, .vp-viz rect, .vp-viz path, .vp-viz circle {
  stroke: var(--ink); stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round;
}
.vz-ground { stroke: var(--line-strong); stroke-width: 1; }
.vz-old { stroke: #1c1c1966; }
.vz-arrow {
  stroke: var(--accent); stroke-width: 2;
  stroke-dasharray: 70; stroke-dashoffset: 70;
  animation: miArrow 3.6s ease-in-out infinite;
}
.vz-arrow-head { stroke: var(--accent); stroke-width: 2; opacity: 0; animation: miHead 3.6s ease-in-out infinite; }
.vz-new { stroke: var(--ink); }
.vz-win { stroke: none; fill: #1c1c1910; animation: miWin 5s ease-in-out infinite; }
@keyframes miWin { 0%,70%,100% { fill: #1c1c1910; } 35% { fill: var(--accent); } }

.vz-arc { stroke: var(--line-strong); stroke-width: 1.3; fill: none; }
.vz-node { stroke: none; fill: #1c1c1918; animation: vzNode 3.5s linear infinite; }
@keyframes vzNode { 0% { fill: var(--accent); } 14%,100% { fill: #1c1c1918; } }
.vz-travel circle { fill: var(--accent); stroke: none; }
.vz-travel { offset-path: path('M20 118 A150 150 0 0 1 280 118'); animation: vzTravel 3.5s linear infinite; }
@keyframes vzTravel { from { offset-distance: 0%; } to { offset-distance: 100%; } }

.vision-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 10px;
}
.vp-txt h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 27px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-wrap: balance;
}
.vp-txt h3 em { font-style: italic; font-weight: 500; color: var(--accent); }
.vp-txt p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  text-wrap: pretty;
}

@media (prefers-reduced-motion: reduce) {
  .vz-arrow, .vz-arrow-head, .vz-win, .vz-node, .vz-travel { animation: none; }
  .vz-arrow { stroke-dashoffset: 0; }
  .vz-arrow-head { opacity: 1; }
  .vz-travel { display: none; }
}

@keyframes miArrow {
  0% { stroke-dashoffset: 96; }
  40%, 100% { stroke-dashoffset: 0; }
}
@keyframes miHead {
  0%, 32% { opacity: 0; }
  42%, 100% { opacity: 1; }
}

/* ============ 7 MISSIONS (visual grid) ============ */
.missions7 {
  background: var(--paper-2);
  padding-block: clamp(90px, 11vw, 150px);
}
.m7-header { margin-bottom: clamp(48px, 6vw, 80px); }
.m7-title {
  font-family: var(--serif);
  font-size: var(--t-h2);
  font-weight: 350;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: clamp(20px, 2.4vw, 32px);
  text-wrap: balance;
}
.m7-title em { font-style: italic; font-weight: 500; color: var(--accent); }
/* ---- Frise (horizontal timeline of expertises) ---- */
.frise { position: relative; }
.frise-track {
  position: relative;
  display: flex;
  align-items: stretch;
  padding-top: 78px;            /* room for annotations above the line */
  list-style: none;
  margin: 0;
}
.frise-track::before {          /* the connecting line, node-center height */
  content: "";
  position: absolute;
  top: 101px;                   /* 78 + 23 (half of 46px node) */
  left: 10%; right: 10%;
  height: 1px;
  background: var(--line-strong);
}
.frz-step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(12px, 1.6vw, 26px);
}
.frz-node {
  position: relative;
  z-index: 2;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  -webkit-appearance: none; appearance: none;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.frz-node:hover,
.frz-node:focus-visible {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
  transform: translateY(-2px);
  outline: none;
}
.frz-body { margin-top: 28px; display: flex; flex-direction: column; align-items: center; flex: 1; }
.frz-step .m7-icon { height: 44px; margin: 0 auto 16px; display: flex; justify-content: center; }
.frz-name {
  font-family: var(--serif);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  text-wrap: balance;
}
.frz-desc { font-size: 13.5px; line-height: 1.45; color: var(--muted); text-wrap: pretty; }
.frz-detail {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  box-sizing: content-box;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  -webkit-appearance: none; appearance: none;
}
.frz-detail span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.frz-detail svg {
  width: 34px; height: 34px;
  padding: 9px;
  box-sizing: border-box;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.frz-detail:hover svg,
.frz-detail:focus-visible svg {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
  transform: translateY(-2px);
}
.frz-detail:focus-visible { outline: none; }

/* annotation markers — points on the line, not clickable categories */
.frz-note {
  position: absolute;
  top: 22px;
  transform: translateX(-50%);
  width: max-content;
  max-width: 150px;
  text-align: center;
  z-index: 1;
}
.frz-note-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--muted);
}
.frz-note::after {              /* dashed tick from label down to the line */
  content: "";
  position: absolute;
  left: 50%; top: 100%;
  width: 1px; height: 44px;
  border-left: 1px dashed var(--line-strong);
}
.frz-note-dot {                 /* dot sitting on the connecting line */
  position: absolute;
  left: 50%; top: calc(100% + 44px);
  transform: translate(-50%, -50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 3;
}

.m7-icon { height: 48px; margin: 22px 0 24px; }
.m7-icon svg { width: 48px; height: 48px; display: block; overflow: visible; }
.m7-icon line, .m7-icon rect, .m7-icon circle, .m7-icon path {
  fill: none; stroke: var(--ink); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.m7-icon .ic-acc { stroke: var(--accent); }
.m7-name {
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.m7-desc { font-size: 14px; line-height: 1.4; color: var(--muted); text-wrap: pretty; }

/* icon animations (transform-box so SVG origins are local) */
.m7-icon .bar, .m7-icon .hook, .m7-icon .rot { transform-box: fill-box; }

.ic-source .pin { fill: none; animation: icPin 3.2s ease-in-out infinite; }
@keyframes icPin { 0%,65%,100% { stroke: var(--ink); } 32% { stroke: var(--accent); } }

.ic-chart .bar { transform-origin: bottom; }
.ic-chart .b1 { animation: icBar 2.8s ease-in-out infinite; }
.ic-chart .b2 { animation: icBar 2.8s ease-in-out infinite .25s; }
.ic-chart .b3 { animation: icBar 2.8s ease-in-out infinite .5s; }
@keyframes icBar { 0%,100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }

.ic-doc .check { stroke-dasharray: 20; stroke-dashoffset: 20; animation: icCheck 3s ease-in-out infinite; }
@keyframes icCheck { 0%,20% { stroke-dashoffset: 20; } 55%,100% { stroke-dashoffset: 0; } }

.ic-crane .hook { transform-origin: center; animation: icHook 3s ease-in-out infinite; }
@keyframes icHook { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

.ic-cast .hub { fill: var(--accent); stroke: none; }
.ic-cast .wave { opacity: .18; }
.ic-cast .w1 { animation: icWave 2.4s ease-in-out infinite; }
.ic-cast .w2 { animation: icWave 2.4s ease-in-out infinite .3s; }
.ic-cast .w3 { animation: icWave 2.4s ease-in-out infinite .6s; }
@keyframes icWave { 0%,100% { opacity: .15; } 40% { opacity: 1; } }

.ic-net .hub { fill: var(--ink); stroke: none; }
.ic-net .dot { fill: #1C1C1922; stroke: none; animation: icDot 2.8s ease-in-out infinite; }
@keyframes icDot { 0%,70%,100% { fill: #1C1C1922; } 35% { fill: var(--accent); } }

.ic-cycle .rot { transform-origin: center; animation: icRot 6s linear infinite; }
@keyframes icRot { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .m7-icon .pin, .m7-icon .bar, .m7-icon .check, .m7-icon .hook,
  .m7-icon .wave, .m7-icon .dot, .m7-icon .rot { animation: none; }
  .ic-chart .bar { transform: scaleY(1); }
  .ic-doc .check { stroke-dashoffset: 0; }
  .ic-cast .wave { opacity: .6; }
}

/* mission two-column layout: text + map */
.mission-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
}
.mission-text .mission-grid {
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 40px);
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 48px);
}

/* ---- Europe map (night-satellite) ---- */
.mission { position: relative; overflow: hidden; }
.mission-map { width: 100%; }
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 485 / 510;
  max-width: 520px;
  margin-inline: auto;
  border-radius: 6px;
  background:
    radial-gradient(120% 90% at 52% 46%, #10182b 0%, #0a0f1c 42%, #05080f 78%);
  box-shadow: inset 0 0 0 1px #ffffff0a, inset 0 0 90px #00040b;
  isolation: isolate;
}
/* faint atmospheric limb glow */
.map-frame::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(70% 55% at 50% 48%, #2b4a7a26 0%, transparent 70%);
  pointer-events: none;
}
.map-svg { width: 100%; height: 100%; overflow: visible; position: relative; z-index: 1; }
.map-land path {
  fill: #6f93c70b;
  stroke: #7fa6d6;
  stroke-opacity: 0.18;
  stroke-width: 1;
}
.map-dots-glow { opacity: 0.7; }
.map-dots { opacity: 0.95; }

/* pins */
.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.pin-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pin-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #fffdf6 0%, #ffe7bd 55%, #ffb866 100%);
  box-shadow: 0 0 6px 1.5px #ffd9a0cc, 0 0 16px 5px #ff9d4d66, 0 0 30px 10px #ff8a3322;
  position: relative;
  z-index: 2;
}
.pin-primary .pin-dot {
  width: 15px; height: 15px;
  background: radial-gradient(circle at 50% 45%, #ffd9b8 0%, #ff7a2f 55%, #c2410c 100%);
  box-shadow: 0 0 10px 3px #ff7a2fcc, 0 0 26px 9px #e2550e77, 0 0 48px 16px #c2410c33;
}
.pin-ripple {
  position: absolute;
  left: 50%; top: 50%;
  width: 11px; height: 11px;
  margin-left: -5.5px; margin-top: -5.5px;
  border-radius: 50%;
  border: 1.5px solid #ffcd8e;
  opacity: 0;
  z-index: 1;
}
.pin-primary .pin-ripple { border-color: #ff8a3d; width: 15px; height: 15px; margin-left: -7.5px; margin-top: -7.5px; }
.pin-label {
  position: absolute;
  left: 50%; top: calc(50% + 13px);
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffe9cfdd;
  white-space: nowrap;
  text-shadow: 0 1px 8px #000000cc, 0 0 14px #ff9d4d33;
}
.pin-label-left {
  left: auto; top: 50%;
  right: calc(50% + 13px);
  transform: translateY(-50%);
}
.pin-label-right {
  left: calc(50% + 13px); top: 50%;
  transform: translateY(-50%);
}
.pin-primary .pin-label { color: var(--paper); font-weight: 500; top: calc(50% + 15px); }

/* drop + ripple animations, gated on .is-dropping */
.mission-map .pin-inner { opacity: 0; }
.mission-map.is-dropping .pin-inner {
  animation: pin-drop 0.7s cubic-bezier(.3,1.4,.5,1) backwards;
  animation-delay: var(--d);
}
.mission-map.is-dropping .pin-ripple {
  animation: pin-ripple 0.9s ease-out backwards;
  animation-delay: calc(var(--d) + 0.42s);
}
.mission-map.landed .pin-inner { opacity: 1; }

@keyframes pin-drop {
  0%   { opacity: 0; transform: translateY(-300px); }
  55%  { opacity: 1; }
  78%  { transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes pin-ripple {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(5.5); }
}

.map-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #ffffff22;
  max-width: 520px;
  margin-inline: auto;
}
.map-caption .kicker { color: #ffffff88; }
.map-caption-count {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffffcc;
}
.map-caption-count strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  margin-right: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .mission-map .pin-inner { opacity: 1 !important; animation: none !important; }
  .mission-map .pin-ripple { animation: none !important; }
}

/* ============ VALEUR CRÉÉE ============ */
.value {
  background: var(--paper-2);
  padding-block: clamp(64px, 7vw, 104px);
}
.value-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 68px);
}
.value-title {
  font-family: var(--serif);
  font-size: var(--t-h2);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin-top: clamp(20px, 2.4vw, 32px);
}
.value-title em { font-style: italic; font-weight: 500; color: var(--accent); }
.value-lede {
  font-size: var(--t-body-lg);
  line-height: 1.5;
  color: var(--muted);
  text-wrap: pretty;
}
.value-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.iso-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 560px;
  margin-inline: auto;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px #17120D40;
}
.iso-svg { width: 100%; height: 100%; display: block; }

/* animation timeline — 15s loop: empty → compartiment → embellissement → services → équipes → valeur */
.iso-parts .grow { transform-box: fill-box; transform-origin: bottom; animation: pGrow 15s ease-in-out infinite; }
@keyframes pGrow { 0%,8% { transform: scaleY(0); opacity: 0; } 16%,92% { transform: scaleY(1); opacity: 1; } 97%,100% { transform: scaleY(0); opacity: 0; } }

.iso-decor .decor { transform-box: fill-box; transform-origin: center bottom; opacity: 0; animation: dPop 15s ease-in-out infinite; }
@keyframes dPop { 0%,24% { opacity: 0; transform: translateY(8px) scale(.9); } 32%,90% { opacity: 1; transform: none; } 96%,100% { opacity: 0; } }

.iso-furn .furn { transform-box: fill-box; transform-origin: center bottom; opacity: 0; animation: fPop 15s ease-in-out infinite; }
@keyframes fPop { 0%,26% { opacity: 0; transform: translateY(10px) scale(.92); } 34%,90% { opacity: 1; transform: none; } 96%,100% { opacity: 0; } }

.iso-svc .svc { transform-box: fill-box; transform-origin: center bottom; opacity: 0; animation: sPop 15s ease-in-out infinite; }
@keyframes sPop { 0%,40% { opacity: 0; transform: translateY(9px) scale(.9); } 48%,90% { opacity: 1; transform: none; } 96%,100% { opacity: 0; } }
.iso-svc .svc-ic { transform-box: fill-box; transform-origin: center bottom; opacity: 0; animation: sIc 15s ease-in-out infinite; }
@keyframes sIc { 0%,44% { opacity: 0; transform: translateY(6px) scale(.7); } 52%,88% { opacity: 1; transform: none; } 94%,100% { opacity: 0; } }

.iso-people .person { transform-box: fill-box; transform-origin: center bottom; opacity: 0; animation: perIn 15s ease-in-out infinite; }
@keyframes perIn { 0%,58% { opacity: 0; transform: translateY(12px); } 68%,90% { opacity: 1; transform: none; } 96%,100% { opacity: 0; } }

.iso-walls .win { animation: winGlow 15s ease-in-out infinite; }
@keyframes winGlow { 0%,60% { --win: #CBDCE2; } 70%,90% { --win: #EBC489; } 97%,100% { --win: #CBDCE2; } }
.iso-walls .win polygon { fill: var(--win, #CBDCE2); transition: fill .3s; }

.iso-euros .euro {
  fill: var(--accent);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 34px;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: euroUp 15s ease-in-out infinite;
}
@keyframes euroUp { 0%,76% { opacity: 0; transform: translateY(14px); } 84% { opacity: 1; transform: translateY(-6px); } 92% { opacity: .85; transform: translateY(-44px); } 97%,100% { opacity: 0; transform: translateY(-72px); } }

.iso-badge {
  position: absolute;
  left: 14px; bottom: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 3px;
}
.iso-badge.before { background: var(--paper-2); color: var(--ink); border: 1px solid var(--line-strong); animation: badgeBefore 15s ease-in-out infinite; }
.iso-badge.after  { background: var(--accent); color: var(--paper); animation: badgeAfter 15s ease-in-out infinite; }
@keyframes badgeBefore { 0%,24% { opacity: 1; } 34%,100% { opacity: 0; } }
@keyframes badgeAfter  { 0%,64% { opacity: 0; } 74%,94% { opacity: 1; } 99%,100% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .iso-parts .grow, .iso-decor .decor, .iso-furn .furn, .iso-svc .svc, .iso-svc .svc-ic, .iso-people .person, .iso-walls .win, .iso-euros .euro, .iso-badge { animation: none; }
  .iso-parts .grow { transform: none; opacity: 1; }
  .iso-decor .decor, .iso-furn .furn, .iso-svc .svc, .iso-svc .svc-ic, .iso-people .person { opacity: 1; transform: none; }
  .iso-walls .win { --win: #EBC489; }
  .iso-euros .euro { opacity: 0; }
  .iso-badge.before { opacity: 0; }
  .iso-badge.after { opacity: 1; }
}

.value-metrics { list-style: none; }
.vm-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "label delta" "track delta";
  gap: 4px 20px;
  align-items: center;
  padding: clamp(18px, 2vw, 26px) 0;
  border-top: 1px solid var(--line);
}
.vm-row:last-child { border-bottom: 1px solid var(--line); }
.vm-label {
  grid-area: label;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.vm-track {
  grid-area: track;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--serif);
}
.vm-from { font-size: clamp(20px, 1.8vw, 26px); color: var(--muted); font-weight: 400; }
.vm-arrow { color: var(--accent); font-size: 18px; }
.vm-to { font-size: clamp(30px, 3vw, 46px); color: var(--ink); font-weight: 500; letter-spacing: -0.02em; }
.vm-delta {
  grid-area: delta;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
.value-note {
  margin-top: clamp(24px, 3vw, 36px);
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
@media (max-width: 860px) {
  .value-top { grid-template-columns: 1fr; }
  .value-showcase { grid-template-columns: 1fr; gap: 36px; }
}

/* ============ STATS ============ */
.stats {
  padding-block: clamp(64px, 7vw, 100px);
}
.stats-header {
  max-width: 60ch;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.stats-title {
  font-family: var(--serif);
  font-size: var(--t-h2);
  font-weight: 350;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.stats-title em { font-style: normal; color: var(--accent); }
  font-size: var(--t-body);
  color: var(--muted);
  text-wrap: pretty;
  max-width: 54ch;
  margin-top: 14px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 28px 36px;
  display: flex; flex-direction: column;
  min-height: 240px;
  position: relative;
  transition: background 0.3s;
}
.stat:hover { background: var(--paper-2); }
.stat:nth-child(4n) { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: auto;
}
.stat-num sup { font-size: 0.42em; vertical-align: super; letter-spacing: 0; font-weight: 400; }
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-top: 24px;
  max-width: 22ch;
  line-height: 1.5;
}
.stat-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  max-width: 28ch;
  line-height: 1.5;
}

/* auto-cycling big-number showcase */
.stat-show {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: clamp(32px, 4vw, 56px);
}
.stat-stage {
  position: relative;
  min-height: clamp(200px, 24vw, 300px);
}
.stat-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.stat-slide.active { opacity: 1; transform: none; }
.ss-num {
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 176px);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: -0.04em;
}
.ss-num sup { font-size: 0.32em; vertical-align: super; letter-spacing: 0; font-weight: 400; color: var(--accent); }
.ss-cap { display: flex; flex-direction: column; gap: 8px; margin-top: clamp(20px, 2.4vw, 32px); }
.ss-label {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.ss-sub { font-size: 15px; color: var(--muted); max-width: 42ch; line-height: 1.5; }

.stat-index { list-style: none; }
.stat-index li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: center;
  padding: clamp(11px, 1.1vw, 15px) 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
.stat-index li:last-child { border-bottom: 1px solid var(--line); }
.stat-index li:hover { color: var(--ink-2); }
.stat-index li.active { color: var(--ink); }
.si-mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: inherit; }
.si-txt {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.stat-index li.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: siProgress 3.8s linear;
}
@keyframes siProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .stat-slide { transition: none; }
  .stat-index li.active::after { animation: none; transform: scaleX(1); }
}

/* ============ EXPERTISES (cycle de vente) ============ */
.expertises {
  background: var(--paper-2);
  padding-block: clamp(100px, 12vw, 160px);
}
.exp-header {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  margin-bottom: clamp(56px, 7vw, 96px);
}
.exp-title {
  font-family: var(--serif);
  font-size: var(--t-h2);
  line-height: 1.05;
  font-weight: 350;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.exp-title em { color: var(--accent); font-style: italic; font-weight: 500; }

.exp-intro {
  font-size: var(--t-body-lg);
  line-height: 1.5;
  color: var(--ink-2);
  text-wrap: pretty;
}
.exp-intro p + p { margin-top: 16px; }

/* cycle ribbon */
.cycle-ribbon {
  margin-bottom: clamp(56px, 6vw, 80px);
  padding: 18px 0;
  border-block: 1px solid var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.cycle-ribbon span { display: inline-flex; align-items: center; }
.cycle-ribbon .sep {
  display: inline-block; width: 24px; height: 1px; background: var(--ink); opacity: 0.4;
}

/* expertise list */
.exp-list {
  border-top: 1px solid var(--ink);
}
.exp-row {
  display: grid;
  grid-template-columns: 56px minmax(220px, 1fr) 2fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  padding: clamp(28px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.25s;
  position: relative;
}
.exp-row:hover { background: #00000005; }
.exp-row:hover .exp-row-title { color: var(--accent); }
.exp-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-top: 6px;
}
.exp-row-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 350;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.25s;
}
.exp-row-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 60ch;
  padding-top: 10px;
}
.exp-row-arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  flex-shrink: 0;
  margin-top: 4px;
}
.exp-row:hover .exp-row-arrow { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.exp-row-arrow svg { width: 14px; height: 14px; }

/* ============ REALISATIONS ============ */
.work {
  padding-block: clamp(100px, 12vw, 160px);
}
.work-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(40px, 6vw, 96px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.work-title {
  font-family: var(--serif);
  font-size: var(--t-h2);
  line-height: 1.05;
  font-weight: 350;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.work-meta {
  font-size: var(--t-body-lg);
  color: var(--muted);
  max-width: 40ch;
  text-wrap: pretty;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.work-card { position: relative; cursor: pointer; }
.work-card.span-7 { grid-column: span 7; }
.work-card.span-5 { grid-column: span 5; }
.work-card.span-6 { grid-column: span 6; }
.work-card.span-4 { grid-column: span 4; }
.work-card.span-8 { grid-column: span 8; }

.work-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
  border-radius: 4px;
  margin-bottom: 18px;
}
.work-card.tall .work-img { aspect-ratio: 4 / 5; }
.work-card.wide .work-img { aspect-ratio: 16 / 10; }

.work-img-inner {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(.2,.6,.2,1);
}
.work-card:hover .work-img-inner { transform: scale(1.04); }

.work-img-tag {
  position: absolute; top: 16px; left: 16px;
  z-index: 2;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.work-info {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
}
.work-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 350;
  letter-spacing: -0.02em;
}
.work-stats {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: flex; gap: 14px;
}
.work-loc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============ HISTOIRE ============ */
.history {
  background: var(--paper-2);
  color: var(--ink);
  padding-block: clamp(56px, 6vw, 88px);
}
.history-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: clamp(44px, 6vw, 80px);
}
.history .eyebrow { color: var(--ink); }
.history .eyebrow::before { background: var(--ink); }
.history-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.history-title em { font-style: italic; font-weight: 500; color: var(--accent); }

/* minimalist horizontal frieze */
.frieze {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.frieze-step {
  display: grid;
  grid-template-rows: auto auto auto;
  row-gap: clamp(16px, 2vw, 26px);
  padding-right: clamp(12px, 2vw, 28px);
}
.fz-year {
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.fz-node {
  position: relative;
  height: 9px;
}
.fz-node::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--line-strong);
}
.fz-node::after {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 9px; height: 9px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--ink);
}
.frieze-step:first-child .fz-node::after { background: var(--accent); border-color: var(--accent); }
.fz-text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 20ch;
  text-wrap: pretty;
}

/* ============ FOUNDERS QUOTE ============ */
.founders {
  padding-block: clamp(100px, 12vw, 160px);
  background: var(--paper);
}
.founders-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}
.founders-img-wrap {
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.founders-img-wrap .placeholder-portrait {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, #d4c4ac 0%, #8a7a64 60%, #3d3528 100%);
}
.founders-img-cap {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--paper);
  background: #00000066;
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 999px;
}

.founders-quote-mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.8;
  color: var(--accent);
  margin-bottom: -20px;
  font-weight: 300;
}
.founders-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  text-wrap: balance;
}
.founders-quote em { color: var(--accent); font-style: italic; font-weight: 500; }
.founders-attrib {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.founders-engagements {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.engagement-pill {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.engagement-pill .num {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 350;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* dark variant — second dark beat of the page */
.founders--dark { background: var(--ink); color: var(--paper); }
.founders--dark .eyebrow { color: rgba(244,240,232,0.55); }
.founders--dark .founders-quote { color: var(--paper); }
.founders--dark .founders-quote em { color: var(--accent); }
.founders--dark .founders-quote-mark { color: var(--accent); }
.founders--dark .founders-attrib { color: rgba(244,240,232,0.6); border-top-color: rgba(244,240,232,0.18); }
.founders--dark .founders-engagements { border-top-color: rgba(244,240,232,0.18); }
.founders--dark .engagement-pill,
.founders--dark .engagement-pill .num { color: var(--paper); }
.founders--dark .founders-img-wrap { background: rgba(244,240,232,0.06); }
.founders--dark .btn-ghost { border-color: rgba(244,240,232,0.4); color: var(--paper); }
.founders--dark .btn-ghost:hover { border-color: var(--paper); background: var(--paper); color: var(--ink); }

/* ============ COVERAGE / IMPLANTATION ============ */
.coverage {
  padding-block: clamp(80px, 10vw, 120px);
  background: var(--paper-2);
  border-block: 1px solid var(--line);
}
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.coverage-title {
  font-family: var(--serif);
  font-size: var(--t-h3);
  font-weight: 350;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
.coverage-title em { font-style: italic; font-weight: 500; color: var(--accent); }
.eu-map { width: 100%; border-radius: 10px; overflow: hidden; }
.eu-map svg { width: 100%; height: auto; display: block; }
.eu-land { fill: var(--paper); stroke: var(--line-strong); stroke-width: 1.1; stroke-linejoin: round; }
.eu-dot text { font-family: var(--mono); font-size: 10px; letter-spacing: 0.01em; fill: var(--ink); paint-order: stroke; stroke: var(--paper-2); stroke-width: 3.5px; stroke-linejoin: round; }
.eu-dot .core { fill: var(--ink); }
.eu-dot .core.primary { fill: var(--accent); }
.eu-dot .pulse { fill: var(--accent); transform-box: fill-box; transform-origin: center; animation: euPulse 2.6s ease-out infinite; animation-delay: var(--d); }
@keyframes euPulse { 0% { transform: scale(.6); opacity: .55; } 70%,100% { transform: scale(2.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .eu-dot .pulse { animation: none; opacity: 0; } }
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: all 0.2s;
}
.city-pill.primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.city-pill:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ============ CTA + CONTACT ============ */
.contact {
  padding-block: clamp(100px, 12vw, 160px);
  background: var(--paper);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.contact-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 78px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.contact-title em { font-style: italic; font-weight: 500; color: var(--accent); }
.contact-side {
  display: flex; flex-direction: column; gap: 24px;
  font-size: 16px;
}
.contact-card {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.contact-card .label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-card .val { font-size: 17px; line-height: 1.5; }
.contact-card a:hover { color: var(--accent); }

.contact-cta-row {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 6vw, 96px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 64px;
}
.footer-brand .nav-logo svg path,
.footer-brand .nav-logo svg rect,
.footer-brand .nav-logo svg polygon { fill: var(--paper); }
.footer-brand .nav-logo { height: 28px; }
.footer-brand p {
  margin-top: 24px;
  color: #ffffff99;
  font-size: 14px;
  line-height: 1.55;
  max-width: 36ch;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  color: #ffffff77;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--paper);
  font-size: 14px;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 0.6; }

.footer-base {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid #ffffff22;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff77;
}

/* === Background pattern: very subtle paper grain === */
.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(#0e0e0c08 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

/* === Reveal animation === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.2,.6,.2,1), transform 0.8s cubic-bezier(.2,.6,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ TRUST / PARTNERS ============ */
.trust {
  padding-block: clamp(72px, 9vw, 120px);
  border-top: 1px solid var(--line);
}
.trust-head {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 3vw, 48px);
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 68px);
}
.trust-title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(28px, 3.4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.trust-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
}
.trust-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(96px, 10vw, 148px);
  padding: 24px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.3s, background 0.3s;
}
.trust-cell:last-child { border-right: none; }
.trust-cell:hover { color: var(--ink); background: var(--paper-2); }
.trust-cell span {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  white-space: nowrap;
}
/* wordmark treatments — swap for real SVG logos when available */
.lg-jll    { font-family: var(--sans); font-weight: 700; letter-spacing: 0.06em; }
.lg-cbre   { font-family: var(--sans); font-weight: 700; letter-spacing: 0.14em; }
.lg-spliit { font-family: var(--sans); font-weight: 600; letter-spacing: -0.02em; text-transform: lowercase; }
.lg-ubiq   { font-family: var(--serif); font-weight: 500; font-style: italic; letter-spacing: -0.01em; }
.lg-flash  { font-family: var(--mono); font-weight: 500; font-size: clamp(15px, 1.5vw, 20px); letter-spacing: 0.02em; text-transform: uppercase; }

@media (max-width: 860px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cell { border-bottom: 1px solid var(--line); }
  .trust-cell:nth-child(2n) { border-right: none; }
  .trust-cell:last-child { grid-column: 1 / -1; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .mission-layout { grid-template-columns: 1fr; gap: clamp(40px, 6vw, 64px); }
  .hero-grid { grid-template-columns: 1fr; gap: clamp(36px, 5vw, 56px); }
  .hero-aside { order: -1; }
  .mission-map { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-show { grid-template-columns: 1fr; gap: clamp(32px, 5vw, 48px); }
  .frz-step { padding: 0 clamp(8px, 1.2vw, 16px); }
  .stat:nth-child(4n) { border-right: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .work-card.span-7, .work-card.span-5, .work-card.span-6, .work-card.span-4, .work-card.span-8 { grid-column: span 6; }
  .founders-engagements { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; }
  .hero-subrow { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { padding-right: 0; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; border-top: 1px solid var(--line); }
  .vision-duo { gap: 24px; }
  .mission-grid2 { grid-template-columns: 1fr; gap: clamp(28px, 4vw, 44px); }
  .history-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .frieze { grid-template-columns: repeat(3, 1fr); row-gap: clamp(28px, 5vw, 40px); }
  .stats-header, .exp-header, .work-header, .contact-inner, .founders-inner, .coverage-inner, .mission-grid, .mission-layout {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-show { gap: 28px; }
  .stat-stage { min-height: 200px; }
  /* frise → vertical timeline */
  .frise-track { flex-direction: column; padding-top: 0; padding-left: 0; gap: 34px; }
  .frise-track::before { top: 0; bottom: 0; left: 23px; right: auto; width: 1px; height: auto; }
  .frz-step { flex-direction: row; align-items: flex-start; text-align: left; padding: 0; gap: 20px; }
  .frz-node { flex: 0 0 46px; }
  .frz-body { margin-top: 8px; flex: 1; }
  .frz-step .m7-icon { margin: 0 0 10px; justify-content: flex-start; }
  .frz-note { position: static; transform: none; max-width: none; display: flex; flex-direction: row-reverse; justify-content: flex-end; align-items: center; gap: 12px; padding-left: 8px; }
  .frz-note::after { display: none; }
  .frz-note-dot { position: static; transform: none; top: auto; left: auto; }
  .frz-note-label { text-align: left; }
  .frieze { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none !important; }
  .work-card.span-7, .work-card.span-5, .work-card.span-6, .work-card.span-4, .work-card.span-8 { grid-column: span 12; }
  .exp-row { grid-template-columns: 32px 1fr auto; gap: 16px; }
  .exp-row-desc { grid-column: 2 / -1; padding-top: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .founders-engagements { grid-template-columns: repeat(2, 1fr); }
}

/* ============ TENANTS (Locataires) ============ */
.tenants {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--paper-2);
  border-block: 1px solid var(--line);
}
.tenants-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.tenants-title {
  font-family: var(--serif);
  font-size: var(--t-h2);
  line-height: 1.05;
  font-weight: 350;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.tenants-title em { font-style: italic; font-weight: 500; color: var(--accent); }
.tenants-text {
  font-size: var(--t-body-lg);
  color: var(--ink-2);
  line-height: 1.55;
  text-wrap: pretty;
  margin-top: 24px;
  max-width: 46ch;
}
.tenants-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.tenants-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.tenants-list-item {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.tenants-list-item .ti-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.tenants-list-item .ti-body h4 {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.tenants-list-item .ti-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============ CONTACT MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #0e0e0ccc;
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--paper);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 40px 120px #00000055;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.modal-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.modal-head .eyebrow { margin-bottom: 16px; }
.modal-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 350;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 12px;
  text-wrap: balance;
}
.modal-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 44ch;
}
.modal-steps {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.mstep {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: all 0.25s;
}
.mstep.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.mstep.done { color: var(--accent); border-color: var(--accent); }

.modal-body { margin-top: 28px; }

/* form */
.cform { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.field input {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.field input::placeholder { color: #9a978f; }
.field input:focus { outline: none; border-color: var(--ink); background: var(--paper); }
.field input:invalid:not(:placeholder-shown) { border-color: #c2410c88; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-affix { position: relative; display: flex; align-items: center; }
.input-affix input { padding-right: 44px; }
.input-affix span {
  position: absolute; right: 16px;
  font-family: var(--mono); font-size: 13px; color: var(--muted);
  pointer-events: none;
}
.cform-submit { justify-content: center; margin-top: 4px; }
.cform-note { font-size: 13px; color: var(--muted); line-height: 1.5; text-align: center; }

/* scheduler */
.sched-recap {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--muted);
  padding: 12px 16px;
  background: var(--paper-2);
  border-radius: 6px;
  margin-bottom: 24px;
}
.sched-recap strong { color: var(--ink); font-weight: 500; }
.sched-block { margin-bottom: 24px; }
.sched-block .sched-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 12px;
  display: block;
}
.date-row { display: flex; gap: 10px; flex-wrap: wrap; }
.date-pill {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 70px;
}
.date-pill .dp-dow { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.date-pill .dp-day { font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1; }
.date-pill .dp-mon { font-size: 11px; color: var(--muted); }
.date-pill:hover { border-color: var(--ink); }
.date-pill.selected { background: var(--ink); border-color: var(--ink); }
.date-pill.selected .dp-dow, .date-pill.selected .dp-mon { color: #ffffff99; }
.date-pill.selected .dp-day { color: var(--paper); }

.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.slot {
  padding: 12px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.slot:hover { border-color: var(--ink); }
.slot.selected { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.slot-empty { font-size: 14px; color: var(--muted); padding: 8px 0; }
.sched-actions { display: flex; gap: 12px; justify-content: space-between; align-items: center; margin-top: 28px; flex-wrap: wrap; }
.sched-back { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); cursor: pointer; }
.sched-back:hover { color: var(--ink); }
.sched-confirm:disabled { opacity: 0.4; cursor: not-allowed; }
.sched-confirm:disabled:hover { background: var(--ink); transform: none; }

/* success */
.msuccess { text-align: center; padding: 16px 0 8px; }
.msuccess-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.msuccess-check svg { width: 30px; height: 30px; stroke: var(--paper); }
.msuccess h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 350;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.msuccess p { font-size: 16px; color: var(--muted); line-height: 1.55; max-width: 40ch; margin: 0 auto; }
.msuccess .slot-confirmed {
  display: inline-block;
  margin: 20px 0 8px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

body.modal-open { overflow: hidden; }

@media (max-width: 720px) {
  .tenants-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ SECTION CTAs (Vision / Valeur) ============ */
.mission-actions { margin-top: clamp(28px, 3vw, 40px); }
.value-actions {
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--line);
  display: flex;
}

/* ============ EXPERTISE DETAIL MODAL ============ */
.exp-modal { max-width: 560px; }
.exp-points {
  list-style: none;
  border-top: 1px solid var(--line);
}
.exp-points li {
  position: relative;
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink-2);
}
.exp-points li::before {
  content: "";
  position: absolute;
  left: 2px; top: 23px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.exp-modal-cta { margin-top: 28px; display: flex; }
.exp-modal-cta .btn { justify-content: center; width: 100%; }
