/* ─────────────────────────────────────────────
   LECLA — Landing page
   Typography: Fraunces (display) + Inter (body)
   ───────────────────────────────────────────── */

:root {
  --bleu-900: #060f30;
  --bleu-800: #0a1547;
  --bleu-700: #0d1e5c;
  --bleu-600: #122776;
  --bleu-500: #1d3aa3;
  --bleu: #122776;
  --rose: #a9144e;
  --rose-soft: #f5b5c8;
  --rose-pale: #fde6ec;
  --off-white: #f5f2ec;
  --off-white-2: #ebe6dc;
  --ink: #0a1547;
  --ink-muted: rgba(10, 21, 71, 0.55);
  --rule: rgba(10, 21, 71, 0.12);
  --rule-light: rgba(10, 21, 71, 0.07);

  --display: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1440px;
  --gutter: clamp(24px, 4vw, 64px);

  --ease-out: cubic-bezier(.2, .65, .3, 1);
  --ease-emph: cubic-bezier(.16, 1, .3, 1);
}

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

html, body {
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body { min-height: 100vh; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
img { display: block; max-width: 100%; }

::selection { background: var(--rose); color: #fff; }

/* ─── Reveal animation ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.reveal-in { opacity: 1; transform: none; }

/* ─── Header brand logo ─── */
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  transition: height .35s var(--ease-out);
}
.brand-logo-light { display: none; }
.brand-logo-dark { display: block; }
.site-header.on-dark .brand-logo-light { display: block; filter: brightness(0) invert(1); }
.site-header.on-dark .brand-logo-dark { display: none; }
.site-header.compact .brand-logo { height: 34px; }

/* ─── Asterisk motif ───────────────────────────── */
.asterisk { display: block; }
.asterisk-spin {
  animation: aster-spin 14s linear infinite;
}
@keyframes aster-spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px var(--gutter);
  transition: padding .35s var(--ease-out), background .35s var(--ease-out), backdrop-filter .35s var(--ease-out);
}
.site-header.on-dark {
  background: linear-gradient(to bottom, rgba(6,15,48,0.6), rgba(6,15,48,0));
}
.site-header.compact {
  padding: 12px var(--gutter);
  background: rgba(245, 242, 236, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule-light);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark { display: inline-flex; }

.nav-desktop {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-desktop a {
  position: relative;
  padding: 4px 0;
  color: var(--ink);
  transition: color .25s;
}
.site-header.on-dark .nav-desktop a { color: rgba(255,255,255,0.9); }
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--rose);
  transition: width .35s var(--ease-out);
}
.nav-desktop a:hover { color: var(--rose); }
.site-header.on-dark .nav-desktop a:hover { color: #fff; }
.nav-desktop a:hover::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--rose);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background .25s, transform .25s var(--ease-out);
}
.site-header.compact .header-cta { background: var(--bleu); }
.header-cta:hover { background: var(--bleu); transform: translateY(-2px); }
.site-header.compact .header-cta:hover { background: var(--rose); }
.header-cta .arrow { transition: transform .35s var(--ease-out); }
.header-cta:hover .arrow { transform: translateX(4px); }

/* ── Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--bleu);
  transition: transform .38s var(--ease-emph), opacity .25s, background .3s;
  transform-origin: center;
}
.site-header.on-dark .nav-toggle span { background: #fff; }
.site-header.menu-open .nav-toggle span { background: var(--bleu); }

/* hamburger → X */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile overlay menu */
.nav-close {
  position: absolute;
  top: 24px;
  right: var(--gutter);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  opacity: 0;
  transition: opacity .35s var(--ease-out), color .2s;
}
.nav-mobile.is-open .nav-close { opacity: 1; }
.nav-close:hover { color: var(--rose); }
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--off-white);
  z-index: 200;
  padding: 96px var(--gutter) 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--display);
  font-size: clamp(26px, 7vw, 36px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.nav-mobile a {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), color .2s;
  color: var(--ink);
}
.nav-mobile a:hover { color: var(--rose); }
.nav-mobile .mob-cta {
  color: var(--rose);
  border: 0;
  margin-top: 28px;
  font-size: 0.72em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), color .2s;
}
.nav-mobile.is-open a,
.nav-mobile.is-open .mob-cta { opacity: 1; transform: none; }
.nav-mobile.is-open a:nth-child(1) { transition-delay: .06s; }
.nav-mobile.is-open a:nth-child(2) { transition-delay: .11s; }
.nav-mobile.is-open a:nth-child(3) { transition-delay: .16s; }
.nav-mobile.is-open a:nth-child(4) { transition-delay: .21s; }
.nav-mobile.is-open a:nth-child(5) { transition-delay: .26s; }
.nav-mobile.is-open a:nth-child(6) { transition-delay: .31s; }
.nav-mobile.is-open a:nth-child(7) { transition-delay: .36s; }
.nav-mobile.is-open a:nth-child(8) { transition-delay: .41s; }

