/* ==========================================================================
   amou — shared stylesheet
   Tokens: Gallery Black #0a0a0a / Alabaster #e9e5dd / Mid Grey #808080 / Text #dce7e2
   Type: Coconat for headings, Proxima Nova for everything else
   ========================================================================== */

@font-face {
  font-family: 'Coconat';
  src: url('fonts/coconat/Coconat-Regular.woff2') format('woff2'),
       url('fonts/coconat/Coconat-Regular.woff') format('woff'),
       url('fonts/coconat/Coconat-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Coconat';
  src: url('fonts/coconat/Coconat-Demi.woff2') format('woff2'),
       url('fonts/coconat/Coconat-Demi.woff') format('woff'),
       url('fonts/coconat/Coconat-Demi.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Coconat';
  src: url('fonts/coconat/Coconat-Bold.woff2') format('woff2'),
       url('fonts/coconat/Coconat-Bold.woff') format('woff'),
       url('fonts/coconat/Coconat-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/proxima/ProximaNova-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/proxima/ProximaNova-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/proxima/ProximaNova-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/proxima/ProximaNova-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/proxima/ProximaNova-Extrabold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima Nova';
  src: url('fonts/proxima/ProximaNova-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

:root {
  --black: #000000;
  --alabaster: #e9e5dd;
  --mid-grey: #808080;
  --text: #dce7e2;
  --line: rgba(220, 231, 226, 0.14);
  --line-strong: rgba(220, 231, 226, 0.28);
  --max: 1160px;
}

* { box-sizing: border-box; }

::selection { background: var(--alabaster); color: var(--black); }
::-moz-selection { background: var(--alabaster); color: var(--black); }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Coconat', 'Proxima Nova', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--alabaster);
  margin: 0;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.05; transform: translateY(10%); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.3; }

p { margin: 0 0 1.2em; color: var(--text); }
a { color: var(--alabaster); }

.eyebrow {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mid-grey);
  display: block;
  margin-bottom: 1.1em;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#nav-gradient {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 180px;
  z-index: 99;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0) 100%);
}
#bottom-gradient {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  z-index: 99;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0) 100%);
}
.site-nav .logotype {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-mark { height: 30px; width: auto; display: block; }
.logo-mark-foot { height: 34px; width: auto; display: block; margin-bottom: 4px; }
.logo-anim { position: relative; height: 33px; width: 135.96px; display: block; }
.logo-anim-frame {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  object-fit: contain;
  object-position: left center;
  opacity: 0;
}
.logo-anim-frame.is-active { opacity: 1; }
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 44px;
  margin: 0; padding: 0;
}
.site-nav a.nav-link {
  font-family: 'Coconat', 'Proxima Nova', sans-serif;
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 300;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  opacity: 1;
  transition: border-bottom-color 3s ease, color 0.3s ease, opacity 0.4s ease;
}
.site-nav a.nav-link:hover { opacity: 0.72; }
.site-nav a.nav-link:hover,
.site-nav a.nav-link.active {
  color: var(--alabaster);
  border-bottom-color: var(--alabaster);
  transition: border-bottom-color 0.15s ease, color 0.3s ease;
}
.nav-toggle { display: none; }

@media (max-width: 720px) {
  .site-nav { justify-content: flex-end; }
  .logotype { position: absolute; left: 50%; top: 30px; transform: translateX(-50%); }
  .nav-toggle {
    display: block; background: none; border: none; color: var(--alabaster);
    font-size: 1.6rem; cursor: pointer; z-index: 101; opacity: 0.35;
  }
  .site-nav ul {
    position: fixed; inset: 0;
    height: auto; width: auto; max-width: none;
    flex-direction: column; align-items: center; justify-content: center; gap: 34px;
    background: rgba(8,8,8,0.97);
    border-left: none;
    border-radius: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99;
  }
  .site-nav ul.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav a.nav-link {
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    opacity: 0.85;
  }
  .site-nav a.nav-link.active,
  .site-nav a.nav-link:hover {
    opacity: 1;
    border-bottom-color: var(--alabaster);
  }
}

/* ---------- Brushstroke signature ---------- */
.brushstroke { display: block; width: 100%; height: auto; margin: 0 auto; }
.brushstroke path {
  fill: none;
  stroke: var(--alabaster);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  opacity: 0.75;
}
.brushstroke.draw path { animation: draw-stroke 1.6s cubic-bezier(0.65,0,0.35,1) forwards; }
@keyframes draw-stroke { to { stroke-dashoffset: 0; } }
.divider-sm { max-width: 160px; margin: 28px auto; }
.divider-lg { max-width: 420px; margin: 0 auto; }

