/* =========================================================================
   Shots by Nick — "A gallery at night"
   Dark cinematic photography portfolio. Viewfinder motif throughout.
   ========================================================================= */

:root {
  --bg: #0b0b0d;
  --bg-2: #0f0f12;
  --panel: #141418;
  --ink: #f4f1ea;
  --muted: #9b968b;
  --faint: rgba(244, 241, 234, 0.55);
  --line: rgba(244, 241, 234, 0.12);
  --line-2: rgba(244, 241, 234, 0.22);
  --gold: #c9a15a;
  --gold-2: #e3c489;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Switzer", "Inter", system-ui, -apple-system, sans-serif;

  --pad: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1600px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }
@media (hover: none) { button { cursor: pointer; } }

::selection { background: var(--gold); color: #1a140a; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  background: var(--ink); color: var(--bg); padding: 0.6rem 1rem; border-radius: 4px;
}
.skip-link:focus { top: 1rem; }

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.section-title {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(2.6rem, 7vw, 6rem); line-height: 0.98;
  letter-spacing: -0.015em;
}
.section-lead {
  max-width: 46ch; color: var(--faint); font-size: clamp(1rem, 1.4vw, 1.2rem);
  margin-top: 1.4rem;
}
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head .eyebrow { margin-bottom: 1.1rem; }

/* ---------- Viewfinder corner brackets ---------- */
.vfc, .vfc--tl, .vfc--tr, .vfc--bl, .vfc--br {
  position: absolute; width: 18px; height: 18px; pointer-events: none;
  border: 0 solid var(--gold); opacity: 0.85; z-index: 3;
  transition: all 0.5s var(--ease);
}
.vfc--tl { top: 14px; left: 14px; border-top-width: 1.5px; border-left-width: 1.5px; }
.vfc--tr { top: 14px; right: 14px; border-top-width: 1.5px; border-right-width: 1.5px; }
.vfc--bl { bottom: 14px; left: 14px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.vfc--br { bottom: 14px; right: 14px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.8rem; font-size: 0.82rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500; border-radius: 100px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}
.btn--solid { background: var(--ink); color: #14100a; }
.btn--solid:hover { background: var(--gold-2); }
.btn--ghost { border: 1px solid var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); }

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 9000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05; mix-blend-mode: overlay;
  animation: grain 0.5s steps(2) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 50% { transform: translate(-4%, 3%); } 100% { transform: translate(3%, -2%); }
}

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; width: 46px; height: 46px; z-index: 9500;
  pointer-events: none; transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor__c {
  position: absolute; width: 9px; height: 9px; border: 0 solid #fff;
  transition: all 0.35s var(--ease);
}
.cursor__c--tl { top: 0; left: 0; border-top-width: 1.5px; border-left-width: 1.5px; }
.cursor__c--tr { top: 0; right: 0; border-top-width: 1.5px; border-right-width: 1.5px; }
.cursor__c--bl { bottom: 0; left: 0; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.cursor__c--br { bottom: 0; right: 0; border-bottom-width: 1.5px; border-right-width: 1.5px; }
.cursor__dot {
  position: absolute; top: 50%; left: 50%; width: 3px; height: 3px; border-radius: 50%;
  background: #fff; transform: translate(-50%, -50%); transition: opacity 0.3s;
}
.cursor__label {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; white-space: nowrap; opacity: 0;
}
.cursor.is-hover { width: 76px; height: 76px; }
.cursor.is-view { width: 96px; height: 96px; }
.cursor.is-view .cursor__dot { opacity: 0; }
.cursor.is-view .cursor__label { opacity: 1; }
@media (hover: none) { .cursor { display: none; } }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9800; display: grid; place-items: center;
  background: var(--bg); color: var(--ink); transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__logo { width: clamp(150px, 28vw, 230px); height: auto; animation: loaderfade 1s var(--ease) both; }
@keyframes loaderfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.loader__mark { color: var(--gold); }
.loader__sn { font-family: var(--serif); font-size: 26px; fill: var(--ink); letter-spacing: 1px; }
.loader__mark .vf { stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw 1.1s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* JS-driven hidden states (graceful no-JS fallback) */
.js .reveal { opacity: 0; transform: translateY(30px); }
.js .hero__title .line { opacity: 0; }
html:not(.js) .loader { display: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--pad); transition: padding 0.5s var(--ease), background 0.5s var(--ease), backdrop-filter 0.5s;
}
.nav.is-scrolled {
  padding: 0.85rem var(--pad);
  background: rgba(11, 11, 13, 0.7); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav__logo { height: 36px; width: auto; display: block; }
.nav.is-scrolled .nav__logo { height: 32px; transition: height 0.5s var(--ease); }
.nav__mark { position: relative; display: inline-grid; place-items: center; width: 40px; height: 40px; }
.nav__mark .vfc { width: 11px; height: 11px; opacity: 1; }
.nav__mark .vfc--tl { top: 0; left: 4px; } .nav__mark .vfc--tr { top: 0; right: 4px; }
.nav__mark .vfc--bl { bottom: 0; left: 4px; } .nav__mark .vfc--br { bottom: 0; right: 4px; }
.nav__sn { font-family: var(--serif); font-size: 1.1rem; letter-spacing: 0.5px; }
.nav__word { font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.02em; }
.nav__links { display: flex; gap: 2.2rem; }
.nav__links a { font-size: 0.82rem; letter-spacing: 0.05em; color: var(--faint); transition: color 0.3s; position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease); }
.nav__links a:hover { color: var(--ink); } .nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 1.5rem; }
.lang { display: flex; gap: 0.35rem; }
.lang__btn { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--muted); padding: 0.2rem 0.35rem; transition: color 0.3s; }
.lang__btn.is-active { color: var(--gold); }
.lang__btn:hover { color: var(--ink); }

