/* ═══════════════════════════════════════════════════
   MEHDI OULDSAAD — Site personnel
   Réalisateur · Monteur · Motion Designer
   ═══════════════════════════════════════════════════ */

/* ── FONTS AUTO-HÉBERGÉES ── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm-sans-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm-sans-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dm-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-italic.woff2') format('woff2');
}

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

:root {
  --c-bg:        #0c0c0c;
  --c-surface:   #141414;
  --c-border:    rgba(255,255,255,0.08);
  --c-white:     #ffffff;
  --c-off-white: #f0ede8;
  --c-muted:     rgba(255,255,255,0.38);
  --c-accent:    #c8a96e;

  --f-sans:  'DM Sans', 'Inter', sans-serif;
  --f-serif: 'DM Serif Display', 'Georgia', serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-sans);
  background: var(--c-bg);
  color: var(--c-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── PAGE TRANSITION ── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease-in-out);
}
.page-transition.active { opacity: 1; pointer-events: all; }

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-white);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
}
.cursor-ring.hovering {
  width: 64px;
  height: 64px;
  border-color: var(--c-accent);
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  opacity: 0.35;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
  transition: padding 0.4s var(--ease-out);
  mix-blend-mode: normal;
}

.nav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,12,0.7) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.nav.scrolled {
  padding: 18px 52px;
  background: rgba(12,12,12,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  white-space: nowrap;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active { color: var(--c-white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-contact {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 22px;
  border-radius: 100px;
  transition: border-color 0.25s, background 0.25s;
}

.nav-contact:hover {
  background: var(--c-white);
  color: var(--c-bg);
  border-color: var(--c-white);
}

/* ── HAMBURGER (mobile) ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── SECTION BASE ── */
.section { padding: 120px 52px; }
.container { max-width: 1280px; margin: 0 auto; }

.label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--c-accent);
}

.heading-xl {
  font-family: var(--f-serif);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--f-serif);
  font-size: clamp(30px, 3.5vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.body-lg {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-muted);
}

/* ── REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="delay-1"] { transition-delay: 0.1s; }
[data-reveal="delay-2"] { transition-delay: 0.2s; }
[data-reveal="delay-3"] { transition-delay: 0.3s; }
[data-reveal="delay-4"] { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   HOMEPAGE — HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 52px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video,
.hero-bg-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-bg-fallback {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 40%, #0c0c0c 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,12,12,1) 0%,
    rgba(12,12,12,0.5) 40%,
    rgba(12,12,12,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.hero-tagline {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-tagline::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-muted);
}

.hero-title {
  font-family: var(--f-serif);
  font-size: clamp(48px, 7vw, 106px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  color: var(--c-white);
}

.hero-title em,
.heading-xl em,
.heading-lg em,
.featured-title em,
.reel-title em {
  font-style: italic;
  color: var(--c-accent);
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-muted);
  max-width: 380px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  transition: all 0.25s var(--ease-out);
}

.btn-light {
  background: var(--c-white);
  color: var(--c-bg);
}
.btn-light:hover { background: var(--c-accent); color: var(--c-bg); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--c-white); color: var(--c-white); }

.btn svg { width: 14px; height: 14px; transition: transform 0.25s; }
.btn:hover svg { transform: translateX(4px); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  right: 52px;
  bottom: 60px;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--c-muted));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ══════════════════════════════════════
   HOMEPAGE — REEL
══════════════════════════════════════ */
.reel-section {
  padding: 80px 52px;
  border-top: 1px solid var(--c-border);
}

.reel-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: center;
}

.reel-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reel-meta .label { margin-bottom: 0; }

.reel-title {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.reel-video-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--c-surface);
  aspect-ratio: 16/9;
}

.reel-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reel-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,12,12,0.3);
  cursor: pointer;
  transition: background 0.3s;
}

.reel-play-overlay:hover { background: rgba(12,12,12,0.5); }

.reel-play-btn {
  width: 72px;
  height: 72px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, transform 0.3s;
}

.reel-play-overlay:hover .reel-play-btn {
  border-color: var(--c-accent);
  transform: scale(1.08);
}

