/* ==========================================================================
   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: 30px; width: 123.6px; 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 ul { position: fixed; top: 0; right: 0; height: 100vh; width: 72vw; max-width: 320px;
    flex-direction: column; justify-content: center; gap: 28px; background: var(--black);
    border-left: 1px solid var(--line); transform: translateX(100%); transition: transform 0.35s ease; padding: 0 40px; }
  .site-nav ul.open { transform: translateX(0); }
  .nav-toggle { display: block; background: none; border: none; color: var(--alabaster); font-size: 1.6rem; cursor: pointer; z-index: 101; }
}

/* ---------- 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); }

/* ---------- 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; }
.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); }
.project-gallery-item .work-tile { border: none; }
.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); }
.project-gallery-item .work-tile:hover .tile-fill { transform: none; }

.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);
  transition: clip-path 0.35s cubic-bezier(0.65, 0, 0.35, 1) 0.175s, transform 0.35s cubic-bezier(0.25,0.8,0.25,1) 0.175s;
}
.work-tile-block:hover .work-tile.tile-row3 .tile-fill { clip-path: inset(30%); transition: clip-path 0.35s cubic-bezier(0.65, 0, 0.35, 1), transform 0.35s cubic-bezier(0.25,0.8,0.25,1); }

.tile-name, .tile-tag { position: absolute; left: 0; right: 0; z-index: 3; overflow: hidden; text-align: center; pointer-events: none; }
.tile-name { top: 15%; transform: translateY(-50%); }
.tile-tag { bottom: 15%; transform: translateY(50%); }
.tile-name-inner, .tile-tag-inner { display: inline-block; color: var(--alabaster); transition: transform 0.4s ease; }
.tile-name-inner.large-body { font-family: 'Coconat', 'Proxima Nova', sans-serif; transform: translateY(100%); }
.tile-tag-inner { transform: translateY(-100%); }
.work-tile-block:hover .tile-name-inner { transform: translateY(0); transition: transform 0.5s cubic-bezier(0.34, 1.28, 0.4, 1) 0.175s; }
.work-tile-block:hover .tile-tag-inner { transform: translateY(0); transition: transform 0.5s cubic-bezier(0.34, 1.28, 0.4, 1) 0.225s; }

@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; }
.project-gallery-viewport { width: 100%; overflow: hidden; }
.project-gallery-track { display: flex; transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1); }
.project-gallery-item {
  transform: scale(0.5);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.project-gallery-item.is-visible { transform: scale(1); }
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  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.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; }
@media (max-width: 860px) {
  .gallery-arrow { padding: 8px; }
}

.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; }
.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 .tile-name-inner, .section-light .tile-tag-inner { color: var(--black); }
.section-light .work-tile.tile-row3 { background: var(--alabaster); }

/* ---------- 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; }
}

/* ---------- 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.28; 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.85; will-change: transform; }
.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.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; }

.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: 420px; }
.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); }
.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); }