.nav__toggle { display: none; width: 36px; height: 30px; position: relative; }
.nav__toggle span { position: absolute; left: 6px; right: 6px; height: 1.5px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav__toggle span:first-child { top: 11px; } .nav__toggle span:last-child { bottom: 11px; }
.nav__toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.nav__toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* Mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 999; background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center; padding: var(--pad);
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu__links { display: flex; flex-direction: column; gap: 1.2rem; }
.menu__links a { font-family: var(--serif); font-size: clamp(2rem, 9vw, 3.2rem); letter-spacing: -0.01em; }
.menu__foot { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.5rem; color: var(--faint); }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100svh; min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(11,11,13,0.95) 0%, rgba(11,11,13,0.35) 45%, rgba(11,11,13,0.5) 100%),
    radial-gradient(120% 80% at 50% 20%, transparent 40%, rgba(11,11,13,0.6) 100%);
}
.hero__frame { position: absolute; inset: clamp(1rem, 3vw, 2.4rem); z-index: 2; pointer-events: none; }
.hero__frame .vfc { width: 34px; height: 34px; opacity: 0.7; }
.hero__frame .vfc--tl { top: 0; left: 0; } .hero__frame .vfc--tr { top: 0; right: 0; }
.hero__frame .vfc--bl { bottom: 0; left: 0; } .hero__frame .vfc--br { bottom: 0; right: 0; }
.hero__content { position: relative; z-index: 2; padding: 0 var(--pad) clamp(3.5rem, 9vh, 8rem); max-width: 1100px; }
.hero__eyebrow { font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.hero__title { font-family: var(--serif); font-weight: 360; font-size: clamp(3rem, 11vw, 9.5rem); line-height: 0.94; letter-spacing: -0.02em; }
.hero__title .line { display: block; }
.hero__title .line--em { font-style: italic; color: var(--gold-2); }
.hero__sub { max-width: 44ch; margin-top: 1.8rem; color: var(--faint); font-size: clamp(1rem, 1.4vw, 1.25rem); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__scroll {
  position: absolute; right: var(--pad); bottom: clamp(2rem, 6vh, 4rem); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--faint);
  writing-mode: vertical-rl;
}
.hero__scrollline { width: 1px; height: 60px; background: linear-gradient(var(--gold), transparent); }

/* ---------- Manifesto ---------- */
.manifesto { padding: clamp(6rem, 14vh, 12rem) var(--pad); }
.manifesto__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; max-width: var(--maxw); margin: 0 auto; }
.manifesto__portrait { position: relative; }
.manifesto__portrait img { width: 100%; filter: grayscale(0.15) contrast(1.03); }
.manifesto__portrait .vfc { width: 28px; height: 28px; }
.manifesto__statement { font-family: var(--serif); font-weight: 360; font-size: clamp(1.8rem, 3.6vw, 3.3rem); line-height: 1.08; letter-spacing: -0.01em; margin: 1.2rem 0 1.8rem; }
.manifesto__text p { color: var(--faint); max-width: 52ch; font-size: clamp(1rem, 1.3vw, 1.15rem); }
.manifesto__sign { width: 200px; height: auto; margin-top: 2rem; opacity: 0.85; }

