/* ============================================================
   KUSHI — studio site
   Ported from "Studio Site.dc.html" (Claude Design canvas)
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --bone: #efeae0;
  --ink: #141618;
  --ink-soft: #2a2c2e;
  --muted: #6d6f6a;
  --dark: #141618;
  --darker: #0f1112;
  --gold: #d9b63a;
  --rec: #c73b31;

  --sans: Archivo, Helvetica, "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-heavy: cubic-bezier(.76, 0, .18, 1);

  --gut: clamp(18px, 3.4vw, 48px);
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bone);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
body { font-family: var(--sans); min-height: 100vh; }
/* Clip the document flow, not the fixed layers that must escape it */
main { overflow-x: clip; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
img { max-width: 100%; }
::-webkit-scrollbar { width: 0; height: 0; }
html { scrollbar-width: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Surfaces the browser would otherwise style for us */
::selection { background: var(--ink); color: var(--bone); }
.showcase ::selection,
.hero ::selection,
.interlude ::selection,
.player ::selection { background: var(--bone); color: var(--ink); }
input { caret-color: var(--ink); }

/* Measurements and money should not reflow as their digits change */
.reel__time,
.player__ctrls,
.acquire-row__price,
.shop__price b,
.totals,
.summary__price b,
.strip__meta { font-variant-numeric: tabular-nums; }

/* body owns the cursor state so the custom cursor can replace it */
body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor [data-open] { cursor: none; }

/* ---------- keyframes ---------- */
@keyframes heroReveal { from { clip-path: inset(100% 0 0 0); transform: scale(1.12); } to { clip-path: inset(0 0 0 0); transform: scale(1); } }
@keyframes riseBig    { from { opacity: 0; transform: translateY(12%); } to { opacity: 1; transform: none; } }
@keyframes fadeIn     { from { opacity: 0; } to { opacity: 1; } }
@keyframes lineGrow   { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes kenburns   { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes blink      { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }

/* ---------- typography helpers ---------- */
.mono {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; }

.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .9;
}

.link-ul {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  white-space: nowrap;
  transition: letter-spacing .3s var(--ease);
}
.link-ul:hover { letter-spacing: .24em; }
.link-ul--light { border-bottom-color: rgba(239, 234, 224, .6); }

.btn {
  border: 0;
  padding: 18px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s, transform .25s, color .25s;
}
.btn--dark { background: var(--ink); color: var(--bone); }
.btn--dark:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn--light { background: var(--bone); color: var(--ink); }
.btn--light:hover { background: var(--gold); transform: translateY(-2px); }

/* ---------- overlays ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='.9' numOctaves='2'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.cursor__dot {
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: var(--bone);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  overflow: hidden;
  white-space: nowrap;
  transition: width .35s var(--ease), height .35s var(--ease);
}
.cursor.is-labelled .cursor__dot { width: 76px; height: 76px; mix-blend-mode: normal; }

/* ---------- nav ---------- */
/* Difference blending keeps the nav readable over flat ground, but a painting
   is not flat ground. A scrim in the page's own colour carries it. */
.nav-scrim {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(84px, 12vh, 132px);
  z-index: 49;
  pointer-events: none;
  opacity: 0;
  transition: opacity .45s ease;
  background: linear-gradient(to bottom, rgba(239, 234, 224, .94) 0%, rgba(239, 234, 224, .72) 45%, rgba(239, 234, 224, 0) 100%);
}
.nav-scrim.is-visible { opacity: 1; }
.nav-scrim.is-dark {
  background: linear-gradient(to bottom, rgba(20, 22, 24, .88) 0%, rgba(20, 22, 24, .6) 45%, rgba(20, 22, 24, 0) 100%);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px var(--gut);
  mix-blend-mode: difference;
  color: var(--bone);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: fadeIn 1.2s 1.3s both;
}
.nav.is-over-dark { mix-blend-mode: normal; }
.nav__brand { font-family: var(--sans); font-weight: 800; font-size: 15px; letter-spacing: .32em; }
.nav__links { display: flex; gap: clamp(16px, 2.6vw, 40px); align-items: center; }
.nav__links a { opacity: .85; transition: opacity .2s, letter-spacing .3s; }
.nav__links a:hover { opacity: 1; letter-spacing: .28em; }

@media (max-width: 640px) {
  .nav { font-size: 11px; letter-spacing: .12em; }
  .nav__links { gap: 14px; }
  .nav__links a[data-nav="process"] { display: none; }
}

/* ---------- page shell ---------- */
#page { transition: opacity .35s ease; }
#page.is-fading { opacity: 0; }
.screen { animation: fadeIn .8s ease both; }

/* gradient transitions between light and dark bands */
.band-to-bone { height: clamp(120px, 24vh, 260px); background: linear-gradient(to bottom, #141618 0%, #3a3c3d 30%, #c9c3b6 70%, #efeae0 100%); }
.band-to-dark { height: clamp(120px, 24vh, 260px); background: linear-gradient(to bottom, #efeae0 0%, #c9c3b6 30%, #3a3c3d 70%, #141618 100%); }
.band-to-bone--tall { height: clamp(160px, 32vh, 360px); background: linear-gradient(to bottom, #141618 0%, #3a3c3d 25%, #c9c3b6 65%, #efeae0 100%); }
.band-to-bone--short { height: clamp(100px, 18vh, 200px); }

/* ---------- reveal ---------- */
[data-reveal] { will-change: opacity, transform; }
[data-reveal].is-hidden { opacity: 0; transform: translateY(40px); }
[data-reveal].is-hidden[data-reveal="mask"] { transform: translateY(28px); }
[data-reveal].is-hidden[data-reveal="mask"] img { transform: scale(1.14); }
[data-reveal].is-shown { opacity: 1; transform: none; }
[data-reveal].is-shown img { transform: none; }

/* ---------- placeholder for missing photography ---------- */
.ph {
  display: grid;
  place-items: end start;
  padding: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  /* never intercept clicks meant for the controls underneath */
  pointer-events: none;
}
.ph--onlight { color: var(--ink); opacity: .6; }
.ph--tiny { padding: 10px; font-size: 8px; letter-spacing: .14em; }
.media { overflow: hidden; }
.media img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   HOME — hero
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--dark);
  color: var(--bone);
}
.hero__ambient {
  position: absolute;
  left: -10%;
  top: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  filter: blur(70px) saturate(1.15);
  opacity: .42;
  transition: transform 1.4s var(--ease);
  animation: fadeIn 2.6s .3s both;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 62% 42%, rgba(20,22,24,0) 0%, rgba(20,22,24,.55) 55%, rgba(20,22,24,.9) 100%);
}
.hero__wordmark-wrap {
  position: absolute;
  left: clamp(6px, 1.6vw, 28px);
  bottom: clamp(-10px, -1.5vh, 0px);
  pointer-events: none;
  transform-origin: left bottom;
}
.hero__wordmark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: min(clamp(96px, 23vw, 480px), 21vh);
  line-height: .76;
  letter-spacing: -.055em;
  color: var(--bone);
  animation: riseBig 1.7s .55s var(--ease) both;
}
.hero__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(76px, 13vh, 130px) var(--gut) clamp(44px, 9vh, 96px);
  pointer-events: none;
}
.hero__frame {
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 2/3;
  margin-left: clamp(0px, 14vw, 300px);
  transition: transform 1.1s var(--ease);
}
.hero__shadow {
  position: absolute;
  inset: 0;
  box-shadow: 0 90px 140px -50px rgba(0,0,0,.85), 0 30px 60px -30px rgba(0,0,0,.6);
  animation: fadeIn 1.6s 1.2s both;
}
.hero__reveal {
  position: absolute;
  inset: 0;
  overflow: hidden;
  animation: heroReveal 1.9s .15s var(--ease-heavy) both;
}
.hero__reveal img { display: block; width: 100%; height: 100%; object-fit: cover; }

.hero__note {
  position: absolute;
  top: clamp(76px, 11vh, 120px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(239,234,224,.8);
  line-height: 2;
  pointer-events: none;
}
.hero__note--l { left: var(--gut); animation: fadeIn 1s 1.9s both; }
.hero__note--r { right: var(--gut); text-align: right; animation: fadeIn 1s 2.1s both; }

.hero__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 26px var(--gut) clamp(20px, 4vh, 40px) 64px;
  background: linear-gradient(to left, rgba(20,22,24,.8), rgba(20,22,24,0));
  text-align: right;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1.9;
  animation: fadeIn 1s 2.3s both;
  pointer-events: none;
  max-width: min(54%, 340px);
}
.hero__rule {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 56px;
  background: rgba(239,234,224,.6);
  transform-origin: top;
  animation: lineGrow 1.2s 2.5s var(--ease) both;
}

/* ============================================================
   HOME — selected works strip
   ============================================================ */
.strip { position: relative; height: 230vh; }
.strip__inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 3vh, 40px);
  overflow: hidden;
  padding: clamp(40px, 6vh, 72px) 0;
}
.strip__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding: 0 var(--gut);
}
.strip__head h2 { font-size: clamp(40px, 6vw, 104px); }
.strip__meta { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); text-align: right; line-height: 1.9; white-space: nowrap; }
.strip__track {
  display: flex;
  gap: clamp(24px, 5vw, 96px);
  align-items: flex-start;
  padding: 0 var(--gut);
  transition: transform .25s var(--ease);
  will-change: transform;
  scrollbar-width: none;
}
.strip__item { flex: 0 0 auto; cursor: pointer; display: flex; flex-direction: column; gap: 12px; }
.strip__item .media img { transition: transform 1.1s var(--ease); }
.strip__item:hover .media img { transform: scale(1.04); }
.strip__cap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.strip__all {
  flex: 0 0 auto;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 clamp(24px, 6vw, 120px);
}
.strip__all-big { font-family: var(--serif); font-size: clamp(36px, 5vw, 88px); line-height: 1; letter-spacing: -.02em; white-space: nowrap; }
.strip__tail { flex: 0 0 var(--gut); }

