:root {
  --bg: #08070d;
  --bg-2: #0e0d16;
  --bg-3: #14121d;
  --ink: #f0ece4;
  --mute: rgba(240,236,228,.5);
  --dim: rgba(240,236,228,.28);
  --gold: #d4a574;
  --gold-soft: rgba(212,165,116,.55);
  --rose: #b87a8a;
  --rule: rgba(212,165,116,.18);
  --display: 'Fraunces', serif;
  --body: 'Inter Tight', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
}
* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; background: var(--bg); }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; height: 100vh; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }

/* ---------- FINISH: micro-details ---------- */
html { color-scheme: dark; }
::selection { background: rgba(212,165,116,.3); color: var(--ink); }
:focus { outline: none; }
:focus-visible { outline: 1px solid var(--gold-soft); outline-offset: 3px; }
html { scrollbar-width: thin; scrollbar-color: rgba(212,165,116,.28) transparent; }
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(212,165,116,.24); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212,165,116,.45); }
.manifesto__text, .about__text p, .hero__sub, .contact__p {
  font-feature-settings: 'onum' 1, 'liga' 1;
}

/* film grain */
.grain {
  position: fixed; inset: -60% 0 0 -60%;
  width: 220%; height: 220%;
  pointer-events: none;
  z-index: 2000;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.1s steps(9) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 2%); }
  100% { transform: translate(0, 0); }
}

/* line-by-line text reveal */
.line-mask { display: block; overflow: hidden; }
.line-mask > .line-inner {
  display: block;
  transform: translateY(115%);
  transition: transform 1s var(--ease-out-expo);
}
.lines-in .line-mask > .line-inner { transform: translateY(0); }