/* ---------- Work / gallery ---------- */
.work { padding: clamp(4rem, 8vh, 8rem) var(--pad) clamp(5rem, 10vh, 9rem); max-width: var(--maxw); margin: 0 auto; }
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.6rem; }
.filter {
  font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  padding: 0.55rem 1.1rem; border: 1px solid var(--line); border-radius: 100px; transition: all 0.35s var(--ease);
}
.filter:hover { color: var(--ink); border-color: var(--line-2); }
.filter.is-active { color: #14100a; background: var(--ink); border-color: var(--ink); }

.gallery {
  columns: 3; column-gap: clamp(0.8rem, 1.6vw, 1.6rem);
}
.shot { position: relative; break-inside: avoid; margin-bottom: clamp(0.8rem, 1.6vw, 1.6rem); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.shot.is-hidden { display: none; }
.shot__btn { display: block; position: relative; width: 100%; overflow: hidden; background: var(--panel); }
.shot__btn img { width: 100%; transition: transform 0.9s var(--ease), filter 0.9s var(--ease); will-change: transform; filter: brightness(0.92); }
.shot:hover .shot__btn img { transform: scale(1.05); filter: brightness(1.04); }
.shot__vf { position: absolute; inset: 12px; z-index: 4; opacity: 0; transition: opacity 0.4s var(--ease), inset 0.5s var(--ease); }
.shot__vf .vfc { width: 22px; height: 22px; }
.shot__vf .vfc--tl { top: 0; left: 0; } .shot__vf .vfc--tr { top: 0; right: 0; }
.shot__vf .vfc--bl { bottom: 0; left: 0; } .shot__vf .vfc--br { bottom: 0; right: 0; }
.shot:hover .shot__vf { opacity: 1; inset: 18px; }
.shot figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.85rem 0.2rem 0; }
.shot__t { font-family: var(--serif); font-size: 1.05rem; font-style: italic; }
.shot__l { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.work__more { margin: 3.5rem 0 1.4rem; color: var(--faint); max-width: 40ch; }

/* ---------- Services ---------- */
.services { padding: clamp(5rem, 12vh, 11rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.svc { border-top: 1px solid var(--line); }
.svc__row {
  display: grid; grid-template-columns: 4rem 1fr clamp(140px, 22vw, 320px);
  gap: clamp(1rem, 4vw, 4rem); align-items: center;
  padding: clamp(1.8rem, 4vw, 3.2rem) 0; border-bottom: 1px solid var(--line);
}
.svc__num { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); }
.svc__body h3 { font-family: var(--serif); font-weight: 380; font-size: clamp(1.6rem, 3.4vw, 2.8rem); line-height: 1.05; letter-spacing: -0.01em; display: flex; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
.svc__body p { color: var(--faint); margin-top: 0.9rem; max-width: 52ch; }
.badge { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); border-radius: 100px; padding: 0.3rem 0.7rem; }
.svc__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: grayscale(0.3) brightness(0.9); transition: filter 0.6s var(--ease), transform 0.6s var(--ease); }
.svc__row:hover .svc__img { filter: grayscale(0) brightness(1); transform: scale(1.02); }
.services .btn { margin-top: 3rem; }

/* ---------- Prints ---------- */
.prints { padding: clamp(5rem, 12vh, 11rem) var(--pad); background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.prints .section-head, .prints .prints__row, .prints > .btn { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.prints__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 2.5rem); }
.print { position: relative; }
.print img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform 0.7s var(--ease); }
.print:hover img { transform: scale(1.03); }
.print figcaption { font-family: var(--serif); font-style: italic; font-size: 1.05rem; margin-top: 0.9rem; }
.prints > .btn { display: flex; width: fit-content; margin-top: 3rem; }

/* ---------- About ---------- */
.about { padding: clamp(6rem, 14vh, 12rem) var(--pad); }
.about__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; max-width: var(--maxw); margin: 0 auto; }
.about__text p { color: var(--faint); margin-top: 1.4rem; max-width: 54ch; font-size: clamp(1rem, 1.3vw, 1.15rem); }
.about__text .section-title { margin-top: 1rem; }
.about__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2.2rem; }
.about__facts li { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); border: 1px solid var(--line-2); border-radius: 100px; padding: 0.5rem 1rem; }
.about__portrait { position: relative; }
.about__portrait img { width: 100%; filter: grayscale(0.1) contrast(1.04); }
.about__portrait .vfc { width: 28px; height: 28px; }