/* ---------- Sections ---------- */
section { padding: 70px 0; }

.hero { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 200px 0 100px; border-bottom: 1px solid var(--line); }
.hero .tagline { margin-top: 28px; color: var(--mid-grey); font-size: 0.95rem; max-width: 480px; letter-spacing: 0.02em; }

.center { text-align: center; }
.lede { max-width: 640px; font-size: 1.15rem; color: var(--alabaster); font-weight: 200; }

.grid { display: grid; gap: 48px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--alabaster);
  padding: 40px 34px;
  transition: border-color 0.3s ease;
}
.card:hover { border-color: var(--alabaster); }

.frame {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid-grey);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: linear-gradient(160deg, rgba(233,229,221,0.04), rgba(233,229,221,0));
}
.frame img.placeholder-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.frame .frame-label { position: relative; z-index: 1; background: rgba(0,0,0,0.55); padding: 4px 10px; }
.frame.wide { aspect-ratio: 16 / 10; }

.name-hero {
  font-family: 'Coconat', 'Proxima Nova', sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--alabaster);
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 41px;
  border: 1px solid var(--alabaster);
  background: transparent;
  color: var(--alabaster);
  text-decoration: none;
  font-family: 'Proxima Nova', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
button.btn { appearance: none; -webkit-appearance: none; -moz-appearance: none; }
.btn:hover { background: var(--alabaster); color: var(--black); }
.btn-wide { padding-left: 68px; padding-right: 68px; }
.btn-ghost { border-color: var(--alabaster); color: var(--text); }
.btn-ghost:hover { background: var(--text); color: var(--black); border-color: var(--text); }
/* Same fast-in / slow-out asymmetry as .site-nav a.nav-link's underline
   (0.15s in, 3s out) — applied to the Get in touch CTA specifically,
   not the shared .btn base, so the contact form's submit button is
   untouched. Combined with .reveal (two classes, higher specificity)
   rather than a plain .btn-slow-fade rule: .reveal also sets the
   shorthand `transition` property and is declared later in the file,
   so a same-specificity rule here would have been silently overwritten —
   this keeps .reveal's own opacity/transform timing intact alongside it. */
.reveal.btn-slow-fade { transition: opacity 0.8s ease, transform 0.8s ease, background 3s ease, color 3s ease; }
.btn-slow-fade:hover { transition: background 0.15s ease, color 0.15s ease; }

/* ---------- Forms ---------- */
label { display: block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid-grey); margin-bottom: 8px; }
input, textarea, select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  padding: 10px 2px;
  margin-bottom: 30px;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-bottom-color: var(--alabaster);
}
textarea { resize: vertical; min-height: 120px; }
select option { background: var(--black); }

.enquiry-form label.large-body {
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 14px;
}
.enquiry-form input,
.enquiry-form textarea {
  border: 1px solid var(--alabaster);
  background: transparent;
  padding: 15px 20px;
  margin-bottom: 34px;
}
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--alabaster);
  background: rgba(255,255,255,0.03);
}
.enquiry-form .btn { margin-top: 10px; }

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 1px solid var(--alabaster);
  outline-offset: 3px;
}

/* ---------- Footer ---------- */
footer { padding: 450px 0 114px; }
@media (max-width: 760px) {
  footer { padding-top: 250px; }
}
.copyright-row {
  margin-top: 32px;
  border-top: 1px solid var(--alabaster);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
footer .copyright { color: var(--alabaster); font-size: 0.82rem; letter-spacing: 0.04em; margin: 0; }
footer .copyright-link { color: var(--alabaster); text-decoration: underline; text-underline-offset: 2px; }
footer .copyright-link:hover { color: var(--alabaster); opacity: 0.7; }
.social-links { display: flex; align-items: center; gap: 16px; }
.social-icon {
  display: block;
  width: 22.5px; height: 22.5px;
  background-color: var(--alabaster);
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  transition: opacity 0.3s ease;
}
.social-icon:hover { opacity: 0.7; }

/* ---------- Work: video-first masonry grid ---------- */
.work-row-square { display: flex; gap: 18px; align-items: flex-start; }
.work-row-square .work-tile-block { flex: 1 1 0; }
.work-row-square .work-tile { aspect-ratio: 1 / 1; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 18px;
  margin-top: 40px;
}
.work-tile {
  position: relative;
  grid-column: span 3;
  grid-row: span 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(233,229,221,0.06), rgba(233,229,221,0.01));
  cursor: pointer;
}
.work-tile.tile-row3 { border: none; background: var(--black); }
.work-tile.tile-wide { grid-column: span 4; }
.work-tile.tile-narrow { grid-column: span 2; }
.work-tile.tile-tall { grid-row: span 4; }
.work-tile.tile-short { grid-row: span 2; }