@media (max-width: 900px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ═══════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bleu-900);
  color: var(--off-white);
  padding: 140px var(--gutter) 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  pointer-events: none;
  opacity: 0.5;
}
.hero-grid-overlay > div {
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}
.hero-grid-overlay > div:last-child { border-right: 0; }

.hero-bg-asterisk {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform .15s linear;
}

.hero-meta {
  position: absolute;
  top: 110px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  z-index: 2;
}
.hero-meta-right {
  left: auto;
  right: var(--gutter);
}
.meta-dot {
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-soft);
  margin-bottom: 32px;
  animation: fadeUp 1s var(--ease-out) 0.1s both;
}
.hero-eyebrow .line {
  height: 1px;
  width: 48px;
  background: var(--rose);
  animation: line-grow 1.2s var(--ease-out) 0.2s both;
  transform-origin: left;
}
@keyframes line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ─── Hero (rebuilt) ─── */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 32px;
  animation: fadeUp 1s var(--ease-out) 0.1s both;
}
.hero-eyebrow .line {
  height: 1px;
  width: 32px;
  background: var(--rose);
  animation: line-grow 1.2s var(--ease-out) 0.2s both;
  transform-origin: left;
}
@keyframes line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.hero-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(72px, 11vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--off-white);
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title em { font-style: italic; color: var(--rose-soft); font-weight: 300; }
.hero-line {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  animation: title-reveal 1.4s var(--ease-emph) both;
}
.hero-title .hero-line:nth-child(1) { animation-delay: 0.25s; }
.hero-title .hero-line:nth-child(2) { animation-delay: 0.4s; padding-left: clamp(40px, 8vw, 120px); }
.hero-title .hero-line:nth-child(3) { animation-delay: 0.55s; }
.hero-line-accent { color: var(--rose); }
.hero-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(56px, 8vw, 120px);
  height: clamp(56px, 8vw, 120px);
}
.hero-mark .asterisk { width: 100%; height: 100%; }
@keyframes title-reveal {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) 0.8s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: fadeUp 1.2s var(--ease-out) 0.7s both;
}
.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.05) brightness(0.85);
  transition: transform 1.4s var(--ease-out);
}
.hero-image:hover img { transform: scale(1.04); }
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,30,92,0.35) 0%, rgba(229,50,108,0.15) 100%);
  mix-blend-mode: multiply;
}
.hero-image-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  z-index: 2;
  color: #fff;
}
.tag-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--rose);
}
.tag-label {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  padding-bottom: 6px;
}

.hero-tagline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
}
.hero-tagline em { font-style: italic; color: var(--rose-soft); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color .25s;
}
.ghost-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--rose);
  transition: width .35s var(--ease-out);
}
.btn-ghost:hover { color: var(--rose); }
.btn-ghost:hover .ghost-line { width: 56px; }

.hero-grid-overlay { grid-template-columns: repeat(12, 1fr); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 16/10; }
  .hero-title .hero-line:nth-child(2) { padding-left: 0; }
}

/* ─── LinkedIn carousel ─── */
.lk-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 calc(var(--gutter) * -1);
  padding: 16px 0;
}
.lk-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: lk-scroll 80s linear infinite;
  padding: 0 var(--gutter);
}
.lk-marquee.paused .lk-marquee-track { animation-play-state: paused; }
@keyframes lk-scroll {
  to { transform: translateX(calc(-50% - 12px)); }
}
.lk-card {
  flex: 0 0 360px;
  background: var(--off-white);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .35s var(--ease-out), border-color .25s, box-shadow .35s;
  color: var(--ink);
}
.lk-card:hover {
  transform: translateY(-6px);
  border-color: var(--rose);
  box-shadow: 0 24px 48px -24px rgba(13,30,92,0.2);
}
.lk-card-head { display: flex; align-items: center; gap: 12px; }
.lk-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bleu);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lk-card-meta { display: flex; flex-direction: column; gap: 2px; }
.lk-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.lk-handle { font-size: 11px; color: var(--ink-muted); letter-spacing: 0.02em; }
.lk-globe { opacity: 0.6; }
.lk-card-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lk-card-tag {
  font-size: 12px;
  color: var(--rose);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.lk-card-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--rule-light);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.lk-card-foot strong { color: var(--bleu); font-weight: 600; }