/* ---------- SCROLL PROGRESS ---------- */
.scroll-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; z-index: 200;
  pointer-events: none;
}
.scroll-bar__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--rose) 80%, var(--gold));
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% 0; } }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px;
  mix-blend-mode: difference;
  font-family: var(--mono); font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink);
  transition: transform .6s var(--ease-out-expo);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav__mark {
  font-family: var(--display);
  font-variation-settings: 'opsz' 14, 'wght' 400, 'SOFT' 0;
  font-size: 17px; letter-spacing: .14em; text-transform: uppercase;
  font-style: italic;
}
.nav__links { display: flex; gap: 40px; }
.nav__links a { position: relative; opacity: .8; transition: opacity .2s; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__time { letter-spacing: .2em; opacity: .6; }

/* ---------- MOBILE DRAWER ---------- */
.nav__burger {
  display: none;
  position: fixed; top: 16px; right: 14px; z-index: 320;
  width: 44px; height: 40px;
  color: var(--ink);
}
.nav__burger span {
  position: absolute; left: 8px; right: 8px; height: 1.5px;
  background: currentColor;
  transition: transform .45s var(--ease-out-expo), top .45s var(--ease-out-expo), opacity .3s;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 23px; }
.nav__burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

.drawer-dim {
  position: fixed; inset: 0; z-index: 290;
  background: rgba(8,7,13,.62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0; visibility: hidden;
  transition: opacity .5s ease, visibility 0s linear .5s;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 300;
  width: min(78vw, 340px);
  background: var(--bg-2);
  border-left: 1px solid var(--rule);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 104px 36px 40px;
  transform: translateX(102%);
  transition: transform .6s var(--ease-out-expo);
}
body.drawer-open .drawer { transform: translateX(0); }
body.drawer-open .drawer-dim {
  opacity: 1; visibility: visible;
  transition: opacity .5s ease;
}
.drawer__links { display: flex; flex-direction: column; gap: 8px; }
.drawer__links a {
  display: flex; align-items: baseline; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .55s ease, transform .55s var(--ease-out-expo);
}
body.drawer-open .drawer__links a { opacity: 1; transform: translateX(0); }
body.drawer-open .drawer__links a:nth-child(1) { transition-delay: .1s; }
body.drawer-open .drawer__links a:nth-child(2) { transition-delay: .16s; }
body.drawer-open .drawer__links a:nth-child(3) { transition-delay: .22s; }
body.drawer-open .drawer__links a:nth-child(4) { transition-delay: .28s; }
body.drawer-open .drawer__links a:nth-child(5) { transition-delay: .34s; }
.drawer__num {
  font-family: var(--mono); font-size: 9px; letter-spacing: .2em;
  color: var(--gold);
}
.drawer__name {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: 30px; letter-spacing: -.02em;
  color: var(--ink);
}
.drawer__foot {
  font-family: var(--mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute);
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transition: opacity .6s ease .4s;
}
body.drawer-open .drawer__foot { opacity: 1; }
.drawer__foot a { color: var(--gold-soft); }
body.drawer-open { overflow: hidden; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__canvas-wrap {
  position: absolute; inset: 0; z-index: 1;
  background: url('../Media/img-05.jpg') 50% 42% / cover no-repeat;
}
.hero__canvas-wrap::after {
  content: ''; position: absolute; inset: 0;
  background:
    /* left scrim: the text column needs contrast the WebGL shader used to provide */
    linear-gradient(90deg, rgba(8,7,13,.9) 0%, rgba(8,7,13,.74) 44%, transparent 76%),
    radial-gradient(ellipse at 50% 100%, rgba(8,7,13,.95) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(8,7,13,.6) 0%, transparent 50%),
    linear-gradient(180deg, rgba(8,7,13,.4) 0%, transparent 30%, transparent 70%, rgba(8,7,13,.85) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero__bg-text {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 100;
  font-size: clamp(180px, 28vw, 540px);
  letter-spacing: -.05em;
  line-height: .85;
  color: rgba(212,165,116,.06);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  font-style: italic;
}
/* masked duplicate of the hero photo: only the wings + model carry alpha,
   so the headline (z3) threads BEHIND the subject */
.hero__cutout {
  position: absolute; inset: 0; z-index: 4;
  pointer-events: none;
  overflow: hidden;
  /* Let the copy band ghost through the wings instead of vanishing. The band
     runs to 72% because the studio blurb is seven lines, not the two the
     original layout assumed — end it earlier and the last lines land on
     full-opacity white feathers. */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 24%, rgba(0,0,0,.34) 33%, rgba(0,0,0,.34) 72%, #000 80%, #000 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 24%, rgba(0,0,0,.34) 33%, rgba(0,0,0,.34) 72%, #000 80%, #000 100%);
}
.hero__cutout img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: translate3d(0,0,0) scale(1.015);
  will-change: transform;
}
.hero__inner {
  position: relative; z-index: 3;
  width: min(90%, 1500px);
  padding: 120px 0 200px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero__kicker {
  font-family: var(--mono); font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 36px;
  opacity: 0; animation: heroFadeUp 1s ease forwards; animation-delay: 1.4s;
}
.hero__kicker::before {
  content: ''; width: 48px; height: 1px; background: var(--gold);
  display: inline-block;
}
.hero__title {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 0;
  font-size: clamp(56px, 11vw, 180px);
  line-height: .92;
  letter-spacing: -.04em;
  font-weight: 300;
  margin-bottom: 0;
  color: var(--ink);
}
.hero__title .word {
  display: inline-block; overflow: hidden; vertical-align: top;
  margin-right: .12em;
  /* line-height .92 puts the mask edge above the baseline, which guillotined
     the descenders on g/y/p. Drop the mask floor and pull the box back up so
     layout is unchanged. Chars start at translateY(110%) (~1em) so they are
     still hidden behind the deeper mask before they animate in. */
  padding-bottom: .22em;
  margin-bottom: -.22em;
}
.hero__title .char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: heroChar 1.1s cubic-bezier(.5,0,.1,1) forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 100;
}
@keyframes heroChar {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes heroFadeUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.hero__sub {
  margin-top: 36px;
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-style: italic;
  font-variation-settings: 'opsz' 22, 'wght' 300, 'SOFT' 100;
  color: var(--ink);
  max-width: 38ch;
  line-height: 1.4;
  opacity: 0; animation: heroFadeUp 1s ease forwards; animation-delay: 1.7s;
}
.hero__meta {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: min(90%, 1500px);
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(240,236,228,.66);
  text-shadow: 0 1px 14px rgba(8,7,13,.95), 0 0 4px rgba(8,7,13,.85);
  z-index: 5;
  opacity: 0; animation: heroFadeUp 1s ease forwards; animation-delay: 2s;
  pointer-events: none;
}
@media (max-height: 820px) {
  .hero__meta { font-size: 9px; bottom: 20px; }
  .hero__inner { padding-top: 100px; padding-bottom: 160px; }
}
.hero__meta-block { max-width: 28ch; line-height: 1.7; }
.hero__meta-block strong { color: var(--gold); font-weight: 400; }
.hero__scroll {
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--mute);
}
.hero__scroll-line {
  width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2.4s cubic-bezier(.5,0,.5,1) infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  position: relative;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: var(--bg);
  --marquee-skew: 0deg;
}
.marquee__track {
  display: flex; gap: 64px; align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  transform: skewY(var(--marquee-skew));
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
@keyframes marqueeScroll {
  to { transform: translateX(-50%) skewY(var(--marquee-skew)); }
}
.marquee__item {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 0;
  font-size: clamp(48px, 7vw, 110px);
  letter-spacing: -.03em;
  color: var(--ink);
  font-style: italic;
  line-height: 1;
}
.marquee__item--gold { color: var(--gold); }
.marquee__sep {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--gold);
  display: inline-block;
}

/* ---------- SECTIONS ---------- */
.section {
  position: relative;
  padding: 160px 48px;
  max-width: 1500px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.section-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.section-h {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 0;
  font-size: clamp(40px, 6vw, 96px);
  line-height: .96;
  letter-spacing: -.025em;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 56px;
  max-width: 18ch;
}
.section-h em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 100;
}

/* Decoder text */
.decoder { display: inline-block; }
.decoder span { display: inline-block; min-width: .55ch; }

/* ---------- MANIFESTO ---------- */
.manifesto { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.manifesto__text {
  font-family: var(--display);
  font-variation-settings: 'opsz' 22, 'wght' 300, 'SOFT' 50;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.5;
  color: var(--ink);
}
.manifesto__text p { margin-bottom: 28px; }
.manifesto__text p:last-child { margin-bottom: 0; }
.manifesto__text em { color: var(--gold); font-style: italic; }
.manifesto__lines {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; line-height: 2.1;
  color: var(--mute); text-transform: uppercase;
}
.manifesto__lines li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px; margin-bottom: 18px;
}
.manifesto__lines li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 12px; height: 1px; background: var(--gold);
}

/* ---------- PROCESS ---------- */
.process {
  padding: 160px 48px;
  max-width: 1500px;
  margin: 0 auto;
}
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--rule);
}
.process__step {
  padding: 40px 28px 64px 0;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background .4s ease;
}
.process__step:last-child { border-right: none; }
.process__step:hover { background: rgba(212,165,116,.025); }
.process__step::before {
  content: ''; position: absolute; left: 0; top: 0; width: 0; height: 1px;
  background: var(--gold);
  transition: width .8s cubic-bezier(.2,.8,.2,1);
}
.process__step.is-in::before { width: 100%; }
.process__num {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 0;
  font-size: clamp(64px, 7vw, 120px);
  line-height: 1; letter-spacing: -.04em;
  color: var(--gold);
  font-style: italic;
  display: block; margin-bottom: 24px;
  opacity: .85;
}
.process__name {
  font-family: var(--display);
  font-variation-settings: 'opsz' 28, 'wght' 400, 'SOFT' 0;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.process__desc {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; line-height: 1.9;
  color: var(--mute);
  text-transform: uppercase;
  max-width: 22ch;
}

/* ---------- BLEND-TEXT STRIP ---------- */
.blend-strip {
  position: relative;
  height: 60vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--bg);
  display: grid; place-items: center;
}
.blend-strip__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 1;
}
.blend-strip__img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(8,7,13,.55);
}
.blend-strip__text {
  position: relative; z-index: 2;
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 100;
  font-size: clamp(120px, 22vw, 380px);
  letter-spacing: -.04em;
  line-height: .85;
  color: var(--ink);
  font-style: italic;
  mix-blend-mode: overlay;
  text-align: center;
  white-space: nowrap;
}

