/* Cocomo Creative Collective — cocomo.cc
   Black & white. Edgy minimal. */

:root {
  --bg: #000000;
  --ink: #ececec;
  --muted: #9a9a9a;
  --faint: #5c5c5c;
  --line: rgba(255, 255, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --sans: "Inter Tight", -apple-system, Helvetica, Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --display: "Bricolage Grotesque", "Inter Tight", Helvetica, sans-serif;
  --r: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
h1, h2, h3, blockquote.pull { text-wrap: balance; }
p, .lede, .prose p, .tile p, .era p { text-wrap: pretty; }
.hero-sub, .card .meta, .work-row .meta { text-wrap: balance; }
a { color: inherit; text-decoration: none; }
::selection { background: #fff; color: #000; }

.wrap { max-width: 1280px; width: 100%; margin: 0 auto; padding: 0 28px; }

/* ---------- Film grain ---------- */

body::after {
  content: "";
  position: fixed; inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, -3%); }
  40% { transform: translate(1%, -4%); }
  60% { transform: translate(-3%, 2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- Custom cursor ---------- */

@media (hover: hover) and (pointer: fine) {
  html.cursor-on, html.cursor-on * { cursor: none !important; }
  .cursor-dot {
    position: fixed; top: 0; left: 0; z-index: 9999;
    width: 8px; height: 8px; border-radius: 50%;
    background: #fff; pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.25s, height 0.25s;
  }
  .cursor-dot.grow { width: 52px; height: 52px; }
}

/* ---------- Nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-brand img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: #fff;
}
.nav-links a.cta {
  color: #000; background: #fff; padding: 10px 24px; border-radius: 999px;
  font-weight: 600;
}
.nav-links a.cta:hover { background: #d8d8d8; color: #000; }
.nav-burger { display: none; background: none; border: 0; color: #fff; font-size: 26px; cursor: pointer; }

@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #000; border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 28px; gap: 22px;
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
}

/* ---------- Hero ---------- */

/* Must stay `header.hero`. A bare `.hero` also matches `a.lb.hero` — the lead image
   on every project gallery — which handed those links a 92vh min-height and 48px of
   padding, so a 223px-tall photo sat inside a 708px box of empty black. */
header.hero {
  min-height: calc(92vh - 68px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  padding: 48px 0;
}
.hero-logo { width: min(720px, 88vw); }
.hero-tag {
  margin-top: 44px;
  display: flex; gap: 8px 18px; flex-wrap: wrap; justify-content: center; align-items: center;
}
.hero-tag span {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.hero-tag .wsep { color: rgba(255,255,255,0.45); font-family: var(--serif); font-style: italic; font-size: 16px; }
.hero-sub {
  margin-top: 40px; max-width: 56ch; color: var(--muted); font-size: 17px;
}
.hero-sub em, .serif-i { font-family: var(--serif); font-style: italic; font-size: 1.15em; color: #fff; }
.hero-ctas { margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--faint);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block; padding: 15px 34px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--line);
  color: #fff;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { background: #fff; color: #000; border-color: #fff; }
.btn-solid { background: #fff; color: #000; border-color: #fff; }
.btn-solid:hover { background: transparent; color: #fff; border-color: #fff; }

/* ---------- Sections ---------- */

section { padding: 110px 0; }
section.tight { padding: 72px 0; }

.kicker {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--faint); font-weight: 500; margin-bottom: 24px;
  display: flex; align-items: center; gap: 16px;
}
.kicker::after { content: ""; height: 1px; width: 64px; background: var(--line); }

h2.title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.02; letter-spacing: -0.035em;
  text-transform: uppercase;
  max-width: 22ch; margin-bottom: 24px;
}
h2.title .serif-i { text-transform: none; letter-spacing: 0; }
.lede { color: var(--muted); max-width: 60ch; font-size: 17px; }
/* :not(.btn) matters — this rule outranks .btn-solid, so without it a solid button
   sitting inside prose gets white text on a white pill and an underline. */
.lede a:not(.btn), .prose a:not(.btn) { color: #fff; border-bottom: 1px solid var(--line); transition: border-color 0.2s; }
.lede a:not(.btn):hover, .prose a:not(.btn):hover { border-color: #fff; }

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 26px 0; white-space: nowrap;
}
.marquee-track {
  display: inline-block; animation: marquee var(--marquee-dur, 40s) linear infinite;
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 700; letter-spacing: 0.01em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.34);
}
.marquee-track span { margin: 0 26px; }
.marquee-track .solid { color: #fff; }
.marquee-track .wave-sep { color: rgba(255, 255, 255, 0.5); font-family: var(--serif); font-style: italic; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Home: selected work rows ---------- */

.works { display: flex; flex-direction: column; }
.work-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 64px 0; border-top: 1px solid var(--line-soft);
  position: relative;
}
.work-row:last-child { border-bottom: 1px solid var(--line-soft); }
.work-row .no {
  font-size: 12px; letter-spacing: 0.3em; color: var(--faint);
}
.work-row h3 {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 40px); font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.03em;
  line-height: 1.1; margin: 14px 0 12px;
}
.work-row .meta { color: var(--faint); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
.work-row .thumb {
  overflow: hidden; background: #0a0a0a;
  border: 1px solid var(--line-soft); border-radius: var(--r);
  aspect-ratio: 4 / 3;
}
.work-row .thumb img,
.work-row .thumb video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.work-row:hover .thumb img,
.work-row:hover .thumb video { filter: grayscale(0%); transform: scale(1.03); }
.work-row a.cover { position: absolute; inset: 0; z-index: 2; }
.work-row:nth-child(even) .thumb { order: -1; }
@media (max-width: 820px) {
  .work-row { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
  .work-row:nth-child(even) .thumb { order: 0; }
  /* Colour on small screens for the video too, not just stills. There is no hover to
     reveal it with, and a tap navigates away too fast to notice — so the turntable was
     the one thumbnail sitting grey while every other project showed in colour. */
  .work-row .thumb img,
  .work-row .thumb video { filter: grayscale(0%); }
}

/* ---------- Work index (list) ---------- */

.index-list { border-top: 1px solid var(--line); margin-top: 40px; }
.index-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px; align-items: center;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  transition: padding 0.25s;
}
.index-row .no { font-size: 12px; letter-spacing: 0.2em; color: var(--faint); }
.index-row h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 34px); font-weight: 600;
  text-transform: uppercase; letter-spacing: -0.03em;
  color: var(--muted); transition: color 0.25s, transform 0.3s;
}
.index-row:hover h3 { color: #fff; transform: translateX(10px); }
.index-row .cat { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); text-align: right; }
/* On a phone the category label is what pushes the row past the viewport
   (a long one like "Photography" overflows by ~10px). The project title carries
   the meaning, so the label steps aside rather than breaking the layout. */
@media (max-width: 560px) { .index-row .cat { display: none; }
  .index-row { grid-template-columns: 44px 1fr; gap: 16px; } }
.index-row a.cover { position: absolute; inset: 0; z-index: 2; }
.index-thumb {
  position: fixed; z-index: 40; pointer-events: none;
  width: 300px; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r);
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.25s, transform 0.25s;
  border: 1px solid var(--line);
  background: #0a0a0a;
}
.index-thumb img { width: 100%; height: 100%; object-fit: cover; }
.index-thumb.on { opacity: 1; transform: scale(1); }
@media (hover: none) { .index-thumb { display: none; } }

/* ---------- Stats strip ---------- */

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.stat { padding: 36px 28px; border: 1px solid var(--line-soft); border-radius: var(--r); background: #0a0a0a; }
.stat .n { font-family: var(--display); font-size: clamp(34px, 4vw, 54px); font-weight: 700; letter-spacing: -0.02em; }
/* A word-length value (a handle) overflows the tile at the numeric size, so it gets its own scale. */
.stat .n.text { font-size: clamp(19px, 1.9vw, 26px); letter-spacing: -0.005em; overflow-wrap: anywhere; }
.stat .l { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--faint); margin-top: 6px; }


/* ---------- Split / prose ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 44px; } }
.split .photo { overflow: hidden; border: 1px solid var(--line-soft); border-radius: var(--r); }
.split .photo img { filter: grayscale(100%); transition: filter 0.6s; width: 100%; }
.split .photo:hover img { filter: grayscale(0%); }

.prose { color: #bdbdbd; max-width: 64ch; }
.prose p { margin-bottom: 1.4em; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: #fff; font-weight: 600; }
.prose .big {
  font-family: var(--serif); font-style: italic;
  font-size: 26px; line-height: 1.4; color: #fff;
}

blockquote.pull {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(26px, 3.4vw, 44px); line-height: 1.3; color: #fff;
  border-left: 1px solid #fff; padding-left: 32px; margin: 56px 0;
  max-width: 26ch;
}

/* ---------- Tiles (services / education) ---------- */

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 48px; }
.tile { padding: 40px 32px; border: 1px solid var(--line-soft); border-radius: var(--r); background: #0a0a0a; transition: background 0.3s, border-color 0.3s; }
.tile:hover { background: #0e0e0e; border-color: var(--line); }
.tile h3 { font-size: 17px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
.tile .price { color: var(--muted); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 16px; }
.tile p { color: var(--muted); font-size: 15px; }


/* ---------- Video page ---------- */

.embed-grid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); margin-top: 48px; }
.embed-cell { min-height: 420px; overflow: hidden; }
.embed-cell blockquote.instagram-media { margin: 0 auto !important; min-width: 0 !important; }

.video-frame { overflow: hidden; border: 1px solid var(--line-soft); border-radius: var(--r); background: #000; }
/* Landscape clips are wider than the frame so they fill it, but a vertical clip is
   narrower and was sitting flush left at natural size. Centre it and cap the height. */
.video-frame video { display: block; max-width: 100%; max-height: 78vh; margin: 0 auto; }

/* A single looping piece shown at its own scale rather than stretched to the column. */
.video-solo { max-width: 440px; margin: 0 auto; text-align: center; }
.video-solo video {
  width: 100%; aspect-ratio: 1 / 1; display: block;
  border-radius: var(--r); background: #000;
}
.video-solo .kicker { margin-top: 14px; }

/* A reference image that is not my work: shown small so it reads as context, not portfolio. */
.before-shot { max-width: 340px; margin: 0 auto; text-align: center; }
.before-shot img {
  width: 100%; height: auto; display: block; border-radius: var(--r);
  border: 1px solid var(--line-soft); background: #fff;
}
.before-shot figcaption { margin-top: 12px; }

/* Two panels drawn to read as one vertical piece: keep them stacked, never side by side. */
.stack-pair { max-width: 460px; margin: 0 auto; text-align: center; }
.stack-pair img {
  width: 100%; height: auto; display: block; border-radius: var(--r);
  border: 1px solid var(--line-soft);
}
.stack-pair img + img { margin-top: 14px; }
.stack-pair figcaption { margin-top: 14px; }

/* A clip with a still either side, all three cropped to one portrait box so the row
   reads as a single piece rather than three loose items. */
.flank { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: start; }
.flank > * {
  width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block;
  border-radius: var(--r); background: #000; border: 1px solid var(--line-soft);
}
/* No greyscale here: these two were picked for the red caps, and the surrounding
   forest is dark enough that desaturating them leaves near-black rectangles. */
/* Stays three-across on phones. Stacking it turned one composed row into three
   loose full-bleed items and made the page enormous; the trio reading as a single
   piece matters more than the individual items being large. */
@media (max-width: 700px) {
  .flank { gap: 6px; }
}

/* A looping edit sitting where a still used to be — same greyscale-until-hover
   treatment the stills get, so it reads as part of the set. */
.photo video {
  width: 100%; height: auto; display: block;
  filter: grayscale(100%); transition: filter 0.6s;
}
.photo:hover video { filter: grayscale(0%); }

/* Sound toggle for a looping edit: the loop stays muted so it can autoplay,
   but the audio is one click away. */
.photo.has-sound { position: relative; }
.sound-toggle {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: 999px; cursor: pointer;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: #fff; background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px); transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sound-toggle:hover { background: #fff; color: #000; border-color: #fff; }
.sound-toggle .ico { font-size: 13px; line-height: 1; }
.sound-toggle[aria-pressed="true"] { background: #fff; color: #000; border-color: #fff; }
@media (max-width: 560px) { .video-solo { max-width: 300px; } }

/* Scope figures for a project that spans more than one surface. */
.proj-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--line-soft);
  border: 1px solid var(--line-soft); border-radius: var(--r);
  overflow: hidden; margin-top: 8px;
}
.proj-stats .s { display: block; padding: 20px 22px; background: var(--bg); }
.proj-stats .s strong {
  display: block; font-family: var(--display); font-size: 30px; color: var(--text);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 6px;
}
.proj-stats .s {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint);
}

.archive { width: 100%; border-collapse: collapse; margin-top: 40px; font-size: 15px; }
.archive th {
  text-align: left; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--faint); font-weight: 500; padding: 10px 14px 16px;
  border-bottom: 1px solid var(--line);
}
.archive td { padding: 13px 14px; border-bottom: 1px solid var(--line-soft); color: var(--muted); }
.archive td.artist { font-weight: 600; color: var(--ink); }
.archive td.year { color: var(--faint); white-space: nowrap; }
.archive tr:hover td { background: #0c0c0c; }
.table-scroll { overflow-x: auto; }

.eras { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
@media (max-width: 760px) { .eras { grid-template-columns: 1fr; } }
.era { padding: 40px 34px; border: 1px solid var(--line-soft); border-radius: var(--r); background: #0a0a0a; }

.era .span { color: var(--faint); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; }
.era h3 { font-size: 19px; margin: 12px 0 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.era p { color: var(--muted); font-size: 15px; }

/* ---------- Contact ---------- */

.contact-box {
  border: 1px solid var(--line-soft); border-radius: calc(var(--r) + 8px); background: #0a0a0a;
  padding: clamp(32px, 5vw, 64px); margin-top: 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
@media (max-width: 860px) { .contact-box { grid-template-columns: 1fr; } }
.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 10px;
}
.field input, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line);
  color: #fff; padding: 10px 2px; font-family: var(--sans); font-size: 16px;
  border-radius: 0;
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: #fff; }
.socials { list-style: none; margin-top: 28px; }
.socials li { margin-bottom: 14px; display: flex; align-items: baseline; }
.socials a { color: var(--muted); transition: color 0.2s; }
.socials a:hover { color: #fff; }
.socials .label { color: var(--faint); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; width: 110px; flex-shrink: 0; }

/* ---------- Project pages ---------- */

.proj-head { padding: 88px 0 52px; border-bottom: 1px solid var(--line-soft); }
.proj-head h1 {
  font-family: var(--display);
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(34px, 5.4vw, 68px); line-height: 0.98; letter-spacing: -0.035em;
  max-width: 20ch;
}
.proj-meta {
  display: flex; gap: 0; flex-wrap: wrap; margin-top: 36px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint);
  border-top: 1px solid var(--line-soft);
}
.proj-meta span { padding: 16px 28px 0 0; margin-right: 28px; }
.proj-meta strong { display: block; color: var(--muted); font-weight: 500; margin-top: 4px; font-size: 12px; }
.proj-intro { padding: 60px 0 8px; }
/* Only touch the vertical padding — the shorthand was zeroing the 28px side padding
   that .wrap provides, so galleries ran to the screen edge while everything else
   (nav, prose, flank blocks) sat inset. */
.gallery { display: grid; gap: 22px; padding-top: 52px; padding-bottom: 36px; }
.gallery img { border: 1px solid var(--line-soft); width: 100%; }
.proj-nav {
  display: flex; justify-content: space-between; gap: 24px;
  padding: 52px 0 100px; font-size: 14px;
}
.proj-nav a { color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; }
.proj-nav a:hover { color: #fff; }
.proj-nav .dir { display: block; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }

.note { color: var(--faint); font-size: 13px; margin-top: 18px; }

/* ---------- Footer ---------- */

footer { border-top: 1px solid var(--line-soft); padding: 80px 0 44px; }
.foot-grid { display: flex; justify-content: space-between; gap: 44px; flex-wrap: wrap; align-items: flex-start; }
.foot-brand img { height: 96px; width: auto; }
.foot-brand p { color: var(--faint); font-size: 13px; margin-top: 20px; max-width: 32ch; letter-spacing: 0.04em; }
.foot-col h4 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 18px; font-weight: 500;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 11px; }
.foot-col a { color: var(--muted); font-size: 14px; }
.foot-col a:hover { color: #fff; }
.foot-base {
  margin-top: 64px; padding-top: 26px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--faint); font-size: 12px; letter-spacing: 0.08em;
}

/* ---------- Reveal ---------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
html.gsap-on .reveal { transition: none; }
.reveal.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  body::after { animation: none; }
}

/* ---------- Gallery refinements + lightbox ---------- */

.gallery a.lb { display: block; cursor: zoom-in; }
.gallery img {
  width: 100%; max-height: 86vh; object-fit: contain;
  background: #070707; border-radius: var(--r);
}
.gallery .row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch;
}
.gallery .row-2 img { max-height: none; object-fit: cover; height: 100%; }
@media (max-width: 700px) { .gallery .row-2 { grid-template-columns: 1fr; } }
.gallery a.solo-p { max-width: min(600px, 92%); margin: 0 auto; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, 0.96);
  display: none; align-items: center; justify-content: center;
}
.lightbox.on { display: flex; }
.lightbox img { max-width: 94vw; max-height: 92vh; object-fit: contain; border-radius: var(--r); }
.lightbox .lb-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer;
  font-family: var(--sans);
}
.lightbox .lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid var(--line); color: #fff;
  width: 48px; height: 48px; cursor: pointer; font-size: 18px;
  transition: background 0.2s, color 0.2s;
}
.lightbox .lb-arrow:hover { background: #fff; color: #000; }
.lightbox .lb-prev { left: 20px; }
.lightbox .lb-next { right: 20px; }
.lightbox .lb-count {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: var(--faint); font-size: 12px; letter-spacing: 0.24em;
}
@media (max-width: 700px) { .lightbox .lb-arrow { display: none; } }


/* ---------- Local music-video cards ---------- */

.mv-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-top: 48px;
}
.mv-card { position: relative; }
.mv-card video {
  width: 100%; aspect-ratio: 9 / 16; object-fit: cover;
  background: #070707; border: 1px solid var(--line-soft); border-radius: var(--r);
}
.mv-card h3 {
  font-family: var(--display);
  margin-top: 14px; font-size: 17px; font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.mv-card .meta { color: var(--faint); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; }

/* ---------- Motion support (GSAP) ---------- */

.split-line { overflow: hidden; }
.nav { transition: transform 0.4s ease; }
.nav.nav-hidden { transform: translateY(-100%); }
.gallery a.lb, .split .photo { overflow: hidden; border-radius: var(--r); }
.gallery a.lb img, .split .photo img { will-change: transform; }

/* ---------- 2026 layer: giant footer, status, transitions ---------- */

.foot-top {
  display: block; width: 100%; border: 0; background: none;
  padding: 40px 0 44px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.foot-top img {
  width: min(560px, 74vw); opacity: 0.5;
  transition: opacity 0.5s cubic-bezier(.2,.6,.2,1), transform 0.5s cubic-bezier(.2,.6,.2,1);
}
.foot-top:hover img { opacity: 1; transform: translateY(-6px); }
.foot-top .to-top {
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--faint);
  transition: color 0.3s;
}
.foot-top:hover .to-top { color: var(--muted); }

.foot-status {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line-soft);
  padding: 16px 0; margin-bottom: 56px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.avail { display: inline-flex; align-items: center; gap: 10px; }
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #3ddc84;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}
.hero-avail {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}

.page-wipe {
  position: fixed; inset: 0; z-index: 300; background: #000;
  transform: translateY(100%); pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.page-wipe img { width: min(260px, 50vw); opacity: 0.9; }
@media (prefers-reduced-motion: reduce) { .page-wipe { display: none; } }

/* ---------- Ocean layer: waves, intro ---------- */

#hero-waves {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: 0.5;
}
header.hero > .wrap { position: relative; z-index: 2; }

.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { width: 200%; height: 44px; display: block; animation: wave-slide 14s linear infinite; }
.wave-divider path { fill: none; stroke: rgba(255, 255, 255, 0.22); stroke-width: 1.5; }
@keyframes wave-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .wave-divider svg { animation: none; } }

.intro {
  position: fixed; inset: 0; z-index: 400; background: #000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 34px;
}
.intro img { width: min(340px, 62vw); }
.intro svg { width: min(340px, 62vw); height: 40px; }
.intro svg path { fill: none; stroke: rgba(255, 255, 255, 0.8); stroke-width: 2; }


/* ---------- Video wall + modal player ---------- */

.vwall {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  margin-top: 44px;
}
.vtile {
  position: relative; cursor: pointer; border: 0; padding: 0; background: none;
  text-align: left; font-family: var(--sans); color: inherit;
}
.vtile .shot {
  position: relative; overflow: hidden; border-radius: var(--r);
  aspect-ratio: 9 / 16; background: #0a0a0a; border: 1px solid var(--line-soft);
}
.vtile .shot img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.45s ease, transform 0.7s cubic-bezier(.2,.6,.2,1);
}
.vtile:hover .shot img, .vtile:focus-visible .shot img { filter: grayscale(0%); transform: scale(1.05); }
.vtile .play {
  position: absolute; inset: 0; display: grid; place-items: center;
  opacity: 0; transition: opacity 0.35s;
}
.vtile:hover .play, .vtile:focus-visible .play { opacity: 1; }
.vtile .play span {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.6);
  display: grid; place-items: center; color: #fff; font-size: 15px; padding-left: 3px;
}
.vtile h3 {
  font-family: var(--display); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.01em; margin-top: 12px; line-height: 1.2;
}
.vtile .who { color: var(--faint); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }
.vtile .collab {
  display: inline-block; margin-top: 6px; font-size: 9.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #000; background: #fff; padding: 3px 8px; border-radius: 999px;
}