.reel-play-btn svg {
  fill: white;
  width: 22px;
  margin-left: 4px;
}

/* ══════════════════════════════════════
   HOMEPAGE — WORK GRID
══════════════════════════════════════ */
.work-section {
  padding: 120px 52px;
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 24px;
}

.work-header-left .heading-lg { margin-top: 12px; }

.see-all {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
  white-space: nowrap;
}
.see-all:hover { color: var(--c-white); }
.see-all svg { width: 16px; transition: transform 0.25s; }
.see-all:hover svg { transform: translateX(4px); }

/* Masonry-style grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--c-surface);
  cursor: pointer;
  display: block;
}

/* Layout assignments */
.work-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.work-item:nth-child(2) { grid-column: span 5; }
.work-item:nth-child(3) { grid-column: span 5; }
.work-item:nth-child(4) { grid-column: span 4; }
.work-item:nth-child(5) { grid-column: span 4; }
.work-item:nth-child(6) { grid-column: span 4; }

.work-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.work-item:nth-child(1) .work-thumb {
  height: 100%;
  aspect-ratio: unset;
}

/* Gradient placeholder thumbs */
.work-item:nth-child(1) .work-thumb { background: linear-gradient(150deg, #141a22 0%, #0c1520 50%, #1a2030 100%); }
.work-item:nth-child(2) .work-thumb { background: linear-gradient(150deg, #1a1420 0%, #0e0c18 100%); }
.work-item:nth-child(3) .work-thumb { background: linear-gradient(150deg, #201810 0%, #2a1e0c 100%); }
.work-item:nth-child(4) .work-thumb { background: linear-gradient(150deg, #101a14 0%, #0c1810 100%); }
.work-item:nth-child(5) .work-thumb { background: linear-gradient(150deg, #1a1010 0%, #2a1414 100%); }
.work-item:nth-child(6) .work-thumb { background: linear-gradient(150deg, #141420 0%, #0c0e1a 100%); }

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.15) 100%);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
  transition: opacity 0.35s;
}

.work-item:hover .work-overlay { opacity: 1; }

.work-item:hover .work-thumb { transform: scale(1.04); transition: transform 0.6s var(--ease-out); }

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.work-item:hover .work-thumb img { transform: scale(1.04); }

.work-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 6px;
}

.work-title {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: 6px;
}

.work-item:nth-child(1) .work-title {
  font-size: 34px;
}

.work-year {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}

.work-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s;
}

.work-item:hover .work-arrow {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--c-accent);
  color: var(--c-accent);
}

/* ══════════════════════════════════════
   HOMEPAGE — ABOUT STRIP
══════════════════════════════════════ */
.about-strip {
  padding: 120px 52px;
  border-top: 1px solid var(--c-border);
  background: var(--c-surface);
}

.about-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 3px;
  background: linear-gradient(160deg, #1a1a1a, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.12);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  overflow: hidden;
}

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

.about-badge-box {
  position: absolute;
  bottom: 28px;
  right: -28px;
  background: var(--c-accent);
  color: var(--c-bg);
  padding: 20px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.about-badge-box .big {
  font-family: var(--f-serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--c-accent);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.about-text { padding-right: 20px; }

.about-text .heading-lg { margin: 16px 0 28px; }

.about-text .body-lg { margin-bottom: 20px; }

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 48px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.stat-item {
  padding: 28px 20px 28px 0;
  border-right: 1px solid var(--c-border);
}
.stat-item:last-child { border-right: none; padding-left: 20px; padding-right: 0; }
.stat-item:first-child { padding-left: 0; }

.stat-n {
  font-family: var(--f-serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-l {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted);
}

/* ══════════════════════════════════════
   HOMEPAGE — FEATURED PROJECT
══════════════════════════════════════ */
.featured {
  padding: 0;
  height: 90vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.featured-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1020, #151a30, #0a0a14);
}

.featured-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.95) 0%, rgba(12,12,12,0.3) 60%, transparent 100%);
}

.featured-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 52px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-end;
}

.featured-label { margin-bottom: 0; }
.featured-title {
  font-family: var(--f-serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.05;
  margin: 20px 0;
}

.featured-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.featured-meta {
  display: flex;
  gap: 32px;
}

.meta-item .ml { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.meta-item .mv { font-size: 14px; font-weight: 400; color: var(--c-white); }

.featured-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 24px;
}

.featured-play {
  width: 88px;
  height: 88px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  cursor: pointer;
}

.featured-play:hover {
  border-color: var(--c-accent);
  background: rgba(200,169,110,0.08);
  transform: scale(1.06);
}

.featured-play svg { fill: white; width: 26px; margin-left: 5px; }

.featured-vod {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ══════════════════════════════════════
   HOMEPAGE — CLIENTS
══════════════════════════════════════ */
.clients-section {
  padding: 80px 52px;
  border-top: 1px solid var(--c-border);
}

.clients-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.clients-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: var(--c-muted);
  white-space: nowrap;
}

.clients-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px 64px;
  align-items: center;
}

.client-tag {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 18px;
  border-radius: 100px;
  transition: color 0.25s, border-color 0.25s;
}
.client-tag:hover { color: var(--c-white); border-color: rgba(255,255,255,0.25); }

.client-logo {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.client-logo:hover { opacity: 1; }

/* ══════════════════════════════════════
   HOMEPAGE — CONTACT CTA
══════════════════════════════════════ */
.cta-section {
  padding: 140px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'CONTACT';
  position: absolute;
  font-family: var(--f-serif);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 400;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.cta-inner { position: relative; z-index: 1; }

.cta-label { justify-content: center; }
.cta-label::before { display: none; }

.cta-section .heading-xl { margin: 16px auto 24px; }

.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--c-muted);
  max-width: 440px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

.cta-email-link {
  font-family: var(--f-serif);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 6px;
  transition: color 0.25s, border-color 0.25s;
}

.cta-email-link:hover { color: var(--c-accent); border-color: var(--c-accent); }

.cta-email-link svg { width: 24px; opacity: 0.5; transition: opacity 0.25s, transform 0.25s; }
.cta-email-link:hover svg { opacity: 1; transform: rotate(-45deg); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--c-border);
  padding: 36px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-socials a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  transition: color 0.25s;
}

.footer-socials a:hover { color: var(--c-white); }

.footer-right {
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════
   WORK PAGE
══════════════════════════════════════ */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 52px 80px;
  border-bottom: 1px solid var(--c-border);
}

.page-hero .container { width: 100%; max-width: 1280px; }

.work-full-grid {
  padding: 80px 52px 120px;
}

.work-full-list {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.work-list-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--c-surface);
}

.work-list-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.work-list-thumb .thumb-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: brightness(0.7);
}

.work-list-item:hover .thumb-bg { transform: scale(1.05); filter: brightness(0.5); }

.work-list-info {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--c-border);
  transition: background 0.25s;
}

.work-list-item:hover .work-list-info { background: rgba(255,255,255,0.02); }

.work-list-tag { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 4px; }
.work-list-title { font-family: var(--f-serif); font-size: 22px; font-weight: 400; }
.work-list-arrow { font-size: 20px; color: var(--c-muted); transition: transform 0.25s, color 0.25s; }
.work-list-item:hover .work-list-arrow { transform: translateX(6px); color: var(--c-white); }

/* ══════════════════════════════════════
   PROJECT PAGE
══════════════════════════════════════ */
.project-hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.project-hero-bg {
  position: absolute;
  inset: 0;
}

.project-hero-bg .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.project-hero-bg-fallback {
  width: 100%;
  height: 100%;
}

.project-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,1) 0%, rgba(12,12,12,0.4) 50%, transparent 100%);
}