/* ---------- Contact ---------- */
.contact { padding: clamp(6rem, 14vh, 12rem) var(--pad); background: var(--bg-2); border-top: 1px solid var(--line); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); max-width: var(--maxw); margin: 0 auto; }
.contact__links { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 2.5rem; }
.contact__links a { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 2rem); width: fit-content; position: relative; color: var(--faint); transition: color 0.3s; }
.contact__links a::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 0; height: 1px; background: var(--gold); transition: width 0.4s var(--ease); }
.contact__links a:hover { color: var(--ink); } .contact__links a:hover::after { width: 100%; }

.contact__form { display: flex; flex-direction: column; gap: 1.3rem; }
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-2);
  color: var(--ink); font-family: var(--sans); font-size: 1rem; padding: 0.9rem 0; transition: border-color 0.4s var(--ease);
}
.field select { cursor: none; } @media (hover: none) { .field select { cursor: pointer; } }
.field select option { background: var(--panel); color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field label {
  position: absolute; left: 0; top: 0.9rem; color: var(--muted); pointer-events: none;
  transition: transform 0.35s var(--ease), font-size 0.35s var(--ease), color 0.35s var(--ease);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.4rem); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gold);
}
.field label.field__static { position: static; transform: none; font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gold); display: block; margin-bottom: 0.5rem; order: -1; }
.field:has(select) { display: flex; flex-direction: column; }
.hp { position: absolute; left: -9999px; }
.contact__form .btn { margin-top: 0.6rem; align-self: flex-start; }

