:root {
  color-scheme: dark;
  --black: #000;
  --white: #f7f4ee;
  --muted: #858287;
  --line: rgba(255, 255, 255, 0.34);
  --work: #ff5147;
  --systems: #20d6c7;
  --sound: #8b76ff;
  --lab: #4bb8ff;
  --dates: #d2ed59;
  --about: #637cff;
  --project: var(--work);
  --collab: var(--systems);
  --music: var(--sound);
  --code: var(--lab);
  --shows: var(--dates);
  --contact: #ff69b7;
  --contact-stabilo: color-mix(in srgb, var(--contact) 72%, transparent);
  --projects: #7f1832;
  --warm: #ffb33f;
  --surface: #09090b;
  --surface-raised: #101014;
  --sidebar-width: clamp(13rem, 17vw, 15rem);
  --content-pad: clamp(1rem, 3.2vw, 2.8rem);
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
  scroll-padding-top: 0.75rem;
  scrollbar-color: #4a4a4a var(--black);
}

body {
  min-width: 18rem;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.025), transparent 28rem),
    var(--black);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.875rem;
  line-height: 1.48;
  letter-spacing: 0.004em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 3px, rgba(255, 255, 255, 0.012) 4px);
  content: "";
  pointer-events: none;
}

::selection {
  background: var(--accent, var(--project));
  color: var(--black);
}

body[data-accent="project"] { --accent: var(--project); }
body[data-accent="collab"] { --accent: var(--collab); }
body[data-accent="music"] { --accent: var(--music); }
body[data-accent="code"] { --accent: var(--code); }
body[data-accent="shows"] { --accent: var(--shows); }
body[data-accent="work"] { --accent: var(--work); }
body[data-accent="systems"] { --accent: var(--systems); }
body[data-accent="sound"] { --accent: var(--sound); }
body[data-accent="lab"] { --accent: var(--lab); }
body[data-accent="dates"] { --accent: var(--dates); }
body[data-accent="about"] { --accent: var(--about); }
body[data-accent="contact"] { --accent: var(--contact); }

img,
video,
iframe,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent, var(--project));
  font-style: italic;
}

:focus-visible {
  outline: 0.18rem solid var(--accent, var(--project));
  outline-offset: 0.2rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.55rem 0.75rem;
  background: var(--white);
  color: var(--black);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-sidebar {
  position: fixed;
  z-index: 20;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.035), transparent 32%),
    rgba(2, 2, 3, 0.985);
  box-shadow: 1.5rem 0 4rem rgba(0, 0, 0, 0.28);
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.9rem 0.7rem 1rem;
  overflow-y: auto;
  font-size: clamp(0.72rem, 0.95vw, 0.875rem);
  scrollbar-width: none;
}

.sidebar-inner::-webkit-scrollbar { display: none; }

.site-brand,
.sidebar-link,
.nav-group > a,
.sidebar-footer-link {
  display: block;
  padding: 0.34rem 0.65rem;
  border-radius: 0.3rem;
  text-decoration: none;
}

.site-brand {
  position: relative;
  width: 100%;
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.65rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.site-brand::before {
  position: absolute;
  right: 0.65rem;
  bottom: -1px;
  left: 0.65rem;
  height: 0.2rem;
  background: linear-gradient(90deg, var(--project) 0 38%, transparent 38%);
  content: "";
}

.site-brand::after {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  content: "audiovisual artist / montreal";
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.site-brand:hover {
  color: var(--white);
  font-style: normal;
}

.sidebar-link[aria-current="page"],
.nav-group > a[aria-current="page"],
.sidebar-footer-link[aria-current="page"] {
  color: var(--white);
  text-decoration: none;
}

.site-brand[aria-current="page"] { text-decoration: none; }

.nav-group {
  --group-accent: var(--muted);
  margin-top: 0.65rem;
}

.nav-group:nth-child(1) { --group-accent: var(--project); }
.nav-group:nth-child(2) { --group-accent: var(--collab); }
.nav-group:nth-child(3) { --group-accent: var(--music); }
.nav-group:nth-child(4) { --group-accent: var(--shows); }
.nav-group:nth-child(5) { --group-accent: var(--code); }

.nav-group > a {
  position: relative;
  border-left: 2px solid transparent;
  color: #c4c1c5;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-out);
}

.nav-group > a::after {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--group-accent);
  content: "";
  opacity: 0.62;
  transform: translateY(-50%);
}

.nav-group > a:hover,
.nav-group > a[aria-current="page"] {
  border-left-color: var(--group-accent);
  background: color-mix(in srgb, var(--group-accent) 11%, transparent);
  color: var(--white);
  font-style: normal;
  transform: translateX(0.12rem);
}

.nav-group ul {
  margin: 0.28rem 0 0.1rem 0.9rem;
  padding: 0 0 0 0.7rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.nav-group li {
  padding-left: 0;
  line-height: 1.32;
}

.nav-group li a {
  display: block;
  padding: 0.13rem 0.45rem;
  border-radius: 0.25rem;
  color: #99969b;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s var(--ease-out);
}

.nav-group li a:hover,
.nav-group li a.is-active {
  background: rgba(255, 255, 255, 0.055);
  color: var(--group-accent);
  font-style: normal;
  transform: translateX(0.2rem);
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  font-style: normal;
}

.sidebar-footer-link {
  margin-top: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.sidebar-footer-link:hover {
  border-color: var(--contact);
  background: color-mix(in srgb, var(--contact) 12%, transparent);
  color: var(--white);
  font-style: normal;
}

.sidebar-spacer {
  flex: 1;
  min-height: 1rem;
}

.sidebar-logo {
  display: block;
  align-self: center;
  width: 3.35rem;
  margin-top: 0.6rem;
}

.sidebar-logo img {
  width: 100%;
  height: auto;
  opacity: 0.52;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.sidebar-logo:hover img { opacity: 1; transform: scale(1.06); }

.menu-toggle {
  display: none;
  width: 100%;
  border: 0;
  padding: 0.65rem 1rem;
  background: var(--black);
  color: var(--white);
  font: inherit;
  text-align: center;
}

.site-main {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
}

.hero-grid {
  position: relative;
  min-height: 100vh;
  padding: 0.65rem 1.15rem;
  overflow: hidden;
}

.name-grid {
  display: grid;
  width: 100%;
  height: 100vh;
  grid-auto-rows: 1fr;
  gap: 0;
  overflow: hidden;
}

.grid-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border: 1px solid transparent;
  font-size: clamp(0.72rem, 1.35vw, 1.15rem);
  letter-spacing: 0.06em;
  opacity: 0.96;
  text-shadow: 0 0 0.6rem rgba(255, 255, 255, 0.12);
  transition: color 0.18s ease, border-color 0.12s linear, background-color 0.18s ease, box-shadow 0.18s ease;
}

.grid-letter.seeker-window-0 { --seeker-color: var(--project); }
.grid-letter.seeker-window-1 { --seeker-color: var(--collab); }
.grid-letter.seeker-window-2 { --seeker-color: var(--music); }

.grid-letter[class*="seeker-window-"] {
  border-color: color-mix(in srgb, var(--seeker-color) 68%, transparent);
  background: color-mix(in srgb, var(--seeker-color) 9%, transparent);
  color: var(--seeker-color);
  box-shadow: inset 0 -0.12rem var(--seeker-color);
}

.grid-letter[class*="seeker-match-"] {
  background: var(--seeker-color);
  color: var(--black);
  box-shadow: 0 0 1.4rem color-mix(in srgb, var(--seeker-color) 48%, transparent);
  font-weight: 600;
}

.content-section,
.project-section,
.utility-section,
.code-section {
  min-height: 100svh;
  padding: 1.2rem var(--content-pad) 2rem;
  border-bottom: 1px solid var(--line);
}

.home-main .content-section {
  min-height: 0;
  padding-block: 0.7rem;
  border-bottom: 0;
}

.home-main #whodat { padding-top: 1.8rem; }
.home-main #awards { min-height: 0; padding-bottom: 2rem; }

.section-title,
.project-title,
.utility-title {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  margin: 0.2rem 0 1rem;
  border-bottom: 0;
  color: var(--white);
  font-size: clamp(1.75rem, 2.65vw, 2.25rem);
  font-style: italic;
  line-height: 1;
  overflow-wrap: anywhere;
}

.content-section .section-title {
  display: block;
  width: 100%;
  height: 1.25em;
  margin-bottom: 0.45rem;
  color: var(--white);
}

.project-heading .project-title,
.code-section .section-title {
  justify-self: start;
  width: max-content;
  color: var(--white);
}

.intro-line {
  max-width: 88ch;
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.intro-line .hash {
  color: var(--muted);
  font-size: 0.78em;
  font-style: italic;
  letter-spacing: 0;
}

.prose {
  max-width: 94rem;
}

.prose p {
  margin: 0 0 0.9rem;
}

.prose a,
.project-description a {
  color: var(--warm);
  text-decoration-color: rgba(255, 173, 50, 0.48);
}

.award-list {
  display: grid;
  max-width: 70rem;
  margin: 0;
  padding: 0;
  gap: 0.08rem;
  list-style: none;
}

.award-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.75rem;
}

.project-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.55fr);
  align-items: start;
  gap: 1.5rem;
}

.project-section {
  display: flex;
  flex-direction: column;
  overflow: clip;
  background:
    radial-gradient(circle at 96% 2%, color-mix(in srgb, var(--accent, var(--project)) 5%, transparent), transparent 20rem),
    transparent;
}

.project-meta {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.35;
  text-align: right;
}

.project-description {
  max-width: 76rem;
  margin: 0.55rem auto 1rem;
  line-height: 1.45;
  text-align: center;
}

.project-description p {
  margin: 0.45rem 0;
}

.project-credit,
.prize {
  margin: 0.65rem auto;
  text-align: center;
}

.project-credit {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.prize {
  color: #ffd84d;
}

.media-frame,
.media-placeholder,
.carousel {
  width: min(90%, 76rem);
  margin: 1rem auto;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.45rem;
  background: #050505;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.55);
}

.media-frame.ratio-video {
  aspect-ratio: 16 / 9;
}

#moveo-tracker .media-frame.ratio-video {
  aspect-ratio: 317 / 168;
  background: transparent;
}

.media-frame.bandcamp-frame {
  width: min(90%, 52rem);
  height: 7.5rem;
  margin-block: clamp(2.5rem, 10vh, 6rem) auto;
  border-color: rgba(255, 173, 50, 0.28);
  background: var(--surface-raised);
  box-shadow: 0 1.25rem 4rem rgba(0, 0, 0, 0.38);
}

.media-frame iframe,
.media-frame video,
.media-frame img {
  width: 100%;
  height: 100%;
  border: 0;
}

.media-frame img {
  object-fit: cover;
}

.media-frame video {
  display: block;
  object-fit: contain;
}

.media-frame.cover {
  height: min(66vh, 44rem);
}

.media-frame.cover img {
  max-height: none;
  object-fit: cover;
}

.media-placeholder {
  display: grid;
  min-height: min(62vh, 32rem);
  place-items: center;
  border: 1px dashed var(--muted);
  background:
    linear-gradient(135deg, transparent 49.6%, rgba(255, 255, 255, 0.12) 50%, transparent 50.4%),
    linear-gradient(45deg, transparent 49.6%, rgba(255, 255, 255, 0.12) 50%, transparent 50.4%);
  color: var(--muted);
  text-align: center;
}

.carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: var(--surface);
  box-shadow: 0 1.75rem 5rem rgba(0, 0, 0, 0.52);
  isolation: isolate;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.carousel:focus-within {
  border-color: color-mix(in srgb, var(--accent, var(--project)) 62%, var(--white));
  box-shadow: 0 1.75rem 5rem rgba(0, 0, 0, 0.52), 0 0 0 1px color-mix(in srgb, var(--accent, var(--project)) 28%, transparent);
}

.carousel-track {
  display: flex;
  width: 100%;
  overflow: visible;
  touch-action: pan-y;
  transition: transform 0.58s var(--ease-out);
  user-select: none;
  will-change: transform;
}

.carousel-track:focus-visible {
  outline: 0.18rem solid var(--accent, var(--project));
  outline-offset: -0.3rem;
}

.carousel figure {
  position: relative;
  display: grid;
  flex: 0 0 100%;
  height: min(66vh, 44rem);
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: #030303;
  opacity: 0.72;
  transform: scale(0.992);
  transition: opacity 0.45s ease, transform 0.58s var(--ease-out);
}

.carousel figure.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel img,
.carousel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  border: 0;
  object-fit: cover;
  object-position: 50% var(--carousel-focus-y, 50%);
}

