:root {
  --bg: #100F0F;
  --text: #fff;
  --secondary: rgba(255, 255, 255, 0.4);
  --edge: 24px;
  --gap: 20px;
  --chrome-bar-bg: #100F0F;
  --chrome-bar-border: #212020;
  --chrome-bar-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' seed='7' stitchTiles='stitch' result='noise'/%3E%3CfeColorMatrix in='noise' type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 .8 .8 .8 0 -.95'/%3E%3C/filter%3E%3Crect width='96' height='96' filter='url(%23n)'/%3E%3C/svg%3E");
  --chrome-bar-h: 35px;
  --col: calc((100vw - (2 * var(--edge)) - (3 * var(--gap))) / 4);
  --reference-card-width: min(30.364583vw, 54svh);
  --reference-card-height: calc(var(--reference-card-width) * 777 / 615);
  --reference-card-y: calc((100svh - var(--reference-card-height)) / 2);
  --view-switch-line-height: 18.2px;
  --catalog-switch-gap: 20px;
  --catalog-footer-gap: 24px;
  --desktop-title-size: clamp(63px, 4.6876vw, 126px);
  --list-item-height: calc(var(--desktop-title-size) * 0.9875);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { background: var(--bg); color: var(--text); font-family: "PP Neue Montreal", Arial, sans-serif; letter-spacing: 0; scrollbar-width: none; font-synthesis: none; }
html::-webkit-scrollbar { display: none; }
html::after {
  content: "";
  position: fixed;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0.096;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' seed='7' stitchTiles='stitch' result='noise'/%3E%3CfeColorMatrix in='noise' type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 .8 .8 .8 0 -.95'/%3E%3C/filter%3E%3Crect width='96' height='96' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 96px 96px;
  animation: grain-shift 0.16s steps(1, end) infinite;
}
@keyframes grain-shift {
  0% { background-position: 0 0; }
  20% { background-position: -17px 11px; }
  40% { background-position: 23px -19px; }
  60% { background-position: -29px -7px; }
  80% { background-position: 13px 31px; }
  100% { background-position: -11px 19px; }
}
body { min-width: 1100px; min-height: 100svh; margin: 0; overflow-x: hidden; background: var(--bg); letter-spacing: 0.04em; }
body[data-view="catalog"] {
  height: auto;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
p, figure { margin: 0; }
.secondary { color: var(--secondary); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.demo-footer {
  position: fixed;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--gap);
  width: 100%;
  padding-inline: var(--edge);
  pointer-events: none;
}

.roll-link {
  --roll-gap: 4px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.3;
  vertical-align: top;
}
.roll-link::after {
  content: attr(data-hover);
  position: absolute;
  top: calc(100% + var(--roll-gap));
  left: 0;
  color: currentColor;
  transition: transform 0.46s var(--ease);
}
.roll-link span { display: block; transition: transform 0.46s var(--ease); }
.roll-link:hover span,
.roll-link:focus-visible span { transform: translateY(calc(-100% - var(--roll-gap))); }
.roll-link:hover::after,
.roll-link:focus-visible::after { transform: translateY(calc(-100% - var(--roll-gap))); }

.site-header { --content-reveal-delay: 0ms; }
.view-switch { --content-reveal-delay: 70ms; }
.project-preview { --content-reveal-delay: 120ms; }
.project-list-item,
.catalog-item { --content-reveal-delay: 220ms; }
.catalog-item:nth-child(4n + 2) { --content-reveal-delay: 220ms; }
.catalog-item:nth-child(4n + 3) { --content-reveal-delay: 280ms; }
.catalog-item:nth-child(4n + 4) { --content-reveal-delay: 340ms; }
.info-awards { --content-reveal-delay: 210ms; }
.info-copy { --content-reveal-delay: 260ms; }
.demo-footer { --content-reveal-delay: 310ms; }

body.is-content-chrome-intro.is-content-intro-pending .site-header,
body.is-content-intro-pending .project-preview,
body.is-content-intro-pending .project-list-item,
body.is-content-intro-pending .catalog-item,
body.is-content-intro-pending .info-awards,
body.is-content-intro-pending .info-copy,
body.is-content-chrome-intro.is-content-intro-pending .demo-footer,
body.is-content-chrome-intro.is-content-intro-running .site-header,
body.is-content-intro-running .project-preview,
body.is-content-intro-running .project-list-item,
body.is-content-intro-running .catalog-item,
body.is-content-intro-running .info-awards,
body.is-content-intro-running .info-copy,
body.is-content-chrome-intro.is-content-intro-running .demo-footer {
  overflow: hidden;
}

body.is-content-intro-pending .project-preview,
body.is-content-intro-pending .catalog-card,
body.is-content-intro-running .project-preview,
body.is-content-intro-running .catalog-card {
  will-change: clip-path, opacity;
}

body.is-content-intro-pending .project-preview,
body.is-content-intro-pending .catalog-card {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

body.is-content-intro-running .project-preview,
body.is-content-intro-running .catalog-card {
  animation: content-photo-mask-reveal 1.18s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--content-reveal-delay, 0ms);
}

body.is-content-chrome-intro.is-content-intro-pending .site-header > *,
body.is-content-page-intro.is-content-intro-pending .view-switch .masked-hover-text,
body.is-content-intro-pending .project-list-link,
body.is-content-intro-pending .catalog-item-title,
body.is-content-intro-pending .info-awards > *,
body.is-content-intro-pending .info-copy > *:not(.content-reveal-lines),
body.is-content-chrome-intro.is-content-intro-pending .demo-footer > *,
body.is-content-chrome-intro.is-content-intro-running .site-header > *,
body.is-content-page-intro.is-content-intro-running .view-switch .masked-hover-text,
body.is-content-intro-running .project-list-link,
body.is-content-intro-running .catalog-item-title,
body.is-content-intro-running .info-awards > *,
body.is-content-intro-running .info-copy > *:not(.content-reveal-lines),
body.is-content-chrome-intro.is-content-intro-running .demo-footer > * {
  will-change: transform, opacity;
}

body.is-content-chrome-intro.is-content-intro-pending .site-header > *,
body.is-content-page-intro.is-content-intro-pending .view-switch .masked-hover-text,
body.is-content-intro-pending .project-list-link,
body.is-content-intro-pending .catalog-item-title,
body.is-content-intro-pending .info-awards > *,
body.is-content-intro-pending .info-copy > *:not(.content-reveal-lines),
body.is-content-chrome-intro.is-content-intro-pending .demo-footer > * {
  opacity: 0;
  transform: translate3d(0, 112%, 0);
}

body.is-content-chrome-intro.is-content-intro-running .site-header > *,
body.is-content-page-intro.is-content-intro-running .view-switch .masked-hover-text,
body.is-content-intro-running .project-list-link,
body.is-content-intro-running .catalog-item-title,
body.is-content-intro-running .info-awards > *,
body.is-content-intro-running .info-copy > *:not(.content-reveal-lines),
body.is-content-chrome-intro.is-content-intro-running .demo-footer > * {
  animation: content-slide-reveal 1.12s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--content-reveal-delay, 0ms);
}

.content-line-measure {
  display: block;
  visibility: hidden;
}

.content-reveal-lines {
  display: block;
}

.content-reveal-line {
  display: block;
  overflow: hidden;
}

.content-reveal-line-inner {
  display: block;
  will-change: transform, opacity;
}

body.is-content-intro-pending .content-reveal-lines .content-reveal-line-inner {
  opacity: 0;
  transform: translate3d(0, 112%, 0);
}

body.is-content-intro-running .content-reveal-lines .content-reveal-line-inner {
  animation: content-slide-reveal 1.12s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--content-line-delay, var(--content-reveal-delay, 0ms));
}

