/* ═══════════════════════════════════════════════════
   GRIFT — @font-face
═══════════════════════════════════════════════════ */
@font-face { font-family: 'Grift'; src: url('fonts/grift-thin.otf') format('opentype'), url('fonts/grift-thin.ttf') format('truetype'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-thinitalic.otf') format('opentype'), url('fonts/grift-thinitalic.ttf') format('truetype'); font-weight: 100; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-extralight.otf') format('opentype'), url('fonts/grift-extralight.ttf') format('truetype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-extralightitalic.otf') format('opentype'), url('fonts/grift-extralightitalic.ttf') format('truetype'); font-weight: 200; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-light.otf') format('opentype'), url('fonts/grift-light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-lightitalic.otf') format('opentype'), url('fonts/grift-lightitalic.ttf') format('truetype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-regular.otf') format('opentype'), url('fonts/grift-regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-italic.otf') format('opentype'), url('fonts/grift-italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-medium.otf') format('opentype'), url('fonts/grift-medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-mediumitalic.otf') format('opentype'), url('fonts/grift-mediumitalic.ttf') format('truetype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-semibold.otf') format('opentype'), url('fonts/grift-semibold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-semibolditalic.otf') format('opentype'), url('fonts/grift-semibolditalic.ttf') format('truetype'); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-bold.otf') format('opentype'), url('fonts/grift-bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-bolditalic.otf') format('opentype'), url('fonts/grift-bolditalic.ttf') format('truetype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-extrabold.otf') format('opentype'), url('fonts/grift-extrabold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-extrabolditalic.otf') format('opentype'), url('fonts/grift-extrabolditalic.ttf') format('truetype'); font-weight: 800; font-style: italic; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-black.otf') format('opentype'), url('fonts/grift-black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Grift'; src: url('fonts/grift-blackitalic.otf') format('opentype'), url('fonts/grift-blackitalic.ttf') format('truetype'); font-weight: 900; font-style: italic; font-display: swap; }

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

:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #1a1a1a;
  --white:     #f0f0ee;
  --white-dim: rgba(240,240,238,0.5);
  --accent:    #d4c5a9;
  --border:    rgba(240,240,238,0.08);
  --font-main: 'Grift', sans-serif;
  --font-cond: 'Grift', sans-serif;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; }

/* ═══════════════════════════════════════════════════
   CURSEUR CUSTOM
═══════════════════════════════════════════════════ */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), opacity 0.2s;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(240,240,238,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
  mix-blend-mode: difference;
}

.cursor.hovering { width: 0; height: 0; opacity: 0; }
.cursor-follower.hovering { width: 60px; height: 60px; opacity: 1; border-color: var(--white); }

/* ═══════════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  animation: loadBar 1.6s var(--ease-out) forwards;
}

@keyframes loadBar {
  to { transform: scaleX(1); }
}

.loader-text {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  transition: padding 0.4s var(--ease-out), background 0.4s ease;
}

#nav.scrolled {
  padding: 20px 48px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.nav-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ── Vidéo background */
.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ── Overlay dégradé */
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 60%, rgba(10,10,10,0.1) 100%),
    linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, transparent 30%);
}

/* ── Contenu */
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  padding-top: 80px;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 1.8s var(--ease-out) forwards;
}

.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  margin-bottom: 32px;
}

/* H1 — Grift Black (900) */
.hero-title-line {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(28px, 7.2vw, 102px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 0.9s var(--ease-out) forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 1.9s; }
.hero-title-line:nth-child(2) { animation-delay: 2.0s; }

.hero-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0;
  animation: fadeUp 0.8s 2.2s var(--ease-out) forwards;
}

.hero-meta-sep { opacity: 0.3; }

/* ── Scroll indicator */
.hero-scroll {
  position: absolute;
  right: 48px;
  bottom: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 0.8s 2.6s ease forwards;
}

.hero-scroll-track {
  width: 1px;
  height: 80px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.hero-scroll-thumb {
  position: absolute;
  top: 0;
  width: 100%;
  height: 40%;
  background: var(--white-dim);
  animation: scrollThumb 2.4s ease-in-out infinite;
}

@keyframes scrollThumb {
  0%   { top: -40%; }
  100% { top: 140%; }
}

.hero-scroll span {
  font-family: var(--font-cond);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  writing-mode: vertical-rl;
}

/* ── Bottom info bar */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 24px 48px;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0;
  animation: fadeIn 0.8s 2.4s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════════════
   INTRO
═══════════════════════════════════════════════════ */
#intro {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.intro-inner {
  max-width: 1100px;
}

.intro-label {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 48px;
}

/* H2 — Grift SemiBold (600) */
.intro-text {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   SECTION LABEL (commun)
═══════════════════════════════════════════════════ */
.section-label {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ═══════════════════════════════════════════════════
   WORK GRID
═══════════════════════════════════════════════════ */
#work {
  padding: 80px 48px 120px;
  border-top: 1px solid var(--border);
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.work-count {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ── Grille principale */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 2px;
}

/* ── Lien overlay cliquable sur toute la carte */
.work-item-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* ── Item de base */
.work-item {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--bg-3);
}

.work-item--large {
  grid-column: span 2;
}

.work-item--right {
  grid-column: 2 / span 2;
}

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

.work-item--large .work-item-media {
  aspect-ratio: 16/8;
}

.work-item-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 0.8s var(--ease-out);
  filter: brightness(0.6) saturate(0.7);
}