.work-tile .tile-fill {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
}
.work-tile .tile-fill img.placeholder-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.work-tile:hover .tile-fill { transform: scale(1.15); }

.work-tile .tile-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.work-tile:hover .tile-meta { opacity: 1; transform: translateY(0); }
.work-tile .tile-meta .eyebrow { margin-bottom: 4px; color: var(--mid-grey); }
.work-tile .tile-meta h3 { font-size: 1.15rem; }

.work-tile-block { display: flex; flex-direction: column; flex: 1 1 0; text-decoration: none; color: inherit; cursor: pointer; }

.work-tile.tile-row3 .tile-fill {
  clip-path: inset(0);
}
.work-tile.tile-row3 .tile-fill::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 22%, rgba(0,0,0,0) 48%);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.tile-caption { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 3; text-align: left; pointer-events: none; }
.tile-name-mask, .tile-tag-mask { display: block; overflow: hidden; }
.tile-name-inner, .tile-tag-inner { display: block; color: var(--alabaster); }
.tile-tag-inner { margin-top: 2px; }
.tile-name-inner.large-body { font-family: 'Coconat', 'Proxima Nova', sans-serif; }
@media (min-width: 761px) {
  .work-tile.tile-row3 .tile-fill { transform: scale(1.55); transition: transform 0.5s ease; }
  .work-tile.tile-row3:hover .tile-fill { transform: scale(1); }
  .work-tile.tile-row3 .tile-fill::after { opacity: 0; }
  .work-tile-block:hover .work-tile.tile-row3 .tile-fill::after { opacity: 1; }
  .tile-tag-inner { transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.34, 1.28, 0.4, 1); }
  .work-tile-block:hover .tile-tag-inner { transform: translateY(0); transition-delay: 0.225s; }

  .tile-name-inner .word-mask { display: inline-block; overflow: hidden; vertical-align: top; }
  .tile-name-inner .word-mask .word { display: inline-block; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.34, 1.28, 0.4, 1); }
  .work-tile-block:hover .tile-name-inner .word-mask:nth-child(1) .word { transform: translateY(0); transition-delay: 0.15s; }
  .work-tile-block:hover .tile-name-inner .word-mask:nth-child(2) .word { transform: translateY(0); transition-delay: 0.22s; }
  .work-tile-block:hover .tile-name-inner .word-mask:nth-child(3) .word { transform: translateY(0); transition-delay: 0.29s; }
}

@media (max-width: 860px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .work-tile, .work-tile.tile-wide, .work-tile.tile-narrow { grid-column: span 2; }
  .work-tile.tile-tall, .work-tile.tile-short { grid-row: span 3; }
}

/* ---------- Work: alternating project rows ---------- */
.work-full-tile {
  display: block;
  position: relative;
  height: clamp(220px, 30vw, 426px);
  overflow: hidden;
  text-decoration: none;
}
.work-full-tile.reveal { transform: translateY(60px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1); }
.work-full-tile.reveal.in { transform: translateY(0); }
.work-full-tile + .work-full-tile { margin-top: 24px; }
.work-full-tile .tile-fill { position: absolute; inset: 0; transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1); }
.work-full-tile .tile-fill img.placeholder-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work-full-tile:hover .tile-fill { transform: scale(1.15); transition: transform 0.5s cubic-bezier(0.25,0.8,0.25,1) 0.12s; }
.work-full-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.work-full-tile:hover::after { opacity: 1; }

