:root {
  /* Responsive system:
     mobile <= 680px, tablet <= 1024px, desktop <= 1440px, wide > 1440px.
     CSS media queries own layout. JS only annotates html[data-breakpoint/data-input]. */
  --bg: #050812;
  --ink: #f6f4ed;
  --muted: #aeb5c2;
  --line: rgba(246, 244, 237, 0.18);
  --panel: rgba(11, 18, 30, 0.78);
  --accent: #e7f0ff;
  --amber: #e7b45d;
  --teal: #64d4c2;
  --coral: #eb756d;
  --green: #9fce7a;
  --page-gutter: clamp(18px, 4vw, 56px);
  --section-gutter: clamp(18px, 5vw, 156px);
  --home-gutter-extra: 0px;
  --header-height: 54px;
  --dock-size: 38px;
  /* Type scale from person "Related Works" block:
     body ≈ 17px, display ≈ 2.6–2.8× body. Profile panel uses the same ratio. */
  --text-body: clamp(15px, 0.95vw + 0.55rem, 17px);
  --text-display: clamp(28px, 2.4vw + 0.85rem, 48px);
  --text-name: clamp(36px, 4.2vw + 0.6rem, 88px);
  --text-project: clamp(28px, 2.4vw + 0.85rem, 48px);
  --text-label: clamp(11px, 0.35vw + 0.55rem, 12px);
  --text-social: clamp(14px, 0.55vw + 0.55rem, 17px);
  --text-media: clamp(18px, 1.6vw + 0.4rem, 42px);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #000;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: #000;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}

body.profile-open {
  overflow: hidden;
}

body.home-page {
  --home-gutter-extra: 50px;
  --page-gutter: calc(clamp(18px, 4vw, 56px) + var(--home-gutter-extra));
  --section-gutter: calc(clamp(18px, 5vw, 156px) + var(--home-gutter-extra));
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  padding: max(9px, env(safe-area-inset-top)) var(--page-gutter) 9px;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(246, 244, 237, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(26px) saturate(145%);
  -webkit-backdrop-filter: blur(26px) saturate(145%);
}

.site-header.solid {
  background: rgba(0, 0, 0, 0.5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  background: transparent;
  font-size: 13px;
  letter-spacing: 0;
}

.home-mark svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}

.home-mark path {
  fill: none;
  stroke: rgba(246, 244, 237, 0.92);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-name {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.memory-page {
  min-height: calc(100dvh - var(--header-height));
  padding: calc(var(--header-height) + clamp(48px, 8vw, 96px)) var(--section-gutter)
    clamp(72px, 10vw, 120px);
  background: #000;
  color: var(--ink);
}

.memory-body {
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  background: #000;
}

html:has(.memory-body) {
  height: 100%;
  overflow: hidden;
}

.memory-body .site-rca-footer {
  display: none;
}

.memory-page--wall {
  min-height: 0;
  height: 100dvh;
  padding: var(--header-height) 0 0;
  overflow: hidden;
}

.memory-wall-section {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #000;
  overflow: hidden;
}

.memory-wall {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  overflow: hidden;
  touch-action: none;
  cursor: crosshair;
}

.memory-tile {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 3px;
  overflow: hidden;
  background: #141414;
  cursor: pointer;
  transform-origin: center center;
  will-change: transform;
  pointer-events: none;
}

.memory-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
  background: transparent;
  /* Avoid CSS filter — it forces expensive repaints with transform animations. */
  filter: none;
  -webkit-filter: none;
}

.memory-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #808080;
  mix-blend-mode: saturation;
  opacity: 1;
  transition: opacity 120ms ease;
  pointer-events: none;
}

.memory-tile.is-active {
  z-index: 2;
  border-radius: 4px;
  will-change: width, height, transform;
}

.memory-tile.is-active::after {
  opacity: 0;
  visibility: hidden;
}

.memory-tile.is-active img {
  filter: none;
  -webkit-filter: none;
}

.memory-focus,
.memory-focus__img {
  display: none !important;
}

.memory-hero {
  display: grid;
  gap: 18px;
}

.memory-hero .eyebrow {
  color: var(--teal);
  margin: 0;
}

.memory-hero h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 72px);
  line-height: 0.98;
}

