/* ══════════════════════════════════════════════════════════════
   projet-lomography.css
   Page projet — Oyeah / 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;
}

/* ── CURSEUR ── */

body {
  cursor: none;
}

#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: 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: rgba(18, 21, 40, 0.55);
}

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

.marquee-star {
  font-family: 'Britanica-Black', serif;
  font-weight: 900;
  font-size: 180px;
  line-height: 1;
  color: var(--black);
  flex-shrink: 0;
  padding: 0 24px;
  user-select: none;
}

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

/* ── Description + tag violet ── */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 80px 60px;
  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: 4px;
  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: 182px;
  height: 374px;
  border: 2px solid var(--white);
  overflow: hidden;
}

.fw-overlay--band {
   top: 120px;
  left: 200px;
  width:600px;
  height: 374px;
}

.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: 881px;
  height: 76px;
  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: 317px;
  top: 640px;
  width: 325px;
  height: 177px;
}

.fw-overlay--bl {
  /* Image bas-gauche */
  left: 460px;
  top: 650px;
  height: 120px;
}

/* ══════════════════════════════════════════════════════════════
   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 img:first-child {
  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 PICTOS BLEUS
══════════════════════════════════════════════════════════════ */

.icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 120px;
  padding-left: 80px;
  padding-right: 80px;
  width: 100%;
}

/* ══════════════════════════════════════════════════════════════
   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;
  border-radius: 4px;
}

.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)
══════════════════════════════════════════════════════════════ */

/* IMAGE PLEINE LARGEUR EN HAUT */

.palette-hero {
  width: 100%;
  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(--black);
}

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

/* ══════════════════════════════════════════════════════════════
   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;
  top: 72px;
  left: 0;
  /* é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;
}


/* SECTION CTA PROJETS */

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

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

.social-icon:hover {
  border-color: var(--blue);
  background: transparent;
  color: var(--blue);
}

.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 — page projet Oyeah
   Breakpoints : 1024px (tablette) · 900px · 768px (mobile large) · 480px (mobile)
══════════════════════════════════════════════════════════════ */

/* Sécurité anti-débordement horizontal */
html, body { max-width: 100%; overflow-x: hidden; }
img, video { max-width: 100%; }

/* Le curseur custom n'a aucun sens sur écran tactile */
@media (max-width: 1024px) {
  body { cursor: auto; }
  #cursor { display: none; }
}

/* ── NAV ── */
@media (max-width: 768px) {
  nav { padding: 16px 5%; }
  .logo { width: 64px; height: 64px; }
  .nav-links { gap: 4px; }
  .nav-links a {
    font-size: 8px;
    letter-spacing: .08em;
    padding: 7px 12px;
  }
}
@media (max-width: 480px) {
  .logo { width: 52px; height: 52px; }
  .nav-links a { padding: 6px 9px; font-size: 7px; }
}

/* ── HERO ── */
@media (max-width: 1024px) {
  .marquee-wrap { padding-top: 90px; }
  .marquee-track img { height: 80px; }
  .marquee-sep { font-size: 130px; padding: 0 50px; }
  .hero-text { padding: 32px 40px 40px; }
  .hero-desc { font-size: 18px; max-width: 560px; }
  .hero-cover-wrap { height: 380px; }
}
@media (max-width: 768px) {
  .marquee-wrap { padding-top: 56px; }
  .marquee-track img { height: 48px; }
  .marquee-sep { font-size: 56px; padding: 0 24px; }
  .hero-text { padding: 24px 24px 32px; gap: 14px; }
  .hero-desc { font-size: 16px; line-height: 1.6; }
  .hero-tag { font-size: 10px; padding: 6px 14px; }
  .hero-cover-wrap { height: 260px; }
}
@media (max-width: 480px) {
  .marquee-wrap { padding-top: 40px; }
  .marquee-track img { height: 32px; }
  .marquee-sep { font-size: 34px; padding: 0 14px; }
  .hero-cover-wrap { height: 190px; }
  .hero-desc { font-size: 14.5px; }
}

/* ── INTRODUCTION ── */
@media (max-width: 1024px) {
  .s-intro { gap: 56px; padding: 80px 40px; }
  .intro-heading { flex: 0 0 auto; }
  .intro-h-italic { font-size: 48px; }
  .intro-h-heavy { font-size: 52px; gap: 12px; }
  .intro-heading-heart { width: 52px; height: 52px; margin-bottom: -30px; margin-left: -26px; }
  .intro-subtitle { font-size: 14px; margin-top: 28px; }
  .intro-body { font-size: 18px; }
}
@media (max-width: 768px) {
  .s-intro { flex-direction: column; gap: 32px; padding: 64px 24px; }
  .intro-heading { width: 100%; }
  .intro-h-italic { font-size: 36px; }
  .intro-h-heavy { font-size: 38px; gap: 8px; }
  .intro-heading-heart { width: 38px; height: 38px; margin-bottom: -20px; margin-left: -16px; }
  .intro-subtitle { font-size: 12px; margin-top: 20px; }
  .intro-body { font-size: 16px; padding-top: 0; }
}