.lk-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.lk-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--off-white-2), transparent);
}
.lk-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--off-white-2), transparent);
}
.lk-cta-row {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.lk-cta-note {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  font-family: var(--display);
}
.inline-link {
  color: var(--rose);
  border-bottom: 1px solid var(--rose);
  transition: color .2s;
}
.inline-link:hover { color: var(--bleu); border-color: var(--bleu); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--rose);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background .3s, transform .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bleu);
  transform: translateY(101%);
  transition: transform .4s var(--ease-out);
  z-index: 0;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary .btn-arrow { transition: transform .35s var(--ease-out); }
.btn-primary:hover .btn-arrow { transform: translateX(6px); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scroll-line 2.5s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 720px) {
  .hero-sub { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { font-size: 10px; }
}

/* ═══════════════════════════════════════════════
   SECTION HEAD (shared)
   ═══════════════════════════════════════════════ */
.section-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px 32px;
  align-items: start;
  margin-bottom: 80px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.sec-num {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  padding-top: 14px;
}
.sec-num.light { color: var(--rose-soft); }
.sec-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  padding-top: 14px;
  grid-column: 2;
  grid-row: 1;
}
.sec-label.light { color: rgba(255, 255, 255, 0.6); }
.sec-title {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.sec-title em {
  font-style: italic;
  color: var(--rose);
  font-weight: 300;
}
.sec-kicker {
  grid-column: 2;
  grid-row: 3;
  margin-top: 24px;
  max-width: 580px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-muted);
}

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
  .sec-num, .sec-label, .sec-title, .sec-kicker { grid-column: 1; grid-row: auto; }
}

/* ═══════════════════════════════════════════════
   2. POSITIONNEMENT
   ═══════════════════════════════════════════════ */
.positionnement {
  padding: 160px var(--gutter);
  background: var(--off-white);
  position: relative;
}
.pos-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pos-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 48px;
}
.pos-eyebrow .line {
  height: 1px; width: 48px; background: var(--rose);
}

.pos-quote {
  position: relative;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 1000px;
}
.pos-quote em {
  font-style: italic;
  color: var(--bleu);
}
.pos-quote .hl {
  position: relative;
  font-style: italic;
  color: var(--rose);
}
.pos-quote .hl::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; bottom: -4px;
  height: 4px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  animation: hl-grow 1.2s var(--ease-out) 0.6s both;
}
@keyframes hl-grow { to { transform: scaleX(1); } }
.pos-quote .quote-mark {
  font-family: var(--display);
  color: var(--rose);
  font-size: 1.2em;
  line-height: 0;
  vertical-align: -0.2em;
  margin-right: 0.05em;
}

.pos-rule {
  height: 1px;
  background: var(--rule);
  margin: 64px 0;
  transform-origin: left;
  animation: rule-grow 1.4s var(--ease-out);
}
@keyframes rule-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.pos-secondary {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink-muted);
  max-width: 800px;
  margin-left: auto;
}
.pos-secondary em {
  font-style: italic;
  color: var(--rose);
}