.work-full-caption {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
.work-full-label {
  color: var(--alabaster);
  display: inline-flex;
  gap: 0.35em;
}
.work-full-label.large-body { font-family: 'Coconat', 'Proxima Nova', sans-serif; }
.work-full-label .word-mask { display: inline-block; overflow: hidden; vertical-align: top; }
.work-full-label .word-mask .word {
  display: inline-block;
  transform: translateY(120%);
  transition: none;
}
.work-full-tile:hover .work-full-label .word-mask:nth-child(1) .word { transform: translateY(0); transition: transform 0.5s cubic-bezier(0.34, 1.28, 0.4, 1) 0.15s; }
.work-full-tile:hover .work-full-label .word-mask:nth-child(2) .word { transform: translateY(0); transition: transform 0.5s cubic-bezier(0.34, 1.28, 0.4, 1) 0.22s; }
.work-full-tile:hover .work-full-label .word-mask:nth-child(3) .word { transform: translateY(0); transition: transform 0.5s cubic-bezier(0.34, 1.28, 0.4, 1) 0.29s; }
.work-full-tile:hover .work-full-label .word-mask:nth-child(4) .word { transform: translateY(0); transition: transform 0.5s cubic-bezier(0.34, 1.28, 0.4, 1) 0.36s; }
.work-full-sub {
  color: var(--alabaster);
  opacity: 0;
  transform: translateY(20px);
  margin: 10px 0 0;
  transition: opacity 0s, transform 0s;
}
.work-full-tile:hover .work-full-sub { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease 0.28s, transform 0.5s cubic-bezier(0.25,0.8,0.25,1) 0.28s; }

.project-gallery { position: relative; }
.work-tile.tile-row3 { border: none; background: var(--black); }
.project-gallery-item .work-tile { border: none; }

.work-tile .tile-fill {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
}
.work-tile .tile-fill img.placeholder-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }

/* Project gallery filmstrip: each image keeps its own native aspect ratio
   (landscape/portrait/square) at a shared fixed height, rather than being
   cropped into a uniform square like other tile types on the site. */
.project-gallery-item .work-tile { flex: 0 0 auto; height: 700px; width: auto; aspect-ratio: unset; }
.project-gallery-item .tile-fill { position: relative; height: 100%; width: auto; display: flex; overflow: hidden; }
.project-gallery-item .tile-fill img.placeholder-art { position: static; inset: auto; width: auto; height: 100%; object-fit: contain; transition: transform 0.5s cubic-bezier(0.25,0.8,0.25,1), filter 0.5s cubic-bezier(0.25,0.8,0.25,1); }
.work-tile:hover .tile-fill { transform: scale(1.15); }
.project-gallery-item .work-tile:hover .tile-fill { transform: none; }
/* The whole-tile zoom above is neutralized for gallery items (it would
   grow the flex item into its neighbours in the horizontal track). Zoom
   the image itself instead, clipped by the tile-fill's own frame via
   overflow: hidden, so it reads as a contained zoom rather than
   something that spills sideways into the next photo. */
.project-gallery-item .work-tile:hover .tile-fill img.placeholder-art { transform: scale(1.08); filter: brightness(1.3); }


.project-gallery-viewport {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.project-gallery::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 0%, transparent 45%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
  z-index: 5;
}
.project-gallery-track { display: flex; will-change: transform; }
.project-gallery-item {}
.gallery-arrow {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: var(--black);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.gallery-arrow:hover { opacity: 1; }
.gallery-arrow.is-disabled { opacity: 0.15; cursor: default; pointer-events: none; }
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }
.gallery-swipe-hint { display: none; }
@media (max-width: 760px) {
  .project-gallery { margin-left: -32px; margin-right: -32px; width: calc(100% + 64px); }
  /* The fade-to-black on the right made sense as a hint that more
     content continues past the edge, back when arrows sat right next
     to it — with a full-bleed swipeable strip it just darkens part of
     the last visible photo for no reason. */
  .project-gallery::after { display: none; }
}
@media (max-width: 760px) {
  .work-listing-wrap { padding: 0; }
}
@media (max-width: 860px) {
  .gallery-arrow { padding: 8px; }
}
@media (max-width: 760px) {
  /* Swipeable, not clickable, on mobile — the arrows made sense when
     touch drag did nothing (native scroll handled it before the loop
     fix moved everything to a transform-driven model), but now that
     swipe is wired up in JS below, the arrows just take up space and
     get in the way of the images either side of them. */
  .gallery-arrow { display: none; }
  .gallery-swipe-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
    opacity: 0.7;
  }
  .swipe-hand {
    animation: swipeHandMove 2.6s ease-in-out infinite;
  }
  .swipe-trail {
    animation: swipeTrailFade 2.6s ease-in-out infinite;
  }
}
@keyframes swipeHandMove {
  0% { transform: translateX(14px); opacity: 0; }
  15% { opacity: 1; }
  70% { transform: translateX(-14px); opacity: 1; }
  85% { opacity: 0; }
  100% { transform: translateX(-14px); opacity: 0; }
}
@keyframes swipeTrailFade {
  0%, 15% { opacity: 0; }
  30% { opacity: 0.5; }
  70% { opacity: 0.5; }
  85%, 100% { opacity: 0; }
}

