/* ══════════════════════════════════════════════════════════════
   Page projet — A Maze In / Studio Quarante Sept
   Polices, nav et footer repris de PF_Home/styles.css
══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&family=Roboto:wght@300;400;700&family=Playfair+Display:ital,wght@1,400;1,700&display=swap');

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

html {
  scroll-behavior: smooth;
}

/* ── Tokens de design (Figma) ── */
:root {
  --white:  #f8fafc;
  --black:  #0A0D20;
  --blue:   #3b63fb;
}

body {
  cursor: none;
}

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


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

img {
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   NAV — repris à l'identique de PF_Home/styles.css
══════════════════════════════════════════════════════════════ */

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;
}

.logo-fallback {
  font-family: 'Britanica-Black', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  display: none;
}

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

.nav-links a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .15em;
  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: background .2s, color .2s, border-color .2s;
}

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


/* ══════════════════════════════════════════════════════════════
   SECTION 01 — HERO
══════════════════════════════════════════════════════════════ */

.s-hero {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Tag catégorie (haut gauche, sous la nav) */
.hero-meta {
  padding: 112px 80px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
}

/* ── Marquee "lomography * lomography *" ── */

.marquee-wrap {
  overflow: hidden;
  padding: 28px 0 0;
  padding-top: 120px;
}

.marquee-track {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  white-space: nowrap;
  /* les éléments sont dupliqués en HTML pour une boucle seamless */
  animation: marquee 20s linear infinite;
}

.marquee-track img {
  height: 160px;
  width: auto;
  flex-shrink: 0;
}

.marquee-logo {
  height: 80px;
  width: auto;
  flex-shrink: 0;
}

.marquee-sep {
  padding: 0 100px;
  font-size: 250px;
  line-height: 1;
  display: inline-block;
  transform: translateY(0.20em); /* ajuste cette valeur */
}


@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Description + tag violet ── */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding-bottom: 40px;
}

.hero-desc {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--black);
  line-height: 1.7;
  letter-spacing: 0.02em;
  max-width: 754px;
}

.hero-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── Image de couverture ── */
.hero-cover-wrap {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0; /* pas de marge supplémentaire */
}

.hero-cover {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  top: -15%; /* commence plus haut */
  will-change: transform;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 03 — INTRODUCTION
══════════════════════════════════════════════════════════════ */

.s-intro {
  display: flex;
  gap: 120px;
  align-items: flex-start;
  padding: 120px 80px;
  background: var(--white);
}

/* Gauche : grand titre mixte */
.intro-heading {
  flex: 0 0 471px;
}

.intro-h-italic {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 70px;
  color: var(--blue);
  line-height: 1.05;
  letter-spacing: -0.02em;
  display: block;
}

.intro-h-heavy {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 80px;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 16px;
}

.intro-heading-heart {
  width: 80px;
  height: 80px;
  align-self: center;
  margin-bottom: -46px;
  margin-left: -40px;
}

.intro-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin-top: 40px;
}

/* Droite : corps de texte */
.intro-body {
  flex: 1;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
  color: var(--black);
  letter-spacing: 0.02em;
  padding-top: 8px;
}

.intro-body strong {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}


/* ══════════════════════════════════════════════════════════════
   SECTION 04 — IMAGE PLEINE LARGEUR
   (captures d'écrans superposées sur fond)
══════════════════════════════════════════════════════════════ */

.s-fullwidth {
  position: relative;
  width: 100%;
  height: 882px;
  overflow: hidden;
}

.s-fullwidth .fw-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlays positionnés absolument */
.fw-overlay {
  position: absolute;
  object-fit: cover;
}

.fw-overlay--phone-v {
  /* Cadre portrait vertical droit — avec bordure blanche */
  right: 271px;
  top: 46px;
  width: 250px;
  height: 500px;
  border: 2px solid var(--white);
  overflow: hidden;
}

.s-fullwidth video {
  position: absolute;
  top: 80px;
  left: 350px;
  width: 550px;
  border: 2px solid var(--white);
}

.fw-overlay--phone-v img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.fw-overlay--strip {
  /* Bandeau horizontal bas */
  left: 106px;
  top: 503px;
  width: 400px;
  height: 250px;
  border: 2px solid var(--white);
  overflow: hidden;
}

.fw-overlay--strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.fw-overlay--br {
  /* Image bas-droite */
  right: 250px;
  top: 640px;
  width: 200px;
  height: 100px;
}

.fw-overlay--bl {
  /* Image bas-gauche */
  left: 800px;
  top: 600px;
  height: 153px;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 05 — LES ENJEUX
   (phone avec glow + photos portrait)
══════════════════════════════════════════════════════════════ */

.s-enjeux {
  padding: 120px 80px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.enjeux-inner {
  position: relative;
  height: 600px;
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  justify-content: flex-start;
  padding-left: 200px;
}

.enjeux-inner video {
  width: 310px;
  height: 640px;
  object-fit: cover;
  border-radius: 30px;
  filter: drop-shadow(0 2px 8px rgba(10, 13, 32, 0.25));
  flex-shrink: 0;
}

.enjeux-photo {
  position: absolute;
  object-fit: cover;
  border-radius: 4px;
}

.enjeux-photo--1 {
  right: 100px;
  top: 0;
  width: 340px;
  height: 380px;
}

.enjeux-photo--2 {
  right: 0;
  top: 280px;
  width: 300px;
  height: 340px;
}

/* ══════════════════════════════════════════════════════════════
   SECTION — IMAGE SOMBRE PLEIN ÉCRAN
══════════════════════════════════════════════════════════════ */

.s-dark-image {
  width: 100%;
  height: 930px;
  overflow: hidden;
  position: relative;
}

.s-dark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}

.s-dark-image video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 800px;
  z-index: 2;
}