body.is-description-reveal-interrupted .info-copy > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: none;
}

.content-reveal-lines.is-content-reveal-instant .content-reveal-line-inner,
body.is-content-intro-pending .content-reveal-lines.is-content-reveal-instant .content-reveal-line-inner,
body.is-content-intro-running .content-reveal-lines.is-content-reveal-instant .content-reveal-line-inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: none;
}

@keyframes content-slide-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 112%, 0);
  }
  12% { opacity: 1; }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes content-photo-mask-reveal {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  16% { opacity: 1; }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

body[data-view="catalog"] .catalog-item.is-catalog-reveal-pending .catalog-card {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  animation: none !important;
}

body[data-view="catalog"] .catalog-item.is-catalog-reveal-running .catalog-card {
  animation: content-photo-mask-reveal 1.18s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--catalog-entry-delay, 0ms);
}

body[data-view="catalog"] .catalog-item.is-catalog-reveal-done .catalog-card {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  animation: none !important;
}

body[data-view="catalog"] .catalog-item.is-catalog-reveal-pending .catalog-item-title {
  opacity: 0;
  transform: translate3d(0, 112%, 0);
  animation: none !important;
}

body[data-view="catalog"] .catalog-item.is-catalog-reveal-running .catalog-item-title {
  animation: content-slide-reveal 0.96s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--catalog-entry-delay, 0ms) + 140ms);
}