.work-alt-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.work-alt-row:first-of-type { border-top: none; padding-top: 0; }
.work-alt-row .work-alt-text { flex: 0 0 340px; text-align: right; margin-left: auto; }
.work-alt-row.reverse .work-alt-text { order: 2; text-align: left; margin-left: 0; margin-right: auto; }
.work-alt-row.reverse .work-alt-media { order: 1; }
.work-alt-row .work-alt-text h3 {
  font-family: 'Coconat', 'Proxima Nova', sans-serif;
  font-weight: 400;
  margin-bottom: 0.5em;
}
.work-alt-row .work-alt-text p { max-width: 380px; margin: 0; }
.work-alt-row .work-alt-media {
  flex: 0 0 calc((100% - 388px) * 0.75);
  position: relative;
  aspect-ratio: 12 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(233,229,221,0.06), rgba(233,229,221,0.01));
}
.work-alt-media .tile-fill { position: absolute; inset: 0; transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1); }
.work-alt-media .tile-fill img.placeholder-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.work-alt-media:hover .tile-fill { transform: scale(1.15); }

@media (max-width: 860px) {
  .work-alt-row, .work-alt-row.reverse { flex-direction: column; align-items: stretch; gap: 28px; padding: 28px 0; }
  .work-alt-row .work-alt-text, .work-alt-row.reverse .work-alt-text { flex: none; order: initial; margin: 0; }
  .work-alt-row .work-alt-text p { max-width: none; }
  .work-alt-row .work-alt-media { flex: none; width: 75%; aspect-ratio: 12 / 5; }
}

/* Stagger reveal delays for grid children */
.work-tile.reveal:nth-child(1), .work-tile-block.reveal:nth-child(1) { transition-delay: 0s; }
.work-tile.reveal:nth-child(2), .work-tile-block.reveal:nth-child(2) { transition-delay: 0.08s; }
.work-tile.reveal:nth-child(3), .work-tile-block.reveal:nth-child(3) { transition-delay: 0.16s; }
.work-tile.reveal:nth-child(4), .work-tile-block.reveal:nth-child(4) { transition-delay: 0.24s; }
.work-tile.reveal:nth-child(5), .work-tile-block.reveal:nth-child(5) { transition-delay: 0.32s; }
.work-tile.reveal:nth-child(6), .work-tile-block.reveal:nth-child(6) { transition-delay: 0.4s; }
.work-tile.reveal:nth-child(7), .work-tile-block.reveal:nth-child(7) { transition-delay: 0.48s; }
.scroll-slide-line-inner { display: inline-block; will-change: transform; }

.split-mask { display: inline-block; overflow: hidden; vertical-align: top; padding-top: 0.12em; margin-top: -0.12em; }
.split-inner {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.22,0.85,0.32,1), opacity 0.5s ease;
  transition-delay: var(--stagger-delay, 0s);
}
.split-inner.in { transform: translateY(0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.cta-response .word-mask { display: inline-block; overflow: hidden; vertical-align: top; }
.cta-response .word-mask .word {
  display: inline-block;
  transform: translateY(120%);
  transition: transform 0.6s cubic-bezier(0.34, 1.28, 0.4, 1);
}
.cta-response.is-revealed .word-mask:nth-child(1) .word { transition-delay: 0.02s; transform: translateY(0); }
.cta-response.is-revealed .word-mask:nth-child(2) .word { transition-delay: 0.09s; transform: translateY(0); }
.cta-response.is-revealed .word-mask:nth-child(3) .word { transition-delay: 0.16s; transform: translateY(0); }
.cta-response.is-revealed .word-mask:nth-child(4) .word { transition-delay: 0.23s; transform: translateY(0); }
.cta-response.is-revealed .word-mask:nth-child(5) .word { transition-delay: 0.30s; transform: translateY(0); }
.cta-response.is-revealed .word-mask:nth-child(6) .word { transition-delay: 0.37s; transform: translateY(0); }

.artists-grid .work-tile-block { transform: translateY(36px); opacity: 0; transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1); }
.artists-grid .work-tile-block.in { opacity: 1; transform: translateY(0); }
.artists-grid .work-tile-block:nth-child(1) { transition-delay: 0s; }
.artists-grid .work-tile-block:nth-child(2) { transition-delay: 0.12s; }
.artists-grid .work-tile-block:nth-child(3) { transition-delay: 0.24s; }

.services-grid .card { transform: translateY(60px); opacity: 0; transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1); }
.services-grid .card.in { opacity: 1; transform: translateY(0); }
.services-grid .card:nth-child(1) { transition-delay: 0s; }
.services-grid .card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .card:nth-child(3) { transition-delay: 0.24s; }
.services-grid .card:nth-child(4) { transition-delay: 0.36s; }