.pos-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 96px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bleu);
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@media (max-width: 720px) {
  .pos-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ═══════════════════════════════════════════════
   3. EXPERTISES
   ═══════════════════════════════════════════════ */
.expertises {
  padding: 140px var(--gutter);
  background: var(--off-white-2);
}
.poles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.pole {
  background: var(--off-white);
  padding: 40px 32px 32px;
  border-radius: 4px;
  position: relative;
  transition: background .4s var(--ease-out), transform .4s var(--ease-out);
  display: flex;
  flex-direction: column;
  min-height: 460px;
  border: 1px solid var(--rule-light);
}
.pole:hover {
  background: var(--bleu);
  color: var(--off-white);
  transform: translateY(-6px);
}
.pole:hover .pole-num,
.pole:hover .pole-line,
.pole:hover .pole-title,
.pole:hover .pole-cta { color: var(--off-white); }
.pole:hover .pole-line { background: var(--rose); }
.pole:hover .dot { background: var(--rose); }
.pole:hover .pole-cta .arrow { transform: translateX(6px); }

.pole-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.pole-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--rose);
  transition: color .4s;
}
.pole-line {
  flex: 1;
  height: 1px;
  background: var(--rule);
  transition: background .4s;
}
.pole-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
  transition: color .4s;
}
.pole-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}
.pole-items li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--rose);
  margin-top: 8px;
  flex-shrink: 0;
  transition: background .3s;
}
.pole-cta {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color .3s;
}
.pole-cta .arrow { transition: transform .35s var(--ease-out); }

@media (max-width: 900px) {
  .poles { grid-template-columns: 1fr; }
  .pole { min-height: auto; }
}

/* ═══════════════════════════════════════════════
   4. APPROCHE
   ═══════════════════════════════════════════════ */
.approche {
  padding: 140px var(--gutter);
  background: var(--bleu-900);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
.approche .sec-num { color: var(--rose); }
.approche .sec-label { color: rgba(255,255,255,0.55); }
.approche .sec-title { color: var(--off-white); }
.approche .sec-title em { color: var(--rose); }
.approche .sec-kicker { color: rgba(255,255,255,0.65); }

.piliers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  max-width: var(--maxw);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.pilier {
  background: var(--bleu-900);
  padding: 56px 48px;
  position: relative;
  transition: background .35s var(--ease-out);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.pilier:hover { background: var(--bleu-800); }
.pilier-num-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.pilier-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--rose);
}
.pilier-bar {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
  transform-origin: left;
  transition: transform .5s var(--ease-out), background .3s;
}
.pilier:hover .pilier-bar { background: var(--rose); }
.pilier-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.pilier-body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
}
.pilier-corner {
  position: absolute;
  top: 24px; right: 24px;
  opacity: 0.5;
  transition: opacity .3s, transform .5s var(--ease-out);
}
.pilier:hover .pilier-corner {
  opacity: 1;
  transform: rotate(90deg);
}
@media (max-width: 720px) {
  .piliers { grid-template-columns: 1fr; }
  .pilier { padding: 40px 24px; min-height: auto; }
}

/* ═══════════════════════════════════════════════
   5. ÉQUIPE
   ═══════════════════════════════════════════════ */
.equipe {
  padding: 140px var(--gutter);
  background: var(--off-white);
}
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.member {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 52px;
  align-items: start;
}
.member-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--sand);
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.member-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 4px;
}
.member-info { display: flex; flex-direction: column; gap: 6px; }
.member-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.member-role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
}
.member-bio-full {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.member-bio-full p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
}
.member-domains-intro {
  margin-top: 4px;
  font-size: 15px !important;
  color: var(--ink) !important;
  font-weight: 500;
}
.member-bio-full ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.member-bio-full ul li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  padding-left: 20px;
  position: relative;
}
.member-bio-full ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 12px;
  top: 2px;
}

.team-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.team-note .line { width: 32px; height: 1px; background: var(--rose); }

@media (max-width: 700px) {
  .member { grid-template-columns: 1fr; gap: 28px; }
  .member-photo { max-width: 160px; }
}

/* ═══════════════════════════════════════════════
   6. MAGMA
   ═══════════════════════════════════════════════ */
.magma {
  padding: 140px var(--gutter);
  background: var(--off-white-2);
  position: relative;
}
.magma-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.magma-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--rose);
  margin-bottom: 32px;
}
.magma-eyebrow .line { height: 1px; width: 48px; background: var(--rose); }

.magma-wordmark {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
}
.dot-rose { color: var(--rose); }

.magma-tag {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink-muted);
  margin-top: 8px;
  margin-bottom: 32px;
}