.section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(246, 244, 237, 0.78);
  font-size: 14px;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-search {
  position: relative;
  flex: 1 1 auto;
  width: min(280px, 34vw);
  max-width: 280px;
  margin-left: auto;
}

.header-search-field {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 8px 0 14px;
  border: 1px solid rgba(246, 244, 237, 0.22);
  border-radius: 999px;
  background: rgba(246, 244, 237, 0.06);
  transition: border-color 180ms ease, background 180ms ease;
}

.header-search-field:focus-within {
  border-color: rgba(246, 244, 237, 0.42);
  background: rgba(246, 244, 237, 0.1);
}

.header-search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
  outline: none;
}

.header-search-input::placeholder {
  color: rgba(246, 244, 237, 0.42);
}

.header-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.header-search-button {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(246, 244, 237, 0.78);
  padding: 0;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.header-search-button:hover {
  color: var(--ink);
  background: rgba(246, 244, 237, 0.08);
}

.header-search-button svg {
  width: 16px;
  height: 16px;
}

.header-search-results {
  position: absolute;
  z-index: 40;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 244, 237, 0.18);
  border-radius: 14px;
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-search-result {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(246, 244, 237, 0.08);
  background: transparent;
  color: rgba(246, 244, 237, 0.88);
  padding: 11px 14px;
  font: inherit;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.header-search-result:last-child {
  border-bottom: 0;
}

.header-search-result:hover,
.header-search-result:focus-visible {
  background: rgba(246, 244, 237, 0.08);
  color: var(--ink);
  outline: none;
}

.profile-panel-header .header-search {
  width: min(220px, 28vw);
  max-width: 220px;
}

.profile-panel-header .nav-links {
  margin-left: clamp(8px, 1.5vw, 14px);
  margin-right: clamp(8px, 1.5vw, 14px);
}

.social-dock {
  position: fixed;
  z-index: 30;
  left: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-dock a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(246, 244, 237, 0.26);
  background: rgba(5, 8, 18, 0.5);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-dock a:hover {
  border-color: rgba(246, 244, 237, 0.72);
  background: rgba(246, 244, 237, 0.13);
  transform: translateX(3px);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--ink);
}

.hero {
  position: relative;
  min-height: 96vh;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(231, 240, 255, 0.06), transparent 46%),
    #000;
}

.network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  pointer-events: auto;
  touch-action: pan-y;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(740px, calc(100% - 36px));
  padding: 18vh clamp(18px, 4vw, 56px) 0;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.project-hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(56px, 11vw, 150px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(246, 244, 237, 0.74);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
}

.hero-status {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 56px);
  bottom: 32px;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(5, 8, 18, 0.48);
  color: rgba(246, 244, 237, 0.72);
  font-size: 13px;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero:hover .hero-status {
  opacity: 1;
  transform: translateY(0);
}

.profile-panel {
  position: fixed;
  z-index: 60;
  inset: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.profile-panel[hidden] {
  display: none;
}

.profile-scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: default;
  opacity: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 260ms ease;
}

.profile-sheet {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  overflow-x: clip;
  background: #000;
  transform: translateY(28px);
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
}

.profile-panel.is-open .profile-scrim,
.profile-panel.is-open .profile-sheet {
  opacity: 1;
}

.profile-panel.is-open .profile-sheet {
  transform: translateY(0);
}

.profile-panel-header {
  position: fixed;
  z-index: 72;
  top: 0;
  left: 0;
  right: 0;
}

.profile-panel-header .profile-close {
  position: static;
  z-index: auto;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
}

.profile-close {
  position: fixed;
  z-index: 70;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 244, 237, 0.24);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: var(--ink);
  padding: 0;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.profile-close:hover {
  border-color: rgba(246, 244, 237, 0.5);
  background: rgba(246, 244, 237, 0.1);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(40px, 6vw, 80px);
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0;
  padding:
    clamp(56px, 8vw, 88px)
    clamp(24px, 12.5vw, 12.5%)
    clamp(40px, 6vw, 88px);
}

.profile-aside,
.profile-work {
  min-width: 0;
}

.profile-aside {
  position: sticky;
  top: clamp(24px, 4vw, 40px);
  align-self: start;
  max-height: calc(100dvh - var(--header-height) - clamp(24px, 4vw, 40px) - clamp(40px, 6vw, 88px));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(246, 244, 237, 0.24) transparent;
}

.profile-section-kicker {
  display: inline-block;
  margin: 0;
  padding: 8px 14px;
  color: var(--muted);
  background: rgba(174, 181, 194, 0.12);
  border: 1px solid rgba(174, 181, 194, 0.32);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.profile-aside h2 {
  margin: 33px 0 0;
  max-width: none;
  font-size: clamp(36px, 4.8vw, 70px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.profile-bio {
  margin: clamp(24px, 3vw, 40px) 0 0;
  max-width: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.04em;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  text-wrap: pretty;
}

.profile-bio p {
  margin: 0;
}

.profile-bio p + p {
  margin-top: clamp(16px, 2.2vw, 24px);
}

.profile-contact {
  margin: clamp(28px, 4vw, 48px) 0 0;
  padding: 0;
}

.profile-contact-row {
  display: grid;
  grid-template-columns: minmax(96px, 38%) minmax(0, 1fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: start;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.profile-contact-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.profile-contact-row dt {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.04em;
}

.profile-contact-row dd {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.04em;
  text-align: right;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.profile-contact-row a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transform: scale(1);
  transform-origin: right center;
  transition: transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.profile-contact-row a:hover {
  transform: scale(1.04);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.profile-figure {
  margin: clamp(32px, 4vw, 56px) 0 0;
  overflow: hidden;
}

.profile-figure[hidden] {
  display: none;
}

.profile-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  background: #111;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.profile-figure:hover .profile-media,
.profile-work-gallery .profile-figure:hover .profile-media {
  transform: scale(1.04);
}

.profile-work {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.profile-work-offset {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: clamp(28px, 4vw, 48px);
  flex-shrink: 0;
  pointer-events: none;
}

.profile-figure-portrait {
  overflow: hidden;
}

.profile-figure-portrait.profile-figure-placeholder {
  aspect-ratio: 3 / 4;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.04);
}

.profile-figure-placeholder .profile-media {
  visibility: hidden;
}

.profile-work-intro {
  flex-shrink: 0;
}

.profile-project-video {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
  margin: clamp(24px, 3vw, 40px) 0 0;
}

.profile-project-video[hidden] {
  display: none;
}

.profile-video-block + .profile-video-block {
  margin-top: clamp(20px, 2.5vw, 32px);
}

.profile-video-title {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-video-link {
  margin: 0;
}

.profile-video-link a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.profile-video-link a:hover {
  opacity: 0.82;
}

.profile-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.profile-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.profile-figure-featured {
  margin: clamp(24px, 3vw, 40px) 0 0;
}

.profile-project-description {
  margin: clamp(24px, 3vw, 40px) 0 0;
  max-width: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.01em;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  text-wrap: pretty;
}

.profile-project-description:empty {
  display: none;
}

.profile-project-description p {
  margin: 0 0 1em;
}

.profile-project-description p:last-child {
  margin-bottom: 0;
}

.profile-work h3 {
  margin: 33px 0 0;
  max-width: none;
  color: #fff;
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.profile-work-gallery {
  display: grid;
  gap: clamp(10px, 1.2vw, 16px);
  margin-top: clamp(24px, 3vw, 40px);
}

.profile-work-gallery:empty {
  display: none;
}

.profile-work-gallery .profile-figure {
  margin: 0;
}

/* Desktop profile kicker labels — mobile variant hidden until <=680px */
.profile-kicker-label-mobile {
  display: none;
}

.profile-mobile-meta {
  display: none;
}

.video-section {
  padding: 112px var(--section-gutter) 108px;
  background: #000;
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  gap: 24px;
  margin: 0;
}

.video-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 24px;
  row-gap: 24px;
  align-items: end;
  width: 100%;
  margin: 0 0 32px;
}

.video-section-eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--teal);
}

.video-section-title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: clamp(30px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  justify-self: end;
  text-align: right;
}

.wall-tags {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.wall-tag {
  flex: 0 0 auto;
  border: 1px solid rgba(246, 244, 237, 0.08);
  border-radius: 999px;
  background: rgba(246, 244, 237, 0.1);
  color: rgba(246, 244, 237, 0.68);
  font: inherit;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.wall-tag:hover,
.wall-tag:focus-visible {
  color: var(--ink);
  background: rgba(246, 244, 237, 0.14);
  border-color: rgba(246, 244, 237, 0.16);
}

.wall-tag.is-active {
  color: var(--ink);
  background: rgba(246, 244, 237, 0.2);
  border-color: rgba(246, 244, 237, 0.24);
}

.section-heading .eyebrow {
  color: var(--teal);
  justify-self: start;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  justify-self: end;
  text-align: right;
}

.contact-band h2,
.project-copy h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
  background: #000;
}

.video-card {
  display: block;
  width: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: transparent;
  color: var(--ink);
  break-inside: avoid;
  opacity: 0;
  transform: translateY(calc(24px + var(--scroll-shift, 0px)));
  transition: opacity 420ms ease, transform 420ms ease, box-shadow 220ms ease;
  will-change: transform, opacity;
}

.video-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.video-card.is-visible {
  opacity: 1;
  transform: translateY(var(--scroll-shift, 0px));
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(135deg, var(--tile-a), transparent 56%),
    linear-gradient(315deg, var(--tile-b), transparent 48%),
    #121923;
}

.video-thumb.has-image {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #10141b;
}

/* Keep every waterfall tile the same portrait ratio so row gaps stay even. */
.video-card .video-thumb,
.video-card .video-thumb.has-image,
.video-card:nth-child(n) .video-thumb.has-image,
.video-card:nth-child(n) .video-thumb:not(.has-image) {
  aspect-ratio: 3 / 4;
  min-height: 0;
}

.video-thumb.has-image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #10141b;
  transition: transform 280ms ease;
}

.video-card:hover .video-thumb.has-image img {
  transform: scale(1.04);
}

.video-thumb.has-image::before,
.video-thumb.has-image::after {
  content: none;
}

.video-thumb::before {
  content: none;
}

.video-info {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px 16px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0 0 20px 20px;
}

.video-info h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.video-info p {
  margin: 6px 0 0;
  color: rgba(246, 244, 237, 0.72);
  font-size: 12px;
  line-height: 1.4;
}

.video-youtube-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  border-bottom: 1px solid rgba(246, 244, 237, 0.56);
  color: rgba(246, 244, 237, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-youtube-link:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.video-card:hover .video-thumb:not(.has-image) {
  filter: saturate(1.12) contrast(1.04);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 36px 0 0;
}

.load-more-button {
  min-width: 150px;
  border: 1px solid rgba(246, 244, 237, 0.28);
  background: rgba(246, 244, 237, 0.08);
  color: var(--ink);
  padding: 13px 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.load-more-button:hover {
  background: rgba(246, 244, 237, 0.16);
  transform: translateY(-1px);
}

.load-more-button[hidden] {
  display: none;
}

.contact-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 74px var(--page-gutter) 92px;
  background: #000;
}

.contact-band .eyebrow {
  color: var(--amber);
}

.text-link,
.back-link {
  display: inline-flex;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 700;
}

.project-page {
  background: #000;
  color: var(--ink);
}

.person-page {
  min-height: 100vh;
  background: #000;
  color: var(--ink);
}

.project-hero {
  min-height: 68vh;
  padding: 132px clamp(18px, 4vw, 56px) 64px;
  background:
    linear-gradient(135deg, rgba(5, 8, 18, 0.22), rgba(5, 8, 18, 0.72)),
    var(--detail-bg, #18212c);
  color: var(--ink);
}

.person-hero {
  min-height: 58vh;
  padding: 132px clamp(18px, 4vw, 56px) 64px;
  background:
    radial-gradient(circle at 26% 28%, rgba(168, 38, 255, 0.32), transparent 34%),
    linear-gradient(135deg, #050509 0%, #161022 54%, #050509 100%);
  color: var(--ink);
}

.back-link {
  margin-bottom: 48px;
  color: rgba(246, 244, 237, 0.84);
}

.project-kicker {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-hero p {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(246, 244, 237, 0.72);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.person-hero h1 {
  max-width: min(18ch, 100%);
  margin: 0;
  font-size: var(--text-name);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.person-hero p:not(.project-kicker) {
  max-width: min(68ch, 100%);
  margin: 24px 0 0;
  color: rgba(246, 244, 237, 0.72);
  font-size: var(--text-body);
  line-height: 1.55;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 4vw, 56px);
  padding: 56px clamp(18px, 4vw, 56px) 100px;
}

.person-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 4vw, 56px);
  padding: 56px clamp(18px, 4vw, 56px) 100px;
}

.project-media {
  min-height: 58vh;
  background:
    linear-gradient(135deg, var(--tile-a), transparent 58%),
    linear-gradient(315deg, var(--tile-b), transparent 48%),
  #10141b;
}

.person-work-preview {
  display: grid;
  min-height: 54vh;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(168, 38, 255, 0.92), transparent 58%),
    linear-gradient(315deg, rgba(100, 212, 194, 0.72), transparent 48%),
    #10141b;
  color: rgba(246, 244, 237, 0.76);
  font-size: var(--text-media);
  font-weight: 800;
}

.project-copy {
  align-self: start;
  position: sticky;
  top: 104px;
}

.project-copy h2 {
  font-size: var(--text-display);
  line-height: 1.05;
}

.project-copy p {
  color: rgba(246, 244, 237, 0.72);
  font-size: var(--text-body);
  line-height: 1.65;
}

.project-meta {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
}

.project-meta div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(246, 244, 237, 0.18);
}

.project-meta dt {
  color: rgba(246, 244, 237, 0.54);
  font-size: var(--text-label);
  font-weight: 800;
  text-transform: uppercase;
}

.project-meta dd {
  margin: 0;
  text-align: right;
  font-size: var(--text-body);
}

.hero-status {
  display: none !important;
}

@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-layout,
  .person-layout {
    grid-template-columns: 1fr;
  }

  .profile-layout {
    grid-template-columns: 1fr;
    gap: clamp(40px, 8vw, 64px);
    padding:
      clamp(64px, 10vw, 88px)
      clamp(22px, 6vw, 48px)
      clamp(40px, 6vw, 72px);
  }

  .profile-aside {
    position: static;
    max-height: none;
    overflow-y: visible;
  }

  .profile-aside h2,
  .profile-work h3 {
    max-width: none;
  }

  .project-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 52px;
    --page-gutter: 16px;
    --section-gutter: 16px;
    --text-body: clamp(14px, 3.6vw, 16px);
    --text-display: clamp(24px, 6.4vw, 34px);
    --text-name: clamp(30px, 8.2vw, 46px);
    --text-project: clamp(24px, 6.4vw, 34px);
    --text-social: 14px;
    --text-media: clamp(16px, 4.5vw, 28px);
  }

  body.home-page {
    /* Mobile: social dock is a floating reveal near footer, no left gutter offset */
    --home-gutter-extra: 0px;
    --page-gutter: 16px;
    --section-gutter: 16px;
  }

  .site-header {
    gap: 12px;
  }

  .header-search {
    width: min(160px, 34vw);
    max-width: 160px;
  }

  .header-search-input {
    font-size: 12px;
  }

  .profile-panel-header .header-search {
    width: min(120px, 26vw);
    max-width: 120px;
  }

  .profile-panel-header .nav-links {
    display: none;
  }

  .profile-mobile-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 16px 18px 0;
    border-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .profile-mobile-meta__kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(174, 181, 194, 0.28);
    border-radius: 999px;
    background: rgba(174, 181, 194, 0.18);
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
  }

  .profile-mobile-meta__name,
  .profile-mobile-meta__site {
    display: none;
  }

  .profile-kicker-label-desktop {
    display: none;
  }

  .profile-kicker-label-mobile {
    display: inline;
  }

  .profile-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 calc(48px + env(safe-area-inset-bottom));
  }

  .profile-aside,
  .profile-work,
  .profile-work-intro {
    display: contents;
  }

  .profile-aside > .profile-section-kicker,
  .profile-work-offset,
  #profileWorkOffset {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    visibility: hidden !important;
    pointer-events: none !important;
    position: absolute !important;
    inset: 0 auto auto 0 !important;
    order: 99 !important;
  }

  #profilePortraitWrap {
    order: 4;
    margin: clamp(16px, 4vw, 22px) 0 0;
  }

  /* Empty portrait placeholder must not reserve a tall blank block on mobile */
  #profilePortraitWrap.profile-figure-placeholder,
  #profilePortraitWrap[hidden] {
    display: none !important;
    margin: 0 !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
  }

  .profile-aside > h2 {
    order: 1;
    display: block !important;
    margin: clamp(20px, 5vw, 28px) 18px 0;
    max-width: none;
    font-size: clamp(34px, 9vw, 48px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
  }

  #profilePanelSummary {
    order: 2;
    margin: clamp(16px, 4vw, 22px) 0 0;
    padding: 0 18px;
  }

  #profileContact {
    order: 3;
    margin: clamp(20px, 5vw, 28px) 18px 0;
    padding: 0;
  }

  .profile-work-intro .profile-section-kicker {
    order: 5;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: calc(100% - 36px);
    /* No portrait: sit close under social/contact */
    margin: clamp(14px, 3.5vw, 20px) 18px 0;
    padding: 6px 10px;
    border: 1px solid rgba(174, 181, 194, 0.28);
    border-radius: 999px;
    background: rgba(174, 181, 194, 0.18);
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  /* With portrait: small adaptive gap under the photo */
  .profile-panel.has-portrait .profile-work-intro .profile-section-kicker {
    margin-top: clamp(10px, 2.5vw, 14px);
  }

  .profile-panel.has-portrait #profilePortraitWrap {
    margin-bottom: 0;
  }

  .profile-figure-portrait .profile-media {
    object-position: center top;
  }

  .profile-panel:not(.has-portrait) #profileContact {
    margin-bottom: 0;
  }

  #profileProjectTitle {
    order: 6;
    margin: clamp(16px, 4vw, 22px) 18px 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  #profileProjectVideoWrap {
    order: 7;
    margin: clamp(16px, 4vw, 22px) 0 0;
    padding: 0;
  }

  #profileFeaturedWrap {
    order: 8;
    margin: clamp(12px, 3vw, 16px) 0 0;
  }

  #profileProjectVideoWrap:not([hidden]) + #profileFeaturedWrap {
    order: 8;
  }

  #profileProjectDescription {
    order: 9;
    margin: clamp(16px, 4vw, 24px) 18px 0;
  }

  #profileWorkGallery {
    order: 10;
    gap: clamp(8px, 2vw, 12px);
    margin: clamp(16px, 4vw, 22px) 0 0;
  }

  .profile-bio,
  .profile-project-description {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.05em;
    text-align: left;
    text-justify: auto;
    hyphens: none;
  }

  .profile-contact-row {
    grid-template-columns: minmax(88px, 42%) minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
  }

  .profile-contact-row dd {
    text-align: right;
  }

  .profile-media {
    object-fit: cover;
    object-position: center;
  }

  .profile-figure-portrait .profile-media,
  .profile-figure-featured .profile-media,
  .profile-work-gallery .profile-media {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .profile-figure-featured .profile-media,
  .profile-work-gallery .profile-media {
    aspect-ratio: 16 / 10;
  }

  .profile-project-video .profile-video-embed {
    border-radius: 0;
  }

  .nav-links {
    gap: clamp(10px, 2.8vw, 14px);
    font-size: clamp(11px, 3.2vw, 13px);
  }

  .nav-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-copy {
    padding-top: 16vh;
  }

  .hero-status {
    right: var(--page-gutter);
    left: var(--page-gutter);
    bottom: calc(68px + env(safe-area-inset-bottom));
    max-width: none;
    text-align: center;
  }

  .person-layout,
  .project-layout {
    padding: 32px var(--page-gutter) 72px;
  }

  .person-work-preview,
  .project-media {
    min-height: 42vh;
  }

  /* Social dock: bottom-left, vertical; only reveal near footer after waterfall */
  .social-dock {
    top: auto;
    right: auto;
    left: max(12px, env(safe-area-inset-left));
    bottom: max(16px, calc(12px + env(safe-area-inset-bottom)));
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
  }

  .social-dock.is-near-footer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .social-dock a {
    width: 38px;
    height: 38px;
  }

  .social-dock a:hover {
    transform: translateX(2px);
  }

  .video-section {
    padding: 24px var(--section-gutter) 88px;
  }

  .video-section-intro {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 14px;
    align-items: end;
    margin-bottom: 20px;
  }

  .video-section-eyebrow {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }

  .video-section-title {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    text-align: right;
    white-space: nowrap;
    font-size: clamp(22px, 6.4vw, 30px);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .wall-tags {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    width: calc(100% + (var(--section-gutter) * 2));
    max-width: none;
    min-width: 0;
    margin: 0 calc(var(--section-gutter) * -1);
    padding: 2px var(--section-gutter) 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .wall-tags::-webkit-scrollbar {
    display: none;
  }

  .wall-tag {
    flex: 0 0 auto;
    padding: 9px 14px;
    font-size: 12px;
  }

  .section-heading,
  .contact-band {
    display: block;
  }

  .section-heading h2 {
    text-align: left;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
  }

  /* Phone hero height is set in JS to fit stacked DD tightly above waterfall */
  .hero {
    min-height: 0;
    height: auto;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 28%, rgba(231, 240, 255, 0.05), transparent 42%),
      radial-gradient(circle at 50% 72%, rgba(231, 240, 255, 0.045), transparent 40%),
      #000;
  }

  .network-canvas {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .video-card,
  .video-card.is-visible {
    /* Keep tile gaps visually equal; disable staggered scroll shift on phone. */
    transform: none;
  }

  .video-card .video-thumb,
  .video-card .video-thumb.has-image,
  .video-card:nth-child(n) .video-thumb:not(.has-image) {
    aspect-ratio: 3 / 4;
    min-height: 0;
  }

  .contact-band {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }

  .contact-band .text-link {
    margin-top: 24px;
  }

  .project-hero,
  .person-hero {
    min-height: 58vh;
    padding-top: 110px;
  }

  .project-meta div {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .project-meta dd {
    text-align: left;
  }

  .memory-wall {
    touch-action: pan-y;
  }

  /* Mobile Trace: unlock page scroll so the full photo set is reachable */
  html:has(.memory-body.memory-scrollable),
  .memory-body.memory-scrollable {
    height: auto;
    max-height: none;
    overflow-x: clip;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
  }

  .memory-body.memory-scrollable .memory-page--wall,
  .memory-body.memory-scrollable .memory-wall-section {
    height: auto;
    min-height: calc(100dvh - var(--header-height));
    overflow: visible;
  }

  .memory-body.memory-scrollable .memory-wall {
    height: auto;
    min-height: calc(100dvh - var(--header-height));
    overflow: visible;
    touch-action: pan-y;
  }
}

@media (hover: none) and (pointer: coarse) {
  .hero-status {
    opacity: 1;
    transform: none;
  }

  .hero:hover .hero-status {
    opacity: 1;
    transform: none;
  }
}

html[data-input="touch"] .hero-status,
html[data-input="hybrid"] .hero-status {
  opacity: 1;
  transform: none;
}

html[data-input="touch"] .event-accordion-tab,
html[data-input="hybrid"] .event-accordion-tab,
html[data-input="touch"] .load-more-button,
html[data-input="hybrid"] .load-more-button {
  min-height: 44px;
}

@media (prefers-reduced-motion: reduce) {
  .event-accordion-panel,
  .event-display-inner,
  .video-card {
    animation: none;
    transition: none;
  }

  .profile-media,
  .profile-contact-row a {
    transition: none;
  }

  .profile-figure:hover .profile-media,
  .profile-work-gallery .profile-figure:hover .profile-media,
  .profile-contact-row a:hover {
    transform: none;
  }
}

.site-rca-footer {
  width: 100%;
  background: #000;
  color: rgba(246, 244, 237, 0.88);
  border-top: 1px solid rgba(246, 244, 237, 0.12);
}

.site-rca-footer__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(40px, 6vw, 72px) var(--section-gutter) clamp(32px, 5vw, 56px);
}

.site-rca-footer__upper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.site-rca-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-rca-footer__logo {
  display: inline-flex;
  color: #fff;
  text-decoration: none;
}

.site-rca-footer__programme {
  margin: 0;
  color: rgba(246, 244, 237, 0.72);
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-rca-footer__logo-image {
  display: block;
  width: auto;
  height: clamp(52px, 8vw, 70px);
  max-width: min(220px, 62vw);
}

.site-rca-footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}

.site-rca-footer__contact svg {
  width: 12px;
  height: 12px;
}

.site-rca-footer__contact:hover,
.site-rca-footer__logo:hover,
.site-rca-footer__link:hover {
  opacity: 0.78;
}

.site-rca-footer__qaa {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 88px;
  height: 98px;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  background: rgba(246, 244, 237, 0.08);
  border: 1px solid rgba(246, 244, 237, 0.18);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  line-height: 1.15;
  text-align: center;
}

.site-rca-footer__qaa-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-rca-footer__lower {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(246, 244, 237, 0.12);
}

.site-rca-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 24px;
}

.site-rca-footer__link {
  color: rgba(246, 244, 237, 0.88);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.site-rca-footer__address {
  margin: 0;
  color: rgba(246, 244, 237, 0.88);
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
}

/* Tablet / narrow: same waterfall header + tag strip as phone */
@media (max-width: 900px) {
  .video-section-intro {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 14px;
    align-items: end;
  }

  .video-section-title {
    white-space: nowrap;
    font-size: clamp(24px, 4.2vw, 40px);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .wall-tags {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    width: calc(100% + (var(--section-gutter) * 2));
    min-width: 0;
    margin: 0 calc(var(--section-gutter) * -1);
    padding: 2px var(--section-gutter) 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .wall-tags::-webkit-scrollbar {
    display: none;
  }

  .wall-tag {
    flex: 0 0 auto;
  }

  .site-rca-footer__upper {
    grid-template-columns: 1fr;
  }

  .site-rca-footer__qaa {
    justify-self: start;
  }

  .site-rca-footer__lower {
    grid-template-columns: 1fr;
  }

  .site-rca-footer__links {
    grid-template-columns: 1fr 1fr;
  }

  .site-rca-footer__address {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .site-rca-footer__links {
    grid-template-columns: 1fr;
  }
}

html,
body,
body * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='4' fill='%23f6f4ed'/%3E%3C/svg%3E") 8 8, auto !important;
}
