/* =========================================================================
   VARIABLES & DESIGN SYSTEM
   ========================================================================= */
:root {
  --color-primary: #FFCC00;
  --color-bg: #121212;
  --color-text: #FFFFFF;
  --color-text-dim: #8f8f8f;
  
  --font-heading: 'Gulfs Display', sans-serif;
  --font-body: 'Brizeux', sans-serif;
  
  --nav-height: 80px;
}

/* =========================================================================
   FONTS
   ========================================================================= */
@font-face {
  font-family: 'Gulfs Display';
  src: url('../fonts/gulfs-display-normal.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Brizeux';
  src: url('../fonts/brizeux_normal.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Brizeux';
  src: url('../fonts/brizeux_gras.woff.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* Filson Pro */
@font-face {
  font-family: 'Filson Pro';
  src: url('../fonts/FilsonProThin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Filson Pro';
  src: url('../fonts/FilsonProLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Filson Pro';
  src: url('../fonts/FilsonProRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Filson Pro';
  src: url('../fonts/FilsonProMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Filson Pro';
  src: url('../fonts/FilsonProBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Filson Pro';
  src: url('../fonts/FilsonProHeavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Filson Pro';
  src: url('../fonts/FilsonProBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

/* =========================================================================
   RESET CSS & BASE
   ========================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

a { text-decoration: none; color: inherit; }
li { list-style: none; }
.text-primary { color: var(--color-primary); }
.bg-primary { background-color: var(--color-primary); }

/* =========================================================================
   NAVBAR
   ========================================================================= */
header {
  position: fixed;
  top: 0; left: 0; width: 100%; height: var(--nav-height);
  z-index: 100; display: flex; align-items: center; justify-content: space-between;
  padding: 0 8vw; background-color: transparent; border-bottom: 1px solid transparent;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-bottom-color 0.4s ease;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.logo img { height: 32px; object-fit: contain; }
.nav-links { display: flex; gap: 30px; }
.nav-link {
  font-family: var(--font-body); font-weight: bold; font-size: 16px;
  color: var(--color-text-dim); text-transform: capitalize; position: relative;
  padding: 5px 0; transition: color 0.3s ease;
}
.nav-link:hover { color: var(--color-text); }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background-color: var(--color-primary); transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
  position: relative; height: 100vh; width: 100vw; display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden;
}

.bg-wrapper { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-wrapper canvas { display: block; }

.hero-content { position: relative; z-index: 10; text-align: center; pointer-events: none; }
.hero-subtitle { font-family: var(--font-body); font-weight: bold; color: var(--color-primary); font-size: 1.2rem; letter-spacing: 0.1em; margin-bottom: 20px; }
.hero-title { font-family: var(--font-heading); font-size: 8rem; font-weight: normal; line-height: 1; color: var(--color-text); margin-bottom: 30px; }
.hero-title .dot { color: var(--color-primary); }

.scroll-indicator { position: absolute; bottom: 80px; display: flex; flex-direction: column; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 0.2em; opacity: 0.7; animation: bounce 2s infinite; }
.scroll-indicator img { width: 20px; display: block; }

@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }

.vignette-radial { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 40%, var(--color-bg) 100%); z-index: 3; pointer-events: none; }
.vignette-top { position: absolute; top: 0; left: 0; right: 0; height: 10vh; background: linear-gradient(to bottom, var(--color-bg), rgba(18,18,18,0.8), transparent); z-index: 4; pointer-events: none; }
.vignette-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 15vh; background: linear-gradient(to top, var(--color-bg), rgba(18,18,18,0.8), transparent); z-index: 4; pointer-events: none; }


/* =========================================================================
   PROJECTS SECTION
   ========================================================================= */
.projects { padding: 100px 8vw; position: relative; }

.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
.section-title { font-family: var(--font-heading); font-size: 4rem; width: 100%; font-weight: normal; }
.view-all { font-family: var(--font-body); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 2px; text-decoration: none; color: var(--color-text-dim); transition: color 0.3s; white-space: nowrap; }
.view-all:hover { color: var(--color-primary); }

/* Custom Cursor difference */
.project-cursor {
  position: fixed; top: 0; left: 0; width: 80px; height: 80px; background-color: white; border-radius: 50%; pointer-events: none; mix-blend-mode: difference;
  transform: translate(-50%, -50%) scale(0); transition: transform 0.3s ease, opacity 0.3s ease; z-index: 9999; opacity: 0; display: flex; align-items: center; justify-content: center; color: black; font-size: 0.8rem; font-weight: bold;
}
.project-cursor.active { transform: translate(-50%, -50%) scale(1); opacity: 1; }

.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; cursor: none; }

.project-card {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 10px; background-color: var(--color-bg); border: 1px solid rgba(255, 255, 255, 0.2); overflow: hidden; position: relative;
  transition: border-color 0.4s ease;
}
.project-card:hover { border-color: rgba(255, 255, 255, 0.5); }

.project-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat;
  transition: transform 0.6s ease; z-index: 0;
}
.project-card:hover .project-bg { transform: scale(1.08); }

/* --- Projet Text & Overlay on Hover --- */
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
  opacity: 0; transition: opacity 0.4s ease; z-index: 1;
}
.project-card:hover .project-overlay { opacity: 1; }

.project-info {
  position: absolute; bottom: 30px; left: 30px; z-index: 2;
  transform: translateY(20px); opacity: 0; transition: all 0.4s ease;
  display: flex; flex-direction: column; gap: 5px;
}
.project-card:hover .project-info {
  transform: translateY(0); opacity: 1;
}

.project-title {
  font-family: var(--font-heading); font-size: 3.5rem; color: #fff; line-height: 1; text-transform: uppercase; font-weight: normal;
}
.project-category {
  font-family: var(--font-body); font-size: 1.1rem; font-weight: normal; color: #fff; letter-spacing: 1px; text-transform: uppercase;
}

/* Placeholder card logic */
.project-card-placeholder { background-image: radial-gradient(rgba(255,255,255,0.2) 2px, transparent 2px); background-size: 20px 20px; }


/* =========================================================================
   EXPERIENCE SECTION (NEW EXACT LAYOUT)
   ========================================================================= */
.experience { padding: 100px 8vw; }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 50px; }

/* Subheaders (Ligne + Titre) */
.col-header { display: flex; align-items: center; gap: 15px; margin-bottom: 40px; }
.col-header-line { height: 1px; width: 40px; background: linear-gradient(to right, transparent, rgba(255,204,0,0.5), var(--color-primary)); }
.col-title { font-family: monospace, var(--font-body); font-weight: normal; font-size: 1.1rem; color: #fff; }

/* ---- LEFT COLUMN (TEXT WITH YELLOW LINE) ---- */
.exp-list { display: flex; flex-direction: column; gap: 50px; }
.exp-item { display: flex; gap: 20px; }
.exp-bullet-container { display: flex; flex-direction: column; align-items: center; width: 14px; padding-top: 5px; }
.exp-square { width: 14px; height: 14px; background-color: var(--color-primary); flex-shrink: 0; }
.exp-line { width: 1px; background-color: var(--color-primary); flex-grow: 1; opacity: 0.4; }

.exp-content { display: flex; flex-direction: column; gap: 15px; padding-bottom: 10px; }
.exp-title { font-size: 1.6rem; color: #fff; line-height: 1; }
.exp-subtitle-row { display: flex; gap: 40px; color: var(--color-text-dim); font-size: 1rem; font-weight: normal; }
.exp-paragraphs { display: flex; flex-direction: column; gap: 20px; color: #f0f0f0; font-size: 1rem; font-weight: normal; line-height: 1.6; }

/* ---- RIGHT COLUMN (3D CARDS FORMATION) ---- */
.cv-grid { display: flex; flex-direction: column; gap: 70px; }
.cv-card-wrapper { perspective: 1000px; width: 90%; }

.cv-card-3d {
  position: relative; width: 100%; transform-style: preserve-3d; transition: all 0.5s ease-in-out;
  border-radius: 10px; background-color: var(--color-bg); border: 1px solid rgba(255,255,255,0.15); padding: 30px 25px; display: flex; flex-direction: column; gap: 20px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 10px 20px -5px;
}
.cv-card-wrapper:hover .cv-card-3d {
  transform: rotate3d(1, 1, 0, 15deg);
  box-shadow: rgba(255, 204, 0, 0.15) 30px 50px 25px -40px, rgba(0, 0, 0, 0.3) 0px 25px 30px 0px;
}
.cv-card-glass {
  position: absolute; inset: 0; border-radius: 10px; transform-style: preserve-3d; transform: translateZ(20px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1); border-left: 1px solid rgba(255, 255, 255, 0.1); pointer-events: none;
}
.cv-content-layer-1 { transform: translateZ(30px); transform-style: preserve-3d; position: relative; z-index: 10; display: flex; flex-direction: column; gap: 5px; }
.cv-content-layer-2 { transform: translateZ(50px); transform-style: preserve-3d; position: relative; z-index: 10; margin-top: 10px; }
.max-depth { transform: translateZ(60px); }

.forma-title { font-size: 1.5rem; color: #fff; margin-bottom: 5px; }
.forma-school { color: var(--color-primary); font-size: 0.95rem; }
.forma-date { color: var(--color-text-dim); font-size: 0.9rem; font-weight: normal; }

.forma-timeline { display: flex; gap: 20px; align-items: stretch; margin-top: 10px; }
.forma-bullet-col { display: flex; flex-direction: column; align-items: center; width: 10px; padding: 5px 0; }
.forma-square { width: 10px; height: 10px; background-color: var(--color-primary); flex-shrink: 0; }
.forma-line { width: 1px; background-color: var(--color-primary); flex-grow: 1; opacity: 0.5; margin: 3px 0; }

.forma-text-col { display: flex; flex-direction: column; justify-content: space-between; font-size: 0.95rem; font-weight: normal; color: #fff; line-height: 1.5; padding: 2px 0; gap: 6px; }


/* =========================================================================
   MARQUEE
   ========================================================================= */
.marquee-container {
  overflow: hidden; white-space: nowrap; padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin: 100px 0;
}
.marquee-content {
  display: inline-block; animation: marquee 60s linear infinite; font-family: var(--font-body); font-size: 1.1rem; /* RETOUR : Police beaucoup plus petite */ letter-spacing: 2px;
}
.marquee-content span { margin: 0 40px; }
.marquee-content .dot { color: var(--color-primary); }

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

/* =========================================================================
   ABOUT SECTION
   ========================================================================= */
.about { padding: 50px 8vw 100px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }

.about-text h2 { font-family: var(--font-heading); font-size: 3.5rem; margin-bottom: 30px; font-weight: normal; }
.about-text h2 .dot { color: var(--color-primary); }
.about-text p.about-desc { line-height: 1.6; margin-bottom: 20px; color: #ccc; font-size: 1.1rem; font-family: var(--font-body); font-weight: bold; }

.social-links { display: flex; gap: 20px; margin-top: 30px; }

.social-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 65px; height: 65px; border-radius: 50%;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
  overflow: hidden; color: white;
}
.social-btn:hover {
  transform: scale(1.1) rotate(3deg);
  border-color: rgba(255, 204, 0, 0.5);
  background: linear-gradient(to top right, rgba(255, 204, 0, 0.1), rgba(0, 0, 0, 0.4));
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}
.social-btn:active { transform: scale(0.95) rotate(0deg); }

.social-btn-shine {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 204, 0, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s cubic-bezier(0, 0, 0.2, 1);
}
.social-btn:hover .social-btn-shine { transform: translateX(100%); }

.social-btn svg {
  position: relative; z-index: 10;
  width: 26px; height: 26px; fill: currentColor;
  transition: color 0.3s;
}
.social-btn:hover svg { color: var(--color-primary); }

.about-image { text-align: right; }
.about-image img {
  max-width: 85%; max-height: 550px; object-fit: contain; filter: grayscale(100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%); mask-image: linear-gradient(to bottom, black 60%, transparent 100%); transition: filter 0.5s;
}
.about-image img:hover { filter: grayscale(0%); }

/* =========================================================================
   FOOTER
   ========================================================================= */
footer { padding: 40px 8vw; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); font-family: var(--font-body); color: var(--color-text-dim); }
.footer-left { display: flex; flex-direction: column; gap: 5px; }
.footer-social { display: flex; gap: 20px; }

/* =========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* =========================================================================
   PROJECT PAGE (SPORT'ART / OTHERS)
   ========================================================================= */
.project-hero {
  padding: 250px 8vw 100px; max-width: 1600px; margin: 0 auto; text-align: center; position: relative; z-index: 10;
}
.project-title-xl {
  font-family: var(--font-heading); font-size: 8rem; color: #fff; line-height: 1; text-transform: uppercase; font-weight: normal; margin-bottom: 30px; letter-spacing: 2px;
}
.project-meta {
  display: flex; justify-content: center; align-items: center; gap: 20px; font-family: var(--font-body); font-size: 1.2rem; color: var(--color-primary); letter-spacing: 2px; text-transform: uppercase;
}
.meta-sep { opacity: 0.5; color: #fff; }
.meta-date { color: var(--color-text-dim); }

.project-context { padding: 50px 8vw 150px; position: relative; z-index: 10; }
.context-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 100px; }
.context-title { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 30px; font-weight: normal; }
.context-text p { font-family: var(--font-body); font-size: 1.15rem; line-height: 1.8; color: #e0e0e0; font-weight: normal; }
.context-details { display: flex; flex-direction: column; gap: 30px; border-left: 1px solid rgba(255, 204, 0, 0.4); padding-left: 40px; }
.detail-item { display: flex; flex-direction: column; gap: 10px; }
.detail-label { font-size: 0.9rem; color: var(--color-text-dim); text-transform: uppercase; letter-spacing: 1px; }
.detail-value { font-size: 1.2rem; color: #fff; font-weight: bold; }

.project-gallery { padding: 0 8vw 150px; display: flex; flex-direction: column; gap: 80px; position: relative; z-index: 10; }
.gallery-feature { position: relative; display: flex; flex-direction: column; align-items: center; width: 100%; border-radius: 20px; }
.project-video { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.8); border: 1px solid rgba(255,255,255,0.1); object-fit: cover; }
.project-image-full { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); object-fit: cover; }
.gallery-caption { margin-top: 20px; font-size: 0.95rem; color: var(--color-text-dim); font-style: italic; }

.mt-100 { margin-top: 100px; }
.project-next { padding: 50px 8vw 150px; display: flex; justify-content: center; position: relative; z-index: 10; }
.next-btn {
  padding: 20px 50px; background: transparent; border: 1px solid var(--color-primary); color: #fff; border-radius: 50px; font-weight: bold; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 2px;
  transition: all 0.4s ease; text-decoration: none; cursor: pointer;
}
.next-btn:hover { background: var(--color-primary); color: #000; transform: scale(1.05); }


/* =========================================================================
   MEDIA QUERIES
   ========================================================================= */
/* MOCKUP MODIFICATIONS FOR SPORT'ART */
.mockup-hero {
  position: relative;
  padding: var(--nav-height) 8vw 0 8vw;
  width: 100%;
}

.mockup-banner-container {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.mockup-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-huge-title {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  font-family: var(--font-heading);
  font-size: 13.5vw;
  line-height: 0.8;
  color: #fff;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: -2px;
  z-index: 10;
}

.mockup-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--color-text-dim);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.mockup-meta span:first-child { text-align: left; }
.mockup-meta span.meta-center { text-align: center; }
.mockup-meta span:last-child { text-align: right; }

.sport-design-section {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding: 80px 8vw 150px;
}

.sd-left h2 {
  font-family: var(--font-body);
  font-size: 5.5rem;
  line-height: 1;
  font-weight: normal;
  margin: 0;
}

.font-brizeux-gras {
  font-family: 'Brizeux', sans-serif !important;
  font-weight: bold !important;
}

.sd-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  font-size: 1rem;
  color: var(--color-text-dim);
  font-weight: normal;
  line-height: 1.6;
}

.text-justified p {
  text-align: justify;
  margin: 0;
}

.mockup-gallery {
  position: relative;
  padding: 0 8vw 150px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.project-bg-pattern {
  position: absolute;
  top: -60px;
  bottom: -60px;
  left: 0;
  right: 0;
  z-index: -1;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
  pointer-events: none;
}

.posters-heading {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  margin-bottom: -20px;
  display: inline-block;
  align-self: flex-start;
}
.posters-heading h3 {
  font-family: monospace, sans-serif;
  letter-spacing: 5px;
  font-size: 1.1rem;
  font-weight: normal;
  color: #fff;
}

.gallery-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.gallery-row-yamal-henry {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.frame-details {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-dim);
  letter-spacing: 1px;
}
.poster-wrapper {
  position: relative;
  width: 100%;
}

.mockup-full-poster {
  width: 100%;
}

/* Adjustments for images/videos border radius based on raw posters */
.mockup-gallery .project-image-full, .mockup-gallery .project-video {
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 1800px) {
  .project-title { font-size: 2.8rem; }
  .cols-2 { gap: 120px; }
}

@media (max-width: 1024px) {
  .hero-title { font-size: 6rem; }
  .project-title-xl { font-size: 5rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .cols-2 { grid-template-columns: 1fr; gap: 50px; }
  .context-grid { grid-template-columns: 1fr; gap: 60px; }
  .context-details { border-left: none; border-top: 1px solid rgba(255, 204, 0, 0.4); padding-left: 0; padding-top: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { text-align: center; margin-top: 40px; }
  
  .sport-design-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 8vw; }
  .sd-right { grid-template-columns: 1fr; }
  .gallery-row-2, .gallery-row-yamal-henry { grid-template-columns: 1fr; gap: 60px; }
  .mockup-huge-title { position: static; font-size: 15vw; margin: 40px 8vw 20px; }
  .mockup-banner-container { height: 35vh; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 4rem; }
  .project-title-xl { font-size: 3rem; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .section-title { font-size: 3rem; }
  header { padding: 0 20px; }
  .projects, .experience, .about, footer { padding-left: 20px; padding-right: 20px; }
  .project-cursor { display: none !important; }
}