.project-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 52px 60px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.project-meta-row {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.project-hero .heading-xl { margin-bottom: 28px; }

.project-hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--c-muted);
  max-width: 560px;
  line-height: 1.8;
}

.project-body {
  padding: 100px 52px;
  max-width: 1280px;
  margin: 0 auto;
}

.project-body-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 100px;
}

.project-text p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 24px;
}

.project-details { border-top: 1px solid var(--c-border); padding-top: 32px; }

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 13px;
}

.detail-label { color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 10px; }
.detail-value { color: var(--c-white); text-align: right; }

.project-nav {
  border-top: 1px solid var(--c-border);
  padding: 40px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.project-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: opacity 0.25s;
}
.project-nav-item:hover { opacity: 0.7; }
.project-nav-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-muted); }
.project-nav-title { font-family: var(--f-serif); font-size: 18px; font-weight: 400; }
.project-nav-right { text-align: right; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-page-hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.about-page-left {
  padding: 160px 52px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--c-border);
}

.about-page-right {
  background: var(--c-surface);
  display: flex;
  align-items: flex-end;
  padding: 80px 52px;
  position: relative;
  overflow: hidden;
}

.about-page-right .photo-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #141414, #1e1e1e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.07);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-page-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.about-bio {
  padding: 100px 52px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  border-top: 1px solid var(--c-border);
}