.media-frame picture,
.carousel picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Per-frame focal points, reviewed against the actual gallery photographs. */
#spectra .carousel figure:nth-child(7) img { --carousel-focus-y: 62%; }

#canevas .carousel figure:nth-child(4) img,
#canevas .carousel figure:nth-child(6) img,
#canevas .carousel figure:nth-child(8) img { --carousel-focus-y: 65%; }
#canevas .carousel figure:nth-child(10) img { --carousel-focus-y: 60%; }

#nuages .carousel figure:nth-child(9) img { --carousel-focus-y: 65%; }

#chant .carousel figure:nth-child(1) img { --carousel-focus-y: 25%; }
#chant .carousel figure:nth-child(2) img { --carousel-focus-y: 35%; }
#chant .carousel figure:nth-child(3) img { --carousel-focus-y: 30%; }
#chant .carousel figure:nth-child(8) img { --carousel-focus-y: 68%; }

#qualia .carousel figure:nth-child(8) img { --carousel-focus-y: 60%; }
#qualia .carousel figure:nth-child(9) img { --carousel-focus-y: 58%; }

#latences .carousel figure:nth-child(13) img { --carousel-focus-y: 64%; }

.carousel figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 16%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.26));
  content: "";
  pointer-events: none;
}

.carousel-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(7, 7, 9, 0.76);
  color: var(--white);
  font-size: 0;
  backdrop-filter: blur(0.7rem);
  box-shadow: 0 0.7rem 2rem rgba(0, 0, 0, 0.38);
  transform: translateY(-50%);
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.2s var(--ease-out);
}

.carousel-button::before {
  font: 1.2rem/1 var(--mono);
}

.carousel-button.prev::before { content: "←"; }
.carousel-button.next::before { content: "→"; }

.carousel-button:active {
  transform: translateY(-50%) scale(0.94);
}

.carousel-button:hover {
  border-color: var(--accent, var(--project));
  background: var(--accent, var(--project));
  color: var(--black);
  transform: translateY(-50%) scale(1.06);
}

.carousel-button.prev { left: 0.85rem; }
.carousel-button.next { right: 0.85rem; }

.carousel-status {
  position: absolute;
  z-index: 3;
  right: 0.85rem;
  bottom: 0.8rem;
  padding: 0.3rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 7, 9, 0.72);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  backdrop-filter: blur(0.7rem);
}

.media-frame,
.carousel {
  margin-block-start: auto;
}

.media-frame.is-broken,
.carousel figure.is-broken {
  background:
    linear-gradient(135deg, transparent 49.7%, rgba(255, 255, 255, 0.15) 50%, transparent 50.3%),
    #080808;
}

.media-frame.is-broken::after,
.carousel figure.is-broken::before {
  position: absolute;
  inset: 50% auto auto 50%;
  color: var(--muted);
  content: "media unavailable";
  transform: translate(-50%, -50%);
}

.show-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  list-style: none;
}

body[data-accent="dates"] .utility-section {
  min-height: 0;
  padding-bottom: 0.6rem;
  border-bottom: 0;
}

body[data-accent="dates"] .utility-title {
  display: block;
  width: 100%;
  height: 1.25em;
  margin-bottom: 0.45rem;
}

.show-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(9rem, 0.55fr) minmax(12rem, 0.85fr) minmax(18rem, 2fr);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.35);
  transition: background-color 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
  .show-item:hover {
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0.24rem 0 var(--accent, var(--shows));
  }

  body.has-date-row-focus .show-item.is-date-muted { opacity: 0.46; }

  body.has-date-row-focus .show-item.is-date-related {
    background: color-mix(in srgb, var(--accent, var(--shows)) 8%, transparent);
    box-shadow: inset 0.12rem 0 color-mix(in srgb, var(--accent, var(--shows)) 54%, transparent);
    opacity: 0.78;
  }

  body.has-date-row-focus .show-item.is-date-active {
    background: color-mix(in srgb, var(--accent, var(--shows)) 17%, transparent);
    box-shadow: inset 0.26rem 0 var(--accent, var(--shows));
    opacity: 1;
  }
}

.show-item > * {
  padding: 0.11rem 0.65rem;
}

.show-date {
  display: block;
  width: 100%;
  text-align: left;
  letter-spacing: normal;
  word-spacing: normal;
}

.show-venue {
  color: var(--warm);
  text-decoration: none;
}

.show-venue:hover { color: var(--accent, var(--shows)); }

@media (min-width: 58.01rem) {
  body[data-accent="dates"] .site-main {
    display: block;
    min-height: 100svh;
    overflow: visible;
  }

  body[data-accent="dates"] .utility-section {
    display: block;
    height: auto;
    min-width: 0;
    padding: 1rem var(--content-pad);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body[data-accent="dates"] .show-list {
    display: grid;
    gap: clamp(0.08rem, 0.25vh, 0.22rem);
  }

  body[data-accent="dates"] #forthcoming .show-item {
    grid-template-columns: minmax(9rem, 0.55fr) minmax(12rem, 0.85fr) minmax(18rem, 2fr);
    padding-block: 0.4rem;
  }

  body[data-accent="dates"] #forthcoming .show-date { text-align: left; }

  body[data-accent="dates"] #pastcoming .show-item {
    grid-template-columns: minmax(9rem, 0.55fr) minmax(12rem, 0.85fr) minmax(18rem, 2fr);
  }

  body[data-accent="dates"] #pastcoming .show-item > * {
    padding: 0.1rem 0.65rem;
    line-height: 1.25;
  }
}

.code-section {
  display: flex;
  flex-direction: column;
}

.code-stage {
  position: relative;
  flex: 1;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--code) 7%, transparent), transparent 42%),
    #030303;
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, 0.72);
}

.code-stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.demo-intro {
  max-width: 72ch;
  margin: -0.35rem 0 1.2rem;
  color: #c7c4c9;
}

.demo-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.demo-controls label {
  display: grid;
  gap: 0.2rem;
}

input,
textarea,
button {
  border: 1px solid var(--white);
  border-radius: 0;
  background: var(--black);
  color: var(--white);
  font: inherit;
}

input,
textarea {
  width: 100%;
  padding: 0.65rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent, var(--project));
  outline: 0;
  box-shadow: 0 0 0 0.16rem color-mix(in srgb, var(--accent, var(--project)) 34%, transparent);
}

button,
.button-link {
  display: inline-block;
  padding: 0.65rem 1rem;
  cursor: pointer;
  text-decoration: none;
}

button:hover,
.button-link:hover {
  background: var(--white);
  color: var(--black);
  font-style: normal;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 58rem;
  margin: clamp(2rem, 7vh, 5rem) auto;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  text-transform: lowercase;
}

.contact-form textarea {
  min-height: 12rem;
  resize: vertical;
}

.contact-form > label:nth-of-type(3),
.contact-form > .contact-turnstile,
.contact-form > button,
.contact-form > .form-status,
.contact-form > .placeholder-note {
  grid-column: 1 / -1;
}