.work-item:hover .work-item-img {
  transform: scale(1);
  filter: brightness(0.75) saturate(0.9);
}

/* ── Info overlay */
.work-item-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 50%, transparent 100%);
}

.work-item-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.work-item-num {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--white-dim);
}

.work-item-type {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.work-item-year {
  font-family: var(--font-cond);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--white-dim);
  margin-left: auto;
}

/* H2 carte projet — Grift SemiBold (600) */
.work-item-title {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-out);
}

.work-item:hover .work-item-title {
  transform: translateY(0);
}

.work-item-arrow {
  font-size: 20px;
  color: var(--white);
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity 0.3s ease, transform 0.4s var(--ease-out);
  margin-top: 12px;
}

.work-item:hover .work-item-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
#about {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.about-left .section-label {
  margin-bottom: 40px;
}

.about-portrait {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-3);
}

.about-portrait-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  filter: grayscale(60%);
  transition: filter 0.6s ease, transform 0.6s var(--ease-out);
  transform: scale(1.04);
}

.about-portrait:hover .about-portrait-img {
  filter: grayscale(0%);
  transform: scale(1);
}

.about-right {
  padding-top: 56px;
}

/* H2 About — Grift SemiBold (600) */
.about-headline {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 40px;
}

/* Corps de texte — Grift Light (300) */
.about-body {
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: var(--white-dim);
  max-width: 480px;
  margin-bottom: 56px;
}

.about-body p + p { margin-top: 16px; }

.about-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

/* Chiffres stats — Grift ExtraBold (800) */
.about-stat-num {
  display: block;
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-skills span {
  font-family: var(--font-cond);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  border: 1px solid var(--border);
  padding: 8px 16px;
  transition: color 0.3s, border-color 0.3s;
}

.about-skills span:hover {
  color: var(--white);
  border-color: rgba(240,240,238,0.3);
}

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
#contact {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1200px;
}

.contact-inner .section-label {
  margin-bottom: 60px;
}

.contact-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
  transition: border-color 0.3s;
}

.contact-cta:hover {
  border-color: rgba(240,240,238,0.3);
}

/* H1 CTA — Grift Black (900) */
.contact-cta-text {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(52px, 9vw, 130px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  transition: color 0.3s;
}

.contact-cta:hover .contact-cta-text {
  color: var(--accent);
}

.contact-cta-arrow {
  font-size: clamp(40px, 6vw, 80px);
  color: var(--white-dim);
  transition: transform 0.4s var(--ease-out), color 0.3s;
}

.contact-cta:hover .contact-cta-arrow {
  transform: translate(10px, -10px);
  color: var(--white);
}

.contact-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  gap: 60px;
}

.contact-info-label {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 10px;
}

.contact-info-val {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}

a.contact-info-val:hover { color: var(--accent); }

.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.contact-socials a {
  font-family: var(--font-cond);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  transition: color 0.3s;
}

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

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy,
.footer-tag {
  font-family: var(--font-cond);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.footer-top {
  font-family: var(--font-cond);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
}

.footer-top:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════
   LIEN BACKOFFICE (nav, visible si connecté)
═══════════════════════════════════════════════════ */
.nav-backoffice-link {
  color: var(--accent) !important;
  border: 1px solid rgba(212,197,169,0.25);
  border-radius: 3px;
  padding: 4px 10px !important;
  transition: color 0.3s, border-color 0.3s, background 0.3s !important;
}

.nav-backoffice-link:hover {
  background: rgba(212,197,169,0.08);
  border-color: rgba(212,197,169,0.5);
}

.nav-backoffice-link::after { display: none !important; }

/* Lien login footer */
.footer-login {
  transition: color 0.3s;
}
.footer-login:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════
   REVEAL ON SCROLL
═══════════════════════════════════════════════════ */
.reveal-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.work-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.work-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-item--large { grid-column: span 2; }
  .work-item--right { grid-column: 1 / span 2; }
}

@media (max-width: 900px) {
  #nav { padding: 24px 32px; }
  #nav.scrolled { padding: 16px 32px; }
  .nav-status { display: none; }

  .hero-inner { padding: 0 32px; padding-top: 80px; }
  .hero-bottom { padding: 20px 32px; }
  .hero-scroll { right: 32px; }

  #intro { padding: 80px 32px; }
  #work { padding: 60px 32px 80px; }
  #about { padding: 80px 32px; }
  #contact { padding: 80px 32px; }
  footer { padding: 28px 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-right { padding-top: 0; }
}

@media (max-width: 680px) {
  #nav { padding: 20px 24px; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 10px; }

  .hero-inner { padding: 0 24px; padding-top: 80px; }
  .hero-bottom { padding: 16px 24px; }
  .hero-scroll { display: none; }

  #intro { padding: 60px 24px; }
  #work { padding: 48px 24px 60px; }
  #about { padding: 60px 24px; }
  #contact { padding: 60px 24px; }
  footer { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }

  .work-grid { grid-template-columns: 1fr; }
  .work-item--large,
  .work-item--right { grid-column: span 1; }

  .contact-bottom { flex-direction: column; gap: 40px; }
  .contact-info { flex-direction: column; gap: 32px; }
  .contact-socials { align-items: flex-start; }

  .about-stats { gap: 32px; }
}