/* ---------- WORK GRID (3D TILT) ---------- */
.work {
  padding: clamp(104px, 12vw, 176px) 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 56px) 20px;
  align-items: start;
}
.work-card {
  cursor: pointer;
  min-width: 0;
}
.work-card:first-child { grid-column: span 2; }
.work-card__inner {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
}
.work-card:first-child .work-card__inner { aspect-ratio: 16 / 10; }
.work-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.16,1,.3,1), filter .4s ease;
}
.work-card:hover .work-card__img,
.work-card:focus-visible .work-card__img { transform: scale(1.025); filter: brightness(1.06); }
.work-card__info {
  padding-top: 14px;
}
.work-card__name {
  font-family: var(--display);
  font-variation-settings: 'opsz' 24, 'wght' 400, 'SOFT' 50;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 4px;
  font-style: italic;
}
.work-card__meta {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute);
}

/* ---------- IMAGE UNVEIL (clip reveal on scroll) ---------- */
.unveil {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s var(--ease-out-expo);
}
.unveil > img, .unveil.blend-strip__img {
  transform: scale(1.12);
  transition: transform 1.5s var(--ease-out-expo), filter .3s ease;
}
.unveil.is-unveiled { clip-path: inset(0 0 0% 0); }
.unveil.is-unveiled > img, .unveil.is-unveiled.blend-strip__img { transform: scale(1); }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 8500;
  background: rgba(8,7,13,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .45s ease, visibility 0s linear .45s;
}
.lightbox.is-open {
  opacity: 1; visibility: visible;
  transition: opacity .45s ease;
}
.lightbox__stage {
  position: relative;
  max-width: min(88vw, 1200px);
  max-height: 84vh;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.lightbox__img {
  max-width: 100%; max-height: calc(84vh - 70px);
  object-fit: contain;
  transform: scale(.965);
  opacity: 0;
  transition: transform .55s var(--ease-out-expo), opacity .4s ease;
}
.lightbox.is-open .lightbox__img.is-ready { transform: scale(1); opacity: 1; }
.lightbox__caption {
  display: flex; align-items: baseline; gap: 20px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute);
}
.lightbox__caption strong {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 20px; letter-spacing: -.01em; text-transform: none;
  color: var(--ink);
}
.lightbox__count {
  position: absolute; top: 34px; left: 48px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .3em;
  color: var(--gold);
}
.lightbox__close {
  position: absolute; top: 24px; right: 36px;
  font-family: var(--display); font-size: 34px; font-weight: 300;
  color: var(--mute);
  padding: 12px;
  transition: color .25s, transform .4s var(--ease-out-expo);
}
.lightbox__close:hover { color: var(--ink); transform: rotate(90deg); }
.lightbox__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-family: var(--display); font-size: 30px;
  color: var(--mute);
  padding: 24px 20px;
  transition: color .25s, transform .3s var(--ease-out-expo);
}
.lightbox__arrow:hover { color: var(--gold); }
.lightbox__arrow--prev { left: 16px; }
.lightbox__arrow--next { right: 16px; }
.lightbox__arrow--prev:hover { transform: translateY(-50%) translateX(-5px); }
.lightbox__arrow--next:hover { transform: translateY(-50%) translateX(5px); }
.lightbox__count, .lightbox__close, .lightbox__arrow { z-index: 2; }

