/* ============================================
   Main Design System
   Replaces 58KB Webflow CSS with clean, maintainable code
   ============================================ */

/* ── Fonts ── */
@font-face {
  font-family: 'ABCDiatype';
  src: url('https://cdn.prod.website-files.com/66008e255cca5ad234a2392e/66008e255cca5ad234a23937_ABCDiatypePlusVariable.77bf2bb2.woff') format('woff');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bull 5 Mono';
  src: url('https://cdn.prod.website-files.com/66008e255cca5ad234a2392e/66008e255cca5ad234a23935_Bull-5-Mono.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Base ── */
html {
  font-size: calc(-0.0006236080178174674rem + 1vw);
}
@media (max-width: 1440px) {
  html { font-size: calc(-0.0006rem + 1.112vw); }
}
@media (max-width: 991px) {
  html { font-size: calc(0.00016rem + 2.086vw); }
}
@media (max-width: 767px) {
  html { font-size: calc(0.001rem + 2.814vw); }
}
@media (max-width: 479px) {
  html { font-size: calc(0.0009rem + 4.099vw); }
}

body {
  background-color: var(--black);
  color: var(--cyprus);
  font-family: 'Bull 5 Mono', 'SF Mono', 'Fira Code', monospace;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  overflow-x: hidden;
}

a { color: var(--cyprus); }
img { aspect-ratio: auto; width: 100%; display: block; }

/* ── Typography ── */
.text-size-2-13 {
  color: var(--cyprus);
  text-transform: none;
  font-family: 'ABCDiatype', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.1;
}
.text-size-0-75 {
  font-size: 0.75rem;
  color: var(--cyprus);
  text-align: left;
}
.text-size-0-75.without-caps { letter-spacing: -0.5px; text-transform: none; line-height: 1.4; }
.text-color-white { color: var(--cyprus); }
.opacity-50 { opacity: 0.5; }

/* ============================================
   NAVIGATION
   ============================================ */
.navigation-top {
  z-index: var(--z-nav);
  mix-blend-mode: difference;
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--pad) var(--gap) var(--pad) var(--pad);
}

.nav-links-wrp {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--gap);
  width: 100%;
  align-items: center;
}

.nav-left-side-items {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: auto;
}

.nav-links-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap);
}

.menu-link {
  color: var(--cyprus);
  cursor: pointer;
  border-radius: var(--pad);
  padding: var(--pad);
  position: relative;
  display: inline-block;
}
.menu-link:hover { background-color: var(--surface-hover); }
.menu-link.w--current { color: var(--cyprus); }
.menu-link.fix.w--current:hover { border-radius: 0.2rem; }

/* Link mask animation (text slides up on hover) */
.link-mask {
  max-height: 0.72rem;
  overflow: hidden;
}
.link-mask.big-ver { max-height: 1.5rem; }

.menu_link-text {
  z-index: 3;
  font-size: 0.75rem;
  line-height: 1;
  transition: transform var(--dur-base) var(--ease-out);
}
.menu_link-text._02 { color: var(--cyprus); }
.menu_link-text._01.big-ver,
.menu_link-text._02.big-ver {
  text-transform: none;
  font-family: 'ABCDiatype', sans-serif;
  font-size: 1.5rem;
}

.menu-link:hover .menu_link-text._01 { transform: translateY(-100%); }
.menu-link:hover .menu_link-text._02 { transform: translateY(-100%); }

.menu-links-wrapper { margin-left: -0.31rem; }

/* Toggle button */
.toggle_wrap {
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border-radius: 100vw;
  width: 2.5rem;
  height: 1rem;
  padding: 0.2rem;
  display: inline-block;
  flex-shrink: 0;
}
.toggle_inner {
  background-color: var(--cyprus);
  border-radius: 100vw;
  width: 1.2rem;
  height: 100%;
  transition: margin-left var(--dur-base) var(--ease-out);
}
.toggle_wrap.active .toggle_inner {
  margin-left: calc(100% - 1.2rem);
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  z-index: var(--z-loader);
  background-color: var(--black);
  color: var(--cyprus);
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100dvh;
  pointer-events: auto;
  overflow: hidden;
}
.loader--done { display: none !important; }

