/* ========================================
   PRESENT FUTURES — V7 Timeline Archive
   Split hero, temporal navigation
   ======================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0C0C0B;
  --light: #F0EEEA;
  --text: #E8E6E1;
  --text-dim: #918A82;
  --accent: #D4E040;
  --surface: #1A1918;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-quote: 'Cormorant Garamond', serif;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: thin;
  scrollbar-color: var(--text-dim) var(--bg);
}

body { overflow-x: hidden; }
a { color: var(--text); text-decoration: none; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═ Film grain — absolute inside hero, hero-only ═ */
#grainCanvasL {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: 0.28;
  mix-blend-mode: multiply;
  image-rendering: pixelated;
}
#grainCanvasR {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: 0.22;
  mix-blend-mode: screen;
  image-rendering: pixelated;
}

/* ── Loader ── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__split { display: flex; gap: 0.4rem; }
.loader__word {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.loader__word--light { color: var(--light); }
.loader__word--dark { color: var(--text-dim); }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.4s, backdrop-filter 0.4s, -webkit-backdrop-filter 0.4s;
}
.nav--scrolled {
  background: linear-gradient(180deg, rgba(12,12,11,0.92) 0%, rgba(12,12,11,0.6) 60%, rgba(12,12,11,0) 100%);
}

/* Split-hero nav clone — dark text clipped to the light side */
.nav__split-clone {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  pointer-events: none;
  color: var(--bg);
  clip-path: polygon(0 0, var(--split, 50%) 0, var(--split, 50%) 100%, 0 100%);
  will-change: clip-path;
  background: transparent;
  opacity: 1;
  transition: opacity 0.35s;
}
.nav__split-clone .nav__logo {
  opacity: 0; /* logo only shows once scrolled, match main nav */
  transform: none;
}
.nav--scrolled ~ .nav__split-clone {
  opacity: 0;
}

/* iOS tilt-permission hint */
.hero__tilt-hint {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(12,12,11,0.7);
  padding: 0.6rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  pointer-events: none;
  animation: tilt-hint-pulse 1.6s ease-in-out infinite;
}
@keyframes tilt-hint-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.55s cubic-bezier(0.2,0,0.3,1), transform 0.55s cubic-bezier(0.2,0,0.3,1);
  pointer-events: none;
}
.nav--scrolled .nav__logo {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.nav__links { display: flex; gap: 2rem; align-items: baseline; }
.nav__links > a { transition: color 0.25s, opacity 0.25s; }
.nav__links > a:hover { color: var(--accent); opacity: 1; }

/* Work dropdown */
.nav__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav__dropdown-trigger {
  transition: color 0.25s, opacity 0.25s;
  cursor: pointer;
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: -1.5rem;
  background: rgba(12, 12, 11, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 230, 225, 0.08);
  border-radius: 2px;
  padding: 0.8rem 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -1.2rem;
  left: 0;
  right: 0;
  height: 1.2rem;
}
.nav__dropdown.open .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__dropdown.open .nav__dropdown-trigger { color: var(--accent); opacity: 1; }
.nav__dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--text-dim);
  transition: color 0.2s, background 0.2s;
  font-size: 0.6rem;
}
.nav__dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(212, 224, 64, 0.04);
}
.nav__menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 26px; height: 18px;
  position: relative;
}
.nav__menu span {
  display: block;
  width: 100%; height: 1px;
  background: var(--text);
  position: absolute; left: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__menu span:first-child { top: 3px; }
.nav__menu span:last-child { bottom: 3px; }
.nav__menu.active span:first-child { transform: translateY(6px) rotate(45deg); }
.nav__menu.active span:last-child { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600;
}

/* ── Progress ── */
.progress {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--surface); z-index: 100;
}
.progress__bar {
  height: 100%; width: 0%;
  background: var(--accent);
  transition: width 0.05s linear;
}