/* touch / narrow: strip becomes a normal swipeable rail */
@media (pointer: coarse), (max-width: 760px) {
  .strip { height: auto; }
  .strip__inner { position: relative; height: auto; }
  .strip__track { overflow-x: auto; transform: none !important; -webkit-overflow-scrolling: touch; }
}

/* ============================================================
   HOME — process
   ============================================================ */
.process-home { padding: clamp(56px, 9vh, 120px) 0 0; position: relative; }
.process-home__head {
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(20px, 3vh, 40px);
}
.process-home__head h2 { font-size: clamp(56px, 9vw, 160px); line-height: .85; }
.lede { margin: 0; font-size: clamp(16px, 1.3vw, 20px); line-height: 1.5; font-weight: 300; max-width: 38ch; color: var(--ink-soft); }
.lede--end { justify-self: end; }
.process-home__pad { padding: 0 var(--gut); }
/* The reel opens out as it enters. Clip-path composites; growing its height and
   the wrapper's padding re-laid out the page on every scroll frame. */
.reel {
  position: relative;
  height: clamp(420px, 84vh, 100vh);
  overflow: hidden;
  background: var(--darker);
  cursor: pointer;
  clip-path: inset(0);
  will-change: clip-path;
}
.reel__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; animation: kenburns 14s linear infinite alternate; }
.reel__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,17,18,.8), rgba(15,17,18,0) 40%), linear-gradient(to bottom, rgba(15,17,18,.7), rgba(15,17,18,0) 30%); }
.reel__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone);
  max-width: 70%;
}
.reel__rec { width: 7px; height: 7px; border-radius: 50%; background: var(--rec); animation: blink 1.6s infinite; flex: 0 0 auto; }
.reel__tag--r { left: auto; right: 20px; }
.reel__foot { position: absolute; left: 20px; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 14px; color: var(--bone); }
.reel__row { display: flex; justify-content: space-between; align-items: end; gap: 16px; flex-wrap: wrap; }
.reel__stage { font-family: var(--serif); font-size: clamp(28px, 3.6vw, 56px); line-height: 1; letter-spacing: -.02em; }
.reel__time { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; }
.reel__bar { position: relative; height: 2px; background: rgba(239,234,224,.25); }
.reel__fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--bone); width: 0; }
.reel__stages {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(239,234,224,.6);
}
@media (max-width: 620px) { .reel__stages span:nth-child(2), .reel__stages span:nth-child(4) { display: none; } }
.process-home__foot {
  padding: 20px var(--gut) 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   dark showcase (latest work / artwork hero)
   ============================================================ */
/* The oversized title is the section's heading, not a texture behind the art.
   It gets its own row so the canvas can never cut a word in half. */
.showcase {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark);
  color: var(--bone);
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: center;
  gap: clamp(20px, 3.5vh, 48px);
  padding: clamp(96px, 13vh, 150px) var(--gut) clamp(24px, 4vh, 56px);
}
.showcase__ambient {
  position: absolute;
  left: -10%;
  top: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  filter: blur(80px) saturate(1.1);
  opacity: .36;
  transition: transform 1.4s var(--ease);
}
.showcase__vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at 58% 45%, rgba(20,22,24,0) 0%, rgba(20,22,24,.5) 55%, rgba(20,22,24,.92) 100%); }
.showcase__type {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: min(clamp(38px, 7.4vw, 132px), 15vh);
  line-height: .86;
  letter-spacing: -.035em;
  color: var(--bone);
  text-wrap: balance;
}
.showcase__grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.showcase__figure { display: flex; justify-content: center; }
.showcase__frame {
  position: relative;
  height: clamp(320px, 52vh, 620px);
  aspect-ratio: 2/3;
  max-width: 100%;
  transition: transform .25s var(--ease);
}
.showcase__frame--link { cursor: pointer; }
.showcase__shadow { position: absolute; inset: 0; box-shadow: 0 90px 140px -50px rgba(0,0,0,.9), 0 30px 60px -30px rgba(0,0,0,.6); }
.showcase__img { position: absolute; inset: 0; overflow: hidden; }
.showcase__img img { display: block; width: 100%; height: 100%; object-fit: cover; }
.showcase__body { display: flex; flex-direction: column; gap: 20px; max-width: 46ch; justify-self: start; }
.showcase__eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(239,234,224,.65); }
.showcase__about { margin: 0; font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; font-weight: 300; color: rgba(239,234,224,.88); }
.showcase__meta {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(239,234,224,.65);
  line-height: 1.9;
  white-space: nowrap;
}
.showcase__cta { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }


/* ============================================================
   HOME — statement + archive interlude
   ============================================================ */
.interlude { background: var(--dark); color: var(--bone); padding: 0 var(--gut) clamp(56px, 9vh, 120px); }
.interlude__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(32px, 5vw, 96px); align-items: end; }
.interlude__col { display: flex; flex-direction: column; gap: 28px; }
.interlude__eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(239,234,224,.55); }
.statement { margin: 0; font-family: var(--serif); font-size: clamp(30px, 3.8vw, 64px); line-height: 1.05; letter-spacing: -.015em; max-width: 22ch; }
.interlude__links { display: flex; gap: 32px; flex-wrap: wrap; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.interlude__thumbs { display: flex; gap: 14px; align-items: flex-end; justify-content: flex-end; flex-wrap: wrap; }
.thumb { width: clamp(96px, 11vw, 150px); cursor: pointer; display: flex; flex-direction: column; gap: 8px; }
.thumb .media img { aspect-ratio: 4/5; filter: saturate(.7); transition: transform .9s var(--ease), filter .6s; }
.thumb:hover .media img { transform: scale(1.06); filter: saturate(1); }
.thumb .media > .ph { aspect-ratio: 4/5; }
.thumb__cap { font-family: var(--mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(239,234,224,.5); display: flex; justify-content: space-between; }

/* ============================================================
   HOME — shop
   ============================================================ */
.shop { padding: 0 0 clamp(56px, 9vh, 120px); }
.shop__head { padding: 0 var(--gut); display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: clamp(32px, 5vh, 64px); }
.shop__head h2 { font-size: clamp(44px, 7vw, 120px); }
.shop__list { display: flex; flex-direction: column; gap: clamp(56px, 9vh, 120px); }
.shop__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: 0 var(--gut);
}
.shop__figure { display: flex; cursor: pointer; }
.shop__media { overflow: hidden; box-shadow: 0 60px 90px -50px rgba(20,22,24,.5); }
.shop__media img { display: block; width: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.shop__figure:hover .shop__media img { transform: scale(1.04); }
.shop__body { display: flex; flex-direction: column; gap: 24px; max-width: 520px; }
.shop__body h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 4.4vw, 72px); line-height: .95; letter-spacing: -.02em; }
.shop__spec { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); line-height: 2; }
.shop__price { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.shop__price b { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3vw, 44px); letter-spacing: -.02em; }
.shop__actions { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

/* ============================================================
   WORK archive
   ============================================================ */
.pagehead {
  padding: clamp(120px, 18vh, 200px) var(--gut) 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 7vh, 96px);
}
.pagetitle {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 12vw, 220px);
  line-height: .85;
  letter-spacing: -.03em;
  animation: riseBig 1s .1s var(--ease) both;
}
.filters { display: flex; gap: clamp(14px, 2vw, 28px); font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; animation: fadeIn 1s .5s both; flex-wrap: wrap; }
.filters a { padding-bottom: 4px; border-bottom: 1px solid transparent; color: var(--muted); transition: color .2s, border-color .2s; }
.filters a.is-active { border-bottom-color: var(--ink); color: var(--ink); }

