@font-face {
  font-family: 'Archivo';
  src: url('/assets/fonts/archivo-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-stretch: 100% 125%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  src: url('/assets/fonts/archivo-latin-ext.woff2') format('woff2');
  font-weight: 400 800;
  font-stretch: 100% 125%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/assets/fonts/jbmono-latin.woff2') format('woff2');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/assets/fonts/jbmono-latin-ext.woff2') format('woff2');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --stage: #08080a;
  --stage-lift: #0e0e12;
  --ink: #ffffff;
  --mute: #8a8a93;
  --mute-dim: #5b5b64;
  --line: rgba(255, 255, 255, .13);
  --line-soft: rgba(255, 255, 255, .07);

  --accent: #ffffff;
  --accent-soft: rgba(255, 255, 255, .10);

  --sans: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  --chrome-h: 96px;
  --gutter: clamp(20px, 3.6vw, 54px);

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-press: cubic-bezier(.32, .72, 0, 1);
  --shear: skewX(-12deg);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--stage);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--stage);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.62;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

img, svg { max-width: 100%; }
img { border-style: none; }

h1, h2, p, dl, dd, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--ink); color: var(--stage); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip {
  position: fixed;
  z-index: 60;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--stage);
  font: 600 13px/1 var(--sans);
  border-radius: 3px;
  transform: translateY(-200%);
  transition: transform .2s var(--ease);
}
.skip:focus { transform: none; }

/* ---------- chrome ---------- */

.chrome {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  height: var(--chrome-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  pointer-events: none;
}
.chrome > * { pointer-events: auto; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  color: var(--stage);
  background: var(--ink);
  border-radius: 4px;
  transition: background .45s var(--ease), color .45s var(--ease);
}
.brand-mark svg { display: block; width: 100%; height: 100%; }
.brand-type {
  font-size: 13.5px;
  font-weight: 800;
  font-stretch: 118%;
  line-height: 1.06;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.brand:hover .brand-mark { background: var(--accent); }

.hire-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 13px 26px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: var(--accent-soft);
  transition: color .3s var(--ease-press), background .3s var(--ease-press), border-color .45s var(--ease);
}
.hire-btn:hover { background: var(--accent); color: var(--stage); }

/* A light passes across the button now and then, mostly waiting off frame. */
.hire-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(104deg, transparent 40%, rgba(255, 255, 255, .22) 50%, transparent 60%);
  transform: translateX(-130%);
  animation: sheen 5.6s var(--ease) infinite;
}
@keyframes sheen {
  0%, 66% { transform: translateX(-130%); }
  88%, 100% { transform: translateX(130%); }
}

/* ---------- rail ---------- */

.rail {
  position: fixed;
  z-index: 35;
  left: calc(var(--gutter) - 2px);
  top: 50%;
  transform: translateY(-50%);
}
.rail ul { display: grid; gap: 16px; }
.rail a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 3px;
}
.rail-tick {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--mute-dim);
  transform: var(--shear);
  transition: width .45s var(--ease), background .45s var(--ease);
}
.rail-name {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute-dim);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), color .35s var(--ease);
}
.rail a:hover .rail-tick, .rail a:focus-visible .rail-tick { background: var(--ink); }
.rail a.is-current .rail-tick { width: 34px; background: var(--accent); }
.rail a.is-current .rail-name { color: var(--ink); }

/* Names stay folded away so they never sit on top of the collage. The wide accent tick
   is the position indicator; the labels appear only while the rail has attention. */
.rail:hover .rail-name,
.rail:focus-within .rail-name { opacity: 1; transform: none; color: var(--mute); }
.rail:hover a:hover .rail-name { color: var(--ink); }

/* ---------- deck mechanics ---------- */

.deck { position: relative; }

.slide {
  position: relative;
  min-height: 100svh;
  display: grid;
  padding: var(--chrome-h) var(--gutter) clamp(28px, 4.4vh, 52px);
  isolation: isolate;
  /* Contains the oversized ghost wordmark. Clipping it on body instead only hides the
     scrollbar: the layout is already wider, so phones zoom the whole page out. */
  overflow: hidden;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(112% 58% at 50% 30%, var(--accent-soft), transparent 66%),
    radial-gradient(64% 44% at 90% 4%, var(--accent-soft), transparent 72%);
}
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(128% 92% at 50% 46%, transparent 42%, rgba(0, 0, 0, .62) 100%);
}

/* The deck only engages once main.js sets .deck-ready. If the script never runs the
   page stays a normal scrolling document instead of going blank. */