.magma-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 520px;
  margin-bottom: 40px;
}
.magma-body em { font-style: italic; color: var(--rose); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border: 1px solid var(--bleu);
  border-radius: 999px;
  color: var(--bleu);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background .3s, color .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.btn-outline:hover { background: var(--bleu); color: #fff; }
.btn-outline .arrow { transition: transform .35s var(--ease-out); }
.btn-outline:hover .arrow { transform: translate(4px, -4px); }

.magma-formats-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
  display: block;
}
.magma-formats { list-style: none; }
.format-row {
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  cursor: pointer;
  transition: padding-left .35s var(--ease-out);
}
.format-row:last-child { border-bottom: 1px solid var(--rule); }
.format-row:hover { padding-left: 16px; }
.format-row:hover .format-num { color: var(--rose); }
.format-row:hover .format-arrow { transform: translateX(8px); color: var(--rose); }
.format-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 20px;
  color: var(--ink-muted);
  transition: color .3s;
}
.format-content { display: flex; flex-direction: column; gap: 4px; }
.format-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
}
.format-sub {
  font-size: 13px;
  color: var(--ink-muted);
}
.format-arrow {
  color: var(--ink-muted);
  transition: transform .35s var(--ease-out), color .3s;
}

@media (max-width: 900px) {
  .magma-inner { grid-template-columns: 1fr; gap: 64px; }
}

/* ═══════════════════════════════════════════════
   7. CERCLES & CLUBS
   ═══════════════════════════════════════════════ */
.cercles {
  padding: 140px 0;
  background: var(--off-white);
  overflow: hidden;
}
.cercles .section-head { padding: 0 var(--gutter); }

.cercles-controls {
  max-width: var(--maxw);
  margin: 0 auto 32px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.cercles-counter {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--display);
  color: var(--ink-muted);
}
.cercles-counter .big {
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--bleu);
}
.cercles-counter .sep { color: var(--rose); font-size: 28px; }
.cercles-counter span:last-child { font-size: 24px; }

.cercles-arrows {
  display: flex;
  gap: 12px;
}
.cercles-arrows button {
  width: 56px; height: 56px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  font-size: 18px;
  color: var(--bleu);
  transition: background .25s, color .25s, border-color .25s;
}
.cercles-arrows button:hover:not(:disabled) {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}
.cercles-arrows button:disabled { opacity: 0.3; cursor: not-allowed; }

.cercles-track {
  display: flex;
  gap: 24px;
  padding: 0 var(--gutter) 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.cercles-track::-webkit-scrollbar { display: none; }

.cercle-card {
  flex: 0 0 clamp(320px, 40vw, 520px);
  scroll-snap-align: center;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule-light);
  overflow: hidden;
  transition: transform .4s var(--ease-out);
}
.cercle-card:hover { transform: translateY(-6px); }

.cercle-logo-wrap {
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-bottom: 1px solid var(--rule-light);
}
.cercle-logo {
  max-height: 70%;
  max-width: 70%;
  object-fit: contain;
  transition: transform .5s var(--ease-out);
}
.cercle-card:hover .cercle-logo { transform: scale(1.05); }

