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

html { scroll-behavior: smooth; }

:root {
  --white: #f8fafc;
  --black: #121528;
  --blue: #3b63fb;
}

body {
  cursor: none;
  background: var(--white);
  color: var(--black);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

img { display: block; }

/* CURSEUR */
#cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
}

/* NAV */
nav {
  position: fixed;
  mix-blend-mode: difference;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 5.5%;
  z-index: 100;
  pointer-events: auto;
}

nav > * { pointer-events: auto; }

.logo {
  display: flex;
  align-items: center;
  height: 120px;
  width: 120px;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 9px 20px;
  border-radius: 4px;
  display: block;
  transition: color .2s, border-color .2s;
}

.nav-links a:hover {
  color: var(--white);
  border-color: var(--white);
}

/* HERO */
.ml-hero {
  padding: 160px 5.5% 60px;
}

.ml-hero h1 {
  font-family: 'Britanica-Black', serif;
  font-size: clamp(80px, 10vw, 160px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.0;
}

.ml-hero img {
  height: 200px;
  width: 200px;
  margin-left: 1050px;
  margin-top: -148px;
}

/* BACK */
.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 5.5% 60px;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.back:hover {
  color: var(--blue);
  border-color: var(--blue);
}

/* CONTENU */
.ml-content {
  max-width: 860px;
  padding: 0 5.5% 120px;
}

.ml-block {
  margin-bottom: 80px;
}

.ml-block h2 {
  font-family: 'Britanica-Black', serif;
  font-size: 13px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.ml-block h3 {
  font-family: 'Britanica-Black', serif;
  font-size: 28px;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  margin-top: 40px;
}

.ml-block p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 12px;
}

.ml-block a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ml-divider {
  width: 100%;
  height: 1px;
  background: rgba(18, 21, 40, 0.1);
  margin: 80px 0;
}

.ml-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.ml-list li {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.ml-list li::before {
  content: '—';
  color: var(--blue);
  position: absolute;
  left: 0;
}

.ml-date {
  font-size: 12px;
  color: #999;
  margin-top: 60px;
  letter-spacing: 0.1em;
}

/* FOOTER */
footer {
  width: 100%;
  background: var(--white);
  padding-top: 80px;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 0.2fr 1fr 1fr 1fr;
  padding: 0 5.5% 72px;
}

.col-text p {
  font-family: 'Britanica-Black', serif;
  font-size: 20px;
  color: var(--blue);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 320px;
}

.col-text p em { font-style: italic; }

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-label-f {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}

.cta-arrow {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  transition: transform .2s;
}

.cta-arrow:hover { transform: translateX(3px); }

.col-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 24px;
}

.col-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.col-nav a {
  font-family: 'Britanica-Black', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.1;
  border-bottom: 2px solid var(--black);
  display: inline-block;
  transition: color .2s, border-color .2s;
}

.col-nav a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.col-contact a {
  font-size: 14px;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: block;
  margin-bottom: 16px;
  transition: color .2s;
}

.col-contact a:hover { color: var(--blue); }

.col-contact address {
  font-size: 13px;
  font-weight: 300;
  color: #999;
  font-style: normal;
  line-height: 1.7;
}

.social-icons {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--black);
  font-size: 14px;
  transition: border-color .2s, background .2s, transform .2s cubic-bezier(0.16,1,0.3,1);
}

.social-icon:hover {
  border-color: var(--blue);
  transform: scale(1.18);
}

.footer-name {
  width: 100%;
  overflow: hidden;
}

.footer-name img {
  width: 100%;
  height: auto;
  display: block;
  padding: 60px 20px 20px;
}

.footer-mid {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 5.5%;
  gap: 40px;
}

.footer-mid span,
.footer-mid a {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
}


/* ── COL-CONNECT (colonne Réseaux footer) ── */
.col-connect .col-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 24px;
}


/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {

  .ml-hero h1 {
    font-size: clamp(60px, 8vw, 120px);
  }

  .ml-hero img {
    margin-left: auto;
    margin-top: -80px;
    height: 140px;
    width: 140px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 5.5% 48px;
  }

  .footer-top > div:nth-child(2) {
    display: none;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  body {
    cursor: auto;
  }

  #cursor {
    display: none;
  }

  nav {
    padding: 20px 5.5%;
  }

  .logo {
    width: 80px;
    height: 80px;
  }

  .nav-links a {
    font-size: 9px;
    padding: 7px 12px;
  }

  /* ── HERO ── */
  .ml-hero {
    padding: 120px 5.5% 40px;
  }

  .ml-hero h1 {
    font-size: clamp(48px, 12vw, 80px);
  }

  .ml-hero img {
    display: none;
  }

  /* ── CONTENU ── */
  .ml-content {
    padding: 0 5.5% 80px;
  }

  .ml-block h3 {
    font-size: 22px;
  }

  .ml-block p {
    font-size: 15px;
  }

  .ml-list li {
    font-size: 15px;
  }

  /* ── FOOTER ── */
  footer {
    padding-top: 60px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 0 5.5% 48px;
    gap: 40px;
  }

  .footer-top > div:nth-child(2) {
    display: none;
  }

  .col-text p {
    font-size: 18px;
    max-width: 100%;
  }

  .col-nav a {
    font-size: 24px;
  }

  .footer-mid {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px 5.5%;
  }

  .footer-name img {
    padding: 16px 12px 12px;
  }
}