.contact-stagger.reveal { opacity: 1; transform: none; transition: none; }
.contact-stagger > * { transform: translateY(60px); opacity: 0; transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1); }
.contact-stagger.in > * { opacity: 1; transform: translateY(0); }
.contact-stagger > *:nth-child(1), .contact-stagger > *:nth-child(2) { transition-delay: 0s; }
.contact-stagger > *:nth-child(3), .contact-stagger > *:nth-child(4) { transition-delay: 0.1s; }
.contact-stagger > *:nth-child(5), .contact-stagger > *:nth-child(6) { transition-delay: 0.2s; }
.contact-stagger > *:nth-child(7), .contact-stagger > *:nth-child(8) { transition-delay: 0.3s; }
.contact-stagger > *:nth-child(9) { transition-delay: 0.4s; }

.section-light { background: var(--alabaster); color: var(--black); }
.section-light .hero-scale-text,
.section-light .work-tile.tile-row3 { background: var(--alabaster); }
.section-light .hero-scale-text { color: var(--black); }

/* ---------- Split hero ---------- */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  min-height: 92vh;
  border-bottom: 1px solid var(--line);
}
.hero-split .hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 32px;
}
.hero-split h1 { text-align: left; max-width: 620px; }
.hero-split .hero-sub { margin-top: 30px; max-width: 420px; font-size: 1.15rem; color: var(--alabaster); font-weight: 200; }
.hero-split .hero-visual { position: relative; overflow: hidden; border-left: 1px solid var(--line); }
.hero-split .hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split .hero-text { padding: 150px 28px 50px; }
  .hero-split .hero-visual { height: 46vh; border-left: none; border-top: 1px solid var(--line); }
}

/* ---------- Pull quote ---------- */
.pull-quote {
  font-family: 'Proxima Nova', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.4;
  color: var(--alabaster);
  max-width: 780px;
}

/* ---------- Service rows ---------- */
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 34px 0;
  border-top: 1px solid var(--alabaster);
}
.service-row:last-child { border-bottom: 1px solid var(--alabaster); }
.service-row .row-index { font-size: 0.8rem; color: var(--alabaster); opacity: 0.5; }
.service-row h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
.service-row p { margin: 0; max-width: 420px; font-size: 1.15rem; }
@media (max-width: 760px) {
  .service-row { grid-template-columns: 40px 1fr; }
  .service-row p { grid-column: 2; }
  .faq-list .service-row { grid-template-columns: 20px 1fr; }
}

/* ---------- Full-bleed CTA ---------- */
.cta-bleed {
  position: relative;
  min-height: 55vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: none;
}
.cta-bleed img { position: absolute; top: -10%; left: 0; width: 100%; height: 120%; object-fit: cover; opacity: 0.25; will-change: transform; }
.cta-bleed::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.85)); }
.cta-bleed .wrap { position: relative; z-index: 1; }

/* ---------- Full-bleed parallax hero ---------- */
.hero-full {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.frame img.parallax-bg { top: -11%; bottom: auto; height: 122%; }
.work-tile .tile-fill img.parallax-bg { top: -15%; bottom: auto; height: 130%; }
.hero-full .parallax-bg { position: absolute; top: -10%; left: 0; width: 100%; height: 120%; object-fit: cover; opacity: 0.15; will-change: transform; }
/* Individual job hero headers (cinnamood, bella-kay, world-duty-free) keep
   their original full-colour, full-opacity treatment — the b&w/dimmed
   look is only for the abstract gradient placeholders on marketing pages.
   Scoped to this modifier class rather than per-page, since the shared
   .hero-full .parallax-bg rule above is what every other hero inherits. */
.hero-full .parallax-bg.parallax-bg--work { opacity: 0.75; }
.hero-full::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.1) 18%,
    rgba(0,0,0,0.1) 55%,
    rgba(0,0,0,0.28) 64%,
    rgba(0,0,0,0.47) 73%,
    rgba(0,0,0,0.65) 82%,
    rgba(0,0,0,0.95) 100%
  );
  z-index: 1;
}
.nav-scale-text {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-scale-text {
  font-family: 'Coconat', 'Proxima Nova', sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--alabaster);
  display: block;
  transform: translateY(10%);
}

.section-title-underline.large-body, .large-body.section-title-underline { display: inline-block; line-height: 1.05; }

.large-body {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.3;
  color: var(--alabaster);
}