.bio-sidebar {}
.bio-sticky { position: sticky; top: 120px; }
.bio-sidebar .label { margin-bottom: 16px; }
.bio-sidebar .heading-lg { font-size: 28px; }

.bio-skills { margin-top: 40px; }

.skill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.skill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
}

.bio-content .body-lg { margin-bottom: 28px; }

.bio-timeline { margin-top: 60px; }

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--c-border);
}

.tl-year {
  font-size: 12px;
  color: var(--c-accent);
  font-weight: 500;
  padding-top: 3px;
}

.tl-title { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.tl-desc { font-size: 14px; color: var(--c-muted); line-height: 1.7; }

.press-section {
  padding: 100px 52px;
  border-top: 1px solid var(--c-border);
  background: var(--c-surface);
}

.press-grid {
  max-width: 1280px;
  margin: 0 auto;
}

.press-header { margin-bottom: 48px; }

.press-list { display: flex; flex-direction: column; gap: 0; }

.press-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-border);
  cursor: pointer;
  transition: padding-left 0.25s;
  gap: 24px;
}

.press-item:hover { padding-left: 8px; }

.press-item-source { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-accent); min-width: 100px; }
.press-item-title { font-size: 15px; color: rgba(255,255,255,0.75); flex: 1; }
.press-item-arrow { color: var(--c-muted); font-size: 16px; transition: transform 0.25s; }
.press-item:hover .press-item-arrow { transform: translateX(6px); color: var(--c-white); }

.press-group { border-bottom: 1px solid var(--c-border); }
.press-group:first-of-type { border-top: 1px solid var(--c-border); }

.press-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-white);
  text-align: left;
}
.press-group-toggle:hover .press-group-label { color: var(--c-accent); }

.press-group-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  flex: 1;
  transition: color 0.2s;
}
.press-group-toggle[aria-expanded="true"] .press-group-label { color: var(--c-accent); }

.press-group-count {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}

.press-group-chevron {
  color: rgba(255,255,255,0.3);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  align-items: center;
}
.press-group-toggle[aria-expanded="true"] .press-group-chevron { transform: rotate(180deg); }

.press-list-collapsible {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.press-list-collapsible.open { max-height: 1200px; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-left {
  padding: 160px 80px 80px 52px;
  border-right: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-left .heading-xl { margin: 20px 0 32px; }

.contact-info { margin-top: 60px; }

.contact-info-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--c-border);
}

.ci-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 6px; }
.ci-value { font-size: 16px; color: var(--c-white); }
.ci-value a { transition: color 0.25s; }
.ci-value a:hover { color: var(--c-accent); }

.contact-right {
  padding: 160px 52px 80px 80px;
  background: var(--c-surface);
}

.contact-right .label { margin-bottom: 32px; }

.form-group { margin-bottom: 28px; }

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 10px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: var(--f-sans);
  font-size: 15px;
  color: var(--c-white);
  outline: none;
  transition: border-color 0.25s;
}

.form-input:focus,
.form-textarea:focus { border-color: rgba(255,255,255,0.3); }

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-textarea { resize: vertical; min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-white);
  color: var(--c-bg);
  border: none;
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--c-accent); }
.form-submit svg { width: 14px; transition: transform 0.25s; }
.form-submit:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════
   PAGES PROJET
══════════════════════════════════════ */