@media (min-width: 901px) {
  .deck-ready body { overflow: hidden; }
  .deck-ready .deck { position: fixed; inset: 0; }
  .deck-ready .slide {
    position: absolute;
    inset: 0;
    min-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 4vh, 0);
    transition:
      opacity .46s var(--ease),
      transform .72s var(--ease),
      visibility 0s linear .72s;
  }
  .deck-ready .slide.is-prev { transform: translate3d(0, -4vh, 0); }
  .deck-ready .slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition:
      opacity .5s var(--ease) .06s,
      transform .72s var(--ease),
      visibility 0s;
  }
}

/* ---------- shared bits ---------- */

.kicker, .tag, .count, .work-meta dt, .hire-meta dt, .cue span, .colophon {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.kicker {
  color: var(--mute);
  margin-bottom: clamp(22px, 3vh, 34px);
}
.kicker i { font-style: normal; color: var(--mute-dim); padding-inline: 8px; }

/* ---------- 01 intro ---------- */

.slide-intro {
  place-content: center;
  text-align: center;
}

.ghost-word {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 78%;
  transform: translate(-50%, -50%);
  font-size: clamp(140px, 25vw, 360px);
  font-weight: 800;
  font-stretch: 125%;
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .036);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.intro-body { max-width: 1000px; margin-inline: auto; }

h1 {
  font-size: clamp(34px, 5.6vw, 82px);
  font-weight: 800;
  font-stretch: 118%;
  line-height: .96;
  letter-spacing: -.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.lead {
  max-width: 58ch;
  margin: clamp(22px, 3vh, 32px) auto 0;
  color: var(--mute);
  font-size: clamp(15px, 1.15vw, 17.5px);
}

.stamp {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 14px;
  margin-top: clamp(28px, 4vh, 44px);
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mute);
}
.stamp i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--mute-dim);
}

.cue {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 4vh, 40px);
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--mute-dim);
}
.cue svg { width: 13px; height: 18px; animation: nudge 2.6s var(--ease) infinite; }
@keyframes nudge {
  0%, 62%, 100% { transform: translateY(0); opacity: .55; }
  30% { transform: translateY(5px); opacity: 1; }
}

/* ---------- 02-04 work ---------- */

.slide-work {
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(20px, 3.4vh, 40px);
}

.collage {
  position: relative;
  width: 100%;
  max-width: 1240px;
  height: 100%;
  margin-inline: auto;
}

.plate {
  position: absolute;
  width: max-content;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--stage-lift);
  box-shadow: 0 34px 70px -28px rgba(0, 0, 0, .92), 0 4px 18px -8px rgba(0, 0, 0, .7);
  overflow: hidden;
  transform: rotate(var(--rot, 0deg));
}
.plate img {
  display: block;
  width: auto;
  height: calc(100% - 26px);
  max-width: none;
}
.plate-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 26px;
  padding-inline: 11px;
  background: #131318;
  border-bottom: 1px solid var(--line-soft);
}
.plate-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

/* The plates all sit in the upper band so the bottom right corner stays clear for the
   client mark and the quote. */
/* The landing shot is the one that sells, so nothing heavy sits on top of it: the phone
   and the two small plates start past its right edge. */
.plate-main  { --rot: -1.1deg; left: 0;   top: 0;   height: 76%; z-index: 2; }
.plate-a     { --rot: 1.7deg;  left: 56%; top: 0;   height: 38%; z-index: 3; }
.plate-b     { --rot: -2.1deg; left: 70%; top: 24%; height: 40%; z-index: 4; }
.plate-phone { --rot: 3.2deg;  left: 53%; top: 26%; height: 56%; z-index: 5; border-radius: 16px; }
.plate-phone img { height: 100%; }

.work-foot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: clamp(16px, 2.2vw, 36px);
  max-width: 1240px;
  width: 100%;
  margin-inline: auto;
}

.work-meta { display: grid; gap: 9px; min-width: 0; }
.work-meta > div { display: grid; gap: 1px; }
.work-meta dt { color: var(--accent); }
.work-meta dd {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--mute);
}