/* Quieter than the collab pill: a disclosure, not an accolade. */
.vyear-stats {
  margin-top: 10px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text); font-weight: 500;
}
.vyear-stats span { color: var(--faint); margin: 0 4px; }

.aigen {
  display: inline-block; margin-top: 6px; margin-left: 6px; font-size: 9.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint);
  border: 1px solid var(--line); padding: 2px 8px; border-radius: 999px;
}

.vmodal {
  position: fixed; inset: 0; z-index: 250; background: rgba(0,0,0,0.94);
  display: none; align-items: center; justify-content: center; flex-direction: column; gap: 18px;
}
.vmodal.on { display: flex; }
.vmodal video {
  max-height: 78vh; max-width: 92vw; border-radius: var(--r);
  background: #000; border: 1px solid var(--line-soft);
}
.vmodal .vmeta { text-align: center; }
.vmodal .vmeta h3 { font-family: var(--display); font-size: 19px; text-transform: uppercase; font-weight: 700; }
.vmodal .vmeta p { color: var(--faint); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 5px; }
.vmodal .vclose {
  position: absolute; top: 20px; right: 26px; background: none; border: 0;
  color: #fff; font-size: 30px; cursor: pointer; font-family: var(--sans); line-height: 1;
}
.vmodal .varrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid var(--line); color: #fff;
  width: 46px; height: 46px; cursor: pointer; font-size: 17px; border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.vmodal .varrow:hover { background: #fff; color: #000; }
.vmodal .vprev { left: 22px; } .vmodal .vnext { right: 22px; }
@media (max-width: 700px) { .vmodal .varrow { display: none; } .vwall { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; } }

/* ---------- Archive page ---------- */

.arch-year {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 4vw, 52px); letter-spacing: -0.03em;
  margin: 64px 0 4px; color: var(--ink);
}
.arch-year:first-of-type { margin-top: 8px; }
.region-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.region-chip {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; color: var(--muted);
  transition: border-color 0.25s, color 0.25s;
}
.region-chip:hover { border-color: #fff; color: #fff; }


/* Slide decks: show the whole frame, no parallax crop */
.gallery.slides a.lb { overflow: visible; }
.gallery.slides img { max-height: none; object-fit: contain; }
/* .gallery is display:block, so the declared `gap` never applied and stacked slides
   sat flush against each other. Space them explicitly. */
.gallery.slides a.lb + a.lb { margin-top: 22px; }

/* ---------- Justified gallery rows ---------- */

.gallery { display: block; }
.gallery .jrow { display: flex; gap: 14px; margin-bottom: 14px; align-items: stretch; }
.gallery .jrow > a.lb { min-width: 0; overflow: hidden; border-radius: var(--r); display: block; }
.gallery .jrow > a.lb img { width: 100%; height: auto; display: block; max-height: none; object-fit: cover; }
.gallery > a.lb.hero { display: block; margin-bottom: 14px; border-radius: var(--r); overflow: hidden; }
/* Full-width break shots between video rows: symmetric 40px above and below.
   The trailing block keeps a bottom gap since nothing follows it to supply one. */
.gallery.brk > a.lb.hero { margin-bottom: 0; }
/* No crop on the lead image: max-height + cover was slicing 15-25% off every
   landscape hero, which mangles UI screenshots and mockups. Let it size naturally. */
.gallery > a.lb.hero img { width: 100%; height: auto; max-height: none; object-fit: contain; }

/* Rows keep their composition on phones instead of reflowing to 2-up then 1-up.
   Each row was laid out as a set — breaking it apart turned process sheets into a
   long stack of unrelated full-width images. Only the gutters tighten. */
@media (max-width: 760px) {
  .gallery .jrow { gap: 6px; margin-bottom: 6px; }
}

/* Partial last row: render at natural height, left aligned (no stretch) */
.gallery .jrow.last { justify-content: flex-start; }
.gallery .jrow.last > a.lb { flex-grow: 0 !important; flex-basis: auto !important; max-width: 46%; }
.gallery .jrow.last > a.lb img { height: 340px; width: auto; }
/* Partial last row stays left-aligned at natural width; only the fixed 340px row
   height scales down so a 2-3 item row still fits across a phone. */
@media (max-width: 760px) {
  .gallery .jrow.last > a.lb img { height: clamp(110px, 30vw, 340px); }
}

/* ---------- Interactive prototype ---------- */

.proto { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; margin-top: 44px; }
@media (max-width: 820px) { .proto { grid-template-columns: 1fr; gap: 32px; } }

.phone {
  width: 300px; max-width: 100%; justify-self: center;
  border-radius: 36px; overflow: hidden; cursor: pointer;
  border: 1px solid var(--line); background: #000;
  box-shadow: 0 30px 90px rgba(0,0,0,0.65);
  position: relative; user-select: none;
}
.phone img { width: 100%; display: block; }
.phone .tap {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.35); color: #fff;
  padding: 7px 14px; border-radius: 999px; transition: opacity 0.3s;
}
.phone:hover .tap { opacity: 0; }