.cercle-meta {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.cercle-num {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 8px;
}
.cercle-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cercle-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.cercle-card[style*="0d1638"] .cercle-sub { color: rgba(255,255,255,0.55); }
.cercle-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.cercle-card[style*="0d1638"] .cercle-body { color: rgba(255,255,255,0.7); }

/* Marquee under carousel */
.cercles-marquee {
  margin-top: 64px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.marquee-row {
  display: inline-flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   8. ACTUALITÉS
   ═══════════════════════════════════════════════ */
.actualites {
  padding: 140px var(--gutter);
  background: var(--off-white-2);
}
.linkedin-placeholder {
  max-width: var(--maxw);
  margin: 0 auto;
}
.lk-frame {
  background: var(--off-white);
  border-radius: 4px;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.lk-header {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--rule-light);
  background: var(--off-white-2);
}
.lk-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--rule);
}
.lk-dot:nth-child(1) { background: #ff5f57; }
.lk-dot:nth-child(2) { background: #febc2e; }
.lk-dot:nth-child(3) { background: #28c840; }
.lk-label {
  margin-left: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.lk-body {
  padding: 80px 40px 60px;
  text-align: center;
}
.lk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  background: var(--bleu);
  color: var(--off-white);
  border-radius: 50%;
  margin-bottom: 24px;
}
.lk-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.lk-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 540px;
  margin: 0 auto 48px;
}
.lk-text em { color: var(--rose); }

.lk-skel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
}
.lk-card-skel {
  padding: 20px;
  background: var(--off-white-2);
  border-radius: 2px;
  border: 1px solid var(--rule-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: skel-pulse 2.5s ease-in-out infinite;
}
.skel-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--rule);
}
.skel-lines { display: flex; flex-direction: column; gap: 8px; }
.skel-line {
  height: 8px;
  background: var(--rule);
  border-radius: 2px;
}
.w-90 { width: 90%; } .w-80 { width: 80%; }
.w-70 { width: 70%; } .w-60 { width: 60%; }
.w-40 { width: 40%; }
@keyframes skel-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@media (max-width: 720px) {
  .lk-skel { grid-template-columns: 1fr 1fr; }
  .lk-body { padding: 48px 20px 40px; }
}

/* ═══════════════════════════════════════════════
   9. CONTACT
   ═══════════════════════════════════════════════ */
.contact {
  background: var(--bleu-900);
  color: var(--off-white);
  padding: 140px var(--gutter);
}
.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-top: 16px;
}
.contact-title em {
  font-style: italic;
  color: var(--rose);
  font-weight: 300;
}
.contact-kicker {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-top: 32px;
  max-width: 480px;
}
.contact-meta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cm-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.cm-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.cm-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding-top: 2px;
}
.cm-val { font-family: var(--display); font-size: 18px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 4px;
}
.field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 17px;
  padding: 12px 0;
  outline: none;
  transition: border-color .25s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus { border-color: var(--rose); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field.has-err input,
.field.has-err textarea { border-color: var(--rose); }
.err {
  position: absolute;
  bottom: -18px; left: 0;
  font-size: 11px;
  color: var(--rose);
  letter-spacing: 0.05em;
}

.btn-submit {
  margin-top: 16px;
  padding: 18px 28px;
  background: var(--rose);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background .3s, transform .3s var(--ease-out);
  align-self: flex-start;
}
.btn-submit:hover { transform: translateY(-2px); background: #f04a82; }
.btn-submit.sent { background: #1d8054; }
.btn-submit .btn-arrow { transition: transform .35s var(--ease-out); }
.btn-submit:hover .btn-arrow { transform: translateX(6px); }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .contact-form { padding: 28px 20px; }
}

/* ─── Positionnement imagery ─── */
.pos-imagery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  align-items: end;
  gap: 16px;
  margin-top: 96px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.pos-img {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
}
.pos-img-1 { aspect-ratio: 4/5; }
.pos-img-2 { aspect-ratio: 1/1; }
.pos-img-3 { aspect-ratio: 4/5; }
.pos-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter .5s;
  filter: saturate(0.8) contrast(1.05);
}
.pos-img:hover img { transform: scale(1.04); filter: saturate(1) contrast(1.05); }
.pos-img-cap {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 12px;
  background: rgba(6, 15, 48, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 720px) {
  .pos-imagery { grid-template-columns: 1fr 1fr; }
  .pos-img-3 { display: none; }
}

/* ─── Magma image ─── */
.magma-image {
  position: relative;
  margin-bottom: 48px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2px;
}
.magma-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.5) contrast(1.1);
  transition: filter .6s, transform 1.2s var(--ease-out);
}
.magma-image:hover img { filter: saturate(0.9); transform: scale(1.03); }
.magma-img-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--rose);
  color: #fff;
  padding: 6px 12px;
}

/* ─── Contact backdrop ─── */
.contact { position: relative; overflow: hidden; }
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
}
.contact-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0) contrast(1.2) brightness(0.6);
  mix-blend-mode: lighten;
}
.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bleu-900) 0%, rgba(6,15,48,0.7) 50%, var(--bleu-900) 100%);
}
.contact-inner { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer {
  background: var(--bleu-900);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px var(--gutter) 64px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand-logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-brand-text { display: flex; flex-direction: column; gap: 4px; }
.footer-wordmark {
  font-family: var(--display);
  font-weight: 500;
  font-size: 32px;
  color: var(--off-white);
  letter-spacing: -0.025em;
}
.footer-baseline {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--rose);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  transition: color .25s, padding-left .25s;
}
.footer-col a:hover { color: var(--off-white); padding-left: 6px; }

/* Marquee */
.footer-marquee {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 40px 0;
}
.footer-marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.footer-mq-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 96px);
  letter-spacing: -0.025em;
  color: var(--off-white);
}
.footer-mq-item .aster { display: inline-flex; }

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