body[data-view="catalog"] .catalog-item.is-catalog-reveal-done .catalog-item-title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: none !important;
}

.demo-main { position: relative; height: 100svh; }
.portfolio-page { position: fixed; inset: 0; }
body[data-view="catalog"] .portfolio-scroll-space { display: none; }
.portfolio-scroll-space { display: none; width: 1px; min-height: 800svh; pointer-events: none; }
.view-switch {
  --view-switch-indicator-x: 0px;
  position: fixed;
  top: var(--reference-card-y);
  left: var(--edge);
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  overflow: visible;
}
body[data-view="catalog"] .view-switch {
  position: absolute;
}
.view-switch::before {
  content: none;
}
.view-switch-separator {
  color: var(--secondary);
  pointer-events: none;
  user-select: none;
}
.view-choice {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--secondary);
  cursor: pointer;
  line-height: 1.3;
  overflow: hidden;
}
.view-choice.is-active { color: var(--text); }
.view-choice.is-active::before {
  content: none;
}
.masked-hover-text {
  --roll-gap: 4px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.25;
  vertical-align: top;
}
.masked-hover-text::after {
  content: attr(data-hover);
  position: absolute;
  top: calc(100% + var(--roll-gap));
  left: 0;
  color: currentColor;
  transition: transform 0.46s var(--ease);
}
.masked-hover-text > span {
  display: block;
  transition: transform 0.46s var(--ease);
}
.view-choice:hover .masked-hover-text > span,
.view-choice:focus-visible .masked-hover-text > span {
  transform: translateY(calc(-100% - var(--roll-gap)));
}
.view-choice:hover .masked-hover-text::after,
.view-choice:focus-visible .masked-hover-text::after {
  transform: translateY(calc(-100% - var(--roll-gap)));
}
.switch-control {
  position: relative;
  width: 38px;
  height: 22px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.switch-control span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.35s var(--ease);
}
body[data-view="catalog"] .switch-control span { transform: translateX(16px); }

.list-view,
.catalog-view { position: absolute; inset: 0; }
.list-viewport {
  position: fixed;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: calc(var(--edge) + var(--col) + var(--gap));
  width: calc((2 * var(--col)) + var(--gap));
  overflow: hidden;
}
.project-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
}
.project-list-item { height: var(--list-item-height); }
.project-list-link {
  --roll-gap: 4px;
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  height: calc(var(--desktop-title-size) * 1.0875);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.1);
  font-size: var(--desktop-title-size);
  line-height: var(--list-item-height);
  letter-spacing: -0.02em;
  white-space: nowrap;
  font-weight: 500;
  transition: none;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.project-list-link::after {
  content: none;
}
.project-list-label { display: block; padding-bottom: 8px; }
.project-list.has-pointer-hover .project-list-link,
.project-list:has(.project-list-link:focus-visible) .project-list-link {
  color: rgba(255, 255, 255, 0.1);
}
.project-list-item.is-hovered .project-list-link,
.project-list:not(.has-pointer-hover) .project-list-item.is-centered .project-list-link,
.project-list:has(.project-list-link:focus-visible) .project-list-link:focus-visible {
  color: #fff;
}