.worksgrid {
  padding: 0 var(--gut) clamp(80px, 14vh, 180px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 72px) clamp(12px, 2vw, 32px);
  align-items: start;
  max-width: 1680px;
  margin-inline: auto;
}
.workcard { cursor: pointer; display: flex; flex-direction: column; gap: 14px; animation: riseBig .9s both; }
.workcard .media img { display: block; width: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.workcard:hover .media img { transform: scale(1.04); }
.workcard__row { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.workcard__title { font-family: var(--serif); font-size: clamp(20px, 1.8vw, 28px); letter-spacing: -.01em; }
.workcard__status { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.workcard__spec { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 860px) { .worksgrid .workcard { grid-column: span 6 !important; margin-top: 0 !important; } }
@media (max-width: 520px) { .worksgrid .workcard { grid-column: span 12 !important; } }

/* ============================================================
   PROCESS journal
   ============================================================ */
.journal { display: flex; flex-direction: column; gap: clamp(80px, 14vh, 200px); padding-bottom: clamp(80px, 14vh, 180px); }
.journal__entry { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(20px, 3vw, 56px); align-items: center; }
.journal__media { position: relative; height: clamp(320px, 64vh, 720px); overflow: hidden; background: var(--darker); cursor: pointer; }
.journal__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform 1.4s var(--ease); }
.journal__media:hover img { transform: scale(1.04); }
/* No still yet: the work's own ground rather than a dead black rectangle */
.journal__media--empty { background: var(--bone); }
.journal__unshot {
  position: absolute;
  inset: 0;
  opacity: .85;
}
.journal__unshot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 17, 18, .7), rgba(15, 17, 18, .12) 60%);
}
.journal__foot { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; justify-content: space-between; align-items: end; gap: 12px; color: var(--bone); }
.journal__hours { font-family: var(--serif); font-size: clamp(24px, 2.6vw, 40px); letter-spacing: -.02em; line-height: 1; }
.journal__body { padding: 0 var(--gut); display: flex; flex-direction: column; gap: 22px; max-width: 560px; }
.journal__body h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 4.6vw, 80px); line-height: .95; letter-spacing: -.02em; }
.journal__body p { margin: 0; font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; font-weight: 300; color: var(--ink-soft); }
.journal__actions { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: clamp(120px, 18vh, 200px) var(--gut) clamp(80px, 14vh, 180px); display: flex; flex-direction: column; gap: clamp(48px, 8vh, 96px); }
.about h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7.4vw, 136px);
  line-height: .92;
  letter-spacing: -.025em;
  max-width: 16ch;
  animation: riseBig 1s .1s var(--ease) both;
}
.about__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(32px, 5vw, 96px); align-items: start; animation: fadeIn 1s .5s both; }
.about__figure { position: relative; overflow: hidden; height: clamp(420px, 80vh, 860px); background: #d9d3c4; }
.about__figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 40% 50%; }
/* the caption blends against the photograph; give it the same footing the
   design gives its other over-image captions */
