/* =========================================================
   FLODE — CSS optimisé
   Base issue de style.css + patchs validés
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Coolvetica:wght@700&display=swap');

@font-face {
  font-family: 'Coolvetica';
  src: url('font/coolvetica/CoolveticaRG-Regular.woff2') format('woff2'),
       url('font/coolvetica.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

:root {
  --black: #1A1A1A;
  --white: #fff;
  --grey-light: #f8f8f8;
  --grey-line: #DCDCDC;
  --grey-text: #555;
  --accent: #ff1f77;
  --font-title: 'Coolvetica', 'futura', sans-serif;
  --font-text: Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--white);
  font-family: var(--font-title);
  -webkit-font-smoothing: antialiased;
}

img,
video,
iframe {
  max-width: 100%;
  display: block;
}

::selection,
::-moz-selection {
  background: var(--accent);
  color: var(--black);
}

/* Évite les débordements dans les layouts flex/grid */
.work2-content,
.project-text,
.project-data,
.skills-columns,
.about-container,
.contact-container,
.work2-frame,
.text-column,
.info-column,
.skills-column { min-width: 0; }

/* =========================================================
   LANDING — HERO / HEADER BURGER
========================================================= */

.landing-page {
  position: relative;
  width: 100%;
  height: 100vh;
  border-bottom: 1px solid var(--grey-line);
}

.video-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 3% 3rem 0;
  background: transparent;
  mix-blend-mode: difference;
}

.header .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5% 2.5% 0;
  color: var(--white);
  font-size: 2vw;
  background: transparent;
  mix-blend-mode: difference;
}

.menu-toggle { display: none; }

.header .hamburger-lines {
  position: absolute;
  z-index: 2;
  width: 2.5vw;
  height: 3.2vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 0.7%;
  cursor: pointer;
}

.header .hamburger-lines .line {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: var(--white);
}

.header .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.header .hamburger-lines .line2 { transition: transform 0.2s ease-in-out; }

.header .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.menu-toggle:checked ~ .hamburger-lines .line1,
.header input[type="checkbox"]:checked ~ .hamburger-lines .line1 { transform: rotate(45deg); }

.menu-toggle:checked ~ .hamburger-lines .line2,
.header input[type="checkbox"]:checked ~ .hamburger-lines .line2 { transform: scaleY(0); }

.menu-toggle:checked ~ .hamburger-lines .line3,
.header input[type="checkbox"]:checked ~ .hamburger-lines .line3 { transform: rotate(-45deg); }

.header input[type="checkbox"]:checked ~ .menu-items { transform: translateX(0); }

.menu {
  position: absolute;
  top: 100%;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s 0.4s;
}

.menu.show { display: flex; }

.menu-toggle:checked ~ .menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 2rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-toggle:checked ~ .menu a { opacity: 1; transform: translateY(0); }
.menu-toggle:checked ~ .menu a:nth-child(1) { transition-delay: 0.1s; }
.menu-toggle:checked ~ .menu a:nth-child(2) { transition-delay: 0.2s; }
.menu-toggle:checked ~ .menu a:nth-child(3) { transition-delay: 0.3s; }
.menu-toggle:checked ~ .menu a:nth-child(4) { transition-delay: 0.4s; }

.footer-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5% 5.5%;
  color: var(--white);
  font-size: 5vw;
  background: transparent;
  mix-blend-mode: difference;
}

.footer-text span {
  height: 100%;
  display: flex;
  align-items: center;
}

/* =========================================================
   LANDING — STRATE 2 / LOGOS
========================================================= */

.strate2 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.strate2 .top-row,
.strate2 .bot-row {
  width: 100%;
  display: flex;
  align-items: center;
}

.strate2 .top-row {
  min-height: 50vh;
  background: var(--white) url('img/pattern-100.jpg');
}

.strate2 .top-row p {
  margin: 0 10%;
  color: var(--black);
  font-size: 50px;
}

.strate2 .bot-row {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  white-space: nowrap;
  color: var(--black);
  background: var(--white);
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}

.bot-row::before,
.bot-row::after {
  content: '';
  position: absolute;
  top: 0;
  z-index: 2;
  width: 250px;
  height: 100%;
}

.bot-row::before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), var(--white));
}

.bot-row::after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--white));
}

.logos-slide {
  display: inline-block;
  will-change: transform;
  animation: slide 30s linear infinite;
}

.logos-slide img { height: 150px; }
.strate2 .bot-row:hover .logos-slide { animation-play-state: paused; }

/* =========================================================
   LANDING — WORK / FEATURED PROJECTS
========================================================= */

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(10%);
  transition: all 1s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.btn-container { text-align: center; }

.book-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 50px 0;
  padding: 10px 20px;
  color: var(--white);
  background: #000;
  border: none;
  border-radius: 5px;
  font-size: 24px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.slide {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(to right, transparent 0%, var(--white) 50%, transparent 100%);
  transition: left 1s;
}