.contact-form > button {
  border-color: var(--contact-stabilo);
  background: var(--contact-stabilo);
  color: var(--white);
  font-weight: 600;
  text-transform: lowercase;
}

.contact-submit {
  overflow: hidden;
  padding-inline: 0;
  white-space: nowrap;
}

.contact-submit span {
  display: block;
  width: max-content;
  min-width: 100%;
  margin-left: -2ch;
  word-spacing: 0.42em;
}

.contact-form > button:hover,
.contact-form > button:focus-visible {
  border-color: color-mix(in srgb, var(--contact) 86%, transparent);
  background: color-mix(in srgb, var(--contact) 86%, transparent);
  color: var(--white);
}

.contact-form > button:active {
  border-color: color-mix(in srgb, var(--contact) 96%, transparent);
  background: color-mix(in srgb, var(--contact) 96%, transparent);
  color: var(--white);
}

.contact-form > button:disabled {
  opacity: 0.52;
  cursor: wait;
}

.contact-turnstile {
  width: 100%;
  min-height: 4.1rem;
  overflow: hidden;
}

.contact-turnstile iframe { max-width: 100%; }

.contact-honeypot {
  position: fixed !important;
  left: -200vw !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 1.5rem;
  color: var(--contact);
  text-align: center;
}

.placeholder-note {
  color: var(--muted);
  font-size: 0.8rem;
}

.reveal-ready > * {
  opacity: 0;
  transform: translateY(0.7rem);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-ready > :nth-child(2) { transition-delay: 0.06s; }
.reveal-ready > :nth-child(3) { transition-delay: 0.12s; }
.reveal-ready > :nth-child(4) { transition-delay: 0.18s; }
.reveal-ready.is-visible > * { opacity: 1; transform: none; }

@supports (content-visibility: auto) {
  .utility-section:not(:first-child),
  .code-section:not(:first-child) {
    content-visibility: auto;
    contain-intrinsic-size: auto 100vh;
  }
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.not-found > div {
  width: 100%;
  min-width: 0;
}

.not-found-code {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.not-found h1 {
  display: block;
  width: auto;
  max-width: 10ch;
  margin: 0 auto;
  font-size: clamp(3rem, 13vw, 10rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

/* Compact portfolio rail and project-first homepage */
.site-sidebar {
  border-right-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(155deg, rgba(255, 81, 71, 0.055), transparent 27%),
    #08080a;
  box-shadow: none;
}

.sidebar-inner {
  padding: 1.1rem 1rem 0.9rem;
  font-size: 0.75rem;
}

.site-brand {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-transform: lowercase;
}

.site-brand::before,
.site-brand::after {
  display: none;
}

.sidebar-identity {
  margin-top: 1.25rem;
  text-transform: uppercase;
}

.sidebar-identity span {
  display: block;
  padding: 0.18rem 0.32rem;
  background: var(--project);
  color: var(--black);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.sidebar-identity small {
  display: block;
  margin-top: 0.38rem;
  color: var(--muted);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.primary-nav {
  margin-top: 1.6rem;
  padding-block: 0.8rem;
  border-block: 1px solid rgba(255, 255, 255, 0.13);
}

.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.38rem 0.25rem;
  color: #aaa7ac;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.18s ease, transform 0.18s var(--ease-out);
}

.primary-nav a span {
  color: #57545a;
  font-size: 0.57rem;
}

.primary-nav a::after {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--white);
  font-style: normal;
  transform: translateX(0.2rem);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.sidebar-index {
  margin-top: 1.4rem;
}

.sidebar-index p {
  margin: 0 0 0.5rem;
  color: #565259;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-index a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.2rem 0;
  color: #8c8990;
  font-size: 0.67rem;
  text-decoration: none;
}

.sidebar-index a:hover,
.sidebar-index a[aria-current="page"] {
  color: var(--white);
  font-style: normal;
}

.sidebar-index i {
  width: 0.32rem;
  height: 0.32rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--dot);
  box-shadow: 0 0 0.55rem color-mix(in srgb, var(--dot) 55%, transparent);
}

.sidebar-footer {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #77737a;
  font-size: 0.56rem;
  text-transform: uppercase;
}

.sidebar-footer p {
  margin: 0 0 0.6rem;
  color: #aaa7ac;
  line-height: 1.45;
}

.sidebar-footer div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.sidebar-footer a {
  text-decoration: none;
}

.physics-controls {
  position: absolute;
  z-index: 12;
  top: 0.7rem;
  left: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  max-width: min(28rem, calc(100% - 1.4rem));
  margin: 0;
  padding: 0.24rem;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(0.28rem);
}

.physics-controls button {
  min-height: 1.75rem;
  padding: 0.22rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #aaa;
  font: inherit;
  font-size: 0.58rem;
  text-transform: lowercase;
  cursor: pointer;
}

.physics-controls button:hover,
.physics-controls button:focus-visible,
.physics-controls button[aria-pressed="true"] {
  border-color: var(--systems);
  color: #fff;
}

.physics-controls button.needs-audio-gesture {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.78);
  color: #161616;
}

.physics-control-status {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.56rem;
  line-height: 1.2;
}

.physics-control-status:empty {
  display: none;
}

.project-home {
  min-height: 100svh;
  padding: 0.45rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #030304;
  background-size: 4rem 4rem;
}

.project-index-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.7rem;
  padding: 0 0.45rem;
  color: #817e84;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-index-heading p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.status-light {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--project);
  box-shadow: 0 0 0.65rem color-mix(in srgb, var(--project) 70%, transparent);
}

.project-graph {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  min-height: calc(100svh - 3.6rem);
  overflow: hidden;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(75, 184, 255, 0.115), transparent 24rem),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 58%);
  cursor: crosshair;
  isolation: isolate;
}

.project-graph::before,
.project-graph::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.project-graph::before { width: min(72vw, 55rem); aspect-ratio: 1; }
.project-graph::after { width: min(44vw, 34rem); aspect-ratio: 1; }

.project-graph canvas,
.graph-labels {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.graph-core {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0.28rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.88);
  color: #b9b6bb;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.project-graph canvas {
  z-index: 0;
  touch-action: none;
}

.graph-labels {
  z-index: 2;
  pointer-events: none;
}

.graph-node {
  --node-color: var(--work);
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  max-width: 16rem;
  padding: 0.34rem 0.46rem;
  border: 1px solid color-mix(in srgb, var(--node-color) 58%, transparent);
  background: rgba(3, 3, 4, 0.9);
  box-shadow: 0 0 1rem color-mix(in srgb, var(--node-color) 8%, transparent);
  color: #ebe8ec;
  font-size: clamp(0.62rem, 0.9vw, 0.8rem);
  letter-spacing: 0.025em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: auto;
  will-change: left, top, transform, opacity;
  transition: color 0.16s ease, background-color 0.16s ease, opacity 0.18s ease;
}

.graph-node[data-category="systems"] { --node-color: var(--systems); }
.graph-node[data-category="sound"] { --node-color: var(--sound); }
.graph-node[data-category="lab"] { --node-color: var(--lab); }

.graph-node span {
  color: var(--node-color);
  font-size: 0.5rem;
}

.graph-node:hover,
.graph-node:focus-visible,
.graph-node.is-active {
  background: var(--node-color);
  color: var(--black);
  font-style: normal;
  box-shadow: 0 0 1.5rem color-mix(in srgb, var(--node-color) 35%, transparent);
}

.graph-node:hover span,
.graph-node:focus-visible span,
.graph-node.is-active span {
  color: var(--black);
}

.project-graph.has-focus .graph-node:not(.is-active) {
  opacity: 0.34 !important;
}

.graph-hud {
  position: absolute;
  z-index: 4;
  right: 0.65rem;
  bottom: 0.6rem;
  left: 0.65rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 1.2rem;
  color: #949097;
  font-size: 0.6rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  pointer-events: none;
}

.graph-hud p { margin: 0; }

.graph-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.graph-legend span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.graph-legend i {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--legend);
  box-shadow: 0 0 0.5rem color-mix(in srgb, var(--legend) 60%, transparent);
}

.graph-readout {
  color: #d0cdd1;
  text-align: center;
}

.graph-hint { text-align: right; }

/* Quiet, image-led graph treatment */
.home-graph::before { display: none; }

.site-sidebar,
.sidebar-inner {
  font-family: Arial, Helvetica, sans-serif;
}

.site-sidebar {
  background: #111;
}