/* ═══════════════════════════════════════
   HERO — Split PRESENT / FUTURES
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  cursor: crosshair;
}

.hero__layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__layer--dark {
  background: var(--bg);
  z-index: 1;
  color: var(--light);
}

.hero__layer--light {
  background: var(--light);
  z-index: 2;
  color: var(--bg);
  clip-path: polygon(0 0, var(--split, 50%) 0, var(--split, 50%) 100%, 0 100%);
  will-change: clip-path;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.hero__word {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.hero__info {
  position: absolute;
  bottom: 7rem;
  left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0.75;
  white-space: nowrap;
}
/* Both sides: same dim neutral for metadata text */
.hero__layer--dark .hero__info,
.hero__layer--dark .hero__tagline,
.hero__layer--dark .hero__scroll,
.hero__layer--light .hero__info,
.hero__layer--light .hero__tagline,
.hero__layer--light .hero__scroll {
  color: rgba(140, 138, 134, 0.75);
}
.hero__dot {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.hero__dot--dark {
  background: var(--accent);
}
.hero__tagline {
  position: absolute;
  bottom: 4.5rem;
  left: 50%; transform: translateX(-50%);
  z-index: 2;
  opacity: 0.7;
  white-space: nowrap;
}
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  z-index: 2;
  opacity: 0.6;
}
.hero__scroll-line {
  width: 1px; height: 28px;
  background: currentColor;
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll-line--dark {
  background: var(--bg); /* on the light layer, line should be dark */
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.4); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

/* ═══════════════════════════════════════
   INTRO
   ═══════════════════════════════════════ */
.intro {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 2rem;
}
.intro__inner { max-width: 560px; text-align: center; }
.intro__text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.intro__sub {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-dim);
  font-style: italic;
}

/* ═══════════════════════════════════════
   ARCHIVE
   ═══════════════════════════════════════ */
.archive {
  position: relative;
}

/* ── Featured project (horizontal depth) ── */
.project--featured {
  height: 100vh;
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  border-top: 1px solid rgba(232, 230, 225, 0.05);
}