.work-title { text-align: center; }
.work-title h2 {
  font-size: clamp(30px, 4.8vw, 70px);
  font-weight: 800;
  font-stretch: 122%;
  line-height: .9;
  letter-spacing: -.028em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Each name is painted in the two hues that actually dominate that delivered site,
   measured on the screenshots rather than taken from the logo. */
#blossomcraft { --name-a: #ee86e1; --name-b: #e8482a; }  /* magenta UI into the red hero */
/* Pink to olive is almost complementary, so any blend passes through a yellow that is
   not theirs. Staying inside the raspberry family keeps the site's dominant colour. */
#snailcraft   { --name-a: #f9a3b8; --name-b: #d4326a; }
#sunrealms    { --name-a: #f7dc33; --name-b: #e08a25; }  /* gold into orange */

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .work-title h2 {
    background-image: linear-gradient(176deg, var(--name-a, #fff) 14%, var(--name-b, #fff) 90%);
    /* Two distant hues blended in sRGB go grey through the middle. Rotating the hue in
       oklch keeps the midtone warm instead of muddy. */
    background-image: linear-gradient(176deg in oklch shorter hue, var(--name-a, #fff) 14%, var(--name-b, #fff) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}
.work-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 16px;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-press);
}
.live svg { width: 11px; height: 11px; transition: transform .3s var(--ease-press); }
.live:hover { border-bottom-color: var(--accent); }
.live:hover svg { transform: translate(2px, -2px); }

.tag { color: var(--mute); }
.count { color: var(--mute-dim); font-weight: 500; }
.count b { color: var(--ink); font-weight: 700; }

.work-client {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
}
/* Only widen when there is something to read; otherwise the mark alone hugs the corner. */
.work-client.has-quote { width: min(48%, 580px); }

.client-mark {
  position: relative;
  flex: none;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: rgba(255, 255, 255, .03);
  box-shadow: 0 0 0 8px var(--accent-soft);
}
.client-logo { width: 56px; height: 56px; object-fit: contain; }

.client-face {
  position: absolute;
  top: -8px;
  right: -15px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--stage);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .32);
}

.quote { margin: 0; min-width: 0; }
.stars {
  display: flex;
  gap: 5px;
  color: var(--accent);
  margin-bottom: 11px;
}
.stars svg { width: 15px; height: 15px; }
.quote p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--mute);
  color: color-mix(in srgb, var(--accent) 54%, #ffffff);
}

/* ---------- 05 hire ---------- */

.slide-hire { place-content: center; text-align: center; }
.hire-body { max-width: 700px; margin-inline: auto; }

.hire-body h2 {
  font-size: clamp(40px, 6vw, 86px);
  font-weight: 800;
  font-stretch: 122%;
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-bottom: clamp(24px, 3.4vh, 38px);
}
.hire-body p { color: var(--mute); }
.hire-body p + p { margin-top: 16px; }

.price {
  margin-top: clamp(24px, 3.2vh, 34px) !important;
  color: var(--ink) !important;
  font-weight: 600;
}

.mail { margin-top: clamp(20px, 2.8vh, 30px) !important; }
.mail a {
  font-size: clamp(19px, 2.1vw, 27px);
  font-weight: 700;
  font-stretch: 112%;
  letter-spacing: -.01em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: border-color .3s var(--ease-press);
}
.mail a:hover { border-bottom-color: var(--ink); }

.hire-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px clamp(30px, 5vw, 68px);
  margin-top: clamp(26px, 3.4vh, 40px);
}
.hire-meta > div { display: grid; gap: 5px; }
.hire-meta dt { color: var(--mute-dim); }
.hire-meta dd {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--ink);
}
.hire-meta dd i { font-style: normal; color: var(--mute-dim); padding-inline: 3px; }

.copy {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  transition: border-color .3s var(--ease-press), color .3s var(--ease-press);
}
.copy:hover { border-bottom-color: var(--ink); }
.copy.is-copied { color: var(--mute); border-bottom-color: transparent; }

.colophon {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 3.4vh, 38px);
  transform: translateX(-50%);
  color: var(--mute-dim);
  white-space: nowrap;
}
.colophon i { font-style: normal; padding-inline: 4px; }

/* ---------- entrance choreography ---------- */