/* ══════════════════════════════════════════════════════════════
   SECTION APP — 4 APPAREILS PHOTO EN RANGÉE
══════════════════════════════════════════════════════════════ */

.s-app {
  display: flex;
  gap: 7px;
  align-items: flex-end;
  padding-top: 120px;
  width: 100%;
  background: var(--white);
}

.app-slot {
  flex: 1;
  overflow: hidden;
}

.app-slot img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
}

/* ══════════════════════════════════════════════════════════════
   SECTION TYPOGRAPHIE
   "La hiérarchie comme langage"
   (sticky : image gauche, texte droit)
══════════════════════════════════════════════════════════════ */

.s-typo {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding: 120px 80px;
  background: var(--white);
}

.typo-img {
  flex: 0 0 700px;
  height: 797px;
  overflow: hidden;
}

.typo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.typo-text {
  flex: 1;
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.typo-heading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: -0.01em;
}

.typo-heading .accent-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  text-transform: none;
}

.typo-body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
  color: var(--black);
  letter-spacing: 0.02em;
  max-width: 500px;
}

.typo-body strong {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}


/* ══════════════════════════════════════════════════════════════
   SECTION PALETTE CHROMATIQUE
   (fond noir, sticky gauche, écrans droite)
══════════════════════════════════════════════════════════════ */

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

/* IMAGE PLEINE LARGEUR EN HAUT */

.palette-hero {
  width: auto;
  padding: 80px 80px 0;
  display: flex;
  justify-content: center;
}

.palette-hero img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 2px 8px rgba(10, 13, 32, 0.25));
}

/* SECTION STICKY */
.s-palette {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding: 120px 80px;

}

/* TEXTE STICKY GAUCHE */
.palette-text {
  flex: 0 0 460px;
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.palette-heading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--white);
}

.palette-heading .accent-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  text-transform: none;
}

.palette-body {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
  color: var(--black);
}

.palette-body strong {
  font-weight: 700;
  color: var(--black)
}

/* 3 IMAGES DROITE */
.palette-screens {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  filter: drop-shadow(0 2px 8px rgba(10, 13, 32, 0.25));
}

.palette-screen {
  border-radius: 12px;
  overflow: hidden;
 width: 100%;
  height: 481px;
  gap: 120px;
}

.palette-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* ══════════════════════════════════════════════════════════════
   SECTION GALERIE PHOTO
   (bande horizontale animée)
══════════════════════════════════════════════════════════════ */

.s-gallery {
  background: var(--white);
  overflow: hidden;
  height: 320px;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: absolute;
  padding-top: 56px;
  /* éléments dupliqués en HTML pour boucle seamless */
  animation: gallery-scroll 30s linear infinite;
}

.gallery-track img {
  flex-shrink: 0;
  object-fit: cover;
}

@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ══════════════════════════════════════════════════════════════
   SECTION IMAGE FINALE
══════════════════════════════════════════════════════════════ */