.project-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.project-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}
.project-hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 80px;
  width: 100%;
}
.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}
.project-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--c-accent);
}
.project-title {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--c-white);
  margin-bottom: 24px;
}
.project-title em {
  font-style: italic;
  color: var(--c-accent);
}
.project-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.project-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.project-meta-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.project-meta-value {
  font-size: 0.85rem;
  color: var(--c-white);
}

.project-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}
.project-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  margin-bottom: 72px;
  border-radius: 2px;
  overflow: hidden;
}
.project-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.project-section {
  margin-bottom: 56px;
  border-top: 1px solid var(--c-border);
  padding-top: 40px;
}
.project-section:first-of-type {
  border-top: none;
  padding-top: 0;
}
.project-section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 20px;
}
.project-section h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--c-white);
}
.project-section h2 em {
  font-style: italic;
  color: var(--c-accent);
}
.project-section p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.project-section p:last-child { margin-bottom: 0; }

.project-stat-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
}
.project-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.project-stat .stat-num {
  font-family: var(--f-serif);
  font-size: 2.5rem;
  color: var(--c-accent);
  line-height: 1;
}
.project-stat .stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.project-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 80px;
  border-top: 1px solid var(--c-border);
}
.project-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--c-white);
  transition: color 0.25s;
}
.project-nav-link:hover { color: var(--c-accent); }
.project-nav-link .pnl-dir {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.project-nav-link .pnl-title {
  font-family: var(--f-serif);
  font-size: 1.1rem;
}
.project-nav-back {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  border: 1px solid var(--c-border);
  padding: 12px 24px;
  border-radius: 2px;
  transition: all 0.25s;
}
.project-nav-back:hover { color: var(--c-white); border-color: var(--c-white); }

@media (max-width: 768px) {
  .project-hero-content { padding: 40px 24px; }
  .project-body { padding: 48px 24px 80px; }
  .project-nav { padding: 32px 24px; flex-wrap: wrap; gap: 24px; }
  .project-stat-row { gap: 28px; }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav { padding: 24px 32px; }
  .nav.scrolled { padding: 16px 32px; }

  .section,
  .work-section,
  .about-strip,
  .clients-section,
  .cta-section,
  .reel-section { padding-left: 32px; padding-right: 32px; }

  .hero { padding: 0 32px 48px; }
  .hero-scroll { right: 32px; }

  .work-grid { display: flex; flex-direction: column; gap: 12px; }
  .work-item:nth-child(1) .work-title { font-size: 24px; }

  .about-strip .container { grid-template-columns: 1fr; gap: 60px; }
  .about-badge-box { right: 0; }

  .featured-content { grid-template-columns: 1fr; gap: 32px; padding: 0 32px 48px; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-left { padding: 120px 32px 60px; border-right: none; border-bottom: 1px solid var(--c-border); }
  .contact-right { padding: 60px 32px 80px; }

  .about-page-hero { grid-template-columns: 1fr; min-height: auto; }
  .about-page-right { height: 50vw; min-height: 300px; position: relative; }
  .about-bio { grid-template-columns: 1fr; gap: 60px; }
  .bio-sticky { position: static; }

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

  .work-full-list { grid-template-columns: 1fr; }

  .footer { padding: 28px 32px; }
  .footer-right { display: none; }
}

@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-contact { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: 0 20px 40px; }
  .hero-title { font-size: 38px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }

  .section { padding-left: 20px; padding-right: 20px; }
  .work-section, .about-strip, .clients-section, .cta-section, .reel-section { padding-left: 20px; padding-right: 20px; }

  .about-stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--c-border); padding: 20px 0; }

  .project-meta-row { flex-wrap: wrap; gap: 16px; }
  .project-body-grid { grid-template-columns: 1fr; gap: 60px; }
  .project-hero-content { padding: 0 20px 48px; }
  .project-nav { padding: 32px 20px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-left { padding: 100px 20px 48px; }
  .contact-right { padding: 48px 20px 60px; }

  .footer { padding: 24px 20px; }
  .footer-socials { gap: 16px; }
}

/* ── CURSOR — masqué sur écrans tactiles ── */
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}