.loader_top {
  color: var(--cyprus);
  border-bottom: 2px solid #000;
  position: relative;
}
.loader_bottom { display: none; }

.loader_progress {
  z-index: 1;
  background-color: var(--cyprus);
  width: 0%;
  height: 100%;
  position: absolute;
  inset: 0 auto 0 0;
}

.container {
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.container.is-loader-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 1px;
}
.container.is-loader-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
}

.loader_p {
  text-transform: uppercase;
  font-size: 1.82em;
  line-height: 1;
  display: none;
}
.loader_p.is-right { text-align: right; }

.loader_number {
  color: var(--cyprus);
  font-size: 0.75em;
  font-weight: 400;
  margin-bottom: 0;
}

.trigger {
  width: 0; height: 0;
  display: none;
  position: fixed;
  top: 0; left: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100svh;
  position: relative;
}
.hero-container._w-grad { overflow: hidden; }

.hero-content {
  z-index: var(--z-hero);
  display: flex;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: 45svh;
  left: 0; right: 0; bottom: 0;
  overflow: visible;
}

.global-padding {
  position: absolute;
  inset: 0 0.625rem 0.63rem;
}

/* Hero layout grids */
._0-5-1-25-col {
  display: grid;
  grid-template-columns: 1.25fr 1.25fr;
  gap: var(--gap);
  width: 100%;
  height: 100%;
}

._2-row-ver-0-5-auto {
  display: grid;
  grid-template-rows: 0.5fr auto;
  gap: var(--gap);
}

._2-col-hor {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: var(--gap);
}

._3-col-hor {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap);
}

._3-row-hor {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: var(--gap);
}

.list-wrapper, .list-wrapper-320 {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.list-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap);
}

.status-item-mob { display: none; }
.status-item-1 { }
.service-list-320 { display: none; }

/* ── Hero Image Trail ── */
.image-wrap {
  position: absolute;
  inset: 0;
  overflow: clip;
}
.image-wrap.demo-1 { z-index: 2; }

.image-styles { position: fixed; top: 0; left: 0; }

.content__img {
  --img-width: 30rem;
  --img-height: auto;
  width: var(--img-width);
  height: var(--img-height);
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  overflow: hidden;
  will-change: transform, opacity;
  contain: layout style paint;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

.content__img-inner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  will-change: auto;
}

.content__img--horizontal {
  --img-width: 30rem;
  --img-height: calc(var(--img-width) * 3 / 4);
}

.content__img--vertical {
  --img-width: 26rem;
  --img-height: calc(var(--img-width) * 4 / 3);
}

/* Background image */
.my-video-index {
  pointer-events: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  object-fit: cover;
  object-position: center 15%;
  opacity: 0.3;
  overflow: hidden;
}