.project-preview {
  position: fixed;
  z-index: 4;
  left: var(--edge);
  bottom: 61px;
  width: min(clamp(240px, 17.7083vw, 476px), calc(var(--col) - 32px));
  overflow: hidden;
  background: #171717;
  isolation: isolate;
}
.project-preview::after,
.slider-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  opacity: 0.096;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' seed='7' stitchTiles='stitch' result='noise'/%3E%3CfeColorMatrix in='noise' type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 .8 .8 .8 0 -.95'/%3E%3C/filter%3E%3Crect width='96' height='96' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 96px 96px;
  animation: grain-shift 0.16s steps(1, end) infinite;
}
.slider-card img,
.slider-card video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.project-preview img,
.project-preview video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.project-preview-media {
  position: relative;
  display: none !important;
}
.project-preview-media.is-active { display: block !important; }
.project-preview video.project-preview-media {
  inset: auto;
  width: 100%;
  height: auto;
  transform: none;
  backface-visibility: hidden;
}
.progressive-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}
.progressive-media .progressive-preview,
.progressive-media .progressive-full {
  display: block;
  width: 100%;
}
.progressive-media .progressive-preview {
  position: absolute;
  z-index: 1;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: blur(18px);
  transform: translateZ(0) scale(1.06);
  transition:
    opacity 1.44s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.44s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.44s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.progressive-media .progressive-full {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition:
    opacity 1.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.44s cubic-bezier(0.16, 1, 0.3, 1);
}
.progressive-media.is-progressive-loaded .progressive-preview {
  opacity: 0;
  filter: blur(4px);
  transform: translateZ(0) scale(1.015);
}
.progressive-media.is-progressive-loaded .progressive-full {
  opacity: 1;
}
.project-info {
  position: fixed;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: calc(var(--edge) + (3 * (var(--col) + var(--gap))));
  width: var(--col);
  pointer-events: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.info-awards { position: absolute; top: var(--reference-card-y); left: 0; }
.info-awards > p { margin-bottom: 16px; }
.award-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 49px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.34s var(--ease),
    transform 0.34s var(--ease);
  will-change: opacity, transform;
}
.award-icons.is-awards-waiting {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
}
.award-icons.is-awards-ready {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.award-empty { display: block; color: var(--secondary); font-size: 14px; line-height: 1.3; }
.award-icons img { display: block; flex: 0 0 auto; width: auto; object-fit: contain; }
.award-icons .award-ribbon,
.award-icons img[src*="award-ribbon"] {
  height: 40px;
  max-height: 40px;
}
.award-icons .award-badge,
.award-icons .award-dprofile { height: 40px; }
.award-icons img + .award-dprofile { margin-left: -12px; }
.info-copy { position: absolute; top: calc(50% - 10px); left: 0; width: 100%; max-width: min(100%, 450px); transform: none; }
.project-type-label {
  margin: 0 0 24px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.slider-project-name {
  display: none;
  position: fixed;
  top: var(--reference-card-y);
  left: calc(var(--edge) + (2 * (var(--col) + var(--gap))));
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.demo-footer { bottom: 0; align-items: center; padding-bottom: 0; }
.location-clock {
  grid-column: 1;
  display: flex;
  align-items: baseline;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
  pointer-events: auto;
}
.portfolio-home .location-clock > p { display: none; }
.portfolio-home .location-clock > div { display: flex; gap: 20px; align-items: baseline; }
.location-clock time { color: var(--secondary); }
.time-colon { animation: clockBlink 1s steps(1, end) infinite; }
@keyframes clockBlink { 50% { opacity: 0; } }
.footer-socials { grid-column: 4; font-size: 14px; font-weight: 400; line-height: 1.3; letter-spacing: 0.04em; pointer-events: auto; }
.footer-socials > p { margin-bottom: 18px; }
.footer-socials nav { display: grid; grid-template-columns: auto auto 1fr auto; gap: 28px; align-items: center; }
.footer-socials .instagram,
.footer-socials .tg-channel { justify-self: end; }

.catalog-view { display: none; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--gap);
  row-gap: 20px;
  align-items: start;
  width: 100%;
}
.catalog-item {
  position: relative;
  width: 100%;
}
.catalog-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #0e0e0e;
  isolation: isolate;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, 0, 0);
  transform-style: preserve-3d;
  transition: transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.catalog-card video {
  position: relative;
  inset: auto;
  max-width: 100%;
  backface-visibility: hidden;
}
.catalog-card img,
.catalog-card video {
  transform-origin: center;
  transform: translateZ(0) scale(1);
  transition: transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.catalog-item.is-hovered .catalog-card img,
.catalog-item.is-hovered .catalog-card video,
.catalog-card:hover img,
.catalog-card:hover video,
.catalog-card:focus-visible img,
.catalog-card:focus-visible video {
  transform: translateZ(0) scale(1.04);
}
.catalog-item-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  position: static;
  width: 100%;
  margin-top: 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  white-space: normal;
  pointer-events: none;
}
.catalog-item-name {
  min-width: 0;
}
.catalog-item-tag {
  flex: 0 1 58%;
  color: var(--secondary);
  text-align: right;
}
.mobile-project-meta { display: none; }

body[data-view="catalog"] .list-view { display: none; }
body[data-view="catalog"] .catalog-view {
  display: block;
  padding: calc(var(--reference-card-y) + var(--view-switch-line-height) + var(--catalog-switch-gap)) var(--edge) calc(var(--chrome-bar-h) + var(--catalog-footer-gap));
}
body[data-view="catalog"] .project-preview,
body[data-view="catalog"] .project-info { display: none; }

.view-transition-overlay {
  position: fixed;
  z-index: 120;
  inset: 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.56s;
}
.view-transition-overlay::after {
  content: none;
}
.view-transition-overlay.is-visible {
  opacity: 0;
  visibility: visible;
  transition: visibility 0s;
}
body.is-view-transitioning .view-transition-overlay {
  pointer-events: auto;
}

.site-footer--no-location .location-clock { display: none; }
.project-description {
  line-height: 1.3;
  letter-spacing: 0.04em;
  white-space: pre-line;
}

@media (max-width: 1024px) {
  :root {
    --edge: 20px;
    --gap: 20px;
    --mobile-footer-top: 8px;
    --mobile-footer-bottom: 20px;
    --mobile-footer-line: 18.2px;
    --mobile-footer-h: calc(var(--mobile-footer-top) + var(--mobile-footer-line) + var(--mobile-footer-bottom));
    --mobile-title-size: clamp(44px, calc(44px + (100vw - 375px) * 0.02465), 60px);
    --list-item-height: calc(var(--mobile-title-size) + 2px);
  }

  html {
    overscroll-behavior-y: auto;
  }

  body {
    min-width: 320px;
    min-height: 100svh;
    overflow-x: hidden;
    overscroll-behavior-y: auto;
    font-size: 14px;
  }
  body::before {
    content: none;
    display: none;
  }

  .demo-main { height: 100svh; min-height: 100svh; }
  .view-switch {
    display: none;
  }

  .project-info { display: none; }
  .project-preview {
    display: block;
    z-index: 20;
    right: var(--edge);
    bottom: calc(var(--edge) + var(--chrome-bar-h));
    left: auto;
    width: clamp(180px, 42vw, 360px);
  }

  .catalog-view,
  body[data-view="catalog"] .catalog-view {
    display: none;
  }
  .catalog-grid {
    display: block;
    width: 100%;
  }
  .catalog-item {
    padding-bottom: 32px;
    perspective: none;
  }
  .catalog-card {
    aspect-ratio: 335 / 423;
    transform: none !important;
    box-shadow: none !important;
  }
  .catalog-card video {
    inset: auto;
    width: 100%;
    height: auto;
  }
  .mobile-project-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.04em;
  }
  .mobile-project-type { color: var(--secondary); }
  .mobile-project-title { font-weight: 400; letter-spacing: 0.04em; }

  .list-view,
  body[data-view="list"] .list-view {
    position: fixed;
    inset: 0;
    display: block;
    padding: 0;
  }
  body[data-view="list"] .catalog-view { display: none; }
  .portfolio-scroll-space {
    display: block;
    min-height: 1000svh;
  }
  .list-viewport {
    position: fixed;
    top: 0;
    bottom: 0;
    left: var(--edge);
    width: calc(100% - (2 * var(--edge)));
    overflow: hidden;
  }
  .project-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .project-list-item { height: var(--list-item-height); }
  .project-list-link {
    width: max-content;
    max-width: none;
    height: var(--list-item-height);
    overflow: visible;
    font-size: var(--mobile-title-size);
    line-height: var(--mobile-title-size);
    letter-spacing: -0.02em;
  }
  .project-list-label { padding-bottom: 0; transition: none; }
  .project-list-item.is-centered .project-list-link { color: #fff !important; }

  .demo-footer {
    display: grid;
    grid-template-columns: 1fr;
    height: var(--chrome-bar-h, 35px);
    padding: 0 var(--edge);
    background: var(--chrome-bar-bg, #100F0F);
    border-top: 1px solid var(--chrome-bar-border, #212020);
    mix-blend-mode: normal;
  }
  .location-clock { display: none; }
  .footer-socials {
    grid-column: 1 / -1;
    width: 100%;
    font-size: 14px;
  }
  .footer-socials > p { margin-bottom: 12px; }
  .footer-socials nav {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
  }
  .footer-socials .instagram { margin-left: auto; }
}

.info-awards > p,
.award-empty,
.info-copy,
.project-type-label,
.project-description,
.mobile-project-type,
.catalog-item-tag {
  line-height: 20px;
}



/* Potpuno gašenje noise efekta (uključujući header i footer) */
html::after,
.preloader::after,
.project-preview::after,
.slider-card::after,
.site-header::before,
.site-footer::before {
  display: none !important;
  content: none !important;
}
}