/* ---------- CINEMA (PINNED SCROLL) ---------- */
.cinema {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cinema__sticky {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: stretch;
  overflow: hidden;
}
.cinema__copy {
  padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.cinema__count {
  font-family: var(--mono); font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
  display: flex; gap: 24px; align-items: center;
}
.cinema__title {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 0;
  font-size: clamp(48px, 5.4vw, 88px);
  line-height: .96;
  letter-spacing: -.025em;
  color: var(--ink);
  font-style: italic;
}
.cinema__caption {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; line-height: 1.9;
  color: var(--mute);
  text-transform: uppercase;
  max-width: 30ch;
}
.cinema__title-stack { position: relative; min-height: 200px; }
.cinema__title-stack > div, .cinema__caption-stack > div {
  position: absolute; left: 0; right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.cinema__caption-stack { position: relative; min-height: 80px; }
.cinema__title-stack > div.is-active, .cinema__caption-stack > div.is-active { opacity: 1; transform: translateY(0); }

.cinema__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
}
.cinema__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s cubic-bezier(.5,0,.2,1), transform 8s cubic-bezier(.5,0,.5,1), clip-path 1.2s cubic-bezier(.7,0,.2,1);
  clip-path: inset(50% 50% 50% 50%);
}
.cinema__slide.is-active {
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}
.cinema__progress {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; gap: 6px; padding: 24px 32px;
  z-index: 3;
}
.cinema__bar {
  flex: 1; height: 1px; background: rgba(255,255,255,.15);
  position: relative; overflow: hidden;
}
.cinema__bar::after {
  content: ''; position: absolute; left: 0; top: 0; height: 100%; width: var(--p, 0%);
  background: var(--gold);
  transition: width .3s linear;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 160px 48px;
  max-width: 1500px;
  margin: 0 auto;
}
.services__list { border-top: 1px solid var(--rule); }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 80px;
  gap: 32px; align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background .3s ease;
}
.service-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(90deg, rgba(212,165,116,.05), transparent);
  transition: width .5s cubic-bezier(.2,.8,.2,1);
  z-index: -1;
}
.service-row:hover::before { width: 100%; }
.service-row__num {
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em;
  color: var(--gold);
}
.service-row__name {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 0;
  font-size: clamp(28px, 3.2vw, 48px);
  letter-spacing: -.02em;
  color: var(--ink);
  font-style: italic;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), color .3s;
}
.service-row:hover .service-row__name {
  transform: translateX(20px);
  color: var(--gold);
}
.service-row__desc {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; line-height: 1.9;
  color: var(--mute);
  text-transform: uppercase;
}
.service-row__arrow {
  font-family: var(--display); font-size: 28px; color: var(--gold);
  text-align: right;
  transform: translateX(-12px); opacity: 0;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .3s;
}
.service-row:hover .service-row__arrow { transform: translateX(0); opacity: 1; }