.site-brand {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: max-content;
  margin-inline: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: visible;
  font-size: clamp(1.58rem, 2.15vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.84;
  text-transform: lowercase;
  text-shadow: 0 0.08em 0.12em rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

.site-sidebar,
.site-sidebar .sidebar-identity,
.site-sidebar .sidebar-identity span,
.site-sidebar .sidebar-identity small,
.site-sidebar .project-menu-panel {
  text-transform: lowercase;
}

.site-brand::before {
  position: absolute;
  z-index: -1;
  bottom: -0.18em;
  left: -0.14em;
  display: block;
  width: calc(100% + 0.3em);
  height: 0.72em;
  background: #e43b32;
  clip-path: polygon(
    0 var(--marker-top-left, 12%),
    100% var(--marker-top-right, 7%),
    98% var(--marker-bottom-right, 93%),
    1% var(--marker-bottom-left, 96%)
  );
  content: "";
  transform: translateX(var(--marker-shift, 0)) rotate(var(--marker-angle, -3deg)) scaleX(1);
  transform-origin: left center;
}

.site-brand::after { display: none; }

.sidebar-identity span {
  padding: 0;
  background: transparent;
  color: #f1efea;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
}

.sidebar-identity small {
  margin-top: 0.3rem;
  color: #777;
  font-size: 0.63rem;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: lowercase;
}

.primary-nav {
  margin-top: 1.75rem;
  padding-block: 0.8rem;
}

.sidebar-nav {
  display: grid;
  justify-items: start;
  gap: 0.08rem;
}

.sidebar-nav a[href="/about/"] { --marker: var(--about) !important; }

.primary-nav a,
.primary-nav button {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: max-content;
  max-width: 100%;
  padding: 0.42rem 0.3rem;
  color: #aaa;
  font-size: 0.82rem;
  font-weight: 400;
  font-family: inherit;
  letter-spacing: 0;
  text-transform: lowercase;
}

.primary-nav button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sidebar-nav a::before,
.sidebar-nav button::before,
[data-drawer-category]::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  bottom: auto;
  left: calc(-1 * var(--marker-start, 0.1em));
  width: calc(100% + var(--marker-start, 0.1em) + var(--marker-end, 0.14em));
  height: var(--marker-height, 0.86em);
  background: var(--marker, var(--accent));
  clip-path: polygon(
    0 var(--marker-top-left, 12%),
    100% var(--marker-top-right, 7%),
    98% var(--marker-bottom-right, 93%),
    1% var(--marker-bottom-left, 96%)
  );
  content: "";
  opacity: 0.74;
  transform: translateX(var(--marker-shift, 0)) translateY(var(--marker-y)) rotate(var(--marker-angle, -2deg)) scaleX(0);
  transform-origin: left center;
}

.primary-nav a span { display: none; }

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"],
.primary-nav a.is-project-category-active,
.primary-nav button:hover,
.primary-nav button:focus-visible,
.primary-nav button[aria-current="page"],
.primary-nav button[aria-expanded="true"] {
  color: #fff;
  transform: none;
}

.primary-nav a::after,
.primary-nav button::after {
  display: none;
}

.sidebar-nav a:hover::before,
.sidebar-nav a:focus-visible::before,
.sidebar-nav button:hover::before,
.sidebar-nav button:focus-visible::before,
[data-drawer-category]:hover::before,
[data-drawer-category]:focus-visible::before {
  animation: marker-wipe 0.2s var(--ease-out) 0s forwards;
  animation-delay: 0s;
  transition-delay: 0s;
}

.sidebar-nav a[aria-current="page"]::before,
.sidebar-nav a.is-project-category-active::before,
.sidebar-nav button[aria-current="page"]::before,
.sidebar-nav button[aria-expanded="true"]::before,
[data-drawer-category][aria-current="page"]::before,
[data-drawer-category].is-project-category-active::before {
  animation: none;
  transform: translateX(var(--marker-shift, 0)) translateY(var(--marker-y, 0)) rotate(var(--marker-angle, -3deg)) scaleX(1);
}

.sidebar-nav a:focus-visible,
.sidebar-nav button:focus-visible,
.site-brand:focus-visible {
  outline: 0.12rem solid #fff;
  outline-offset: 0.18rem;
}

html.has-js .site-brand::before { transform: translateX(var(--marker-shift, 0)) rotate(var(--marker-angle, -3deg)) scaleX(0); }

html.has-js.markers-ready .site-brand::before {
  animation: marker-wipe 0.32s var(--ease-out) forwards;
}

@keyframes marker-wipe {
  from { transform: translateX(var(--marker-shift, 0)) translateY(var(--marker-y, 0)) rotate(var(--marker-angle, -3deg)) scaleX(0); }
  to { transform: translateX(var(--marker-shift, 0)) translateY(var(--marker-y, 0)) rotate(var(--marker-angle, -3deg)) scaleX(1); }
}

.project-menu-panel[hidden],
.project-menu-items[hidden] { display: none; }

.project-menu-panel {
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
  max-height: min(42svh, 22rem);
  margin: 0.08rem 0 0.28rem;
  padding: 0.18rem 0.2rem 0.26rem 0.55rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  scrollbar-color: #555 transparent;
  scrollbar-width: thin;
}

.project-menu-category { min-width: 0; }

.primary-nav .project-menu-category-trigger {
  display: block;
  width: max-content;
  min-height: 1.75rem;
  padding: 0.35rem 0.16rem;
  color: #929092;
  font-size: 0.72rem;
  line-height: 1.2;
}

.project-menu-items {
  margin: 0.02rem 0 0.28rem 0.35rem;
  padding-left: 0.38rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.project-menu-view-all,
.project-menu-items li a {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 1.5rem;
  padding: 0.25rem 0.04rem;
  color: #aaa;
  font-size: 0.68rem;
  line-height: 1.25;
  text-decoration: none;
}

.project-menu-view-all {
  margin-bottom: 0.14rem;
  color: #777;
  font-size: 0.64rem;
  text-transform: lowercase;
}

.project-menu-items ul {
  display: grid;
  gap: 0.05rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-menu-view-all::before,
.project-menu-items li a::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: calc(-1 * var(--marker-start, 0.1em));
  width: calc(100% + var(--marker-start, 0.1em) + var(--marker-end, 0.14em));
  height: var(--marker-height, 0.82em);
  background: var(--marker);
  clip-path: polygon(
    0 var(--marker-top-left, 12%),
    100% var(--marker-top-right, 7%),
    98% var(--marker-bottom-right, 93%),
    1% var(--marker-bottom-left, 96%)
  );
  content: "";
  opacity: 0.7;
  transform: translateX(var(--marker-shift, 0)) translateY(var(--marker-y, -46%)) rotate(var(--marker-angle, -1deg)) scaleX(0);
  transform-origin: left center;
}

.project-menu-view-all:hover,
.project-menu-view-all:focus-visible,
.project-menu-items li a:hover,
.project-menu-items li a:focus-visible,
.project-menu-items li a[aria-current="location"] { color: #fff; }

.project-menu-view-all:hover::before,
.project-menu-view-all:focus-visible::before,
.project-menu-items li a:hover::before,
.project-menu-items li a:focus-visible::before {
  animation: marker-wipe 0.2s var(--ease-out) 0s forwards;
  animation-delay: 0s;
  transition-delay: 0s;
}

.project-menu-items li a[aria-current="location"]::before {
  animation: none;
  transform: translateX(var(--marker-shift, 0)) translateY(var(--marker-y, -46%)) rotate(var(--marker-angle, -1deg)) scaleX(1);
}

.project-menu-panel a:focus-visible,
.project-menu-panel button:focus-visible {
  outline: 0.11rem solid #fff;
  outline-offset: 0.14rem;
}

.last-person-panel {
  display: grid;
  flex: 1 1 auto;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  width: 100%;
  min-height: 10rem;
  margin-top: 0.65rem;
  padding: 0.65rem 0.12rem 0.5rem;
  overflow: visible;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aaa;
  text-transform: lowercase;
}

.last-person-panel h2 {
  margin: 0 0 0.42rem;
  color: #f0efeb;
  font: inherit;
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0;
}

.last-person-panel h2 span {
  margin-left: 0.28rem;
  color: var(--lab);
  font-size: 0.52rem;
}

.last-person-panel [hidden],
.last-person-dialog [hidden] { display: none !important; }

.last-person-panel figure {
  min-height: 0;
  margin: 0 0 0.38rem;
}

.last-person-panel figure:not([hidden]) {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.last-person-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-sizing: border-box;
  object-fit: cover;
  object-position: 50% 50%;
}

.last-person-panel figcaption,
.last-person-empty,
.last-person-status {
  margin: 0.22rem 0;
  color: #9a9a9a;
  font-size: 0.56rem;
  line-height: 1.3;
}

.last-person-empty { align-self: center; }

.last-person-take {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 1.7rem;
  margin-top: 0.28rem;
  padding: 0.28rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: #1b1b1f;
  color: #f7f4ee;
  font-size: 0.62rem;
  line-height: 1.2;
  text-transform: lowercase;
  cursor: pointer;
}

.last-person-take:hover,
.last-person-take:focus-visible {
  border-color: var(--lab);
  background: #25252b;
  color: #fff;
  outline: 0;
  box-shadow: 0 0 0 0.11rem color-mix(in srgb, var(--lab) 55%, transparent);
}

.last-person-dialog {
  width: min(92vw, 30rem);
  max-width: 30rem;
  max-height: calc(100dvh - 2rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #111;
  color: #f0efeb;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.72);
  text-transform: lowercase;
}

.last-person-dialog::backdrop { background: rgba(0, 0, 0, 0.76); }

.last-person-dialog.is-fallback-open {
  position: fixed;
  z-index: 100;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.last-person-capture {
  max-height: calc(100dvh - 2rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  padding: clamp(0.7rem, 2vw, 1rem);
  overflow: auto;
  overscroll-behavior: contain;
}

.last-person-capture h2 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-weight: 400;
}

.last-person-preview {
  width: min(100%, 27rem);
  max-height: min(46dvh, 20rem);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #050505;
  aspect-ratio: 4 / 3;
}

.last-person-preview video,
.last-person-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.last-person-preview video { transform: scaleX(-1); }

.last-person-capture p {
  margin: 0.55rem 0 0;
  color: #aaa;
  font-size: 0.68rem;
  line-height: 1.35;
}

.last-person-turnstile {
  width: 100%;
  min-height: 4.1rem;
  margin-top: 0.55rem;
  overflow: hidden;
}

.not-found .button-link {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  text-transform: lowercase;
}

.not-found .button-link:hover,
.not-found .button-link:focus-visible {
  border-color: var(--contact);
  background: var(--contact);
  color: #1a0710;
}

.form-status.is-error { color: #ff8d85; }

.last-person-turnstile iframe { max-width: 100%; }
.last-person-actions {
  position: sticky;
  z-index: 2;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 0.55rem;
  padding: 0.2rem 0;
  background: #111;
}

.last-person-actions button {
  min-height: 2rem;
  padding: 0.38rem 0.65rem;
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
  color: #eee;
  font-size: 0.68rem;
  text-transform: lowercase;
  cursor: pointer;
}

.last-person-actions button:hover,
.last-person-actions button:focus-visible {
  border-color: var(--lab);
  outline: 0.11rem solid var(--lab);
  outline-offset: 0.1rem;
}

.last-person-actions button:disabled {
  opacity: 0.42;
  cursor: wait;
}

body.camera-dialog-open { overflow: hidden; }

@media (min-width: 58.01rem) {
  .sidebar-spacer {
    flex: 0 0 auto;
    min-height: 0.35rem;
  }
}

@media (max-height: 34rem), (orientation: landscape) and (max-height: 38rem) {
  .last-person-preview {
    width: min(100%, 23rem);
    max-height: 38dvh;
  }

  .last-person-capture h2 { margin-bottom: 0.42rem; }
  .last-person-capture p { margin-top: 0.35rem; }
}

.project-section[id] .project-title,
.code-section[id] .section-title {
  display: block;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  border-bottom: 0;
  background: none;
  color: inherit;
  text-decoration: none;
  cursor: default;
}

.project-section[id] .project-title::before,
.code-section[id] .section-title::before {
  display: none;
}

.static-marker-host {
  position: relative;
  z-index: 0;
  isolation: isolate;
  border-bottom: 0 !important;
  background: none !important;
  text-decoration: none !important;
}

.static-stabilo {
  position: relative;
  z-index: 1;
  display: inline;
  margin: 0;
  padding: 0.075em var(--stabilo-end, 0.26em) 0.095em var(--stabilo-start, 0.26em);
  background: linear-gradient(transparent, transparent);
  background-repeat: no-repeat;
  box-decoration-break: clone;
  color: inherit;
  -webkit-box-decoration-break: clone;
}

.static-stabilo-strokes {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.static-stabilo-stroke {
  position: absolute;
  display: block;
  background: var(--stabilo-fill, color-mix(in srgb, var(--accent, var(--project)) 72%, transparent));
  clip-path: polygon(
    var(--stabilo-tl-x) var(--stabilo-tl-y),
    var(--stabilo-tr-x) var(--stabilo-tr-y),
    var(--stabilo-br-x) var(--stabilo-br-y),
    var(--stabilo-bl-x) var(--stabilo-bl-y)
  );
  transform: rotate(var(--stabilo-rotation));
  transform-origin: center;
}

.static-stabilo-strokes--about .static-stabilo-stroke {
  background: color-mix(in srgb, var(--about) 74%, transparent);
}

.utility-title.static-marker-host,
.content-section > .section-title.static-marker-host {
  border-bottom: 0;
  background: none;
}

.about-grid > h2.static-marker-host::before { display: none; }

.about-headline-marker.static-stabilo {
  background: linear-gradient(transparent, transparent);
}
.sidebar-index p {
  color: #666;
  font-size: 0.63rem;
  letter-spacing: 0;
  text-transform: none;
}

.sidebar-index a {
  padding-block: 0.25rem;
  color: #929292;
  font-size: 0.72rem;
}

.sidebar-footer {
  color: #686868;
  font-size: 0.58rem;
  letter-spacing: 0;
  text-transform: none;
}

.sidebar-footer p {
  color: #888;
  text-transform: none;
}

.sidebar-contact {
  display: inline-block;
  width: max-content;
  margin-bottom: 0.72rem;
  color: #aaa;
  font-size: 0.72rem;
  text-decoration: none;
}

.sidebar-contact:hover,
.sidebar-contact:focus-visible,
.sidebar-contact[aria-current="page"] {
  color: #fff;
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--contact);
  text-decoration-thickness: 0.28em;
  text-underline-offset: -0.12em;
}

.project-home {
  background: #f0efeb;
  color: #171717;
  font-family: Arial, Helvetica, sans-serif;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.about-main {
  overflow-x: clip;
  background: #070708;
  color: #f1f0eb;
}

.about-main .content-section {
  min-height: 0;
  padding: 1rem var(--content-pad) 0;
  border-bottom: 0;
}

.about-main .content-section + .content-section {
  padding-top: clamp(1.25rem, 2.5vh, 1.75rem);
  padding-bottom: clamp(1.25rem, 2.5vh, 1.75rem);
}

.about-heading {
  display: block;
}

.about-heading .utility-title {
  margin-bottom: 0;
}


.about-lead {
  max-width: 46ch;
  margin: clamp(1.4rem, 3vh, 2.2rem) 0 clamp(1.2rem, 2.5vh, 1.8rem);
  color: #f1f0eb;
  font-size: clamp(1.45rem, 2.1vw, 2.3rem);
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.about-copy {
  max-width: 78rem;
  color: rgba(241, 240, 235, 0.91);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.58;
}

.about-copy p { margin-block: 0 0.95rem; }

.about-copy a {
  color: #aebaff;
  text-decoration-color: color-mix(in srgb, var(--about) 62%, transparent);
}

.about-intro .about-copy {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.75rem, 4vw, 4.5rem);
  align-items: start;
}

.about-intro .about-copy p:last-child {
  grid-column: 1 / -1;
}

.about-main .section-title {
  margin-bottom: 1rem;
}

.about-awards .award-list {
  max-width: 78rem;
}

.about-awards .award-list li {
  grid-template-columns: 8rem minmax(0, 1fr);
  padding: 0.52rem 0;
  gap: 1rem;
  border-top: 1px solid rgba(241, 240, 235, 0.18);
}

.about-awards .award-list li:last-child {
  border-bottom: 1px solid rgba(241, 240, 235, 0.18);
}

.about-award-year {
  color: #aebaff;
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 58.01rem) and (max-height: 60rem) {
  .about-main .content-section + .content-section {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }

  .about-main .section-title {
    margin-bottom: 0.7rem;
  }

  .about-awards .award-list li {
    padding-block: 0.48rem;
  }
}

@media (max-width: 58rem) {
  .about-main .content-section {
    padding-block: 1.2rem 3rem;
  }

  .about-main .content-section + .content-section {
    padding-top: 0;
  }


  .about-lead {
    margin-block: 2rem;
  }

  .about-intro .about-copy {
    grid-template-columns: 1fr;
  }

  .about-intro .about-copy p:last-child {
    grid-column: auto;
  }


}

@media (max-width: 34rem) {
  .about-awards .award-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

@media (max-width: 58rem) {
  :root { --sidebar-width: 16rem; }

  .site-sidebar {
    inset: 0 0 auto;
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(3, 3, 5, 0.94);
    backdrop-filter: blur(0.8rem);
  }

  .menu-toggle {
    display: block;
    position: relative;
    min-height: 3rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: lowercase;
  }

  .menu-toggle::after {
    position: absolute;
    top: 50%;
    right: 1rem;
    content: "+";
    font-size: 1.15rem;
    font-weight: 400;
    transform: translateY(-50%);
  }

  .menu-toggle[aria-expanded="true"]::after { content: "×"; }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background: var(--black);
    color: var(--white);
  }

  .site-sidebar.is-open { height: 100svh; }

  .sidebar-inner {
    max-height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }

  .site-sidebar.is-open .sidebar-inner {
    max-height: calc(100svh - 3rem);
    padding: 0.75rem 0.7rem 1.2rem;
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open { overflow: hidden; }

  .nav-group ul {
    margin-left: 0.9rem;
    padding-left: 0.7rem;
  }

  .sidebar-logo {
    display: none;
  }

  .site-main {
    margin-left: 0;
    padding-top: 3rem;
  }

  .content-section,
  .project-section,
  .utility-section,
  .code-section {
    scroll-margin-top: 3rem;
  }

  .hero-grid,
  .name-grid {
    min-height: calc(100svh - 3rem);
    height: calc(100svh - 3rem);
  }

  .hero-grid { padding: 0.35rem; }

  .home-main #awards { min-height: 0; }

  .intro-line { font-size: clamp(1.2rem, 5vw, 1.55rem); }

  .project-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .project-meta {
    margin-top: 0;
    text-align: left;
  }

  .media-frame,
  .media-placeholder,
  .carousel {
    width: 100%;
  }

  /* Standalone videos should follow the copy on mobile instead of using the
     remaining project-section height as a spacer. Galleries keep their
     bottom-weighted desktop/mobile rhythm. */
  :is(.project-section, .code-section) > .media-frame.ratio-video {
    margin-block-start: 1rem;
  }

  .carousel figure,
  .media-frame.ratio-video,
  .media-frame.cover {
    height: min(58svh, 36rem);
  }

  .media-frame.ratio-video {
    aspect-ratio: auto;
  }

  .media-frame.ratio-video video {
    object-fit: cover;
  }

  .media-frame.bandcamp-frame {
    width: min(100%, 38rem);
    height: 7.5rem;
  }

  .show-item {
    grid-template-columns: 1fr;
    padding-block: 0.55rem;
  }

  .show-item > * {
    padding-block: 0.12rem;
  }

  .show-date {
    text-align: left;
  }

  .contact-form { grid-template-columns: 1fr; }

  .contact-form > * { grid-column: 1; }

}

@media (max-width: 34rem) {
  .content-section,
  .project-section,
  .utility-section,
  .code-section {
    padding-inline: 0.75rem;
  }

  .award-list li {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .carousel figure,
  .media-frame.ratio-video,
  .code-stage {
    min-height: 22rem;
    height: 54svh;
  }

  .carousel-button {
    width: 2.75rem;
    height: 2.75rem;
  }

  .carousel-button.prev { left: 0.55rem; }
  .carousel-button.next { right: 0.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 58rem) {
  .sidebar-inner {
    padding-inline: 1rem;
  }

  .site-brand {
    font-size: 1.35rem;
  }

  .sidebar-identity {
    max-width: 18rem;
  }

  .primary-nav {
    margin-top: 1.25rem;
  }

  .project-home {
    padding: 0.35rem;
  }

  .project-graph {
    min-height: calc(100svh - 5.7rem);
  }

  .graph-hud {
    grid-template-columns: 1fr auto;
  }

  .graph-readout {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: left;
  }

}

@media (max-width: 34rem) {
  .project-index-heading {
    min-height: 2.35rem;
  }

  .project-graph {
    min-height: 43rem;
  }

  .graph-labels {
    inset: 3.25rem 0.45rem 6.5rem;
    display: grid;
    width: auto;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
    gap: 0.26rem;
  }

  .graph-node {
    position: static;
    max-width: none;
    min-width: 0;
    padding: 0.5rem 0.4rem;
    overflow: hidden;
    font-size: 0.58rem;
    opacity: 1 !important;
    text-overflow: ellipsis;
    transform: none !important;
  }

  .project-graph.has-focus .graph-node:not(.is-active) {
    opacity: 0.36 !important;
  }

  .graph-hud {
    display: block;
  }

  .graph-legend { margin-bottom: 0.55rem; }
  .graph-readout { margin-bottom: 0.35rem !important; }
  .graph-hint { text-align: left; }

}

/* Homepage project lens */
.project-browser {
  display: grid;
  min-height: 100svh;
  padding: 0.7rem;
  grid-template-columns: minmax(0, 1.8fr) minmax(14rem, 0.58fr);
  gap: 0.7rem;
  background: #f0efeb;
}

.project-stage {
  --stage-shift-x: 0px;
  --stage-shift-y: 0px;
  position: relative;
  min-height: calc(100svh - 1.4rem);
  overflow: hidden;
  border-radius: 0.24rem;
  background: #d4d3cf;
  color: #fff;
  isolation: isolate;
  text-decoration: none;
}

.project-stage::after {
  position: absolute;
  z-index: 1;
  inset: 35% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
  content: "";
  pointer-events: none;
}

.project-stage:hover,
.project-stage:focus-visible {
  color: #fff;
  font-style: normal;
}

.project-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.035);
  transform: scale(1.035) translate3d(var(--stage-shift-x), var(--stage-shift-y), 0);
  transition: opacity 0.2s ease, filter 0.45s ease, transform 0.22s ease-out;
  will-change: transform;
}

.project-stage:hover img {
  filter: saturate(1) contrast(1.02);
}

.project-stage.is-changing img { opacity: 0.08; }

.project-stage-caption {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 2.5vw, 2.2rem);
  bottom: clamp(1rem, 2.5vw, 2.2rem);
  left: clamp(1rem, 2.5vw, 2.2rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  text-shadow: 0 0.1rem 1.2rem rgba(0, 0, 0, 0.42);
}

.project-stage-caption > span {
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.62rem, 0.82vw, 0.75rem);
  line-height: 1.35;
}

.project-stage-caption strong {
  max-width: 12ch;
  font-size: clamp(1.8rem, 4.25vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.86;
  text-align: right;
}

.project-signal {
  position: relative;
  display: flex;
  min-width: 0;
  padding: clamp(0.8rem, 2.5vh, 1.7rem) 0.9rem;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.24rem;
  background: #e6e5e1;
}

.project-signal::before {
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 1.35rem;
  width: 1px;
  background: rgba(23, 23, 23, 0.13);
  content: "";
}

.project-signal-node {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  padding: clamp(0.28rem, 0.7vh, 0.48rem) 0.18rem;
  grid-template-columns: 0.72rem minmax(0, 1fr);
  align-items: center;
  gap: 0.62rem;
  color: #777570;
  font-size: clamp(0.67rem, 0.8vw, 0.78rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.3s var(--ease-out);
}

.project-signal-node i {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  border: 0.13rem solid #e6e5e1;
  border-radius: 50%;
  background: var(--signal, #777570);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--signal, #777570) 55%, transparent);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease;
}

.project-signal-node[data-category="work"] { --signal: var(--work); }
.project-signal-node[data-category="systems"] { --signal: var(--systems); }
.project-signal-node[data-category="sound"] { --signal: var(--sound); }
.project-signal-node[data-category="lab"] { --signal: var(--lab); }

.project-signal-node span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-signal-node:hover,
.project-signal-node:focus-visible,
.project-signal-node.is-previewed {
  color: #171717;
  font-style: normal;
  transform: translateX(0.22rem);
}

.project-signal-node:hover i,
.project-signal-node:focus-visible i,
.project-signal-node.is-previewed i {
  box-shadow: 0 0 0 0.22rem color-mix(in srgb, var(--signal) 18%, transparent);
  transform: scale(1.34);
}

@media (max-width: 58rem) {
  .project-browser {
    min-height: calc(100svh - 3rem);
    padding: 0.4rem;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(25rem, 62svh) auto;
    gap: 0.4rem;
  }

  .project-stage {
    min-height: 0;
  }

  .project-signal {
    display: grid;
    padding: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.12rem 0.7rem;
    overflow: visible;
  }

  .project-signal::before { display: none; }

  .project-signal-node {
    padding-block: 0.45rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 34rem) {
  .project-browser {
    grid-template-rows: minmax(22rem, 58svh) auto;
  }

  .project-stage-caption {
    display: block;
  }

  .project-stage-caption > span {
    display: block;
    margin-bottom: 0.4rem;
  }

  .project-stage-caption strong {
    display: block;
    max-width: 10ch;
    font-size: clamp(2rem, 12vw, 3.4rem);
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-stage img { transform: scale(1.02); }
}

/* Homepage project atlas */
.project-atlas {
  position: relative;
  min-height: 100svh;
  padding: 0;
  background: #f0efeb;
  isolation: isolate;
  overflow: hidden;
}

.project-atlas-grid {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100svh;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: 0.38rem;
}

.project-tile {
  --pan-x: 0px;
  --pan-y: 0px;
  --tile-accent: var(--collab);
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 15, 15, 0.16);
  border-radius: 0;
  background: #d5d4d0;
  color: #fff;
  isolation: isolate;
  text-decoration: none;
}

.project-tile[data-category="work"] { --tile-accent: var(--work); }
.project-tile[data-category="systems"] { --tile-accent: var(--systems); }
.project-tile[data-category="sound"] { --tile-accent: var(--sound); }
.project-tile[data-category="lab"] { --tile-accent: var(--lab); }

.project-tile::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: clamp(1.4rem, 22%, 4.5rem);
  height: 0.18rem;
  background: var(--tile-accent);
  content: "";
  opacity: 0.9;
  transition: width 0.4s var(--ease-out);
}

.project-tile::after {
  position: absolute;
  z-index: 1;
  inset: 26% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
  content: "";
  pointer-events: none;
}

.project-tile:hover,
.project-tile:focus-visible {
  color: #fff;
  font-style: normal;
}

.project-tile:hover::before,
.project-tile:focus-visible::before {
  width: 100%;
}

.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transform: scale(1.055) translate3d(var(--pan-x), var(--pan-y), 0);
  transition: filter 0.35s ease, transform 0.28s ease-out;
  will-change: transform;
}

.project-tile:hover img,
.project-tile:focus-visible img {
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.055) translate3d(var(--pan-x), var(--pan-y), 0);
}

.project-tile-copy {
  position: absolute;
  z-index: 3;
  right: 0.55rem;
  bottom: 0.48rem;
  left: 0.55rem;
  display: block;
  text-shadow: 0 0.1rem 0.7rem rgba(0, 0, 0, 0.48);
}

.project-tile-copy strong,
.project-tile-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-tile-copy strong {
  font-size: clamp(0.68rem, 1vw, 0.92rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.project-tile-copy small {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.48rem, 0.58vw, 0.59rem);
  line-height: 1.15;
}

.project-tile--minecraft { grid-column: 1 / 5; grid-row: 1 / 4; }
.project-tile--spectra { grid-column: 5 / 8; grid-row: 1 / 3; }
.project-tile--qualia { grid-column: 8 / 10; grid-row: 1 / 3; }
.project-tile--fixate { grid-column: 10 / 13; grid-row: 1 / 4; }
.project-tile--six { grid-column: 5 / 7; grid-row: 3 / 4; }
.project-tile--fomo { grid-column: 7 / 10; grid-row: 3 / 4; }
.project-tile--aus { grid-column: 1 / 3; grid-row: 4 / 6; }
.project-tile--canevas { grid-column: 3 / 6; grid-row: 4 / 6; }
.project-tile--nadir { grid-column: 6 / 9; grid-row: 4 / 6; }
.project-tile--nuages { grid-column: 9 / 11; grid-row: 4 / 6; }
.project-tile--latences { grid-column: 11 / 13; grid-row: 4 / 6; }
.project-tile--directions { grid-column: 1 / 5; grid-row: 6 / 7; }
.project-tile--chant { grid-column: 5 / 9; grid-row: 6 / 7; }
.project-tile--curfew { grid-column: 9 / 13; grid-row: 6 / 7; }

.project-tile--minecraft .project-tile-copy strong,
.project-tile--fixate .project-tile-copy strong {
  font-size: clamp(1rem, 1.7vw, 1.65rem);
}

@media (max-width: 58rem) {
  .project-atlas {
    min-height: calc(100svh - 3rem);
    padding: 0;
  }

  .project-atlas-grid {
    height: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-flow: dense;
    grid-auto-rows: 9rem;
    gap: 0.35rem;
  }

  .project-tile,
  .project-tile[class*="project-tile--"] {
    grid-column: span 1;
    grid-row: span 1;
  }

  .project-tile--minecraft,
  .project-tile--fixate {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }

  .project-tile--spectra,
  .project-tile--canevas,
  .project-tile--directions,
  .project-tile--chant,
  .project-tile--curfew {
    grid-column: span 2 !important;
  }
}

@media (max-width: 34rem) {
  .last-person-panel {
    flex: 0 0 auto;
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  }

  .last-person-panel img { height: min(55svh, 24rem); }

  .project-atlas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 9.5rem;
  }

  .project-tile--fixate {
    grid-column: span 1 !important;
    grid-row: span 2 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-tile img,
  .project-tile:hover img,
  .project-tile:focus-visible img {
    transform: scale(1.055);
  }
}

/* Expanded atlas: the complete project catalog at a glance */
.project-atlas-grid {
  position: relative;
  isolation: isolate;
  grid-template-columns: repeat(64, minmax(0, 1fr));
  grid-template-rows: repeat(30, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  grid-auto-flow: dense;
  gap: 0.22rem;
}

.project-atlas-grid .project-tile {
  --tile-columns: 2;
  --tile-rows: 1;
  z-index: 1;
  grid-column: span var(--tile-columns);
  grid-row: span var(--tile-rows);
  transition: box-shadow 0.32s ease, opacity 0.28s ease;
}

.project-atlas-grid.is-mosaic-map .project-tile {
  --tile-depth: clamp(3px, 0.32vw, 5px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: #d5d4d0;
  box-shadow:
    inset 2px 0 rgba(255, 255, 255, 0.62),
    inset 0 2px rgba(255, 255, 255, 0.62),
    inset calc(-1 * var(--tile-depth)) 0 rgba(5, 5, 7, 0.46),
    inset 0 calc(-1 * var(--tile-depth)) rgba(5, 5, 7, 0.52),
    1px 2px 0 rgba(10, 10, 12, 0.44),
    3px 5px 7px rgba(10, 10, 12, 0.3);
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
}

.project-atlas-grid.is-mosaic-map .project-tile img,
.project-atlas-grid.is-mosaic-map .project-tile-copy {
  pointer-events: none;
  -webkit-user-drag: none;
}

.project-atlas-grid.is-mosaic-map .project-tile.is-dragging {
  z-index: 7;
  cursor: grabbing;
  opacity: 1;
  box-shadow:
    inset 2px 0 rgba(255, 255, 255, 0.62),
    inset 0 2px rgba(255, 255, 255, 0.62),
    inset calc(-1 * var(--tile-depth)) 0 rgba(5, 5, 7, 0.46),
    inset 0 calc(-1 * var(--tile-depth)) rgba(5, 5, 7, 0.52),
    0 0 0 0.14rem var(--tile-accent),
    2px 3px 0 rgba(10, 10, 12, 0.46),
    4px 7px 10px rgba(10, 10, 12, 0.34);
}

.project-atlas-grid.is-dragging .project-tile:not(.is-dragging) { cursor: default; }

html.has-js .project-atlas-grid.is-physics-pending .project-tile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

.project-tile picture {
  display: block;
  width: 100%;
  height: 100%;
}

.project-atlas-grid.is-physics-world .project-tile {
  position: absolute;
  top: 0;
  left: 0;
  grid-column: auto !important;
  grid-row: auto !important;
  margin: 0;
  transition: box-shadow 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.project-atlas-grid.is-mosaic-map .project-tile--moveo {
  background:
    radial-gradient(circle at 68% 28%, color-mix(in srgb, var(--lab) 54%, transparent), transparent 28%),
    linear-gradient(145deg, #17191c, #08090a 68%);
}

@media (min-width: 44.01rem) {
  html.has-js .project-atlas-grid:not(.is-mosaic-map) {
    visibility: hidden;
  }
}

.project-atlas-grid.is-mosaic-map .project-tile img,
.project-atlas-grid.is-mosaic-map .project-tile:hover img,
.project-atlas-grid.is-mosaic-map .project-tile:focus-visible img {
  height: 100%;
  border: 0;
  filter: contrast(1.02);
  transform: translate3d(var(--pan-x), var(--pan-y), 0) scale(1.045);
}

.project-atlas-grid.is-mosaic-map .project-tile-copy {
  right: 0.42rem;
  bottom: 0.38rem;
  left: 0.42rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  backdrop-filter: none;
  text-shadow: 0 0.08rem 0.25rem rgba(0, 0, 0, 0.9), 0 0.2rem 0.9rem rgba(0, 0, 0, 0.75);
}

.project-atlas-grid.is-mosaic-map .project-tile--fixate img {
  object-position: 46.5% 54%;
}

.project-atlas-grid.is-mosaic-map .project-tile-copy strong {
  font-size: clamp(0.68rem, 0.8vw, 0.84rem);
  font-weight: 600;
}

.project-atlas-grid.is-mosaic-map .project-tile-copy small {
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.48rem, 0.52vw, 0.56rem);
}

.project-atlas-grid.is-mosaic-map .project-tile--minecraft .project-tile-copy strong,
.project-atlas-grid.is-mosaic-map .project-tile--moveo .project-tile-copy strong,
.project-atlas-grid.is-mosaic-map .project-tile--spectra .project-tile-copy strong,
.project-atlas-grid.is-mosaic-map .project-tile--fixate .project-tile-copy strong,
.project-atlas-grid.is-mosaic-map .project-tile--peupleraie .project-tile-copy strong,
.project-atlas-grid.is-mosaic-map .project-tile--musigait .project-tile-copy strong,
.project-atlas-grid.is-mosaic-map .project-tile--visions .project-tile-copy strong,
.project-atlas-grid.is-mosaic-map .project-tile--littoral .project-tile-copy strong,
.project-atlas-grid.is-mosaic-map .project-tile--qualia .project-tile-copy strong,
.project-atlas-grid.is-mosaic-map .project-tile--canevas .project-tile-copy strong {
  font-size: clamp(0.72rem, 1vw, 1rem);
}

.project-atlas-grid .project-tile--minecraft { --tile-columns: 4; --tile-rows: 3; }
.project-atlas-grid .project-tile--spectra { --tile-columns: 3; --tile-rows: 2; }
.project-atlas-grid .project-tile--fixate { --tile-columns: 4; --tile-rows: 2; }
.project-atlas-grid .project-tile--peupleraie { --tile-columns: 3; --tile-rows: 3; }
.project-atlas-grid .project-tile--fomo { --tile-columns: 3; --tile-rows: 2; }
.project-atlas-grid .project-tile--inua { --tile-columns: 2; --tile-rows: 2; }
.project-atlas-grid .project-tile--canevas { --tile-columns: 4; --tile-rows: 2; }
.project-atlas-grid .project-tile--visions,
.project-atlas-grid .project-tile--nadir,
.project-atlas-grid .project-tile--curfew { --tile-columns: 3; }
.project-atlas-grid .project-tile--disorder,
.project-atlas-grid .project-tile--espace { --tile-columns: 3; }
.project-atlas-grid .project-tile--qualia,
.project-atlas-grid .project-tile--aus { --tile-columns: 2; --tile-rows: 2; }
.project-atlas-grid .project-tile--hypnagogia { --tile-columns: 2; --tile-rows: 3; }
.project-atlas-grid .project-tile--synapses { --tile-columns: 2; --tile-rows: 2; }
.project-atlas-grid .project-tile--nuages { --tile-columns: 1; --tile-rows: 2; }
.project-atlas-grid .project-tile--musigait,
.project-atlas-grid .project-tile--littoral { --tile-columns: 3; --tile-rows: 2; }

.project-tile--spectra .project-tile-copy strong,
.project-tile--peupleraie .project-tile-copy strong,
.project-tile--fomo .project-tile-copy strong,
.project-tile--inua .project-tile-copy strong,
.project-tile--canevas .project-tile-copy strong {
  font-size: clamp(1rem, 1.7vw, 1.65rem);
}

.project-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.project-connections {
  z-index: 6;
  overflow: visible;
  opacity: 1;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.72)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.48));
}

.connection-path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.connection-path--signal {
  stroke: var(--connection-color, #45c5bc);
  stroke-dasharray: 4 6;
  stroke-linecap: round;
  stroke-width: 2.65;
  animation: connection-flow 2.4s linear infinite;
}

.connection-node {
  fill: var(--connection-color, #45c5bc);
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}

@keyframes connection-flow {
  to { stroke-dashoffset: -19; }
}

@media (hover: hover) and (pointer: fine) {
  .project-tile.is-category-peer {
    z-index: 5;
    opacity: 0.95;
  }

  .project-tile.is-category-muted {
    z-index: 1;
    opacity: 0.1;
  }

  .project-tile.is-atlas-focus {
    z-index: 6;
    box-shadow:
      inset 2px 0 rgba(255, 255, 255, 0.62),
      inset 0 2px rgba(255, 255, 255, 0.62),
      inset calc(-1 * var(--tile-depth)) 0 rgba(5, 5, 7, 0.46),
      inset 0 calc(-1 * var(--tile-depth)) rgba(5, 5, 7, 0.52),
      0 0 0 0.11rem var(--tile-accent),
      2px 3px 0 rgba(10, 10, 12, 0.42),
      4px 7px 10px rgba(10, 10, 12, 0.3);
  }
}

.project-tile.is-category-peer { opacity: 0.95; }
.project-tile.is-atlas-focus { opacity: 1; }

.project-atlas-grid.has-atlas-focus .project-tile.is-category-muted { z-index: 2; }
.project-atlas-grid.has-atlas-focus .project-tile.is-category-peer { z-index: 7; }
.project-atlas-grid.has-atlas-focus .project-tile.is-atlas-focus { z-index: 8; }
.project-atlas-grid.has-atlas-focus .project-tile.is-dragging { z-index: 9; }

.project-tile.is-category-muted {
  z-index: 1;
  opacity: 0.14;
}

.project-atlas-grid.is-physics-resetting { visibility: hidden; }

.connection-path--network { stroke-width: 1.7; opacity: 0.84; }

@media (prefers-reduced-motion: reduce) {
  .connection-path--signal { animation: none; }
  .show-item { transition: none; }

  html.has-js .site-brand::before,
  html.has-js.markers-ready .site-brand::before {
    animation: none;
    transform: translateX(var(--marker-shift, 0)) rotate(var(--marker-angle, -3deg)) scaleX(1);
  }

  .sidebar-nav a:hover::before,
  .sidebar-nav a:focus-visible::before,
  .sidebar-nav a[aria-current="page"]::before,
  .sidebar-nav a.is-project-category-active::before,
  .sidebar-nav button:hover::before,
  .sidebar-nav button:focus-visible::before,
  .sidebar-nav button[aria-current="page"]::before,
  .sidebar-nav button[aria-expanded="true"]::before,
  [data-drawer-category]:hover::before,
  [data-drawer-category]:focus-visible::before,
  [data-drawer-category].is-project-category-active::before,
  .project-menu-view-all:hover::before,
  .project-menu-view-all:focus-visible::before,
  .project-menu-items li a:hover::before,
  .project-menu-items li a:focus-visible::before {
    animation: none;
    transform: translateX(var(--marker-shift, 0)) translateY(var(--marker-y, 0)) rotate(var(--marker-angle, -3deg)) scaleX(1);
  }

}

@media (max-width: 44rem) {
  .project-atlas,
  .project-atlas-grid {
    height: calc(100svh - 3rem);
    min-height: 30rem;
    overflow: hidden;
  }

  .project-atlas-grid.is-mosaic-map {
    grid-template-columns: repeat(64, minmax(0, 1fr));
    grid-template-rows: repeat(30, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
  }
}

@media (min-width: 58.01rem) {
  .home-graph,
  .project-home {
    height: 100svh;
    min-height: 0;
    overflow: hidden;
  }

  .project-atlas,
  .project-atlas-grid {
    height: 100svh;
    max-height: 100svh;
    min-height: 0;
  }

  .home-graph .project-home { padding: 0; }

}

@media (max-width: 58rem) {
  .last-person-panel {
    display: block;
    flex: 0 0 auto;
    min-height: 0;
  }

  .last-person-panel img { height: clamp(7rem, 32svh, 16rem); }

  .project-atlas-grid {
    height: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 9rem;
  }

  .project-atlas-grid .project-tile {
    grid-column: span 1;
    grid-row: span 1;
  }

  .project-atlas-grid .project-tile--minecraft,
  .project-atlas-grid .project-tile--moveo,
  .project-atlas-grid .project-tile--spectra,
  .project-atlas-grid .project-tile--fixate,
  .project-atlas-grid .project-tile--peupleraie,
  .project-atlas-grid .project-tile--fomo,
  .project-atlas-grid .project-tile--inua,
  .project-atlas-grid .project-tile--canevas,
  .project-atlas-grid .project-tile--musigait,
  .project-atlas-grid .project-tile--littoral {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 34rem) {
  .last-person-panel img { height: min(48svh, 22rem); }

  .project-atlas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 9.5rem;
  }

  .project-atlas-grid .project-tile--minecraft,
  .project-atlas-grid .project-tile--moveo,
  .project-atlas-grid .project-tile--spectra,
  .project-atlas-grid .project-tile--fixate,
  .project-atlas-grid .project-tile--peupleraie,
  .project-atlas-grid .project-tile--fomo,
  .project-atlas-grid .project-tile--inua,
  .project-atlas-grid .project-tile--canevas,
  .project-atlas-grid .project-tile--musigait,
  .project-atlas-grid .project-tile--littoral {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (min-width: 44.01rem) and (max-width: 58rem) {
  .home-graph {
    height: 100svh;
    overflow: hidden;
  }

  .home-graph .project-home {
    height: calc(100svh - 3rem);
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  .project-atlas,
  .project-atlas-grid {
    height: 100%;
    min-height: 0;
  }

  .project-atlas-grid {
    grid-template-columns: repeat(64, minmax(0, 1fr));
    grid-template-rows: repeat(30, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
  }

  .project-atlas-grid .project-tile {
    grid-column: span var(--tile-columns);
    grid-row: span var(--tile-rows);
  }
}

/* Keep the mobile physics world, controls, and visible viewport on one stable box. */
@media (max-width: 44rem) {
  .home-graph {
    height: 100svh;
    min-height: 0;
    overflow: hidden;
  }

  .home-graph .project-home {
    box-sizing: border-box;
    height: 100svh;
    min-height: 0;
    padding: 3rem 0 0;
    overflow: hidden;
  }

  .project-atlas,
  .project-atlas-grid {
    height: 100%;
    min-height: 0;
    max-height: 100%;
  }

  .project-atlas-grid {
    grid-template-columns: repeat(64, minmax(0, 1fr));
    grid-template-rows: repeat(30, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
  }

  .project-atlas-grid .project-tile {
    grid-column: span var(--tile-columns);
    grid-row: span var(--tile-rows);
  }

  .physics-controls {
    z-index: 30;
    top: 0.45rem;
    left: 0.45rem;
    max-width: calc(100% - 0.9rem);
    background: rgba(10, 10, 10, 0.88);
  }

  .physics-controls button {
    min-height: 2rem;
    font-size: 0.64rem;
  }

  body.menu-open .physics-controls {
    opacity: 0;
    pointer-events: none;
  }
}

@media (min-width: 44.01rem) and (max-width: 58rem) {
  .home-graph .project-home {
    box-sizing: border-box;
    height: 100svh;
    min-height: 0;
    padding: 3rem 0 0;
  }
}

/* Direct-link promoter sheets: intentionally absent from the public navigation. */
.promoter-main {
  background:
    radial-gradient(circle at 82% 4%, color-mix(in srgb, var(--work) 8%, transparent), transparent 30rem),
    var(--black);
}

.promoter-sheet.project-section {
  width: min(100%, 104rem);
  min-height: 100svh;
  margin-inline: auto;
  padding-block: clamp(1.2rem, 3vw, 3rem);
  overflow: visible;
}

.promoter-heading {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.promoter-heading .project-title {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5.5vw, 5.8rem);
}

.promoter-kicker {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.promoter-feature,
.promoter-secondary,
.promoter-gallery {
  width: 100%;
  margin-top: clamp(2rem, 5vw, 4.8rem);
}

.promoter-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 auto 0.65rem;
  gap: 1rem;
}

.promoter-section-heading h2,
.promoter-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  font-style: italic;
  line-height: 1.1;
}

.promoter-section-heading span {
  color: var(--muted);
  font-size: 0.7rem;
  text-align: right;
}

.promoter-sheet .media-frame,
.promoter-sheet .carousel {
  width: 100%;
  margin-block: 0;
}

.promoter-video {
  border-radius: 0;
  border-color: color-mix(in srgb, var(--work) 38%, var(--line));
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.42);
}

.promoter-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  margin-top: 0.8rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.promoter-links a {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.85rem;
  gap: 0.75rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--white);
  text-decoration: none;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.promoter-links a span {
  color: var(--muted);
  font-size: 0.67rem;
  white-space: nowrap;
}

.promoter-links a:hover,
.promoter-links a:focus-visible {
  background: var(--work);
  color: var(--black);
}

.promoter-links a:hover span,
.promoter-links a:focus-visible span {
  color: var(--black);
}

.promoter-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(14rem, 0.8fr) minmax(16rem, 1fr);
  margin-top: clamp(2.2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.promoter-copy-two {
  grid-template-columns: minmax(0, 2fr) minmax(16rem, 1fr);
}

.promoter-copy > section {
  padding: clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promoter-copy p {
  max-width: 64ch;
  margin: 0.8rem 0 0;
  line-height: 1.5;
}

.promoter-copy-two > section:first-child p {
  max-width: none;
}

.promoter-credits {
  margin: 0.8rem 0 0;
}

.promoter-credits div + div {
  margin-top: 0.8rem;
}

.promoter-credits dt {
  color: var(--muted);
  font-size: 0.68rem;
}

.promoter-credits dd {
  margin: 0.12rem 0 0;
}

.promoter-secondary {
  width: min(100%, 76rem);
  margin-inline: auto;
}

.promoter-gallery .carousel {
  border-radius: 0;
}

body[data-unlisted-project] #fixate .promoter-gallery .carousel-track {
  height: auto;
  aspect-ratio: 16 / 9;
}

body[data-unlisted-project] #fixate .promoter-gallery .carousel figure {
  height: 100%;
}

body[data-unlisted-project] #fixate .promoter-gallery .carousel img {
  position: absolute;
  inset: 0;
  object-fit: contain;
}

.promoter-pliq {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.6fr);
  width: min(100%, 86rem);
  margin: clamp(2.5rem, 6vw, 6rem) auto 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.promoter-pliq-copy,
.promoter-pliq figure {
  margin: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promoter-pliq-copy {
  align-content: center;
  padding: clamp(1.2rem, 3vw, 2.5rem);
}

.promoter-pliq h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-style: italic;
}

.promoter-pliq-copy > p:not(.promoter-kicker) {
  max-width: 52ch;
  margin: 0.9rem 0 0;
  line-height: 1.5;
}

.promoter-pliq img {
  display: block;
  width: 100%;
  height: auto;
}

.promoter-pliq figcaption {
  padding: 0.45rem 0.6rem;
  color: var(--muted);
  font-size: 0.65rem;
}

.promoter-contact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: clamp(2.5rem, 6vw, 6rem);
  padding-top: 1rem;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.promoter-contact p {
  margin: 0;
  color: var(--muted);
}

.promoter-contact a {
  color: var(--white);
  font-weight: 600;
  text-decoration-color: var(--work);
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.2rem;
}

@media (max-width: 72rem) {
  .promoter-copy {
    grid-template-columns: minmax(0, 1.5fr) minmax(14rem, 1fr);
  }

  .promoter-copy > section:last-child {
    grid-column: 1 / -1;
  }

  .promoter-copy-two > section:last-child {
    grid-column: auto;
  }
}

@media (max-width: 42rem) {
  .promoter-heading .project-meta {
    margin-top: 0.65rem;
  }

  .promoter-copy {
    grid-template-columns: 1fr;
  }

  .promoter-copy > section:last-child {
    grid-column: auto;
  }

  .promoter-pliq {
    grid-template-columns: 1fr;
  }

  .promoter-links {
    grid-template-columns: 1fr;
  }

  .promoter-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}