.s-final {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.s-final img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.projects-section {
  padding: 120px 5.5%;
}

.projects-header {
  margin-bottom: 64px;
}

.projects-title-wrap {
  display: flex;
  align-items: flex-end;
  gap: -32px;
}

.projects-title-wrap img {
  height: 56px;
  width: 56px;
  margin-bottom: -10px;
  margin-left: -12px;
}

.projects-title {
  font-family: 'Britanica-Black', serif;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.project-card {
  cursor: pointer;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
  text-decoration: none;
}

.project-card.card-in {
  opacity: 1;
  transform: translateY(0);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: border-radius 0.5s ease;
}

.project-card:hover .card-img {
  border-radius: 12px;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .card-overlay {
  opacity: 1;
}

.card-cta {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(12px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.project-card:hover .card-cta {
  transform: translateY(0);
}

.card-meta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.project-card:hover .card-meta {
  transform: translateY(-2px);
}

.card-num {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(10, 13, 32, 0.4);
  padding-top: 5px;
  flex-shrink: 0;
}

.card-title {
  font-family: 'Britanica-Black', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.project-card:hover .card-title {
  color: var(--blue);
}

.card-tags {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
}

/* 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 {
  display: block;
  font-family: 'Britanica-Black', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--blue);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 320px;
}

.col-text p em {
  font-family: 'Britanica-Black', serif;
  font-style: italic;
}

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

.cta-label-f {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  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: background .2s, transform .2s;
}

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

.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;
}

.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;
  display: inline-block;
  transition: color .2s, border-color .2s;
}

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

.col-contact a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  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-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #999;
  font-style: normal;
  line-height: 1.7;
}

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

.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);
  background: transparent;
  color: var(--blue);
  transform: scale(1.18);
}

.dot-live {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  margin-left: auto;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 1;   }
  50%       { transform: scale(1.4); opacity: 0.6; }
}

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

.footer-mid span {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
}

.footer-mid a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
}

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

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

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

  .s-intro {
    gap: 60px;
    padding: 80px 40px;
  }

  .intro-heading {
    flex: 0 0 360px;
  }

  .intro-h-italic {
    font-size: 52px;
  }

  .intro-h-heavy {
    font-size: 60px;
  }

  .s-typo {
    gap: 48px;
    padding: 80px 40px;
  }

  .typo-img {
    flex: 0 0 480px;
  }

  .s-palette {
    gap: 48px;
    padding: 80px 40px;
  }

  .palette-text {
    flex: 0 0 340px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

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

  /* Section enjeux */
  .enjeux-inner {
    padding-left: 60px;
  }

  .enjeux-photo--1 {
    right: 20px;
    width: 260px;
    height: 300px;
  }

  .enjeux-photo--2 {
    right: 0;
    width: 220px;
    height: 260px;
  }
}


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

  /* Curseur custom désactivé sur touch */
  body { cursor: auto; }
  #cursor { display: none; }

  /* ── NAV ── */
  nav {
    padding: 20px 5.5%;
  }

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

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

  /* ── HERO ── */
  .hero-meta {
    padding: 100px 24px 0;
  }

  .marquee-wrap {
    padding-top: 40px;
  }

  .marquee-track img {
    height: 80px;
  }

  .marquee-sep {
    font-size: 120px;
    padding: 0 40px;
  }

  .hero-desc {
    font-size: 16px;
    padding: 0 24px;
  }

  .hero-cover-wrap {
    height: 280px;
  }

  /* ── INTRO ── */
  .s-intro {
    flex-direction: column;
    gap: 40px;
    padding: 64px 24px;
  }

  .intro-heading {
    flex: unset;
    width: 100%;
  }

  .intro-h-italic {
    font-size: 40px;
  }

  .intro-h-heavy {
    font-size: 48px;
  }

  .intro-body {
    font-size: 17px;
  }

  /* ── FULLWIDTH ── */
  .s-fullwidth {
    height: 420px;
  }

  .fw-overlay--phone-v {
    right: 16px;
    top: 20px;
    width: 140px;
    height: 280px;
  }

  .s-fullwidth video {
    left: 16px;
    top: 40px;
    width: 260px;
  }

  .fw-overlay--strip {
    left: 16px;
    top: 260px;
    width: 200px;
    height: 130px;
  }

  .fw-overlay--br,
  .fw-overlay--bl {
    display: none;
  }

  /* ── ENJEUX ── */
  .s-enjeux {
    padding: 64px 24px;
  }

  .enjeux-inner {
    flex-direction: column;
    height: auto;
    padding-left: 0;
    gap: 32px;
  }

  .enjeux-inner video {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .enjeux-photo--1,
  .enjeux-photo--2 {
    display: none;
  }

  /* ── DARK IMAGE ── */
  .s-dark-image {
    height: 380px;
  }

  .s-dark-image video {
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* ── APP ── */
  .s-app {
    padding-top: 64px;
    gap: 4px;
    flex-wrap: wrap;
  }

  .app-slot {
    flex: 0 0 48%;
  }

  .app-slot img {
    height: 180px;
  }

  /* ── TYPO ── */
  .s-typo {
    flex-direction: column;
    padding: 64px 24px;
    gap: 40px;
  }

  .typo-img {
    flex: unset;
    width: 100%;
    height: 320px;
  }

  .typo-text {
    position: static;
  }

  .typo-heading {
    font-size: 32px;
  }

  .typo-body {
    font-size: 16px;
    max-width: 100%;
  }

  /* ── PALETTE ── */
  .palette-hero {
    padding: 40px 24px 0;
  }

  .s-palette {
    flex-direction: column;
    padding: 64px 24px;
    gap: 40px;
  }

  .palette-text {
    flex: unset;
    position: static;
    width: 100%;
  }

  .palette-heading {
    font-size: 32px;
  }

  .palette-body {
    font-size: 16px;
  }

  .palette-screens {
    gap: 24px;
  }

  .palette-screen {
    height: 280px;
  }

  /* ── GALERIE ── */
  .s-gallery {
    height: 200px;
  }

  .gallery-track {
    padding-top: 24px;
  }

  /* ── FINAL ── */
  .s-final {
    height: 320px;
  }

  /* ── PROJETS ── */
  .projects-section {
    padding: 64px 5.5%;
  }

  .projects-header {
    margin-bottom: 40px;
  }

  .projects-title {
    font-size: clamp(28px, 8vw, 44px);
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .project-card[style*="span 7"],
  .project-card[style*="span 5"] {
    grid-column: span 1 !important;
  }

  .card-title {
    font-size: 20px;
  }

  /* ── 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-top: 40px;
  }
}