/* ---------- ABOUT ---------- */
.about {
  padding: 160px 48px;
  max-width: 1500px;
  margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about__visual img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.about__visual:hover img { transform: scale(1); }
.about__visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,7,13,.4));
  pointer-events: none;
}
.about__text p {
  font-family: var(--display);
  font-variation-settings: 'opsz' 22, 'wght' 300, 'SOFT' 50;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
}
.about__text p:last-child { margin-bottom: 0; }
.about__text em { color: var(--gold); font-style: italic; }
.about__signature {
  margin-top: 40px;
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 100;
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: -.01em;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 200px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}
.contact__bg-text {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(140px, 22vw, 380px);
  font-style: italic; letter-spacing: -.04em;
  color: rgba(212,165,116,.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.contact__inner { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; }
.contact__h {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 0;
  font-size: clamp(56px, 9vw, 160px);
  line-height: .92;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-bottom: 40px;
}
.contact__h em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 100;
}
.contact__p {
  font-family: var(--display);
  font-variation-settings: 'opsz' 22, 'wght' 300, 'SOFT' 50;
  font-size: clamp(18px, 1.5vw, 22px);
  font-style: italic;
  color: var(--mute);
  max-width: 48ch;
  margin: 0 auto 56px;
  line-height: 1.5;
}
.contact__links {
  display: flex; gap: 56px; justify-content: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  flex-wrap: wrap;
}
.contact__link {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--ink);
  position: relative;
  padding-bottom: 6px;
}
.contact__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
.contact__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.contact__link:hover { color: var(--gold); }
.contact__link:hover::after { transform: scaleX(1); }

/* ---------- FOOTER ---------- */
.footer {
  padding: 36px 48px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--mute);
}
.footer a { color: var(--mute); transition: color .2s; }
.footer a:hover { color: var(--ink); }
.footer .cbk { color: var(--gold); }
.footer .cbk:hover { color: var(--ink); }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .nav { padding: 20px 24px; font-size: 9px; }
  .nav__links { display: none; }
  .nav__time { display: none; }
  .nav__burger { display: block; }
  .section, .work, .services, .about, .process { padding: 100px 24px; }
  .manifesto, .about { grid-template-columns: 1fr; gap: 56px; }
  .work__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 16px; }
  .work-card:first-child { grid-column: 1 / -1; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__step { padding: 32px 20px 40px 0; }
  .process__step:nth-child(2) { border-right: none; }
  .process__step:nth-child(-n+2) { border-bottom: 1px solid var(--rule); padding-bottom: 56px; }
  .cinema__sticky { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .cinema__media { grid-row: 1; }
  .cinema__copy { grid-row: 2; padding: 24px 24px 36px; background: linear-gradient(180deg, rgba(8,7,13,.7), var(--bg-2)); }
  .cinema__title-stack { min-height: 110px; }
  .cinema__title { font-size: clamp(28px, 5.4vw, 48px); }
  .cinema__caption-stack { min-height: 50px; }
  .service-row { grid-template-columns: 50px 1fr 30px; gap: 20px; }
  .service-row__desc { display: none; }
  .hero__inner { padding: 100px 0 220px; }
  .hero__meta { flex-direction: column; gap: 12px; align-items: flex-start; bottom: 20px; width: calc(100% - 48px); left: 24px; transform: none; }
  .hero__meta-block { max-width: 100%; width: 100%; line-height: 1.55; font-size: 9px; letter-spacing: .14em; }
  .hero__meta-block[style*="right"] { text-align: left !important; }
  .hero__scroll { display: none; }
  .blend-strip__text { font-size: clamp(80px, 24vw, 200px); }
  .marquee__item { font-size: clamp(40px, 12vw, 80px); }
  .marquee { padding: 24px 0; }
}
@media (max-width: 600px) {
  .work__grid { grid-template-columns: 1fr; gap: 32px; }
  .work-card:first-child { grid-column: auto; }
  .work-card:first-child .work-card__inner { aspect-ratio: 4 / 5; }
  .process__steps { grid-template-columns: 1fr; }
  .process__step { border-right: none; border-bottom: 1px solid var(--rule); padding: 32px 0 40px; }
  .process__step:last-child { border-bottom: none; }
  .nav__mark { font-size: 14px; }
  .contact__links { gap: 24px; flex-direction: column; align-items: center; }
  .lightbox__count { top: 24px; left: 24px; }
  .lightbox__close { top: 12px; right: 10px; }
  .lightbox__arrow--prev { left: 2px; }
  .lightbox__arrow--next { right: 2px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