.project__sidebar {
  display: flex;
  flex-direction: column;
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(232, 230, 225, 0.05);
  position: relative;
  z-index: 2;
  overflow-y: auto;
  scrollbar-width: none;
}
.project__sidebar::-webkit-scrollbar { display: none; }
.project__sidebar::before,
.project__sidebar::after {
  content: '';
  flex: 1 1 2rem;
}
.project__idx {
  color: var(--accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 1.2rem;
}
.project__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.project__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.project__brief {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.6;
}

/* Project keyword tags — flowing text */
.project__tags {
  padding: 0.6rem 0 0.2rem;
  border-top: 1px solid rgba(232, 230, 225, 0.06);
}
.project__tags-label {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-right: 0.5rem;
}
.project__tags-list {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: var(--accent);
  opacity: 0.65;
}

/* Per-project Recognition + Credits toggles */
.project__extras {
  margin-top: 1.2rem;
}
.project__detail-block {
  border-top: 1px solid rgba(232, 230, 225, 0.06);
}
.project__detail-block summary {
  padding: 0.7rem 0;
  cursor: pointer;
  color: var(--text-dim);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.project__detail-block summary::-webkit-details-marker { display: none; }
.project__detail-block summary::before {
  content: '+';
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.project__detail-block[open] summary::before {
  transform: rotate(45deg);
}
.project__detail-block summary:hover { color: var(--text); }
.project__detail-block ul {
  list-style: none;
  padding: 0 0 0.6rem 1.2rem;
}
.project__detail-block li {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.6;
  padding: 0.15rem 0;
}
.project__detail-block li strong {
  color: var(--text);
  opacity: 0.8;
  font-weight: 500;
}
.project__detail-note {
  font-size: 0.68rem;
  line-height: 1.6;
  color: var(--text-dim);
  padding: 0.4rem 0 0.6rem 1.2rem;
  font-style: italic;
}

.project__content {
  overflow: hidden;
  position: relative;
  contain: layout style paint;
}

.project__track {
  display: flex;
  align-items: stretch;
  height: 100%;
  will-change: transform;
  gap: 3px;
}
.project__track > .project__card:first-child {
  padding-left: 0;
}

.project__card {
  flex: 0 0 auto;
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project__card--portrait {
  width: auto;
}
.project__card--portrait .project__img {
  height: 100%;
  width: auto;
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
}

.project__img {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 200px;
}
.project__img--contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.project__cap {\n  position: absolute;\n  bottom: 0.6rem;\n  left: 0;\n  right: 0;\n  text-align: center;\n  color: var(--text-dim);\n  font-size: 0.55rem;\n  pointer-events: none;\n}

/* Landscape image card — full-bleed cover */
.project__card--landscape {
  width: auto;
}
.project__card--landscape .project__img {
  height: 100%;
  width: auto;
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
}

/* GIF card in horizontal track */
.project__card--gif {
  width: 42vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project__gif {
  height: 62vh;
  width: auto;
  max-width: 40vw;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}

/* Video card in horizontal track */
.project__card--video {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project__video {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
}

/* Trailer card */
.project__card--trailer {
  width: 38vw;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(232, 230, 225, 0.06);
}
.trailer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.trailer__label {
  color: var(--accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
}
.trailer__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  transition: color 0.3s;
}
.trailer__link:hover { color: var(--accent); }
.trailer__play {
  width: 64px; height: 64px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.trailer__link:hover .trailer__play {
  transform: scale(1.08);
  background: rgba(160, 139, 110, 0.08);
}
.trailer__text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trailer__desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-dim);
}

/* Quote card in horizontal track */
.project__card--quote {
  width: 36vw;
  min-width: 300px;
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
}
.quote-text {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.project__card--quote cite {
  color: var(--accent);
  display: block;
}

/* ── Brief project gallery ── */
.project__gallery {
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  gap: 1.2rem;
  padding: 2rem 6rem 3rem;
  scrollbar-width: none;
}
.project__gallery::-webkit-scrollbar { display: none; }
.project__gallery-item {
  flex: none;
  height: 52vh;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.project__gallery-img {
  flex: 1;
  min-width: 240px;
  max-width: 60vw;
  aspect-ratio: 4/3;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.project__gallery-item--video { aspect-ratio: 16/9; }
.project__gallery-video {
  height: 100%;
  width: auto;
  max-width: 70vw;
  object-fit: contain;
  display: block;
}

/* ── Brief project (vertical card) ── */
.project--brief {
  padding: 5rem 2rem 5rem 6rem;
  border-top: 1px solid rgba(232, 230, 225, 0.05);
}
.project__inner {
  max-width: 700px;
}
.project__head {
  margin-bottom: 1.5rem;
}
.project__head .project__title {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: 1rem;
}
.project__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: var(--text-dim);
}
.project__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.project__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.tag {
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(232, 230, 225, 0.12);
  border-radius: 2px;
  color: var(--text-dim);
  font-size: 0.55rem;
}

/* ═══════════════════════════════════════
   PRESS
   ═══════════════════════════════════════ */
.press {
  padding: 6rem 2rem 6rem 6rem;
  border-top: 1px solid rgba(232, 230, 225, 0.05);
}
.press__inner { max-width: 900px; }
.press__label {
  color: var(--accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 2.5rem;
}

/* Major award wins — prominent display */
.press__wins {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.press__win {
  padding: 1.5rem;
  border: 1px solid rgba(232, 230, 225, 0.06);
  border-radius: 2px;
}
.press__win-tag {
  color: var(--accent);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.6rem;
}
.press__win-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.press__win-detail {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Collapsible selections per project */
.press__selections {
  margin-bottom: 3rem;
}
.press__group {
  border-bottom: 1px solid rgba(232, 230, 225, 0.06);
}
.press__group-title {
  padding: 1rem 0;
  cursor: pointer;
  color: var(--text-dim);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.2s;
}
.press__group-title::-webkit-details-marker { display: none; }
.press__group-title::before {
  content: '+';
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.press__group[open] .press__group-title::before {
  transform: rotate(45deg);
}
.press__group-title:hover { color: var(--text); }
.press__group-items {
  padding-bottom: 0.5rem;
}
.press__item {
  padding: 0.8rem 0 0.8rem 1.4rem;
  border-bottom: 1px solid rgba(232, 230, 225, 0.04);
}
.press__item:last-child { border-bottom: none; }
.press__source {
  color: var(--text);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.6rem;
}
.press__detail {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.press__quotes {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.press__quote p {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 0.8rem;
}
.press__quote cite {
  color: var(--accent);
  font-style: normal;
}

/* ═══════════════════════════════════════
   NEWS
   ═══════════════════════════════════════ */
.news {
  padding: 6rem 2rem 6rem 6rem;
  border-top: 1px solid rgba(232, 230, 225, 0.05);
}
.news__inner { max-width: 1000px; }
.news__label {
  color: var(--accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 2.5rem;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.news__card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(232, 230, 225, 0.06);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  color: var(--text);
}
.news__card:hover {
  border-color: rgba(212, 224, 64, 0.2);
  transform: translateY(-2px);
}
.news__thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.news__body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.news__date {
  color: var(--text-dim);
  font-size: 0.55rem;
}
.news__headline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}
.news__excerpt {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════
   ARTICLE PAGES
   ═══════════════════════════════════════ */
.nav--article {
  mix-blend-mode: normal;
}
.nav--article .nav__logo {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.article {
  padding: 8rem 2rem 4rem;
  display: flex;
  justify-content: center;
}
.article__inner {
  max-width: 680px;
  width: 100%;
}
.article__back {
  display: inline-block;
  color: var(--accent);
  margin-bottom: 2rem;
  transition: opacity 0.2s;
}
.article__back:hover { opacity: 0.7; }
.article__meta {
  display: flex;
  gap: 1.5rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.article__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.article__lead {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.8;
  margin-bottom: 2rem;
}
.article h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
}
.article p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.75;
  margin-bottom: 1.2rem;
}
.article__figure {
  margin: 2rem 0;
}
.article__figure img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  display: block;
}
.article__figure figcaption {
  color: var(--text-dim);
  margin-top: 0.6rem;
  font-size: 0.55rem;
}
.article__details {
  list-style: none;
  padding: 0;
}
.article__details li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(232, 230, 225, 0.06);
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0.75;
}
.article__details li .mono {
  color: var(--accent);
  display: inline-block;
  width: 100px;
  margin-right: 1rem;
}
.article__source {
  margin-top: 2rem;
}
.article__source a {
  color: var(--accent);
  transition: opacity 0.2s;
}
.article__source a:hover { opacity: 0.7; }
.article__footer {
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(232, 230, 225, 0.05);
}

/* ═══════════════════════════════════════
   STUDIO
   ═══════════════════════════════════════ */
.studio {
  padding: 8rem 2rem 8rem 6rem;
  border-top: 1px solid rgba(232, 230, 225, 0.05);
}
.studio__inner { max-width: 1000px; }
.studio__header { margin-bottom: 3rem; }
.studio__header .mono {
  color: var(--accent);
  display: block;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
}
.studio__photo {
  width: 100%;
  margin-bottom: 3rem;
}
.studio__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.studio__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 5rem;
  align-items: start;
}
.studio__bio p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 1.2rem;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(232, 230, 225, 0.06);
}
.detail-label { color: var(--text-dim); font-size: 0.6rem; }
.detail-val { font-size: 0.9rem; text-align: right; }

/* ═══════════════════════════════════════
   APPROACH
   ═══════════════════════════════════════ */
.approach {
  padding: 6rem 2rem 6rem 6rem;
  border-top: 1px solid rgba(232, 230, 225, 0.05);
}
.approach__inner {
  max-width: 700px;
}
.approach__label {
  color: var(--accent);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 2.5rem;
}
.approach__img {
  margin-bottom: 2.5rem;
  border-radius: 2px;
  overflow: hidden;
}
.approach__img img {
  width: 100%;
  height: auto;
  display: block;
}
.approach__statement {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.approach__belief {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.6;
  font-style: italic;
  font-family: var(--font-quote);
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(232, 230, 225, 0.05);
}
.contact__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact__inner > .mono {
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 2.5rem;
}
.contact__email {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.contact__email:hover { color: var(--accent); }
.contact__social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact__social a { color: var(--text-dim); transition: color 0.3s; }
.contact__social a:hover { color: var(--text); }
.contact__foot {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--text-dim);
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 230, 225, 0.04);
}
.contact__site-credit {
  opacity: 0.5;
}

/* ═══════════════════════════════════════
   REVEALS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__menu { display: block; }

  .timeline { display: none; }

  .project--featured {
    height: auto;
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .project__sidebar {
    padding: 3rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(232, 230, 225, 0.05);
    overflow-y: visible;
  }
  .project__sidebar::before,
  .project__sidebar::after {
    display: none;
  }
  .project__content {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .project__content::-webkit-scrollbar { display: none; }
  .project__track {
    flex-direction: row;
    height: auto;
    min-height: 50vh;
    width: max-content;
    will-change: auto;
    transform: none !important;
  }
  .project__card {
    width: 85vw !important;
    height: auto;
    min-height: 50vh;
    padding: 1.5rem;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
  .project__card--landscape .project__img,
  .project__card--portrait .project__img {
    height: 45vh;
    min-height: auto;
  }
  .project__video,
  .project__gif {
    height: 45vh;
    max-width: 85vw;
  }
  .project__img { min-height: 50vw; }

  .project--brief { padding: 3rem 1.5rem; }

  .press { padding: 4rem 1.5rem; }
  .press__quotes { grid-template-columns: 1fr; gap: 2rem; }

  .news { padding: 4rem 1.5rem; }
  .news__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .news__thumb { height: 200px; }

  .article { padding: 6rem 1.5rem 3rem; }

  .studio { padding: 4rem 1.5rem; }
  .studio__photo { margin-bottom: 2rem; }
  .studio__grid { grid-template-columns: 1fr; gap: 3rem; }

  .hero__word { font-size: clamp(2rem, 8vw, 3.2rem); }
}

@media (max-width: 600px) {
  .nav { padding: 1rem 1rem; }
  .contact__foot { flex-direction: column; align-items: center; gap: 0.5rem; }
  .contact__site-credit { font-size: 0.6rem; }
  .press__wins { grid-template-columns: 1fr; }
}