.blur-background {
  z-index: 1;
  opacity: 0;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

/* Hero links */
.general-link {
  color: var(--cyprus);
  font-size: 0.75rem;
  transition: opacity var(--dur-fast);
}
.general-link:hover { opacity: 0.5; }

.text-secection {
  background-color: var(--surface-hover);
  border-radius: 0.3rem;
  padding: var(--pad);
}

.g-l-wrp {
  display: flex;
  gap: var(--gap);
  align-items: center;
}

/* Bottom bar */
.bottom-bar {
  z-index: 4;
  mix-blend-mode: difference;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  position: absolute;
  bottom: var(--gap);
  left: var(--gap);
  right: var(--gap);
}

.cv-items {
  display: flex;
  gap: var(--gap);
  align-items: center;
  position: relative;
}

.cv-link {
  z-index: 3;
  font-size: 0.75rem;
  line-height: 1;
}

.coords {
  z-index: var(--z-nav);
  pointer-events: none;
  color: var(--cyprus);
  font-size: 0.75rem;
  transition: transform 0.2s;
}

/* ── Mobile Thumbnails ── */
.thumbnail-mob-items {
  aspect-ratio: 1;
  max-height: 13rem;
  position: relative;
  overflow: hidden;
  display: none;
  border-radius: var(--radius-sm);
}
.thumbnail-mob-item {
  position: relative;
  inset: 0;
}
.thumbnail-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   PROGRESSIVE BLUR (NAV)
   ============================================ */
.progressive-blur_wrap {
  z-index: var(--z-nav-blur);
  pointer-events: none;
  width: 100vw;
  height: 20lvh;
  display: block;
  position: fixed;
  top: 0; left: 0; right: 0;
}

.progressive-blur_panel {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0;
}
.progressive-blur_panel.is-1 {
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  mask: linear-gradient(#000 0% 10%, #0000 30%);
  -webkit-mask: linear-gradient(#000 0% 10%, #0000 30%);
}
.progressive-blur_panel.is-2 {
  backdrop-filter: blur(calc(var(--blur) / var(--ratio)));
  mask: linear-gradient(#0000 0%, #000 10% 20%, #0000 40%);
  -webkit-mask: linear-gradient(#0000 0%, #000 10% 20%, #0000 40%);
}
.progressive-blur_panel.is-3 {
  backdrop-filter: blur(calc(var(--blur) / (var(--ratio) * var(--ratio))));
  mask: linear-gradient(#0000 0%, #000 20% 30%, #0000 50%);
  -webkit-mask: linear-gradient(#0000 0%, #000 20% 30%, #0000 50%);
}
.progressive-blur_panel.is-4 {
  backdrop-filter: blur(calc(var(--blur) / (var(--ratio) * var(--ratio) * var(--ratio))));
  mask: linear-gradient(#0000 10%, #000 30% 40%, #0000 60%);
  -webkit-mask: linear-gradient(#0000 10%, #000 30% 40%, #0000 60%);
}
.progressive-blur_panel.is-5 {
  backdrop-filter: blur(calc(var(--blur) / (var(--ratio) * var(--ratio) * var(--ratio) * var(--ratio))));
  mask: linear-gradient(#0000 20%, #000 40% 50%, #0000 70%);
  -webkit-mask: linear-gradient(#0000 20%, #000 40% 50%, #0000 70%);
}
.progressive-blur_panel.is-6 {
  backdrop-filter: blur(calc(var(--blur) / (var(--ratio) * var(--ratio) * var(--ratio) * var(--ratio) * var(--ratio))));
  mask: linear-gradient(#0000 30%, #000 50% 60%, #0000 80%);
  -webkit-mask: linear-gradient(#0000 30%, #000 50% 60%, #0000 80%);
}
.progressive-blur_panel.is-7 {
  backdrop-filter: blur(calc(var(--blur) / (var(--ratio) * var(--ratio) * var(--ratio) * var(--ratio) * var(--ratio) * var(--ratio))));
  mask: linear-gradient(#0000 40%, #000 60% 70%, #0000 90%);
  -webkit-mask: linear-gradient(#0000 40%, #000 60% 70%, #0000 90%);
}
.progressive-blur_panel.is-8,
.progressive-blur_panel.is-9,
.progressive-blur_panel.is-10 {
  backdrop-filter: blur(calc(var(--blur) / (var(--ratio) * var(--ratio) * var(--ratio) * var(--ratio) * var(--ratio) * var(--ratio))));
  mask: linear-gradient(#0000 50%, #000 70% 80%, #0000 100%);
  -webkit-mask: linear-gradient(#0000 50%, #000 70% 80%, #0000 100%);
}

/* ============================================
   PROJECTS / PORTFOLIO
   ============================================ */
.main-wrapper { position: relative; }

.projects-wrapper {
  z-index: 2;
  display: flex;
  flex-direction: column;
  position: relative;
}

.project-item {
  width: 100%;
  padding-top: 45svh;
  opacity: 1;
}

/* Reveal animation */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project-desc {
  z-index: 1;
  display: grid;
  grid-template-columns: 0.513fr 1fr 0.5fr;
  gap: var(--gap-lg);
  width: 100%;
  padding: 0 var(--gap) 5rem;
}

.project-tittle {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.project-tittle.without-top-padding { padding-top: 0; }

.project-about {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.project-link { justify-self: end; }

.project-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
}

.project-images img {
  transition: filter 0.4s ease, transform 0.4s ease;
}
.project-images img:not(.is-loaded) {
  filter: blur(15px);
  transform: scale(1.02);
}
.project-images img.is-loaded {
  filter: blur(0);
  transform: scale(1);
}

.featured-wrp {
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  gap: 0.32rem;
  align-items: flex-start;
}

.featured-list-item {
  display: flex;
  gap: var(--gap);
}

.featured-list-item-wrp {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.dot-icon {
  width: 0.1875rem;
  height: 0.1875rem;
  margin-top: -0.1rem;
}
.dot-icon.fix { margin-top: -0.2rem; }

.link-icon-wrp {
  display: flex;
  gap: var(--gap-lg);
  align-items: flex-start;
}
.link-icon-wrp.hide { display: none; }

.icon-embed-custom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 0.625rem;
  height: 0.625rem;
  transition: transform 0.1s ease-in-out;
}

.link-icon-wrp .icon-embed-custom { transform: rotate(45deg); }
.link-icon-wrp:hover .icon-embed-custom { transform: rotate(0deg); }

.all-link {
  color: var(--cyprus);
  font-size: 0.75rem;
}
.link { color: rgba(0, 0, 0, 0.5); }

.job-tittle {
  display: flex;
  flex-direction: column;
}

.image { width: 100%; }

/* ============================================
   FOOTER
   ============================================ */
.footer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
}

.menu-link-dwnld {
  color: var(--cyprus);
  cursor: pointer;
  padding: var(--pad);
  position: relative;
}
.menu-link-dwnld:hover {
  background-color: var(--surface-hover);
  border-radius: var(--pad);
}
.menu-link-dwnld.fix.big-ver {
  color: var(--cyprus);
  padding: var(--gap);
}

.menu-link-dwnld.fix.big-ver:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

.footer-bottom-wrapper {
  z-index: var(--z-nav);
  mix-blend-mode: difference;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: var(--pad) var(--gap) var(--pad) var(--pad);
  position: absolute;
  bottom: 0; left: 0; right: 0;
}

.social-links-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-link {
  color: var(--cyprus);
  cursor: pointer;
  padding: var(--pad);
  position: relative;
}
.social-link:hover {
  background-color: var(--surface-hover);
  border-radius: var(--pad);
}

.copy-button {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.75rem;
  color: var(--cyprus);
  cursor: pointer;
  text-transform: uppercase;
  font-family: inherit;
  transition: opacity var(--dur-fast);
}
.copy-button:hover { opacity: 0.7; }
.copy-button.is-copied { color: var(--accent-primary); }



/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: var(--z-cursor);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--accent-primary);
  border-radius: 50%;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.3s ease;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--accent-primary);
  border-radius: 50%;
}

.cursor-ring.is-visible,
.cursor-dot.is-visible { opacity: 1; }

.cursor-ring.is-hovering {
  width: 56px;
  height: 56px;
  border-color: var(--accent-hover);
}

.cursor-ring.is-clicking {
  width: 32px;
  height: 32px;
}

body.has-custom-cursor,
body.has-custom-cursor * { cursor: none !important; }
body.has-custom-cursor .loader,
body.has-custom-cursor .image-wrap { cursor: auto !important; }

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  z-index: var(--z-progress);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.scroll-progress.is-hidden { opacity: 0; pointer-events: none; }
.scroll-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-hover));
  transition: width 0.1s ease-out;
}

/* ============================================
   UTILITY & HELPER CLASSES
   ============================================ */
.hide { display: none !important; }
.hide-320 { }
.hide-tablet { display: none; }
.show-tablet { }

.body-works, .body-about {
  background-color: var(--white);
}
[data-theme="light"] .body-works,
[data-theme="light"] .body-about {
  background-color: var(--gray-50);
}

/* Skip to content (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--accent-primary);
  color: #fff;
  z-index: 99999;
  font-size: 0.875rem;
  text-transform: none;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { top: 0; }

/* Page wrapper */
.page-wrapper { position: relative; }

/* ============================================
   RESPONSIVE — TABLET (≤991px)
   ============================================ */
@media (max-width: 991px) {
  /* Navigation simplification */
  .nav-links-wrp {
    grid-template-columns: 1fr auto;
  }
  .nav-left-side-items {
    gap: var(--gap);
  }

  /* Hero layout — simplify to single column flow */
  ._0-5-1-25-col {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  ._2-row-ver-0-5-auto {
    grid-template-rows: auto;
    align-items: start;
  }

  ._2-col-hor {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
  }

  ._3-col-hor {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
  }

  ._3-row-hor {
    display: none;
  }

  /* Hide desktop-only elements */
  .status-item-1 { display: none; }
  .status-item-mob {
    display: flex;
    gap: var(--gap);
    align-items: baseline;
  }

  /* Trail stays visible on all devices for touch interaction */
  .image-wrap.demo-1 {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none; /* let touches pass through to body */
  }
  .image-wrap.demo-1 .content__img {
    pointer-events: none;
  }
  .blur-background {
    position: fixed;
    inset: 0;
  }
  .coords { display: none; }
  .toggle_wrap { display: none; }
  .menu-links-wrapper { display: none; }

  .progressive-blur_wrap { display: none; }

  /* Trail images — smaller on tablets */
  .content__img--horizontal {
    --img-width: 18rem;
  }
  .content__img--vertical {
    --img-width: 15rem;
  }

  /* Hero content positioning — higher z-index so text sits above trail */
  .hero-content {
    top: 45svh;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 5;
    overflow: visible;
  }

  .global-padding {
    position: absolute;
    inset: 0 0.625rem 0.63rem;
  }

  /* Project layout */
  .project-desc {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
  }

  /* Loader */
  .loader { justify-content: center; align-items: center; }
  .loader_top { border-top: 2px solid #000; position: absolute; inset: 0 0 auto; }

  .container { padding-left: 6vw; padding-right: 6vw; }

  .menu-link.hide-tablet { display: none; }
  .menu-link.show-tablet { margin-left: 0; margin-right: -0.315rem; }

  /* Grid node overrides for tablet */
  #w-node-e0bc3cf8-8017-c14b-8415-d6a63a4e97a9-fea59a88 { grid-area: auto; }
  #w-node-_4ef52cca-15e4-fd1f-99d4-aea5206917d2-fea59a88 { grid-area: auto; }
  #w-node-d030f422-5704-da15-0bd6-ebbd19eaffb8-fea59a88 { justify-self: start; }
  #w-node-d0c321b0-cefa-b1b1-3114-5311c951d002-e3dfbd3c { grid-area: auto; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤767px)
   ============================================ */
@media (max-width: 767px) {
  .navigation-top {
    padding: var(--pad);
  }

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

  /* Hero adjustments */
  ._0-5-1-25-col {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  ._2-col-hor {
    display: flex;
    flex-direction: row;
    gap: var(--gap);
  }

  ._3-col-hor {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg) var(--gap);
  }

  ._2-row-ver-0-5-auto {
    gap: 0;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .global-padding {
    position: absolute;
    inset: 0 0.625rem 0.63rem;
  }

  .hero-content {
    top: 40svh;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 5;
    overflow: visible;
  }

  /* Status text adjustments */
  .status-item-mob {
    flex-direction: row;
    gap: var(--gap);
    width: 100%;
  }

  /* Projects */
  .project-desc {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 2rem;
  }
  .project-tittle { flex-direction: row; }
  .project-about { gap: 1.7rem; padding-top: var(--gap-lg); }
  .project-link { padding-top: 1.7rem; }

  /* Footer links */
  .menu-link.hide-tablet { display: block; }
  .menu-link.show-tablet { display: none; }
  .menu-links-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
  }

  /* Text sizes reduction */
  .text-size-2-13 {
    font-size: 1.25rem;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤479px)
   ============================================ */
@media (max-width: 479px) {
  /* Hero container is the full viewport */
  .hero-container._w-grad {
    display: flex;
    flex-direction: column;
    height: 100svh;
    overflow: clip;
    position: relative;
  }

  /* Hero content sits at the bottom, above the trail */
  .hero-content {
    position: absolute;
    top: 55svh;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    overflow: visible;
  }

  /* Global padding — absolute like desktop, fills the hero container */
  .global-padding {
    position: absolute;
    inset: 0 var(--gap) var(--gap);
  }

  /* Single column layout for hero grids */
  ._0-5-1-25-col {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
    height: auto;
  }

  ._2-row-ver-0-5-auto {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  ._2-col-hor {
    display: flex;
    flex-direction: row;
    gap: var(--gap);
  }

  ._3-col-hor {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  ._3-row-hor {
    display: none;
  }

  /* Status — show mobile version */
  .status-item-1 { display: none; }
  .status-item-mob {
    display: flex;
    flex-direction: row;
    gap: 0.3rem;
    width: 100%;
    align-items: baseline;
  }

  /* Text sizing for mobile */
  .text-size-2-13 {
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .text-size-0-75 {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  /* Show mobile services, hide desktop */
  .list-wrapper.hide-320 { display: none; }
  .service-list-320 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    margin-top: var(--gap);
  }

  .list-wrapper-320 {
    gap: 0.4rem;
  }

  .list-items {
    gap: 0.25rem;
  }

  /* Background image */
  .my-video-index {
    height: 100svh;
    position: absolute;
    inset: 0;
  }

  /* Trail container — visible, touch passes through */
  .image-wrap.demo-1 {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
  }

  /* Trail images — smaller on phones */
  .content__img--horizontal {
    --img-width: 12rem;
  }
  .content__img--vertical {
    --img-width: 10rem;
  }

  /* Mobile thumbnails */
  .thumbnail-mob-items {
    display: none;
  }

  /* Navigation */
  .nav-links-wrp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
  }
  .nav-links-items { display: block; }
  .nav-left-side-items {
    flex-direction: row;
  }

  .menu-links-wrapper {
    display: flex;
    width: 100%;
    padding-left: 0;
  }

  /* Hide bottom bar & coords on mobile */
  .bottom-bar {
    display: flex;
    position: absolute;
    bottom: 1rem;
    left: var(--gap);
    right: var(--gap);
    z-index: 10;
    mix-blend-mode: normal;
  }
  .cv-items {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .coords { display: none; }
  .toggle_wrap { display: none; }
  .progressive-blur_wrap { height: 10lvh; }
  .blur-background {
    position: fixed;
    inset: 0;
  }

  .g-l-wrp { gap: var(--pad); }

  .featured-wrp {
    display: flex;
    flex-direction: column;
  }

  /* About page mobile */
  .about-grid {
    grid-template-columns: 1fr;
    padding: 0 var(--gap);
  }

  /* Grid node overrides — reset for mobile flex layout */
  #w-node-_95555477-c775-5fc9-5de7-8dd9e3dfbd3d-e3dfbd3c { grid-area: auto; }
  #w-node-_0ab069b3-28e9-4a54-bb30-18e64a40ee8e-fea59a88 { grid-area: auto; }
  #w-node-a74a4292-83c0-30cb-b933-c896227201c3-fea59a88 { grid-area: auto; }
  #w-node-_4ef52cca-15e4-fd1f-99d4-aea5206917d2-fea59a88 { grid-area: auto; }
  #w-node-e0bc3cf8-8017-c14b-8415-d6a63a4e97a9-fea59a88 { grid-area: auto; }
  #w-node-d030f422-5704-da15-0bd6-ebbd19eaffb8-fea59a88 { justify-self: auto; }
}

/* ============================================
   RESPONSIVE — VERY SMALL MOBILE (≤360px)
   ============================================ */
@media (max-width: 360px) {
  .text-size-2-13 {
    font-size: 1rem;
  }

  .text-size-0-75 {
    font-size: 0.65rem;
  }

  .global-padding {
    margin-top: 3.5rem;
    padding: 0 0.4rem var(--gap);
  }

  .thumbnail-mob-items {
    display: none;
  }

  .service-list-320 {
    gap: 0.4rem var(--gap);
  }

  .list-wrapper-320 {
    gap: 0.4rem;
  }
}

/* ============================================
   WEBFLOW GRID NODE OVERRIDES
   (Grid area assignments for specific elements)
   — Desktop only, overridden in responsive sections above
   ============================================ */
@media (min-width: 992px) {
  #w-node-_4ef52cca-15e4-fd1f-99d4-aea5206917d2-fea59a88 { grid-area: 1 / 2 / 2 / 2; }
  #w-node-d030f422-5704-da15-0bd6-ebbd19eaffb8-fea59a88 { grid-area: span 1 / span 1 / span 1 / span 1; justify-self: end; }
  #w-node-d0c321b0-cefa-b1b1-3114-5311c951d002-e3dfbd3c { justify-self: start; }
  #w-node-_95555477-c775-5fc9-5de7-8dd9e3dfbd3d-e3dfbd3c { justify-self: start; }
  #w-node-_95555477-c775-5fc9-5de7-8dd9e3dfbd40-e3dfbd3c { grid-area: 1 / 2 / 2 / 3; justify-self: start; }
  #w-node-_70c5ba4b-d1ee-2465-63e5-2e2fd6e4404d-e3dfbd3c { place-self: center end; }
}

/* Portfolio page grid nodes — desktop */
@media (min-width: 992px) {
  #w-node-_6eaca78b-fea8-69bc-2a1b-351341c5f198-41c5f196 { justify-self: start; }
  #w-node-_73ecf3b4-bc4c-9fdb-d187-ca6e828597c7-41c5f196 { justify-self: start; }
  #w-node-c7374101-1faa-9e93-7c3d-ecc2bb7a55a5-41c5f196 { grid-area: 1 / 2 / 2 / 3; justify-self: start; }
  #w-node-_03942803-5407-12e5-4886-f9fa54a04db4-41c5f196 { justify-self: end; }
  #w-node-_6eaca78b-fea8-69bc-2a1b-351341c5f1ad-41c5f196 { grid-area: 1 / 3 / 2 / 3; justify-self: end; }
  #w-node-_6eaca78b-fea8-69bc-2a1b-351341c5f1b3-41c5f196 { place-self: center end; }
}

/* Project image grid nodes — desktop */
@media (min-width: 992px) {
  #w-node-_1286d2fb-1a23-7abd-63bc-d323b5f1a05a-34a23959 { justify-self: end; }
  #w-node-_1286d2fb-1a23-7abd-63bc-d323b5f1a060-34a23959 { grid-area: 1 / 1 / 2 / 3; }
  #w-node-_1286d2fb-1a23-7abd-63bc-d323b5f1a061-34a23959 { grid-area: 2 / 1 / 3 / 3; }
  #w-node-_79516699-aea5-038e-be3c-515762a735e0-34a23959 { justify-self: end; }
  #w-node-_03857139-242f-7007-e221-f787dce7ef82-34a23959 { justify-self: end; }
  #w-node-_03857139-242f-7007-e221-f787dce7ef88-34a23959 { grid-area: 1 / 1 / 2 / 3; }
  #w-node-_03857139-242f-7007-e221-f787dce7ef89-34a23959 { grid-area: 2 / 1 / 3 / 3; }
  #w-node-_3e18eaf6-f7ec-26f7-9eed-e1e0ab1f3a94-34a23959 { justify-self: end; }
  #w-node-_3e18eaf6-f7ec-26f7-9eed-e1e0ab1f3a9a-34a23959,
  #w-node-_3e18eaf6-f7ec-26f7-9eed-e1e0ab1f3a9b-34a23959,
  #w-node-_3e18eaf6-f7ec-26f7-9eed-e1e0ab1f3a9c-34a23959,
  #w-node-_3e18eaf6-f7ec-26f7-9eed-e1e0ab1f3a9d-34a23959 { grid-area: span 1 / span 2 / span 1 / span 2; }
  #w-node-_40a50ba3-c72c-d3c4-0ef5-57013a37e241-34a23959 { justify-self: end; }
  #w-node-e3655eec-8f34-f225-ea9f-bcafc3787c03-34a23959 { justify-self: end; }
  #w-node-a0e6f8d9-8bce-ffcf-0118-8f7f7bd12ca0-7bd12c8b { justify-self: end; }
}

/* ── Inline block utility (Webflow compat) ── */
.w-inline-block:not(.thumbnail-mob-items) { display: inline-block; max-width: 100%; }
.thumbnail-mob-items { display: none !important; }
.w-list-unstyled { padding-left: 0; list-style: none; }