/* ---------- Footer ---------- */
.footer { padding: clamp(3rem, 6vw, 5rem) var(--pad) 2.5rem; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.footer__logo { width: 150px; height: auto; display: block; }
.footer__mark { position: relative; display: inline-grid; place-items: center; width: 44px; height: 44px; }
.footer__mark .vfc { width: 12px; height: 12px; opacity: 1; }
.footer__mark .vfc--tl { top: 0; left: 4px; } .footer__mark .vfc--tr { top: 0; right: 4px; }
.footer__mark .vfc--bl { bottom: 0; left: 4px; } .footer__mark .vfc--br { bottom: 0; right: 4px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.footer__nav a { font-size: 0.82rem; color: var(--faint); transition: color 0.3s; }
.footer__nav a:hover { color: var(--ink); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; margin-top: 2rem; font-size: 0.76rem; color: var(--muted); }
.footer__bottom a:hover { color: var(--gold); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 9700; display: grid; place-items: center;
  background: rgba(7, 7, 9, 0.96); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: min(90vw, 1400px); max-height: 86vh; object-fit: contain; transform: scale(0.96); transition: transform 0.5s var(--ease); box-shadow: 0 40px 120px rgba(0,0,0,0.6); }
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__cap { position: absolute; bottom: 4vh; left: 0; right: 0; text-align: center; color: var(--faint); font-family: var(--serif); font-style: italic; font-size: 1rem; }
.lightbox__close { position: absolute; top: 4vh; right: 4vw; width: 44px; height: 44px; }
.lightbox__close .vfc { width: 14px; height: 14px; border-color: var(--ink); }
.lightbox__close .vfc--tl { top: 8px; left: 8px; } .lightbox__close .vfc--tr { top: 8px; right: 8px; }
.lightbox__close .vfc--bl { bottom: 8px; left: 8px; } .lightbox__close .vfc--br { bottom: 8px; right: 8px; }
.lightbox__close:hover .vfc { border-color: var(--gold); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.5rem; color: var(--faint); width: 60px; height: 60px; transition: color 0.3s; }
.lightbox__nav:hover { color: var(--gold); }
.lightbox__nav--prev { left: 2vw; } .lightbox__nav--next { right: 2vw; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .gallery { columns: 2; }
  .manifesto__grid, .about__grid { grid-template-columns: 1fr; }
  .manifesto__portrait, .about__portrait { max-width: 460px; }
  .contact__inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .gallery { columns: 1; }
  .svc__row { grid-template-columns: 1fr; gap: 1.2rem; }
  .svc__num { display: none; }
  .svc__img { aspect-ratio: 16 / 10; max-height: 260px; }
  .prints__row { grid-template-columns: 1fr; gap: 2rem; }
  .hero__scroll { display: none; }
  .hero { align-items: center; }
  .hero__content { padding-bottom: 0; padding-top: 22vh; }
}

/* ---------- Loader counter ---------- */
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.loader__bar { width: 180px; height: 2px; background: var(--line); overflow: hidden; }
.loader__fill { display: block; width: 100%; height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.loader__count { font-family: var(--serif); font-size: 1.3rem; color: var(--faint); letter-spacing: 0.05em; }
.loader__pct { color: var(--gold); }

/* ---------- Scroll progress ---------- */
.scrollbar { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 1200; pointer-events: none; }
.scrollbar__fill { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-2)); transform: scaleX(0); transform-origin: left; }

/* ---------- Nav active link ---------- */
.nav__links a.is-current { color: var(--ink); }
.nav__links a.is-current::after { width: 100%; }

/* ---------- Hero media (pointer parallax) ---------- */
.hero__media { transform: scale(1.07); transition: transform 0.5s var(--ease); }
.hero__content { transition: transform 0.5s var(--ease); }

/* ---------- Marquee ---------- */
.marquee-band { padding: clamp(1.4rem, 3vw, 2.6rem) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.marquee { overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; white-space: nowrap; will-change: transform; }
.marquee__group { font-family: var(--serif); font-style: italic; font-weight: 360; font-size: clamp(1.6rem, 4.5vw, 3.4rem); line-height: 1.15; color: var(--faint); padding-right: 0.3em; }

/* ---------- Stats ---------- */
.stats { padding: clamp(4rem, 9vh, 8rem) var(--pad); border-top: 1px solid var(--line); }
.stats__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); text-align: center; }
.stat { display: flex; flex-direction: column; gap: 0.7rem; align-items: center; }
.stat__num { font-family: var(--serif); font-weight: 340; font-size: clamp(3rem, 8vw, 6rem); line-height: 1; color: var(--gold-2); }
.stat__label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); max-width: 16ch; }

/* ---------- Footer back-to-top ---------- */
.footer__top { flex-wrap: wrap; row-gap: 1.5rem; }
.footer__topbtn { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); transition: color 0.3s; will-change: transform; }
.footer__topbtn:hover { color: var(--gold); }
.footer__arrow { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line-2); border-radius: 50%; font-size: 1rem; transition: border-color 0.3s, transform 0.4s var(--ease); }
.footer__topbtn:hover .footer__arrow { border-color: var(--gold); transform: translateY(-3px); }

/* ---------- Contact sent state ---------- */
.contact__sent { display: none; font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2vw, 1.6rem); color: var(--gold-2); max-width: 34ch; }
.contact__form.is-sent .field, .contact__form.is-sent > .btn { display: none; }
.contact__form.is-sent .contact__sent { display: block; }

/* ---------- Word-by-word heading reveal ---------- */
.word { display: inline-block; overflow: hidden; vertical-align: top; }
.word > span { display: inline-block; will-change: transform; }

/* ---------- Gallery reveal initial state ---------- */
.js .shot { opacity: 0; }

/* ---------- Lightbox image (GSAP controls transform) ---------- */
.lightbox__img { transform: none; transition: none; }
.lightbox.is-open .lightbox__img { transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .grain { animation: none; }
  .js .reveal { opacity: 1; transform: none; }
  .js .hero__title .line { opacity: 1; }
  .js .shot { opacity: 1; }
  .hero__img { height: 100%; }
  .hero__media { transform: none; }
}