.about__figure::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(15, 17, 18, .65), rgba(15, 17, 18, 0));
  pointer-events: none;
}
.about__cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone);
}
.about__body { display: flex; flex-direction: column; gap: 24px; font-size: clamp(16px, 1.25vw, 19px); line-height: 1.65; font-weight: 300; color: var(--ink-soft); max-width: 54ch; }
.about__body p { margin: 0; }
.about__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 2;
  border-top: 1px solid rgba(20,22,24,.15);
  padding-top: 24px;
  margin-top: 8px;
}
.about__facts span { color: var(--ink); }
.about__facts a { color: var(--ink); border-bottom: 1px solid rgba(20,22,24,.3); }

/* ============================================================
   ARTWORK detail
   ============================================================ */
.acquire-row {
  padding: clamp(28px, 5vh, 56px) var(--gut);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(20,22,24,.15);
}
.acquire-row__specs {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 2;
  white-space: nowrap;
}
.acquire-row__specs b { font-weight: 400; color: var(--ink); }
.acquire-row__buy { display: flex; gap: 28px; align-items: center; justify-content: flex-end; flex-wrap: wrap; }
.acquire-row__price { font-family: var(--serif); font-size: clamp(34px, 3.6vw, 56px); letter-spacing: -.02em; }
.acquire-row__note { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); max-width: 30ch; line-height: 1.9; }
.acquire-row__note a { border-bottom: 1px solid var(--muted); }

.player-sec { padding-bottom: clamp(64px, 10vh, 140px); }
.player-sec__head { padding: 0 var(--gut); display: flex; justify-content: space-between; align-items: end; gap: 16px; flex-wrap: wrap; margin-bottom: clamp(24px, 4vh, 48px); }
.player-sec__head h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 6.4vw, 110px); line-height: .9; letter-spacing: -.02em; }
.player { position: relative; height: clamp(360px, 92vh, 1000px); background: var(--darker); overflow: hidden; }
.player__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: opacity .8s, transform 12s linear; }
.player.is-playing .player__poster { opacity: .95; transform: scale(1.08); }
.player__big {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(84px, 10vw, 128px);
  height: clamp(84px, 10vw, 128px);
  border-radius: 50%;
  border: 1px solid rgba(239,234,224,.7);
  background: rgba(15,17,18,.25);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, transform .3s, color .3s, opacity .3s;
}
.player__big:hover { background: var(--bone); color: var(--ink); transform: translate(-50%, -50%) scale(1.05); }
.player.is-playing .player__big { opacity: 0; pointer-events: none; }
.player__foot { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; display: flex; flex-direction: column; gap: 14px; color: var(--bone); }
.player__seek { position: relative; height: 16px; display: flex; align-items: center; cursor: pointer; }
.player__seek-track { position: absolute; left: 0; right: 0; height: 2px; background: rgba(239,234,224,.25); }
.player__seek-fill { position: absolute; left: 0; height: 2px; background: var(--bone); width: 0; }
.player__ctrls { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.player__ctrls a { border-bottom: 1px solid rgba(239,234,224,.6); padding-bottom: 2px; }
.player-sec__stats { padding: 24px var(--gut) 0; display: flex; gap: clamp(24px, 4vw, 64px); flex-wrap: wrap; font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); line-height: 2; }
.player-sec__stats b { font-weight: 400; color: var(--ink); }

.objects { padding: 0 var(--gut) clamp(64px, 10vh, 140px); }
.objects__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(12px, 2vw, 32px); align-items: start; }
.objects__item { display: flex; flex-direction: column; gap: 10px; }
.objects__item .media img { display: block; width: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.objects__item:hover .media img { transform: scale(1.05); }
.objects__cap { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 860px) { .objects__item { grid-column: span 6 !important; margin-top: 0 !important; } }

.details { padding: clamp(48px, 8vh, 96px) var(--gut); border-top: 1px solid rgba(20,22,24,.15); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 32px; }
.details__list { max-width: 560px; font-size: 15px; font-weight: 300; }
.details__row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(20,22,24,.12); }
.details__row:last-of-type { border-bottom: 0; }
.details__row dt { color: var(--muted); flex-shrink: 0; margin: 0; }
.details__row dd { margin: 0; text-align: right; }
.details__cta { margin-top: 32px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.details__cta em { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--muted); }