/* ── IMAGE PLEINE LARGEUR (collage) — passage en pile verticale ── */
@media (max-width: 900px) {
  .s-fullwidth {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 5.5%;
  }
  .s-fullwidth .fw-bg {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .fw-overlay {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
  }
  .fw-overlay--phone-v {
    max-width: 260px;
    margin: 0 auto;
    aspect-ratio: 182 / 374;
  }
  .fw-overlay--phone-v img { width: 100%; height: 100%; }
  .fw-overlay--strip { aspect-ratio: 881 / 76; }
  .fw-overlay--br { max-width: 100%; height: auto !important; }
  .fw-overlay--bl { max-width: 140px; margin: 0 auto; }
}

/* ── LES ENJEUX ── */
@media (max-width: 900px) {
  .s-enjeux { padding: 64px 24px; }
  .enjeux-inner {
    height: auto;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    gap: 20px;
  }
  .enjeux-inner img:first-child {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 310 / 640;
  }
  .enjeux-photo {
    position: static;
    width: 100% !important;
    max-width: 320px;
    height: auto !important;
    aspect-ratio: 340 / 380;
  }
}

/* ── IMAGE ATMOSPHÉRIQUE ── */
@media (max-width: 900px) {
  .s-dark-image { height: 520px; }
  .s-dark-image video { width: 92%; height: 70%; }
}
@media (max-width: 600px) {
  .s-dark-image { height: 360px; }
  .s-dark-image video { width: 94%; height: 60%; }
}

/* ── PICTOS ── */
@media (max-width: 768px) {
  .icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 64px 24px;
  }
  .icon img { height: 56px !important; }
}
@media (max-width: 480px) {
  .icons { gap: 24px; padding: 48px 20px; }
  .icon img { height: 42px !important; }
}

/* ── TYPOGRAPHIE ── */
@media (max-width: 1024px) {
  .s-typo { gap: 40px; padding: 80px 40px; }
  .typo-img { flex: 0 0 auto; width: 100%; height: auto; aspect-ratio: 700 / 797; }
  .typo-heading { font-size: 32px; }
  .typo-body { font-size: 17px; }
}
@media (max-width: 768px) {
  .s-typo { flex-direction: column; padding: 64px 24px; gap: 24px; }
  .typo-text { position: static; top: auto; }
  .typo-heading { font-size: 26px; }
  .typo-body { font-size: 15px; max-width: 100%; }
}

/* ── PALETTE CHROMATIQUE ── */
@media (max-width: 1024px) {
  .palette-hero { padding: 60px 40px 0; }
  .s-palette { gap: 40px; padding: 80px 40px; }
  .palette-text { flex: 0 0 auto; }
  .palette-heading { font-size: 32px; }
  .palette-screen { height: 340px; }
}
@media (max-width: 768px) {
  .palette-hero { padding: 48px 24px 0; }
  .s-palette { flex-direction: column; padding: 64px 24px; gap: 24px; }
  .palette-text { position: static; top: auto; }
  .palette-heading { font-size: 26px; }
  .palette-body { font-size: 16px; }
  .palette-screens { gap: 24px; }
  .palette-screen { height: 220px; }
}

/* ── CTA PROJETS ── */
@media (max-width: 900px) {
  .projects-section { padding: 80px 5.5%; }
  .projects-title { font-size: clamp(28px, 7vw, 40px); }
  .projects-header { margin-bottom: 40px; }
  .projects-grid { grid-template-columns: 1fr; gap: 24px; }
  .project-card { grid-column: 1 / -1 !important; }
}

/* ── GALERIE PHOTO ── */
@media (max-width: 900px) {
  .s-gallery { height: 200px; }
  .gallery-track { top: 40px; gap: 12px; }
  .gallery-track img { height: 140px !important; }
}
@media (max-width: 480px) {
  .s-gallery { height: 140px; }
  .gallery-track { top: 24px; gap: 8px; }
  .gallery-track img { height: 96px !important; }
}

/* ── FOOTER — aligné sur le responsive de contact.css ── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 5.5% 48px;
  }

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

@media (max-width: 768px) {
  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;
  }
}