@media (min-width: 901px) {
  .deck-ready .plate,
  .deck-ready .work-client,
  .deck-ready .intro-body > *,
  .deck-ready .work-foot > *,
  .deck-ready .hire-body > * {
    opacity: 0;
    transition: opacity .6s var(--ease), transform .8s var(--ease);
  }
  .deck-ready .plate { transform: translateY(24px) rotate(var(--rot, 0deg)); }
  .deck-ready .work-client,
  .deck-ready .intro-body > *,
  .deck-ready .work-foot > *,
  .deck-ready .hire-body > * { transform: translateY(18px); }

  .deck-ready .is-active .plate,
  .deck-ready .is-active .work-client,
  .deck-ready .is-active .intro-body > *,
  .deck-ready .is-active .work-foot > *,
  .deck-ready .is-active .hire-body > * { opacity: 1; }
  .deck-ready .is-active .plate { transform: rotate(var(--rot, 0deg)); }
  .deck-ready .is-active .work-client,
  .deck-ready .is-active .intro-body > *,
  .deck-ready .is-active .work-foot > *,
  .deck-ready .is-active .hire-body > * { transform: none; }

  .deck-ready .is-active .work-client { transition-delay: .40s; }

  .deck-ready .is-active .plate-main  { transition-delay: .10s; }
  .deck-ready .is-active .plate-a     { transition-delay: .17s; }
  .deck-ready .is-active .plate-b     { transition-delay: .24s; }
  .deck-ready .is-active .plate-phone { transition-delay: .31s; }

  .deck-ready .is-active .intro-body > *:nth-child(1),
  .deck-ready .is-active .hire-body > *:nth-child(1) { transition-delay: .10s; }
  .deck-ready .is-active .intro-body > *:nth-child(2),
  .deck-ready .is-active .hire-body > *:nth-child(2) { transition-delay: .17s; }
  .deck-ready .is-active .intro-body > *:nth-child(3),
  .deck-ready .is-active .hire-body > *:nth-child(3) { transition-delay: .24s; }
  .deck-ready .is-active .intro-body > *:nth-child(4),
  .deck-ready .is-active .hire-body > *:nth-child(4) { transition-delay: .31s; }
  .deck-ready .is-active .intro-body > *:nth-child(5),
  .deck-ready .is-active .hire-body > *:nth-child(5) { transition-delay: .38s; }
  .deck-ready .is-active .hire-body > *:nth-child(6) { transition-delay: .45s; }
  .deck-ready .is-active .hire-body > *:nth-child(7) { transition-delay: .52s; }

  .deck-ready .is-active .work-foot > *:nth-child(1) { transition-delay: .30s; }
  .deck-ready .is-active .work-foot > *:nth-child(2) { transition-delay: .24s; }
  .deck-ready .is-active .work-foot > *:nth-child(3) { transition-delay: .36s; }
}

/* ---------- under 900: one long page ---------- */

@media (max-width: 900px) {
  :root { --chrome-h: 74px; }

  .rail { display: none; }
  .cue { display: none; }

  /* Content scrolls under the fixed bar, so it needs a solid bed under the logo and the
     button, not just a fade. The pseudo-element carries the fade past the bar's height. */
  .chrome::before {
    content: '';
    position: absolute;
    inset: 0 0 -30px;
    z-index: -1;
    background: linear-gradient(180deg, var(--stage) 0 66%, rgba(8, 8, 10, .82) 84%, rgba(8, 8, 10, 0));
  }

  .slide {
    min-height: auto;
    padding-block: clamp(84px, 13vh, 110px) clamp(58px, 9vh, 84px);
    gap: 34px;
    scroll-margin-top: var(--chrome-h);
  }
  .slide-intro { min-height: 100svh; }
  .slide-hire { min-height: 92svh; }
  .slide-work + .slide-work,
  .slide-hire { border-top: 1px solid var(--line-soft); }

  .slide-work { grid-template-rows: auto auto; }

  .collage {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .plate {
    position: static;
    width: auto;
    height: auto;
    --rot: 0deg;
    box-shadow: 0 18px 38px -20px rgba(0, 0, 0, .9);
  }
  .plate img { width: 100%; height: auto; }
  .plate-main { grid-column: 1 / -1; }
  .plate-phone { display: none; }

  .work-foot {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 26px;
  }
  .work-title { text-align: left; }
  .work-actions { justify-content: flex-start; }
  .work-client,
  .work-client.has-quote {
    position: static;
    width: auto;
    grid-column: 1 / -1;
    gap: 16px;
    margin-top: 10px;
  }
  .client-mark { width: 68px; height: 68px; }
  .client-logo { width: 42px; height: 42px; }
  .client-face { width: 32px; height: 32px; top: -6px; right: -11px; }
  .quote p { font-size: 16px; }

  .colophon { position: static; transform: none; margin-top: 40px; text-align: center; }
  .ghost-word { font-size: clamp(96px, 30vw, 200px); }
}

/* Touch targets. The links are typographic on purpose, so the hit area is grown with a
   pseudo-element instead of padding, which would push the underline off the text. */
@media (max-width: 900px) {
  .live, .mail a, .brand { position: relative; }
  .live::after, .mail a::after, .brand::after {
    content: '';
    position: absolute;
    inset: -12px -10px;
  }
  .brand::after { inset: -7px -10px; }
}

@media (max-width: 520px) {
  .collage { grid-template-columns: 1fr; }
  .stamp { gap: 6px 12px; }
}

/* ---------- motion off ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .cue svg { animation: none; }
}