.proto-steps { list-style: none; }
.proto-steps li {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--line-soft);
  color: var(--faint); cursor: pointer; transition: color 0.25s;
}
.proto-steps li .n { font-size: 12px; letter-spacing: 0.16em; }
.proto-steps li b { display: block; font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.proto-steps li span.d { font-size: 14px; }
.proto-steps li:hover { color: var(--muted); }
.proto-steps li.on { color: var(--ink); }
.proto-steps li.on .n { color: #fff; }

/* ---------- Video wall: year groups ---------- */

.vyear { display: flex; align-items: baseline; gap: 22px; flex-wrap: wrap; margin: 64px 0 6px; }
.vyear:first-of-type { margin-top: 36px; }
.vyear-n {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 4vw, 52px); letter-spacing: -0.03em; color: var(--ink);
}
.vyear-d { color: var(--faint); font-size: 14px; max-width: 52ch; }
.vwall + .vyear { border-top: 1px solid var(--line-soft); padding-top: 56px; }

/* ---------- Video filters + progressive reveal ---------- */

.vfilters {
  position: relative; z-index: 30;
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  padding: 14px 0 16px; margin-bottom: 8px;
  background: rgba(0,0,0,0.88); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.vfilter {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
  background: none; color: var(--muted); cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.vfilter:hover { border-color: #fff; color: #fff; }
.vfilter.on { background: #fff; color: #000; border-color: #fff; }
.vfilter .n { opacity: 0.55; margin-left: 6px; }

.vyear[hidden], .vwall[hidden], .vtile[hidden], .vmore[hidden] { display: none !important; }

.vmore {
  display: block; margin: 22px auto 0;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px; padding: 12px 28px;
  background: none; color: var(--muted); cursor: pointer; transition: background 0.2s, color 0.2s;
}
.vmore:hover { background: #fff; color: #000; border-color: #fff; }

@media (max-width: 760px) {
  .vfilters { padding: 12px 0; gap: 6px; }
  .vfilter { padding: 7px 13px; font-size: 10px; letter-spacing: 0.1em; }
}