.more { padding: clamp(48px, 8vh, 96px) var(--gut) clamp(80px, 14vh, 180px); border-top: 1px solid rgba(20,22,24,.15); }
.more__head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.more__head h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 4vw, 64px); letter-spacing: -.02em; line-height: 1; }
.more__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); gap: clamp(16px, 2.5vw, 40px) clamp(12px, 2vw, 28px); }
.more__item { cursor: pointer; display: flex; flex-direction: column; gap: 12px; }
.more__item .media img { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 1s var(--ease); }
.more__item:hover .media img { transform: scale(1.04); }
.more__cap { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.more__cap span:first-child { font-family: var(--serif); font-size: 22px; }

.buybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  padding: 14px 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s, transform .5s var(--ease);
}
.buybar.is-visible { opacity: 1; transform: translateY(0); }
.buybar__inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--ink);
  color: var(--bone);
  padding: 10px 10px 10px 20px;
  box-shadow: 0 30px 60px -20px rgba(20,22,24,.6);
  max-width: 100%;
}
.buybar__title { font-family: var(--serif); font-size: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 40vw; }
.buybar__sub { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; opacity: .65; }
.buybar .btn { padding: 14px 20px; font-size: 11px; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout { padding: clamp(120px, 18vh, 200px) var(--gut) clamp(80px, 14vh, 180px); max-width: 1280px; margin: 0 auto; }
.checkout--empty {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
}
.checkout__empty-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.025em;
}
.checkout--empty .lede { max-width: 34ch; }
.checkout__empty-actions { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.checkout h1 { margin: 0 0 clamp(40px, 7vh, 80px); font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 8vw, 140px); line-height: .88; letter-spacing: -.025em; }
.checkout__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(32px, 6vw, 120px); align-items: start; }
.checkout__form { display: flex; flex-direction: column; gap: 36px; }
.field { display: flex; flex-direction: column; gap: 14px; }
.field input {
  width: 100%;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(20,22,24,.3);
  background: transparent;
  font-size: 17px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
}
.field input:focus { border-color: var(--ink); }
.field input::placeholder { color: var(--muted); }
.field__pair { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; }
.pay { display: flex; gap: 10px; flex-wrap: wrap; }
.pay button {
  padding: 12px 18px;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.pay button.is-active { background: var(--ink); color: var(--bone); }
.fineprint { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; color: var(--muted); line-height: 1.8; }
.checkout__submit { padding: 20px 30px; font-size: 12px; letter-spacing: .2em; align-self: flex-start; }
.summary { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 96px; }
.summary__item { display: grid; grid-template-columns: 96px 1fr; gap: 20px; align-items: start; }
.summary__item .media img { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.summary__item .media > .ph { aspect-ratio: 3/4; }
.summary__body { display: flex; flex-direction: column; gap: 8px; }
.summary__title { font-family: var(--serif); font-size: 24px; letter-spacing: -.01em; line-height: 1; }
.summary__spec { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); line-height: 1.9; }
.summary__price { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.summary__price b { font-family: var(--serif); font-weight: 400; font-size: 22px; }
.remove { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid rgba(20,22,24,.3); }
.totals { border-top: 1px solid rgba(20,22,24,.15); padding-top: 20px; display: flex; flex-direction: column; gap: 12px; font-size: 15px; font-weight: 300; }
.totals__row { display: flex; justify-content: space-between; gap: 12px; }
.totals__row span:first-child { color: var(--muted); }
.totals__row--grand { font-family: var(--serif); font-size: 28px; padding-top: 8px; }
.totals__row--grand span:first-child { color: inherit; }

/* ============================================================
   CONFIRMATION
   ============================================================ */
.done {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  padding: clamp(120px, 18vh, 200px) var(--gut) clamp(80px, 14vh, 180px);
}
.done__col { display: flex; flex-direction: column; gap: 28px; animation: riseBig 1s .1s var(--ease) both; }
.done__col h1 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 7vw, 120px); line-height: .9; letter-spacing: -.025em; }
.done__col p { margin: 0; font-size: clamp(16px, 1.25vw, 19px); line-height: 1.6; font-weight: 300; max-width: 46ch; color: var(--ink-soft); }
.done__ship { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); line-height: 2; }
.done__ship span { color: var(--ink); }
.done__items { display: flex; flex-direction: column; gap: 20px; animation: fadeIn 1.2s .6s both; }
.done__item { display: flex; flex-direction: column; gap: 12px; }
.done__item .media { box-shadow: 0 60px 90px -50px rgba(20,22,24,.5); }
.done__item .media img { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.done__item .media > .ph { aspect-ratio: 3/4; }
.done__cap { display: flex; justify-content: space-between; gap: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: clamp(48px, 8vh, 96px) var(--gut) 28px; border-top: 1px solid rgba(20,22,24,.12); display: flex; flex-direction: column; gap: clamp(32px, 6vh, 72px); }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 2.2;
  color: var(--muted);
}
.footer__grid a, .footer__grid b { color: var(--ink); font-weight: 400; }
.footer__grid a:hover { border-bottom: 1px solid var(--ink); }
.footer__wordmark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(88px, 22vw, 380px);
  line-height: .78;
  letter-spacing: -.04em;
  color: var(--ink);
  margin: 0 -.02em -.06em;
  user-select: none;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.backdrop { position: fixed; inset: 0; z-index: 80; background: rgba(20,22,24,.45); opacity: 0; pointer-events: none; transition: opacity .45s; }
.backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  width: min(100%, 460px);
  background: var(--bone);
  color: var(--ink);
  transform: translateX(105%);
  transition: transform .6s var(--ease-heavy);
  display: flex;
  flex-direction: column;
  padding: 28px clamp(20px, 3vw, 36px);
  gap: 28px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.drawer__head a { border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.drawer__empty { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; flex: 1; }
.drawer__empty-big { font-family: var(--serif); font-size: 36px; line-height: 1; letter-spacing: -.02em; }
.drawer__list { display: flex; flex-direction: column; gap: 24px; flex: 1; }
.drawer__item { display: grid; grid-template-columns: 88px 1fr; gap: 18px; align-items: start; animation: fadeIn .5s both; }
.drawer__item .media img { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.drawer__item .media > .ph { aspect-ratio: 3/4; }
.drawer__body { display: flex; flex-direction: column; gap: 8px; }
.drawer__title { font-family: var(--serif); font-size: 22px; line-height: 1; letter-spacing: -.01em; }
.drawer__foot { border-top: 1px solid rgba(20,22,24,.15); padding-top: 20px; display: flex; flex-direction: column; gap: 16px; }
.drawer__foot .btn { padding: 20px; font-size: 12px; letter-spacing: .2em; width: 100%; }

/* ============================================================
   ZOOM TRANSITION
   ============================================================ */
.zoom {
  position: fixed;
  z-index: 100;
  overflow: hidden;
  transition: left .8s var(--ease-heavy), top .8s var(--ease-heavy),
              width .8s var(--ease-heavy), height .8s var(--ease-heavy), opacity .4s ease;
}
.zoom img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--bone);
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.skip-link:focus { left: 8px; top: 8px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal].is-hidden { opacity: 1; transform: none; }
  [data-reveal].is-hidden img { transform: none; }
  .cursor { display: none; }
  .strip { height: auto; }
  .strip__inner { position: relative; height: auto; }
  .strip__track { overflow-x: auto; transform: none !important; }
}

/* ============================================================
   THE STUDIO'S SMALL RESIDENTS
   Two pomeranians and a few friends from the paintings.
   ============================================================ */

/* --- the chase across the hero wordmark ------------------- */
.hero__wordmark { position: relative; }
.pom-chase {
  position: absolute;
  left: 0;
  right: 0;
  top: -0.045em;
  height: .13em;
  pointer-events: none;
  transform: translateX(-.5em);
}
/* A lap: run in, arrive at the I, run in place there for a good five
   seconds — legs still going, nobody gaining an inch — then dash off
   right as the next lap comes around. */
.pom-chase.is-running { animation: pomRun 11.5s linear forwards; }
@keyframes pomRun {
  0%   { transform: translateX(-.5em); animation-timing-function: linear; }
  46%  { transform: translateX(calc(100% - .16em)); animation-timing-function: ease-out; }
  48%  { transform: translateX(calc(100% - .14em)); animation-timing-function: linear; }
  91%  { transform: translateX(calc(100% - .14em)); animation-timing-function: ease-in; }
  100% { transform: translateX(calc(100% + .45em)); }
}

/* The return lap: they come back the other way, and because the black one
   rides nearer the K inside the container, running left makes him the one
   being chased. Same dogs, same offsets, swapped roles. */
.pom-chase.is-returning { animation: pomReturn 11.5s linear forwards; }
@keyframes pomReturn {
  0%   { transform: translateX(calc(100% + .45em)); animation-timing-function: linear; }
  46%  { transform: translateX(.28em); animation-timing-function: ease-out; }
  48%  { transform: translateX(.26em); animation-timing-function: linear; }
  91%  { transform: translateX(.26em); animation-timing-function: ease-in; }
  100% { transform: translateX(-.95em); }
}
.pom-chase.is-returning .pom svg { transform: scaleX(-1); }

/* The woofing lap: comic yips from the black one while he gives chase.
   Visual only — the whole chase layer is aria-hidden. */