.block-text {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--alabaster);
  opacity: 0.75;
  max-width: 480px;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.logo-row img { height: clamp(20px, 2.8vw, 30px); width: auto; display: block; opacity: 0.25; transition: transform 0.5s cubic-bezier(0.34,1.28,0.4,1), opacity 0.4s ease; }
.logo-row .logo-mask {
  opacity: 0.25;
  height: clamp(20px, 2.8vw, 30px);
  width: clamp(60px, 8vw, 90px);
  display: block;
  background-color: var(--alabaster);
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  transition: transform 0.5s cubic-bezier(0.34,1.28,0.4,1), opacity 0.4s ease;
}
.logo-row img.is-hovered, .logo-row .logo-mask.is-hovered { transform: scale(1.6); opacity: 1; }
.logo-row img.is-dimmed, .logo-row .logo-mask.is-dimmed { opacity: 0.25; }
.logo-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--alabaster); display: inline-block; flex: 0 0 auto; opacity: 0.25; transition: transform 0.5s cubic-bezier(0.34,1.28,0.4,1), opacity 0.4s ease; }
.logo-row .dot.is-dimmed { opacity: 0.25; }
/* Cinnamood's wordmark is a much wider/thinner aspect ratio (~9:1) than
   the other trusted-by logos (~2:1-6:1). The shared box is fixed at a
   roughly 3:1 width:height, so mask-size:contain fits by width for
   anything wider than that and shrinks height to match — for this logo
   specifically that shrinks it down to a near-invisible sliver. Give it
   its own width, sized off its real aspect ratio, so it renders at the
   same height as its neighbours instead. */
/* Not a full height-match — that made it noticeably wider-looking than
   every neighbour despite matching their height, since width had to
   grow 3x to get there. A modest width bump keeps it in the same order
   of magnitude as the others while actually being visible. */
.logo-row .logo-mask--cinnamood { width: auto; aspect-ratio: 1200 / 131; max-width: 150px; }
/* 34 Bloomsbury's wordmark is even more extreme (~17:1) than Cinnamood's.
   Same fix, same modest-bump logic — full height-match would want ~500px+,
   which would dominate the row, so cap it a bit above Cinnamood's own cap. */
.logo-row .logo-mask--bloomsbury { width: auto; aspect-ratio: 674.4 / 39.2; max-width: 180px; }

.hero-full .hero-full-content { position: relative; z-index: 2; padding: 0; width: 100%; }
.hero-full h1 { text-align: center; padding: 0 24px; }
.hero-full .hero-sub { margin: 24px auto 0; max-width: 480px; white-space: nowrap; }
.hero-full-content:has(.hero-sub) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-full-content:has(.hero-sub) h1 { transform: none; }
.hero-full.hero-compact { height: 100vh; }
.hero-full.hero-compact h1 { font-family: 'Coconat', 'Proxima Nova', sans-serif; font-style: normal; font-size: clamp(2.6rem, 6vw, 5rem); }
.hero-full.hero-compact .hero-blurb { margin: 32px 0 0 0; max-width: 1500px; }
.work-tile.tile-row3 { grid-column: span 1; grid-row: span 1; aspect-ratio: 1 / 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-full .parallax-bg { transform: none !important; }
  .cta-response .word-mask .word { transition-duration: 0.01s !important; }
}

.scroll-cue {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 50;
  background: var(--black);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.4s ease;
  animation: scroll-cue-bounce 2.2s ease-in-out infinite;
}
.scroll-cue:hover { opacity: 1; }
.scroll-cue.is-hidden { opacity: 0; pointer-events: none; }
@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
}

/* ---------- Gallery lightbox ---------- */
.project-gallery .placeholder-art { cursor: zoom-in; }
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox-overlay.is-open { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
}
.lightbox-overlay.is-open .lightbox-img { transform: scale(1); }
@media (max-width: 760px) {
  /* The 90vw/90vh desktop sizing leaves almost no backdrop to tap on a
     phone screen, which is what made it hard to dismiss. Placed after
     the base rule above deliberately — identical specificity means
     source order decides the winner at this breakpoint, and this needs
     to come second. */
  .lightbox-img { max-width: 82vw; max-height: 72vh; }
}
.lightbox-close {
  position: absolute;
  top: 28px; right: 36px;
  background: none;
  border: none;
  color: var(--alabaster);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.lightbox-close:hover { opacity: 1; }
body.lightbox-active { overflow: hidden; }

/* ---------- Section divider (hairline) ---------- */
.section-divider { height: 0; border-top: 1px solid var(--alabaster); width: 100%; margin-top: 120px; }

/* ---------- FAQ row spacing (scoped, Services untouched) ---------- */
.faq-list .service-row p { margin-left: 250px; }
.faq-list .service-row { padding: 68px 0; align-items: center; }
.faq-list .row-index {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--alabaster);
  opacity: 1;
  margin: 0 auto;
}
.faq-list .service-row h3 { font-size: clamp(1.9rem, 4vw, 3rem); }
.services-list-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; }
.services-col .service-row { grid-template-columns: 1fr; border-top: none; padding: 20px 0; break-inside: avoid; white-space: nowrap; }
.services-col .service-row:last-child { border-bottom: none; }
.services-col .service-row h3 { font-size: clamp(1.9rem, 4vw, 3rem); font-family: 'Coconat', 'Proxima Nova', sans-serif; }