.book-btn:hover {
  color: #000;
  background: var(--accent);
  transition: 0.5s;
}

.book-btn:hover .slide { left: 100%; }

.strate3,
.work-section2 {
  position: relative;
  z-index: 10;
  background: var(--black);
}

.featured-title {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  font-size: 6vw;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.featured-title span { margin-left: 1vw; }

.projet {
  position: sticky;
  top: 0;
  z-index: 1;
  border-top: 2px solid var(--black);
}

.projet img {
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}

.projet img:hover { filter: grayscale(0%); }

.projet-info,
.project-info {
  position: absolute;
  top: 40%;
  left: 2%;
  max-width: 70%;
  color: var(--white);
  z-index: 1001;
}

.projet-info {
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.projet.in-view .projet-info {
  opacity: 1;
  transform: translateY(0);
}

.project-name {
  font-size: 8vw;
  line-height: 1.1;
  text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.keywords {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 15px;
}

.keyword {
  padding: 8px 15px;
  color: var(--white);
  background: transparent;
  border: 2px solid var(--white);
  border-radius: 20px;
  font-size: 1.5em;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.keyword:hover {
  background: rgba(0, 0, 0, 0.25);
  transform: scale(1.1);
}

.spacer {
  height: 100vh;
  background: var(--black);
}

.more-work {
  width: 100%;
  overflow: hidden;
  background: var(--white);
}

.marquee {
  width: 200%;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  gap: 3vw;
  padding: 1vh 0;
  font-size: 8vh;
  will-change: transform;
  animation: marquee-scroll 30s linear infinite;
  transition: transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.marquee:hover .marquee-content { animation-play-state: paused; }

.marquee-content span {
  margin: 0 2vw;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}

.marquee-content span:hover { color: var(--accent); }

.work-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.work-title {
  position: absolute;
  top: 25%;
  left: 50%;
  z-index: 10;
  display: flex;
  padding: 0 20px;
  color: var(--white);
  background: var(--black);
  font-size: 12vw;
  transform: translate(-50%, -50%);
}

.work-letter { transition: transform 0.1s ease, opacity 0.1s ease; }
.work-title:hover .work-letter { animation: growShrinkRandom 0.5s infinite alternate; }

.grid-background {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.grid-background .dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

/* =========================================================
   FOOTER GLOBAL
========================================================= */

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.footer-title-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.5s ease-in-out;
}

.footer-title {
  flex-grow: 1;
  margin: 1%;
  color: var(--black);
  font-size: 7vw;
  text-align: left;
  transition: all 0.5s ease-in-out;
}

.footer-contact {
  position: absolute;
  right: 0;
  color: var(--accent);
  font-size: 5.5vw;
  text-decoration: none;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.footer-title-container:hover .footer-title {
  width: auto;
  max-width: 60%;
  font-size: 5.5vw;
}

.footer-title-container:hover .footer-contact {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact span {
  display: inline-block;
  animation: bounceLetters 0.6s infinite alternate;
}

.footer-contact span:nth-child(1) { animation-delay: 0.1s; }
.footer-contact span:nth-child(2) { animation-delay: 0.2s; }
.footer-contact span:nth-child(3) { animation-delay: 0.3s; }
.footer-contact span:nth-child(4) { animation-delay: 0.15s; }
.footer-contact span:nth-child(5) { animation-delay: 0.25s; }
.footer-contact span:nth-child(6) { animation-delay: 0.05s; }
.footer-contact span:nth-child(7) { animation-delay: 0.2s; }

.footer-bottom {
  height: 5vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1%;
  color: var(--black);
}

.footer-copyright {
  margin: 0;
  font-size: 2vw;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials img {
  width: 25px;
  height: 25px;
  filter: invert(1);
  transition: transform 0.3s ease;
}

.footer-socials img:hover { transform: scale(1.2); }

/* =========================================================
   HEADERS PAGES INTERNES
========================================================= */

.header-work,
.header-projet {
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-work { position: fixed; }
.header-projet { position: absolute; }

.header-top {
  height: 5vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--black);
}

.header-left {
  font-size: 1.2rem;
  text-align: left;
}

.header-left p { font-size: 1vh; }

.header-bottom {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
  color: var(--black);
  background: var(--white);
}

.header-bottom h1 {
  margin: 0;
  font-size: 10vh;
  text-align: left;
}

.header-right {
  display: flex;
  gap: 30px;
}

.header-right a {
  color: var(--black);
  font-size: 1.2rem;
  font-weight: normal;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-right a:hover { color: var(--accent); }

/* =========================================================
   PAGE WORK
========================================================= */

.work-container { position: relative; }

.project {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

/* =========================================================
   PAGE CONTACT
========================================================= */

body .contact-container { background: var(--grey-light); }

.contact-container {
  width: 100%;
  height: 75vh;
  display: flex;
}

.contact-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: var(--grey-light);
  text-align: center;
}

.contact-text h2 {
  margin-bottom: 15px;
  color: var(--black);
  font-size: 2.5rem;
}

.contact-text p {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.2rem;
}

.btn-rdv,
.btn-rdv-about {
  display: inline-block;
  padding: 12px 25px;
  color: var(--white);
  background: #000;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-rdv { font-size: 1.2rem; }
.btn-rdv-about { margin: 0 auto; font-size: 1.5rem; }

.btn-rdv:hover,
.btn-rdv-about:hover {
  color: #000;
  background: var(--accent);
}

.contact-video {
  width: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-light);
}

.contact-video video {
  width: auto;
  height: 100%;
  max-width: none;
}

/* =========================================================
   PAGES PROJET
========================================================= */

[class^='project-hero-'] {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.project-hero-bbb { background-image: url('img/projets/cover-bbb.png'); }
.project-hero-reel { background-image: url('img/projets/reel-cover.jpg'); }
.project-hero-manifest { background-image: url('img/projets/manifeste-ia/ia-cover-manifeste.png'); }
.project-hero-baumer { background-image: url('img/projets/Baumer.png'); }
.project-hero-suez { background-image: url('img/projets/cover-suez.png'); }
.project-hero-kelloggs { background-image: url('img/projets/cover-kelloggs.png'); }
.project-hero-cniel { background-image: url('img/projets/cniel/banner-cniel.jpg'); }
.project-hero-1995 { background-image: url('img/projets/1995/1995-banner.png'); }
.project-hero-shopup { background-image: url('img/projets/shopup/shopup-banner.png'); }
.project-hero-dior { background-image: url('img/projets/dior-garden/dior-garden-banner.jpg'); }
.project-hero-candia { background-image: url('img/projets/candia/Candia-Banner.jpg'); }
.project-hero-delta { background-image: url('img/projets/cover-delta.png'); }
.project-hero-valrhona { background-image: url('img/projets/cover-valrhona.png'); }
.project-hero-ariane { background-image: url('img/projets/ariane-cover.jpg'); }

.project-title {
  width: 80%;
  max-width: 1000px;
  color: var(--white);
  font-size: 4vw;
  text-align: center;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 70px;
  opacity: 0.8;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.project-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 10%;
  text-align: center;
}

.project-data {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5%;
  margin: 0 auto;
  text-align: left;
}

.info-column {
  flex: 1;
  max-width: 60%;
}

.info-column h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 1.8rem;
  text-align: left;
}

.info-column ul,
.results-list {
  list-style: none;
  padding: 0;
  color: var(--grey-text);
  font-family: var(--font-text);
  font-size: 1.2rem;
}

.info-column ul { text-align: left; }

.project-data ul,
.project-text p { font-family: var(--font-text); }

.project-title-section {
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.project-title-section h2 {
  max-width: 80%;
  margin: 0 auto;
  color: var(--black);
  font-family: var(--font-title);
  font-size: 4rem;
  line-height: 1.3;
}

.separator {
  width: 960px;
  max-width: 100%;
  height: 1px;
  margin: 5vh auto;
  background: var(--accent);
  border-radius: 2px;
}

.project-text {
  max-width: 80%;
  display: flex;
  justify-content: center;
  gap: 5%;
  margin: 3rem auto;
  text-align: left;
}

.text-column {
  flex: 1;
  max-width: 30%;
}

.text-accent {
  margin-bottom: 10px;
  color: var(--black);
  font-family: var(--font-text);
  font-size: 1.5rem;
  font-weight: bold;
}

.text-column p {
  color: var(--grey-text);
  font-family: var(--font-text);
  font-size: 1.2rem;
  line-height: 1.5;
}

.project-results {
  max-width: 80%;
  margin: 3rem auto;
  text-align: left;
}

.results-title {
  margin-bottom: 15px;
  color: var(--black);
  font-family: var(--font-text);
  font-size: 1.5rem;
  font-weight: bold;
}

.results-list li {
  position: relative;
  margin-bottom: 10px;
}

.project-videos {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem auto;
  text-align: center;
}

.project-videos video {
  width: 100%;
  max-height: 640px;
}

.project-video-pair {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
}

.project-video-pair video {
  width: 48%;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
}

.video-grid {
  max-width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 2vh;
  margin: 0 auto;
}

.video-grid video {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

.cniel-gallery {
  position: relative;
  left: 50%;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 0;
  background: #f0f0f0;
  transform: translateX(-50%);
}

.cniel-gallery img {
  width: 30%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.studio-images {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin: 3rem auto;
}

.studio-images img {
  width: 100%;
  height: auto;
}

.ia-manifest p {
  color: var(--grey-text);
  font-family: var(--font-text);
  font-size: 1.5rem;
  font-weight: 200;
}

/* =========================================================
   PAGE ABOUT
========================================================= */

.about-container {
  width: 100%;
  height: 60vh;
  display: flex;
  margin-top: 15vh;
  background: var(--grey-light);
}

.about-text {
  max-width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
}

.about-text h2 {
  margin-bottom: 15px;
  color: var(--black);
  font-size: 2.5rem;
}

.about-text p {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: #333;
  font-size: 1.2rem;
  text-align: left;
}

.about-image {
  width: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-light);
}

.about-image img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.skills-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6vh 0;
  color: var(--black);
  background: var(--grey-light) url('img/pattern-100.jpg');
  text-align: left;
}

.skills-title {
  width: 80%;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  text-align: left;
}

.skills-columns {
  width: 80%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.skills-column {
  flex: 1;
  min-width: 200px;
  max-width: 350px;
  text-align: left;
}

.skills-column h3 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.skills-subtitle {
  margin-bottom: 1rem;
  color: var(--grey-text);
  font-size: 1rem;
}

.skills-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skills-column li {
  position: relative;
  margin-bottom: 0.6rem;
  padding-left: 1rem;
  font-size: 1rem;
  text-align: left;
}

.skills-column li:hover {
  color: var(--accent);
  font-size: 1.5rem;
}

/* =========================================================
   WORK2 SECTION
========================================================= */

.work2-shell {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20rem 6vw;
}

.work2-frame {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(600px, 760px);
  align-items: center;
  justify-content: center;
  column-gap: 9vw;
}

.work2-visual-wrap {
  position: relative;
  width: 540px;
  height: 720px;
  overflow: visible;
  flex-shrink: 0;
  transform: translateX(-320px);
}

.work2-visual {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--black);
}

.work2-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work2-overlay {
  position: absolute;
  left: 15rem;
  bottom: 1.6rem;
  z-index: 2;
  width: 90%;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.work2-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.work2-item h3 {
  margin: 0 0 0.7rem;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.work2-item p {
  margin: 0;
  color: var(--white);
  font-family: var(--font-text);
  font-size: 1.3rem;
  line-height: 1.22;
}

/* =========================================================
   ARCHIVE DELTA
========================================================= */

.archive-delta-gallery {
  max-width: 1100px;
  margin: 20px auto 80px;
  padding: 0 20px;
}

.archive-delta-masonry {
  column-count: 2;
  column-gap: 20px;
}

.archive-delta-item {
  overflow: hidden;
  break-inside: avoid;
  margin: 0 0 20px;
  background: #121212;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.archive-delta-item:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-10px);
}

.archive-delta-item img {
  width: 100%;
  height: auto;
}

.archive-delta-caption {
  padding: 10px 12px;
  color: #b9b9b9;
  font-size: 14px;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes growShrinkRandom {
  0% { transform: scale(0.9); }
  100% { transform: scale(1.3); }
}

@keyframes bounceLetters {
  0% { transform: translateY(20px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(10px) translateX(-50%); }
}

@keyframes menuSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1440px) {
  .about-text,
  .project-text { padding: 0 1rem; }

  .header-bottom h1 { font-size: 8vh; }
  .footer-title { font-size: 6vw; }

  .work2-frame {
    width: 100%;
    display: block;
  }

  .work2-visual-wrap { display: none; }

  .work2-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 5vw;
  }

  .work2-item h3,
  .work2-item p {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }
}

@media (max-width: 1024px) {
  .projet-info { max-width: 70%; }

  .about-container {
    height: auto;
    flex-direction: column;
  }

  .about-text,
  .about-image {
    width: 100%;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    height: auto;
  }

  .skills-columns {
    flex-direction: column;
    align-items: center;
  }

  .skills-column { max-width: 90%; }
}

@media (max-width: 768px) {
  body:has(.contact-container) {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
  }

  body:has(.contact-container) .contact-container {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
  }

  body:has(.contact-container) .contact-video { display: none; }

  body:has(.contact-container) .contact-text {
    width: 100%;
    max-width: 520px;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  body:has(.contact-container) .contact-text h2,
  body:has(.contact-container) .contact-text p { text-align: center; }

  body:has(.contact-container) .footer { margin-top: auto; }

  .header-work .header-left,
  .header-projet .header-left { display: none; }

  .header-work .header-top,
  .header-projet .header-top,
  .header-work .header-right,
  .header-projet .header-right { justify-content: flex-end; }

  .project-title {
    width: 88%;
    font-size: clamp(3rem, 9vw, 3.4rem);
    line-height: 1.05;
  }

  .project-text {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .text-column {
    max-width: 100%;
    text-align: center;
  }

  .work2-shell { padding: 3rem 0; }

  .work2-content {
    gap: 2rem;
    padding: 0 6vw;
  }

  .work2-item h3 {
    font-size: 1.2rem;
    line-height: 1.05;
  }

  .work2-item p {
    font-size: 0.95rem;
    line-height: 1.3;
  }
}

@media (max-width: 720px) {
  .archive-delta-masonry { column-count: 1; }
  .featured-title { font-size: 3rem; }
}

@media (max-width: 480px) {
  .header {
    height: auto;
    padding: 1rem 1rem 0;
  }

  .header .title {
    top: 1rem;
    bottom: auto;
    left: 1rem;
    width: 65%;
    height: auto;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    font-size: clamp(1.6rem, 6vw, 3rem);
    line-height: 0.95;
  }

  .header .hamburger-lines {
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 0;
    padding-top: 0;
  }

  .header .hamburger-lines .line {
    width: 100%;
    height: 3px;
    border-radius: 999px;
  }

  .menu {
    right: 1rem;
    top: calc(100% + 0.5rem);
  }

  .menu a { font-size: 1.4rem; }

  .footer-text {
    height: auto;
    padding: 0 1rem 1rem;
    font-size: clamp(2rem, 5vw, 1.8rem);
    line-height: 1;
  }

  .footer-text span { height: auto; }

  .header-bottom h1 { font-size: 7vh; }
  .header-right { gap: 15px; }

  .footer-title { font-size: 10vw; }

  .btn-rdv-about {
    width: auto;
    font-size: 1.2rem;
  }

  .project-text { gap: 1.5rem; }

  .strate2 .top-row p { font-size: 3vh; }

  .projet-info { max-width: 80%; }
  .projet-info p { font-size: 3.5vw; }

  .keyword {
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.25);
    font-size: 4vw;
  }

  .grid-background {
    align-content: center;
    align-items: center;
  }

  .grid-background .dot {
    width: 2vw;
    height: 2vw;
  }
}

/* =========================================================
   CORRECTIFS V2 — desktop clients marquee + largeur pages projet
   Ces règles corrigent les effets de bord de l'optimisation précédente.
========================================================= */

/* Le reset global des images ne doit pas casser le bandeau clients.
   Les logos doivent rester sur une seule ligne horizontale pour défiler. */
.strate2 .bot-row {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.logos-slide {
  display: inline-block;
  white-space: nowrap;
  flex: 0 0 auto;
  will-change: transform;
  animation: slide 30s linear infinite;
}

.logos-slide img {
  display: inline-block;
  width: auto;
  max-width: none;
  height: 150px;
  vertical-align: middle;
}

/* Desktop : redonne de l'ampleur aux contenus des pages projet.
   Le contenu n'est plus contraint trop tôt par un max-width trop étroit. */
@media (min-width: 769px) {
  .project-content {
    width: 100%;
    max-width: 1600px;
    padding: 5rem 8%;
  }

  .project-title-section h2 {
    max-width: 900px;
  }

  .separator {
    width: min(960px, 70vw);
  }

  .project-data,
  .project-text,
  .project-results,
  .project-videos,
  .studio-images {
    max-width: 90%;
  }

  .video-grid {
    max-width: 90%;
  }
}

/* =========================================================
   LANDING REDESIGN — nav centrée + CTA RDV
   À conserver en fin de fichier pour neutraliser l'ancien burger.
========================================================= */

.landing-page .landing-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: auto;
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: start;
  gap: 2rem;
  padding: 2.2rem 2.5vw 0;
  background: transparent;
  mix-blend-mode: normal;
}

.landing-page .landing-header .title {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  grid-column: 1;
  width: auto;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  color: var(--white);
  font-size: 2vw;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-align: left;
  mix-blend-mode: normal;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.landing-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.6vw, 2rem);
  padding-top: 0.45rem;
  white-space: nowrap;
}

.landing-nav a {
  position: relative;
  color: var(--white);
  font-size: clamp(0.72rem, 0.78vw, 0.95rem);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.landing-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.landing-nav a:hover {
  opacity: 0.78;
  transform: translateY(-1px);
}

.landing-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.landing-rdv {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0.9rem 1.55rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  font-size: clamp(0.72rem, 0.78vw, 0.9rem);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.landing-rdv:hover {
  color: var(--black);
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--white);
  transform: translateY(-1px);
}

/* L'ancien burger est retiré du HTML, mais ces règles sécurisent l'affichage
   si un ancien cache navigateur garde encore le markup. */
.landing-page .menu-toggle,
.landing-page .hamburger-lines {
  display: none !important;
}

@media (max-width: 1024px) {
  .landing-page .landing-header {
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    gap: 1.2rem;
    padding: 1.6rem 1.6rem 0;
  }

  .landing-nav {
    gap: 1rem;
  }

  .landing-rdv {
    min-width: auto;
    padding: 0.8rem 1.1rem;
  }
}

@media (max-width: 768px) {
  .landing-page .landing-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 1rem 1rem;
    padding: 1.2rem 1rem 0;
  }

  .landing-page .landing-header .title {
    grid-column: 1;
    grid-row: 1;
    max-width: 14rem;
    font-size: clamp(1.6rem, 6vw, 3rem);
  }

  .landing-rdv {
    grid-column: 2;
    grid-row: 1;
    padding: 0.78rem 0.95rem;
    border-radius: 9px;
    font-size: 0.72rem;
  }

  .landing-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    padding-top: 0;
    white-space: normal;
  }

  .landing-nav a {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .landing-page .landing-header {
    height: auto;
    min-height: 0;
    padding: 1rem 1rem 0;
  }

  .landing-page .landing-header .title {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    padding: 0;
    font-size: clamp(1.6rem, 6vw, 3rem);
    line-height: 0.98;
  }

  .landing-rdv {
    padding: 0.7rem 0.8rem;
    font-size: 0.64rem;
  }

  .landing-nav {
    justify-content: center;
    gap: 0.65rem 0.85rem;
  }

  .landing-nav a {
    font-size: 0.66rem;
  }
}


/* =========================================================
   LANDING MOBILE MENU — inspiration Sweet Punk
   Desktop inchangé. Sur mobile, la nav centrée devient [MENU]
   et ouvre un panneau plein écran noir en fondu.
========================================================= */

.landing-menu-toggle,
.landing-mobile-menu-btn,
.landing-mobile-overlay {
  display: none;
}

@media (max-width: 768px) {
  .landing-page .landing-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    align-items: start;
    gap: 1rem;
    padding: 1.2rem 1rem 0;
  }

  .landing-page .landing-header .title {
    grid-column: 1;
    grid-row: 1;
    max-width: 15rem;
    z-index: 30;
    font-size: clamp(1.6rem, 6vw, 3rem);
    line-height: 0.98;
  }

  .landing-nav,
  .landing-rdv {
    display: none;
  }

  .landing-menu-toggle {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .landing-mobile-menu-btn {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    z-index: 10020;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 0.15rem;
    color: var(--white);
    font-size: clamp(0.8rem, 3.6vw, 1rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    mix-blend-mode: normal;
  }

  .landing-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding: 1.2rem 1.25rem 1.4rem;
    color: var(--white);
    background: #101010;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0);
    transition: opacity 0.45s ease, visibility 0s linear 0.45s;
  }

  .landing-menu-toggle:checked ~ .landing-mobile-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.45s ease, visibility 0s linear 0s;
  }

  body:has(.landing-menu-toggle:checked) {
    overflow: hidden;
  }

  .landing-mobile-overlay-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
  }

  .landing-mobile-brand,
  .landing-mobile-close {
    color: var(--white);
    font-size: clamp(1.2rem, 5.2vw, 1.65rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.04em;
  }

  .landing-mobile-close {
    font-size: clamp(0.8rem, 3.6vw, 1rem);
    letter-spacing: 0;
    cursor: pointer;
  }

  .landing-mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: clamp(5rem, 16vh, 8rem);
  }

  .landing-mobile-nav a {
    display: inline-block;
    color: var(--white);
    font-size: clamp(2.7rem, 13vw, 5.2rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .landing-menu-toggle:checked ~ .landing-mobile-overlay .landing-mobile-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .landing-menu-toggle:checked ~ .landing-mobile-overlay .landing-mobile-nav a:nth-child(1) { transition-delay: 0.08s; }
  .landing-menu-toggle:checked ~ .landing-mobile-overlay .landing-mobile-nav a:nth-child(2) { transition-delay: 0.13s; }
  .landing-menu-toggle:checked ~ .landing-mobile-overlay .landing-mobile-nav a:nth-child(3) { transition-delay: 0.18s; }
  .landing-menu-toggle:checked ~ .landing-mobile-overlay .landing-mobile-nav a:nth-child(4) { transition-delay: 0.23s; }
  .landing-menu-toggle:checked ~ .landing-mobile-overlay .landing-mobile-nav a:nth-child(5) { transition-delay: 0.28s; }
  .landing-menu-toggle:checked ~ .landing-mobile-overlay .landing-mobile-nav a:nth-child(6) { transition-delay: 0.33s; }

  .landing-mobile-nav a:hover {
    opacity: 0.72;
  }

  .landing-mobile-cta {
    width: min(100%, 260px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(4rem, 10vh, 6rem);
    padding: 1rem 1.35rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 5px;
    font-size: 0.8rem;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s ease 0.38s, transform 0.35s ease 0.38s, background 0.25s ease, color 0.25s ease;
  }

  .landing-menu-toggle:checked ~ .landing-mobile-overlay .landing-mobile-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .landing-mobile-cta:hover {
    color: var(--black);
    background: rgba(255, 255, 255, 0.9);
  }

  .landing-mobile-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-text);
    font-size: 0.72rem;
    line-height: 1.25;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.35s ease 0.46s;
  }

  .landing-mobile-info p {
    margin: 0;
  }

  .landing-menu-toggle:checked ~ .landing-mobile-overlay .landing-mobile-info {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .landing-page .landing-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    padding: 1rem 1rem 0;
  }

  .landing-page .landing-header .title {
    width: auto;
    max-width: 14.5rem;
  }

  .landing-mobile-overlay {
    padding: 1rem 1.2rem 1.25rem;
  }

  .landing-mobile-nav {
    margin-top: clamp(4.8rem, 13vh, 6.5rem);
  }

  .landing-mobile-nav a {
    font-size: clamp(2.5rem, 12.5vw, 4.3rem);
  }
}


/* =========================================================
   CORRECTIFS V3 — Menu mobile landing
   - crochets gérés proprement en CSS
   - le bouton [MENU] disparaît quand le panneau est ouvert
   - CTA RDV centré vers le bas
   - meilleure respiration des entrées du menu
========================================================= */

@media (max-width: 768px) {
  .landing-mobile-menu-btn {
    z-index: 9990;
  }

  .landing-menu-toggle:checked ~ .landing-mobile-menu-btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .landing-mobile-overlay {
    z-index: 10050;
    overflow-y: auto;
  }

  .landing-mobile-menu-btn .menu-label::before,
  .landing-mobile-close::before {
    content: '[';
  }

  .landing-mobile-menu-btn .menu-label::after,
  .landing-mobile-close::after {
    content: ']';
  }

  .landing-mobile-close {
    position: relative;
    z-index: 2;
  }

  .landing-mobile-nav {
    gap: clamp(0.15rem, 0.8vh, 0.45rem);
    margin-top: clamp(5rem, 14vh, 7rem);
  }

  .landing-mobile-nav a {
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .landing-mobile-cta {
    align-self: center;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: clamp(3rem, 8vh, 5rem);
    margin-left: auto;
  }

  .landing-mobile-info {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .landing-mobile-nav {
    gap: clamp(0.18rem, 0.7vh, 0.35rem);
    margin-top: clamp(4.8rem, 12vh, 6.2rem);
  }

  .landing-mobile-nav a {
    font-size: clamp(2.35rem, 12vw, 4.1rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  .landing-mobile-cta {
    width: min(100%, 260px);
    margin-bottom: clamp(3rem, 7vh, 4.5rem);
  }
}

/* =========================================================
   SECTION INTRO — STRATE 2 / MANIFESTE + SHOWREEL
========================================================= */

.strate2 .top-row {
  min-height: auto;
  align-items: stretch;
  padding: 8rem 0;
  background: var(--white) url('img/pattern-100.jpg');
}

.top-row-inner {
  width: min(80%, 1440px);
  margin: 0 auto;
}

.top-row-head {
  max-width: 1080px;
  margin-bottom: 4.2rem;
}

.top-row-title {
  max-width: 860px;
  margin: 0;
  color: var(--black);
  font-size: clamp(2.45rem, 3vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.strate2 .top-row .top-row-intro {
  max-width: 760px;
  margin: 2rem 0 0;
  color: var(--black);
  font-family: var(--font-text);
  font-size: clamp(0.95rem, 0.95vw, 1.08rem);
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.top-row-rule {
  width: 100%;
  height: 1px;
  margin: 0 0 3rem;
  background: var(--grey-line);
}

.top-row-content {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1fr);
  gap: clamp(4rem, 8vw, 12rem);
  align-items: start;
}

.top-row-video {
  width: 100%;
  overflow: hidden;
  background: var(--black);
}

.top-row-video video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--black);
}

.top-row-copy {
  max-width: 660px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.strate2 .top-row .top-row-copy p {
  margin: 0 0 3rem;
  color: var(--black);
  font-family: var(--font-text);
  font-size: clamp(1.15rem, 1.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.55;
}

.top-row-copy .btn-container {
  width: 100%;
  text-align: left;
}

.top-row-copy .book-btn {
  margin: 0;
}

@media (max-width: 1024px) {
  .strate2 .top-row {
    padding: 6rem 0;
  }

  .top-row-inner {
    width: min(88%, 920px);
  }

  .top-row-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .top-row-head {
    margin-bottom: 4rem;
  }
}

@media (max-width: 480px) {
  .strate2 .top-row {
    padding: 4rem 0;
  }

  .top-row-inner {
    width: calc(100% - 2rem);
  }

  .top-row-title {
    font-size: clamp(1.85rem, 7.8vw, 2.65rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
  }

  .strate2 .top-row .top-row-intro {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .top-row-head {
    margin-bottom: 3rem;
  }

  .top-row-rule {
    margin-bottom: 2rem;
  }

  .strate2 .top-row .top-row-copy p {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .top-row-copy .btn-container {
    text-align: center;
  }
}

/* =========================================================
   DIOR GARDEN — STYLE FRAMES MASONRY + LIGHTBOX
   Bloc intégré dans la feuille globale style.css
   V3 — grille éditoriale sans trous + gouttières régulières
========================================================= */

.dior-styleframes-gallery {
  width: 100%;
  max-width: min(90%, 1320px);
  margin: 5rem auto 3rem;
}

.dior-styleframes-heading {
  margin-top: 5rem;
  margin-bottom: 3rem;
}

.dior-styleframes-grid {
  --dior-gap: clamp(0.85rem, 1vw, 1.25rem);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas:
    "sf1 sf1 sf1 sf1 sf1 sf1 sf2 sf2 sf2 sf2 sf2 sf2"
    "sf1 sf1 sf1 sf1 sf1 sf1 sf3 sf3 sf3 sf3 sf3 sf3"
    "sf4 sf4 sf4 sf4 sf4 sf4 sf3 sf3 sf3 sf3 sf3 sf3"
    "sf4 sf4 sf4 sf4 sf4 sf4 sf5 sf5 sf5 sf5 sf5 sf5"
    "sf4 sf4 sf4 sf4 sf4 sf4 sf5 sf5 sf5 sf5 sf5 sf5";
  grid-auto-rows: clamp(110px, 8vw, 160px);
  gap: var(--dior-gap);
  align-items: stretch;
}

.dior-styleframes-item {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 0;
  background: var(--black);
  cursor: zoom-in;
  text-decoration: none;
}

.dior-styleframes-item-01 { grid-area: sf1; }
.dior-styleframes-item-02 { grid-area: sf2; }
.dior-styleframes-item-03 { grid-area: sf3; }
.dior-styleframes-item-04 { grid-area: sf4; }
.dior-styleframes-item-05 { grid-area: sf5; }

.dior-styleframes-item img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.dior-styleframes-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.035);
}

.dior-styleframes-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
}

.dior-styleframes-lightbox:target {
  display: flex;
}

.dior-styleframes-lightbox-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background: rgba(0, 0, 0, 0.5);
  cursor: zoom-out;
}

.dior-styleframes-lightbox img {
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
}

.dior-styleframes-lightbox-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-family: var(--font-text);
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.dior-styleframes-lightbox-close:hover {
  color: var(--black);
  background: var(--accent);
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .dior-styleframes-gallery {
    max-width: 92%;
  }

  .dior-styleframes-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-areas:
      "sf1 sf1 sf2 sf2"
      "sf1 sf1 sf3 sf3"
      "sf4 sf4 sf3 sf3"
      "sf4 sf4 sf5 sf5"
      "sf4 sf4 sf5 sf5";
    grid-auto-rows: clamp(100px, 15vw, 150px);
    gap: clamp(0.75rem, 1.4vw, 1rem);
  }
}

@media (max-width: 640px) {
  .dior-styleframes-gallery {
    max-width: calc(100% - 2rem);
    margin-top: 3rem;
  }

  .dior-styleframes-heading {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }

  .dior-styleframes-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .dior-styleframes-item {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .dior-styleframes-lightbox {
    padding: 4vh 1rem;
  }

  .dior-styleframes-lightbox img {
    max-width: calc(100vw - 2rem);
    max-height: 82vh;
  }

  .dior-styleframes-lightbox-close {
    top: 1rem;
    right: 1rem;
  }
}


/* =========================================================
   MENU MOBILE — pages internes
   Réutilise le panneau mobile de la landing sur work/about/contact/showreel.
========================================================= */

@media (max-width: 768px) {
  .header-work .header-right,
  .header-projet .header-right {
    display: none;
  }

  .header-work .header-top,
  .header-projet .header-top {
    position: relative;
    justify-content: flex-end;
  }

  .header-work .landing-menu-toggle,
  .header-projet .landing-menu-toggle {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .header-work .landing-mobile-menu-btn,
  .header-projet .landing-mobile-menu-btn {
    position: relative;
    z-index: 10020;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    padding-top: 0;
    color: var(--black);
    font-size: clamp(0.8rem, 3.6vw, 1rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    text-shadow: none;
    cursor: pointer;
    mix-blend-mode: normal;
  }

  .header-work .landing-mobile-overlay,
  .header-projet .landing-mobile-overlay {
    z-index: 10050;
  }

  .header-work .landing-mobile-brand,
  .header-projet .landing-mobile-brand {
    font-size: clamp(1rem, 4.4vw, 1.35rem);
    letter-spacing: -0.035em;
  }
}