.woof {
  position: absolute;
  left: 45%;
  bottom: 96%;
  font-family: var(--serif);
  font-style: italic;
  font-size: .064em;
  /* the wordmark's -.055em tracking computes against its huge font size;
     inherited here it would shuffle these 13px glyphs into reverse order */
  letter-spacing: .04em;
  line-height: 1;
  color: #efeae0;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
.pom-chase.is-woofing .pom--black .woof--1 { animation: woofPop 1.7s ease-out 3 .9s; }
.pom-chase.is-woofing .pom--black .woof--2 { animation: woofPop 1.7s ease-out 3 1.75s; }
/* second yip launches from its own spot so the two never stack into mush */
.woof--2 { left: 6%; bottom: 112%; font-size: .05em; }
@keyframes woofPop {
  0%   { opacity: 0; transform: translate(-30%, .2em) rotate(-10deg) scale(.5); }
  18%  { opacity: 1; transform: translate(-8%, -.5em) rotate(-4deg) scale(1); }
  55%  { opacity: .95; }
  100% { opacity: 0; transform: translate(34%, -1.5em) rotate(5deg) scale(1.05); }
}

/* The rare lap: she stops mid-word, he cannot, and the chase reverses.
   The container carries both dogs; the overshoot and the about-faces are
   each dog's own animation, synchronized on the same 9.5s clock. */
.pom-chase.is-turning { animation: pomTurn 9.5s linear forwards; }
@keyframes pomTurn {
  0%   { transform: translateX(-.5em); animation-timing-function: linear; }
  27%  { transform: translateX(56%); animation-timing-function: ease-out; }
  30%  { transform: translateX(58%); }
  47%  { transform: translateX(58%); animation-timing-function: ease-in; }
  100% { transform: translateX(-1.35em); }
}
.pom-chase.is-turning .pom--blonde svg { animation: pomTurnBlonde 9.5s linear forwards; }
@keyframes pomTurnBlonde {
  0%, 31%     { transform: scaleX(1); }
  31.5%, 100% { transform: scaleX(-1); }
}
.pom-chase.is-turning .pom--black svg { animation: pomTurnBlack 9.5s forwards; }
@keyframes pomTurnBlack {
  0%, 30%     { transform: translateX(0) scaleX(1); animation-timing-function: ease-out; }
  36%         { transform: translateX(.72em) scaleX(1); }
  44%         { transform: translateX(.72em) scaleX(1); }
  44.5%, 100% { transform: translateX(.72em) scaleX(-1); }
}
.pom {
  position: absolute;
  bottom: 0;
  width: .17em;
  animation: pomGallop .34s ease-in-out infinite alternate;
}
.pom svg { display: block; width: 100%; height: auto; }
.pom--blonde { left: 0; }
.pom--black  { left: -.29em; width: .15em; animation-delay: -.17s; }
@keyframes pomGallop {
  from { transform: translateY(0) rotate(1.5deg); }
  to   { transform: translateY(-.014em) rotate(-2deg); }
}
.pleg { transform-box: fill-box; transform-origin: 50% 0; }
.pleg--f1 { animation: plegFront .32s ease-in-out infinite alternate; }
.pleg--f2 { animation: plegFront .32s ease-in-out infinite alternate; animation-delay: -.16s; }
.pleg--b1 { animation: plegBack  .32s ease-in-out infinite alternate; animation-delay: -.16s; }
.pleg--b2 { animation: plegBack  .32s ease-in-out infinite alternate; }
@keyframes plegFront { from { transform: rotate(-32deg); } to { transform: rotate(26deg); } }
@keyframes plegBack  { from { transform: rotate(30deg); }  to { transform: rotate(-28deg); } }

/* --- the black one asleep on the footer's I ---------------- */
.footer__wordmark-line { position: relative; display: inline-block; }
.pom-sleep {
  position: absolute;
  right: -.005em;
  top: -.088em;
  width: .21em;
  pointer-events: none;
  transform-origin: 50% 100%;
  animation: pomBreathe 4.6s ease-in-out infinite;
}
.pom-sleep svg { display: block; width: 100%; height: auto; }
@keyframes pomBreathe { 0%, 100% { transform: scale(1, 1); } 50% { transform: scale(1.015, 1.05); } }

/* --- Diglett checking whether the photographer has arrived -- */
.ph { position: relative; }
.ph-peek {
  position: absolute;
  right: clamp(10px, 12%, 40px);
  bottom: 0;
  width: clamp(30px, 18%, 56px);
  transform: translateY(88%);
  transition: transform .5s var(--ease);
  animation: phPeekIdle 11s ease-in-out infinite;
}
.ph-peek svg { display: block; width: 100%; height: auto; }
.media:hover .ph-peek,
[data-open]:hover .ph .ph-peek {
  animation: none;
  transform: translateY(30%);
}
@keyframes phPeekIdle {
  0%, 86%, 100% { transform: translateY(88%); }
  90%, 96% { transform: translateY(62%); }
}

/* --- Save Point, guarding the empty bag -------------------- */
.snorlax {
  width: 148px;
  margin-top: auto;
  padding-top: 40px;
  align-self: flex-start;
  opacity: .95;
}
.snorlax--page { margin-top: clamp(28px, 6vh, 64px); width: 180px; }
.snorlax svg { display: block; width: 100%; height: auto; transform-origin: 55% 100%; animation: snorlaxBreathe 5s ease-in-out infinite; }
.snorlax__z { animation: snorlaxZ 5s ease-in-out infinite; }
@keyframes snorlaxBreathe { 0%, 100% { transform: scale(1, 1); } 50% { transform: scale(1.01, 1.04); } }
@keyframes snorlaxZ { 0%, 20% { opacity: 0; } 55% { opacity: .9; } 90%, 100% { opacity: 0; } }

/* --- paw prints wandering off the studio photo ------------- */
.paw-trail {
  position: absolute;
  right: 16px;
  bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  color: var(--bone);
  opacity: .5;
  pointer-events: none;
}
.paw-trail svg { width: 14px; height: 14px; }
.paw-trail svg:nth-child(1) { transform: rotate(14deg) translateY(-2px); }
.paw-trail svg:nth-child(2) { transform: rotate(22deg) translateY(-9px); }
.paw-trail svg:nth-child(3) { transform: rotate(30deg) translateY(-15px); width: 12px; }

/* ============================================================
   Each work's own colour answers the hover — the same ambient
   halo the two showcase blocks cast, in miniature.
   ============================================================ */
.workcard .media,
.strip__item .media,
.thumb .media,
.more__item .media,
.objects__item .media,
.shop__media {
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.workcard:hover .media,
.strip__item:hover .media,
.thumb:hover .media,
.more__item:hover .media,
.shop__figure:hover .shop__media {
  transform: translateY(-5px);
  box-shadow: 0 34px 64px -26px color-mix(in srgb, var(--wbg, #141618) 72%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .pom-chase, .ph-peek, .woof { display: none; }
  .pom-sleep, .snorlax svg, .snorlax__z { animation: none; }
  .workcard:hover .media, .strip__item:hover .media, .thumb:hover .media,
  .more__item:hover .media, .shop__figure:hover .shop__media { transform: none; }
}