/* Optical centering nudge for chevron icons in circular buttons */
.gallery-next svg { transform: translateX(2px); }
.gallery-prev svg { transform: translateX(-2px); }
.scroll-cue svg { transform: translateY(2px); }

/* ---------- Mobile fixes ---------- */
@media (max-width: 760px) {
  .services-list-grid { grid-template-columns: 1fr; }
  .services-list-grid > div:empty { display: none; }
  .services-col .service-row { white-space: normal; }

  .faq-list .service-row p { margin-left: 0; }

  .work-row-square { flex-direction: column; gap: 32px; width: 100vw; margin-left: calc(-50vw + 50%); }
  .work-row-square .work-tile-block { flex: none; width: 100%; }

  /* hero-blurb now shares the same .large-body sizing as desktop */
  .hero-full::before {
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.1) 18%,
      rgba(0,0,0,0.1) 55%,
      rgba(0,0,0,0.28) 64%,
      rgba(0,0,0,0.47) 73%,
      rgba(0,0,0,0.65) 82%,
      rgba(0,0,0,0.95) 100%
    );
  }
  .hero-compact::before {
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.1) 18%,
      rgba(0,0,0,0.1) 65%,
      rgba(0,0,0,0.6) 88%,
      rgba(0,0,0,0.97) 100%
    );
  }

  /* Item 3: stop the footer quote's off-screen slide-in transform from
     expanding the page's scrollable width and causing sideways drift */
  html, body { overflow-x: hidden; }

  /* Trusted By logos on mobile: scroll-driven fade wheel. All logos share
     one slot and cross-fade based on scroll progress through the section
     (JS toggles .is-active); dots are hidden since there's nothing to
     separate anymore. */
  .logo-row .dot { display: none; }
  .logo-row { position: relative; height: 70px; display: block; }
  .logo-row .logo-mask {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    height: 58.5px; width: 213px;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .logo-row .logo-mask.is-active { opacity: 1; }
  /* Explicit override, not just relying on cascade order against the
     rule above. The 150px cap used on desktop (three logos sharing a
     row) doesn't belong here — this is a single rotating logo with its
     own dedicated slot, no row to crowd. Scale with viewport instead,
     capped so it never overflows a narrow phone. */
  .logo-row .logo-mask--cinnamood {
    width: 213px; max-width: none; height: auto; aspect-ratio: 1200 / 131;
  }
  .logo-row .logo-mask--bloomsbury {
    width: 213px; max-width: none; height: auto; aspect-ratio: 674.4 / 39.2;
  }

  /* Selected works heading kept in sync with the desktop alignment
     (now left) — this override exists only so mobile doesn't fall
     back to some other default; "What we do" is untouched by it. */
  .section-light .hero-scale-text { text-align: left !important; }

  .work-full-tile::after { opacity: 1 !important; }
  .work-full-tile .work-full-label .word-mask .word { transform: translateY(0) !important; }
  .work-full-tile .work-full-sub { opacity: 1 !important; transform: translateY(0) !important; }

  /* Job names/descriptions now share the same sizing rule as desktop
     (the base .large-body clamp) rather than a separate mobile override */

  /* Item 6: Services list centered on mobile */
  .services-col .service-row { text-align: center; }

  /* Item 7: Send enquiry button centered on mobile */
  .enquiry-form .btn { display: block; margin-left: auto; margin-right: auto; }

  /* Item 4: What we've made -> drop "made" to its own line on mobile only.
     The stagger-words JS rebuilds each word into its own .split-mask span,
     so a manual <br> wouldn't survive it — targeting the generated last
     word directly instead, scoped to just this heading via its id. */
  #work-hero-heading .split-mask:last-child { display: block; }
}
