* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
:root {
  --page-max-width: 1440px;
  --page-padding: 80px;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background: #090908;
  color: #f5f5f5;
  overflow-x: hidden;
}



.language-switch button.active {
  background: #f5f5f5;
  color: #090908;
}


/* ============================= */
/* HEADER */
/* ============================= */

.header {
  --compact-panel-top: 24px;
  --compact-panel-right: 70px;
  --compact-panel-width: 180px;

  --compact-dropdown-top: 70px;
  --compact-dropdown-right: 0px;

  position: relative;
  width: 100%;
  min-height: 260px;
  padding: 30px 95px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 50;
  pointer-events: auto;
  margin-top: 15px;
}

.logo {
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.logo img {
  width: 235px;
  height: auto;
  display: block;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 42px;
}

.language-switch {
  display: flex;
  gap: 22px;
}

.language-switch button {
  width: 38px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  background: transparent;
  color: #f4f4f4;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.language-switch button.active {
  background: #f5f5f5;
  color: #090908;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.nav a {
  color: #d7d7d7;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;

}

.nav a:hover {
  color: #ffffff;
}


/* ============================= */
/* BURGER BUTTON */
/* ============================= */

.nav-burger {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.nav-burger span {
  width: 20px;
  height: 1px;
  background: #f5f5f5;
  display: block;

  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================= */
/* COMPACT HEADER */
/* ============================= */

/* bitno: header NE SME da menja visinu ni poziciju */
.header.is-compact {
  position: relative;
  width: 100%;
  min-height: 260px;
  padding: 30px 95px 0;
  background: transparent;
  pointer-events: none;
  z-index: 200;
}

/* logo samo nestane, ne pomera layout */
.header.is-compact .logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* glass panel */
.header.is-compact .header-right {
  position: fixed;
  top: var(--compact-panel-top);
  right: var(--compact-panel-right);
  z-index: 220;

  width: var(--compact-panel-width);
  height: 64px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 8px;
  border-radius: 8px;

  background: rgba(9, 9, 8, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  pointer-events: auto;

  transition:
    background 0.45s ease,
    border-color 0.45s ease,
    backdrop-filter 0.45s ease;
}

.header.is-compact .language-switch {
  gap: 10px;
}

.header.is-compact .language-switch button {
  width: 46px;
  height: 46px;
}

/* burger se samo pojavi, bez pomeranja */
.header.is-compact .nav-burger {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* ============================= */
/* DROPDOWN MENU */
/* ============================= */

.header.is-compact .nav {
  position: fixed;
  top: var(--compact-dropdown-top);
  right: var(--compact-dropdown-right);
  width: var(--compact-panel-width);

  padding: 30px 10px;

  background: rgba(9, 9, 8, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;

  z-index: 210;

  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0.7s;
}

.header.is-compact .nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;

  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0s;
}

.header.is-compact .nav a {
  text-align: right;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: rgba(245, 245, 245, 0.78);

  opacity: 0;
  transform: translateY(-6px);

  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    color 0.25s ease;
}

.header.is-compact .nav.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.header.is-compact .nav.is-open a:nth-child(1) { transition-delay: 0.08s; }
.header.is-compact .nav.is-open a:nth-child(2) { transition-delay: 0.13s; }
.header.is-compact .nav.is-open a:nth-child(3) { transition-delay: 0.18s; }
.header.is-compact .nav.is-open a:nth-child(4) { transition-delay: 0.23s; }
.header.is-compact .nav.is-open a:nth-child(5) { transition-delay: 0.28s; }
.header.is-compact .nav.is-open a:nth-child(6) { transition-delay: 0.33s; }
.header.is-compact .nav.is-open a:nth-child(7) { transition-delay: 0.38s; }
.header.is-compact .nav.is-open a:nth-child(8) {
  transition-delay: 0.43s;
}
.header.is-compact .nav a:hover {
  color: #ffffff;
}

/* ============================= */
/* SOFT TRANSITION TO BURGER */
/* ============================= */

.header .logo,
.header .nav {
  transition:
    opacity 0.6s ease,
    filter 0.6s ease,
    visibility 0.6s ease;
}

/* međufaza: obična navigacija se suptilno ugasi */
.header.is-precompact .logo,
.header.is-precompact .nav {
  opacity: 0;
  filter: blur(6px);
  visibility: hidden;
  pointer-events: none;
}

/* glass panel ulazi suptilno kada se compact aktivira */
.header.is-compact .header-right {
  animation: compactPanelSoftIn 0.9s ease both;
}

@keyframes compactPanelSoftIn {
  from {
    opacity: 0;
    filter: blur(8px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* burger se pojavi malo posle jezika */
.header.is-compact .nav-burger {
  animation: burgerSoftIn 0.55s ease 0.16s both;
  
}

@keyframes burgerSoftIn {
  from {
    opacity: 0;
    filter: blur(5px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* jezici isto dobiju mali premium fade */
.header.is-compact .language-switch button {
  animation: langSoftIn 0.5s ease both;
}

.header.is-compact .language-switch button:nth-child(1) {
  animation-delay: 0.04s;
}

.header.is-compact .language-switch button:nth-child(2) {
  animation-delay: 0.09s;
}

@keyframes langSoftIn {
  from {
    opacity: 0;
    filter: blur(4px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}
/* ordinary nav disappears text by text */

.nav a {
  transition:
    opacity 0.5s ease,
    filter 0.5s ease,
    color 0.25s ease;
}

.header.is-precompact .nav a {
  opacity: 0;
  filter: blur(5px);
}

.header.is-precompact .nav a:nth-child(1) { transition-delay: 0.02s; }
.header.is-precompact .nav a:nth-child(2) { transition-delay: 0.06s; }
.header.is-precompact .nav a:nth-child(3) { transition-delay: 0.10s; }
.header.is-precompact .nav a:nth-child(4) { transition-delay: 0.14s; }
.header.is-precompact .nav a:nth-child(5) { transition-delay: 0.18s; }
.header.is-precompact .nav a:nth-child(6) { transition-delay: 0.22s; }
.header.is-precompact .nav a:nth-child(7) { transition-delay: 0.26s; }


/* HERO */

.hero {
  position: relative;
  min-height: calc(100vh - 260px);
  padding: 120px 95px 100px;
}


.hero-content {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -40px;
}
.headline {
  text-transform: uppercase;
}

.headline-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  white-space: nowrap;
}

.row-one {
  margin-bottom: 8px;
}

.small-text {
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.09em;
}

.big-text {
  font-size: 94px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.main-line {
  font-size: 94px;
  letter-spacing: 0.026em;
}

.bottom-line {
  margin-top: 22px;
  font-size: 28px;
  letter-spacing: 0.09em;
}

.hero-buttons {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}

.btn {
  width: 185px;
  height: 62px;
  background: #e4e4e4;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.35em;
  transition: 0.25s ease;
}

.btn:hover {
  background: #ffffff;
}

/* RIGHT TEXT */

.hero-text {
  position: absolute;
  right: 330px;
  bottom: 570px;
  width: 350px;
  color: #f3f3f3;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  z-index: 2;
  margin-top: 100px;
}

.hero-text p + p {
  margin-top: 20px;
}

.text-button {
  display: block;
  width: 170px;
  height: 47px;
  background: #e2e2e2;
  margin-top: 22px;
}



/* FOOTER SOCIALS */


.socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-icon {
  position: relative;
  width: 38px;
  height: 38px;
  display: block;
}

/* Instagram icon with CSS */

.icon-credit {
  margin-top: 10px;
  font-size: 9px;
  line-height: 1.2;
  opacity: 0.35;
}

.icon-credit a {
  color: #ffffff;
  text-decoration: none;
}
.icon-credit {
  position: absolute;
  left: 80px;
  bottom: 12px;
  font-size: 9px;
  opacity: 0.3;
}

.icon-credit a {
  color: #ffffff;
  text-decoration: none;
}

/* HERO BACKGROUND VIDEO */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
 filter: grayscale(100%) brightness(1.15);
  opacity: 0.87;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content,
.hero-text,
.hero-socials {
   position: relative;
  z-index: 2;
}
.hero-bg-video {
  transform: scale(1.08);
  animation: heroVideoSlowZoom 14s ease-in-out infinite alternate;
}

@keyframes heroVideoSlowZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.16);
  }
}

/* SELECTED WORK */

.selected-work {
  position: relative;
  background: #090908;
  padding: 120px 95px 110px;
  color: #f5f5f5;
}

.selected-work-inner {
  width: min(100%, var(--page-max-width));
  margin: 0 auto;
}

.selected-work-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
}

.selected-work-heading h2 {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.selected-work-mark {
  width: 150px;
  height: 40px;
  background: #d9d9d9;
  margin-top: 58px;
}

.selected-work-heading p {
  margin-top: 70px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.02em;
}

/* SWIPER */

.selected-work-swiper {
  margin-top: 110px;
  width: 100%;
  overflow: hidden;
}

.selected-work-swiper .swiper-wrapper {
  align-items: stretch;
}

.selected-work-swiper .swiper-slide {
  height: 490px !important;
}

/* SELECTED WORK TEXT FADE IN */

.selected-work-heading h2,
.selected-work-heading p {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s ease;
}

.selected-work.is-visible .selected-work-heading h2 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.1s;
}

.selected-work.is-visible .selected-work-heading p {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.28s;
}
.selected-work-mark {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    opacity 0.7s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.selected-work.is-visible .selected-work-mark {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0.18s;
}
/* WORK CARDS */

.work-card {
  position: relative;
  height: 390px !important;
  overflow: hidden;
  background: #d9d9d9;
  display: block;
    text-decoration: none;
  color: inherit;
}

.work-card img,
.work-placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

.work-card img {
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.work-placeholder {
  background: #d9d9d9;
}

.work-card:hover img {
  transform: scale(1.05);
  filter: grayscale(40%);
}

/* CARD LABEL */

.work-label {
  position: absolute;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
  width: 145px;
  min-height: 75px;
  padding: 18px 14px 14px;
  background: #050505;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
}

.work-label h3 {
  font-size: 15px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.work-label p {
  margin-top: 8px;
  font-size: 7px;
  line-height: 1;
  font-weight: 500;
  text-transform: none;
}

/* SWIPER PAGINATION */

.selected-work-pagination {
  margin-top: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.work-bullet {
  width: 58px;
  height: 16px;
  border: 1px solid #d9d9d9;
  background: transparent;
  display: block;
  cursor: pointer;
  opacity: 1;
  transition: background 0.25s ease, opacity 0.25s ease;
}

.work-bullet-active {
  background: #d9d9d9;
}

/* SELECTED WORK CARDS — LEFT TO RIGHT ARRANGE */

.selected-work .work-card {
  opacity: 0;
  transform: translateX(-70px);
  clip-path: inset(0 100% 0 0);
  filter: blur(6px);

  transition:
    opacity 0.75s ease,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s ease;
}

.selected-work.is-visible .work-card {
  opacity: 1;
  transform: translateX(0);
  clip-path: inset(0 0 0 0);
  filter: blur(0);
}

/* svaka kartica dolazi malo kasnije */

.selected-work.is-visible .work-card:nth-child(1) {
  transition-delay: 0.38s;
}

.selected-work.is-visible .work-card:nth-child(2) {
  transition-delay: 0.52s;
}

.selected-work.is-visible .work-card:nth-child(3) {
  transition-delay: 0.66s;
}

.selected-work.is-visible .work-card:nth-child(4) {
  transition-delay: 0.80s;
}

.selected-work.is-visible .work-card:nth-child(5) {
  transition-delay: 0.94s;
}

/* CARD LABEL — SOFT APPEAR */

.selected-work .work-label {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(10px);
  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.selected-work.is-visible .work-card:nth-child(1) .work-label {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
  transition-delay: 0.95s;
}

.selected-work.is-visible .work-card:nth-child(2) .work-label {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
  transition-delay: 1.08s;
}

.selected-work.is-visible .work-card:nth-child(3) .work-label {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
  transition-delay: 1.21s;
}

.selected-work.is-visible .work-card:nth-child(4) .work-label {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
  transition-delay: 1.34s;
}

.selected-work.is-visible .work-card:nth-child(5) .work-label {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
  transition-delay: 1.47s;
}

/* CLARITY SECTION */

.clarity-section {
  position: relative;
 margin-top: 20px;
  /* background: #090908; */
  padding: 200px 95px;
  color: #f5f5f5;
  overflow: hidden;
}
.clarity-inner {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.clarity-line {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.28);
  opacity: 0;
  transform: translateY(18px);
  text-align: left;
}

.clarity-row {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}
.clarity-box {
  position: relative;
  min-width: 420px;
  height: 48px;
  background: #d9d9d9;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: scaleX(0);
  transform-origin: left;
}



/* visible animation */

.clarity-section.is-visible .clarity-line {
  animation: clarityTextIn 0.9s ease forwards;
}

.clarity-section.is-visible .clarity-row .clarity-line {
  animation-delay: 0.22s;
}

.clarity-section.is-visible .clarity-box {
  animation: clarityBoxIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.48s;
}

.clarity-section.is-visible .clarity-box span {
  animation: clarityWordIn 0.7s ease forwards;
  animation-delay: 1.05s;
}

/* animations */

@keyframes clarityTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes clarityBoxIn {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes clarityWordIn {
  0% {
    opacity: 0;
    filter: blur(14px);
    letter-spacing: 0.75em;
  }

  60% {
    opacity: 0.75;
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    letter-spacing: 0.48em;
  }


}

.clarity-box span {
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  opacity: 0;
  filter: blur(10px);
}

.clarity-section.is-visible .clarity-box span {
  animation: clarityWordIn 1.25s ease forwards;
  animation-delay: 1.05s;
}

/* WHAT WE BUILD */

.what-we-build {
  margin-top: 20px;
  position: relative;
  background: #090908;
  padding: 120px 95px 130px;
  color: #f5f5f5;
}

.what-build-inner {
  width: min(100%, var(--page-max-width));
  margin: 0 auto;
}

.what-build-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.what-build-heading h2 {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.what-build-mark {
  width: 150px;
  height: 40px;
  background: #d9d9d9;
  margin-top: 42px;
}

.what-build-heading p {
  max-width: 720px;
  margin-top: 72px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
  color: #f5f5f5;
}

.build-cards {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 72px;
}

.build-card {
  min-height: 210px;
  padding: 58px 28px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.build-card:hover {
  transform: translateY(-10px);
}

.build-card h3 {
  max-width: 165px;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.build-card p {
  max-width: 220px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
}

.build-card-light {
  background: #d9d9d9;
  color: #050505;
}

.build-card-medium {
  background: #858585;
  color: #ffffff;
}

.build-card-dark {
  background: #323230;
  color: #ffffff;
}

.build-card-black {
  background: #141414;
  color: #ffffff;
}

/* WHAT WE BUILD — TEXT REVEAL / EXTRA SLOW */

.what-build-heading h2 {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  letter-spacing: 0.16em;

  transition:
    opacity 1.4s ease,
    clip-path 2.9s cubic-bezier(0.16, 1, 0.3, 1),
    letter-spacing 2.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-we-build.is-visible .what-build-heading h2 {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  letter-spacing: -0.03em;
  transition-delay: 0.3s;
}

.what-build-mark {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;

  transition:
    opacity 1.8s ease,
    transform 2.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-we-build.is-visible .what-build-mark {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0.84s;
}

.what-build-heading p {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  letter-spacing: 0;

  transition:
    opacity 1.5s ease,
    clip-path 3s cubic-bezier(0.16, 1, 0.3, 1),
    letter-spacing 3s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-we-build.is-visible .what-build-heading p {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  letter-spacing: 0;
  transition-delay: 1.56s;
}


/* WHAT WE BUILD — CARDS LEFT TO RIGHT / ELEGANT */
/* WHAT WE BUILD — CARDS LEFT TO RIGHT / MATCH TEXT REVEAL */

.what-we-build .build-card {
  opacity: 0;
  transform: translateX(-38px);
  clip-path: inset(0 100% 0 0);
  filter: blur(5px);

  transition:
    opacity 1.25s ease,
    transform 1.9s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.25s ease;
}

.what-we-build.is-visible .build-card {
  opacity: 1;
  transform: translateX(0);
  clip-path: inset(0 0 0 0);
  filter: blur(0);
}

/* kartice kreću tek kad je WHAT WE BUILD već otvoren */
.what-we-build.is-visible .build-card:nth-child(1) {
  transition-delay: 2.35s;
}

.what-we-build.is-visible .build-card:nth-child(2) {
  transition-delay: 2.75s;
}

.what-we-build.is-visible .build-card:nth-child(3) {
  transition-delay: 3.15s;
}

.what-we-build.is-visible .build-card:nth-child(4) {
  transition-delay: 3.55s;
}

/* PROCESS SECTION */

.process-section {
  position: relative;
  background: #090908;
  color: #f5f5f5;
  overflow: hidden;
}

/* PROCESS HERO IMAGE REVEAL */

.process-hero {
  position: relative;
  height: 620px; /* ili koliko zelis */
  overflow: hidden;
}

.process-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;

  filter: grayscale(100%) blur(18px);
  transform: scale(1.08);
  opacity: 0.45;

  transition:
    filter 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.4s ease;
}

.process-section.is-visible .process-hero img {
  filter: grayscale(100%) blur(0);
  transform: scale(1);
  opacity: 1;
}

.process-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  transition: background 1.6s ease;
}

.process-section.is-visible .process-hero-overlay {
  background: rgba(0, 0, 0, 0.48);
}

.process-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  text-transform: uppercase;
  z-index: 2;

  gap: 52px;
}
.process-hero-content h2 {
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  
}
.process-mark {
  width: 150px;
  height: 50px;
  background: #d9d9d9;
  margin-top: 0;
}

.process-hero-content p {
  margin-top: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-transform: lowercase;
 
}

.process-hero-content h2,
.process-mark,
.process-hero-content p {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);

  transition:
    opacity 5s ease,
    transform 5s cubic-bezier(0.16, 1, 0.3, 1),
    filter 5s ease;
}

.process-section.is-visible .process-hero-content h2 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.35s;
}

.process-section.is-visible .process-mark {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.5s;
}

.process-section.is-visible .process-hero-content p {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.68s;
}

/* PROCESS CONTENT */

.process-inner {
  width: min(100%, var(--page-max-width));
  margin: 0 auto;
  padding: 88px 95px 130px;
}

.process-intro {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  max-width: 360px;
}

.process-intro-mark {
  width: 58px;
  height: 120px;
  background: #d9d9d9;
  flex-shrink: 0;
}

.process-intro p {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
}

.process-intro p + p {
  margin-top: 22px;
}

/* PROCESS CARDS */

.process-cards {
  margin-top: -120px;
  margin-left: 440px;
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  height: 560px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.process-card span {
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 600;
  text-align: center;
}

.process-card.active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.process-card-one {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-card-two {
  background: radial-gradient(circle, #6b6b6b 0%, #1a1a1a 72%);
}

.process-card-three {
  background: radial-gradient(circle, #777 0%, #3a3a38 72%);
}

.process-card-four {
  background: radial-gradient(circle, #aaa 0%, #656565 72%);
}

.process-card-five {
  background: radial-gradient(circle, #e0e0e0 0%, #bfbfbf 72%);
  color: #050505;
}
/* PROCESS BOTTOM TEXT */

.process-bottom {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 140px;
  align-items: start;
}

.process-bottom-title {
  max-width: 310px;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.process-bottom-title span {
  display: block;
}

.process-highlight {
  width: fit-content;
  margin: 8px 0;
  padding: 8px 14px;
  background: #d9d9d9;
  color: #050505;
  letter-spacing: 0.18em;
}

.process-bottom-text {
  position: relative;
  max-width: 760px;
  min-height: 150px;
}

.process-text-content {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.process-text-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.process-bottom-text p {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.process-bottom-text p + p {
  margin-top: 18px;
}



/* CLIENTS SECTION */
/* PROCESS HERO — TEXT REVEAL LIKE SELECTED WORK */

.process-hero-content h2 {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  letter-spacing: 0.16em;

  transition:
    opacity 0.7s ease,
    clip-path 1.35s cubic-bezier(0.16, 1, 0.3, 1),
    letter-spacing 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-section.is-visible .process-hero-content h2 {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  letter-spacing: -0.03em;
  transition-delay: 0.12s;
}


/* kockica ostaje kao selected work */

.process-mark {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;

  transition:
    opacity 0.8s ease,
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-section.is-visible .process-mark {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0.34s;
}


/* subtitle */

.process-hero-content p {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  letter-spacing: 0.08em;

  transition:
    opacity 0.7s ease,
    clip-path 1.25s cubic-bezier(0.16, 1, 0.3, 1),
    letter-spacing 1.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-section.is-visible .process-hero-content p {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  letter-spacing: 0;
  transition-delay: 0.62s;
}

/* PROCESS — INTRO REVEAL */

.process-intro {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);

  transition:
    opacity 1s ease,
    transform 1.25s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s ease;
}

.process-section.is-visible .process-intro {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.95s;
}

.process-intro-mark {
  transform: scaleY(0);
  transform-origin: top;

  transition:
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-section.is-visible .process-intro-mark {
  transform: scaleY(1);
  transition-delay: 1.12s;
}

/* PROCESS — CARDS ARRANGE LEFT TO RIGHT */

.process-card {
  opacity: 0;
  transform: translateX(-54px);
  clip-path: inset(0 100% 0 0);
  filter: blur(7px);

  transition:
    opacity 1s ease,
    transform 1.35s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1.35s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s ease,
    box-shadow 0.35s ease;
}

.process-section.is-visible .process-card {
  opacity: 1;
  transform: translateX(0);
  clip-path: inset(0 0 0 0);
  filter: blur(0);
}

.process-section.is-visible .process-card:nth-child(1) {
  transition-delay: 1.25s;
}

.process-section.is-visible .process-card:nth-child(2) {
  transition-delay: 1.45s;
}

.process-section.is-visible .process-card:nth-child(3) {
  transition-delay: 1.65s;
}

.process-section.is-visible .process-card:nth-child(4) {
  transition-delay: 1.85s;
}

.process-section.is-visible .process-card:nth-child(5) {
  transition-delay: 2.05s;
}



/* PROCESS — BOTTOM TEXT REVEAL */

.process-bottom-title {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);

  transition:
    opacity 1s ease,
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s ease;
}

.process-section.is-visible .process-bottom-title {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 2.25s;
}

.process-highlight {
  transform: scaleX(0);
  transform-origin: left;

  transition:
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-section.is-visible .process-highlight {
  transform: scaleX(1);
  transition-delay: 2.55s;
}

.process-bottom-text {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);

  transition:
    opacity 1s ease,
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s ease;
}

.process-section.is-visible .process-bottom-text {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 2.75s;
}



.clients-section {
  position: relative;
  min-height: 900px;
  padding: 120px 95px 100px;
  background:
    radial-gradient(circle at center, rgba(40, 40, 40, 0.18) 0%, rgba(190, 190, 190, 0.78) 58%, rgba(225, 225, 225, 0.95) 100%);
  color: #ffffff;
  overflow: hidden;
}

.clients-inner {
  width: min(100%, var(--page-max-width));
  min-height: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clients-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
}

.clients-heading h2 {
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.clients-mark {
  width: 150px;
  height: 40px;
  background: #d9d9d9;
  margin-top: 42px;
}

.clients-heading p {
  margin-top: 44px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-transform: none;
}

.clients-text {
  max-width: 720px;
  margin-top: 120px;
  text-align: center;
}

.clients-text p {
  font-size: 14px;
  line-height: 1.18;
  font-weight: 500;
}

.clients-text p + p {
  margin-top: 48px;
}

.clients-cta {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.clients-cta h3 {
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.clients-cta h3 span {
  display: block;
}

.clients-button {
  width: 200px;
  height: 52px;
  margin-top: 58px;
  background: #d9d9d9;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.35em;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.clients-button:hover {
  transform: translateY(-4px);
  background: #ffffff;
}

/* CLIENTS SECTION — REVEAL */

.clients-mark {
  width: 150px;
  height: 40px;
  margin-top: 42px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.clients-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #d9d9d9;

  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;

  will-change: transform, opacity;
  backface-visibility: hidden;

  transition:
    opacity 0.8s ease,
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.clients-section.is-visible .clients-mark::before {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0.35s;
}
/* CLIENTS TEXT — STAGGERED */

.clients-text p {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);

  transition:
    opacity 1s ease,
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s ease;
}

.clients-section.is-visible .clients-text p:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.95s;
}

.clients-section.is-visible .clients-text p:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 1.25s;
}

.clients-section.is-visible .clients-text p:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 1.55s;
}

/* CLIENTS CTA — FINAL REVEAL */

.clients-cta h3 {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);

  transition:
    opacity 1s ease,
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1s ease;
}

.clients-section.is-visible .clients-cta h3 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 1.85s;
}

.clients-button {
  opacity: 0;
  transform: translateY(18px) scaleX(0.92);
  transform-origin: center;

  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease,
    color 0.25s ease;
}

.clients-section.is-visible .clients-button {
  opacity: 1;
  transform: translateY(0) scaleX(1);
  transition-delay: 2.15s;
}

.clients-button:hover {
  transform: translateY(-4px) scaleX(1.02);
}

/* ============================= */
/* STUDIO SECTION */
/* ============================= */

.studio-section {
  position: relative;
  background: #090908;
  color: #f5f5f5;
  overflow: hidden;
  padding: 0 0 120px;
}

/* HEADING PREKO SLIKE */

.studio-heading {
  position: absolute;
  top: 180px;
  left: 0;
  right: 0;
  z-index: 5;

  width: min(100%, var(--page-max-width));
  margin: 0 auto;
  padding: 0 95px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
}

.studio-heading h2 {
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.studio-mark {
  width: 150px;
  height: 40px;
  background: transparent;
  margin-top: 54px;
  position: relative;
  overflow: hidden;
}

.studio-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #d9d9d9;

  opacity: 0;
  transform: scaleX(0.65);
  transform-origin: center;

  transition:
    opacity 1.1s ease,
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-heading p {
  margin-top: 58px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-transform: none;
}

/* SLIKA KRECE OD SAMOG VRHA SEKCIJE */

.studio-hero {
  position: relative;
  width: 100vw;
  height: 960px;
  margin-left: calc(50% - 50vw);
  margin-top: 0;
  overflow: hidden;
  z-index: 1;
}

.studio-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 38%;

  filter: grayscale(100%) brightness(0.95) contrast(1.05) blur(8px);
  opacity: 0.65;
  transform: scale(1.08);

  transition:
    filter 2.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 2s ease,
    transform 2.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* OVERLAY */

.studio-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      to bottom,
      rgba(9, 9, 8, 0.58) 0%,
      rgba(9, 9, 8, 0.34) 20%,
      rgba(9, 9, 8, 0.18) 45%,
      rgba(9, 9, 8, 0.42) 72%,
      rgba(9, 9, 8, 0.92) 100%
    ),
    rgba(0, 0, 0, 0.04);
}

/* SREDNJI TEKST NA SLICI */


.studio-center {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, calc(-50% + 26px));
  width: min(90%, 780px);
  text-align: center;
  z-index: 2;
}

/* title posebno */
.studio-center .studio-small-title {
  margin-bottom: 24px;
  font-size: 2
  14px;
  line-height: 1.1;
  font-weight: 800;
}

/* običan tekst posebno, da ne gazi title */
.studio-center p:not(.studio-small-title) {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
}

/* FOUNDER DEO NA DNU SLIKE */

.studio-founder {
  position: absolute;
  left: 50%;
  bottom: 76px;
  transform: translateX(-50%) translateY(28px);
  width: min(90%, 660px);
  text-align: center;
  z-index: 2;
}

.studio-name {
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.studio-founder h3,
.studio-member h3 {
  margin-top: 24px;
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.studio-founder > p:not(.studio-name),
.studio-member > p:not(.studio-name) {
  margin-top: 36px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
}

.studio-person-mark {
  width: 150px;
  height: 38px;
  background: #d9d9d9;
  margin: 40px auto 0;
}

/* TEAM GRID ISPOD SLIKE */

.studio-team {
  position: relative;
  z-index: 3;
  width: min(100%, var(--page-max-width));
  margin: 120px auto 0;
  padding: 0 95px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 110px;
}

.studio-member {
  text-align: center;
}

.studio-member h3 {
  min-height: 44px;
}

.studio-member > p:not(.studio-name) {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================= */
/* STUDIO SECTION — CALM ANIMATION */
/* ============================= */

/* slika se smireno izostri */

.studio-section.is-visible .studio-hero img {
  filter: grayscale(100%) brightness(1.14) contrast(1.08) blur(0);
  opacity: 0.95;
  transform: scale(1.06);
}

/* sve ide fade up, bez preterivanja */

.studio-heading h2,
.studio-heading p,
.studio-center,
.studio-founder,
.studio-member {
  opacity: 0;
  filter: blur(5px);

  transition:
    opacity 1.35s ease,
    transform 1.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.35s ease;
}

.studio-heading h2 {
  transform: translateY(24px);
}

.studio-heading p {
  transform: translateY(22px);
}

.studio-member {
  transform: translateY(36px);
}

/* visible states */

.studio-section.is-visible .studio-heading h2 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.35s;
}

.studio-section.is-visible .studio-mark::before {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0.6s;
}

.studio-section.is-visible .studio-heading p {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.85s;
}

.studio-section.is-visible .studio-center {
  opacity: 1;
  transform: translate(-50%, -50%);
  filter: blur(0);
  transition-delay: 1.15s;
}

.studio-section.is-visible .studio-founder {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  filter: blur(0);
  transition-delay: 1.55s;
}

.studio-section.is-visible .studio-member {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.studio-section.is-visible .studio-member:nth-child(1) {
  transition-delay: 1.9s;
}

.studio-section.is-visible .studio-member:nth-child(2) {
  transition-delay: 2.15s;
}

.studio-section.is-visible .studio-member:nth-child(3) {
  transition-delay: 2.4s;
}
/* STUDIO VIDEO BACKGROUND — BELOW HERO IMAGE */

.studio-video-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 960px; /* isto kao height od .studio-hero */
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.studio-video-bg video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;

  filter: grayscale(100%) brightness(0.58) contrast(1.12);
  opacity: 0.3;
  transform: scale(1.08);
}

.studio-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(9, 9, 8, 0.92) 0%,
      rgba(9, 9, 8, 0.62) 35%,
      rgba(9, 9, 8, 0.86) 100%
    ),
    rgba(0, 0, 0, 0.18);
}

/* ============================= */
/* TESTIMONIALS SECTION */
/* ============================= */

.testimonials-section {
  position: relative;
  background: #090908;
  color: #f5f5f5;
  padding: 120px 95px 120px;
  overflow: hidden;

  --testimonials-bg-scale: 1.08;
  --testimonials-bg-y: 0px;
}

/* IMAGE BACKGROUND — PARALLAX FEEL */

.testimonials-image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.testimonials-image-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;

  filter: grayscale(100%) brightness(0.55) contrast(1.12) blur(14px);
  opacity: 0.38;

  transform:
    translateY(var(--testimonials-bg-y))
    scale(var(--testimonials-bg-scale));

  will-change: transform, filter, opacity;

  transition:
    filter 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.5s ease;
}

.testimonials-section.is-visible .testimonials-image-bg img {
  filter: grayscale(100%) brightness(0.72) contrast(1.12) blur(0);
  opacity: 0.52;
}

.testimonials-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      to bottom,
      rgba(9, 9, 8, 0.9) 0%,
      rgba(9, 9, 8, 0.58) 42%,
      rgba(9, 9, 8, 0.92) 100%
    ),
    rgba(0, 0, 0, 0.12);
}

/* CONTENT */

.testimonials-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--page-max-width));
  margin: 0 auto;
}

.testimonials-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
}

.testimonials-heading h2 {
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.testimonials-mark {
  width: 150px;
  height: 40px;
  background: #d9d9d9;
  margin-top: 42px;
}

.testimonials-heading p {
  margin-top: 66px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-transform: none;
}

.testimonials-swiper {
  margin-top: 150px;
  width: 100%;
  overflow: hidden;
}

.testimonial-item {
  text-align: center;
}

.testimonial-top h3 {
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.testimonial-top p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

.testimonial-card {
  margin-top: 30px;
  min-height: 260px;
  padding: 62px 34px 40px;
  background: rgba(23, 23, 23, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: left;
  display: flex;
  align-items: center;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
}

.testimonials-pagination {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.testimonial-bullet {
  width: 46px;
  height: 14px;
  border: 1px solid #d9d9d9;
  background: transparent;
  display: block;
  cursor: pointer;
  opacity: 1;
  transition: background 0.25s ease;
}

.testimonial-bullet-active {
  background: #d9d9d9;
}


/* ============================= */
/* CONTACT SECTION */
/* ============================= */

.contact-section {
  position: relative;
  min-height: 1100px;
  background: #090908;
  color: #f5f5f5;
  overflow: hidden;
  padding: 70px 95px 120px;
}

.contact-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--page-max-width));
  margin: 0 auto;
}

/* CONTACT HEADING */

.contact-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
 
}

.contact-heading h2 {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em; 
  font-weight: 800;
}

.contact-mark {
  width: 150px;
  height: 40px;
  background: #d9d9d9;
  margin-top: 58px;
}

.contact-heading p {
  margin-top: 32px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-transform: none;
}

.contact-intro {
  margin: 120px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  
}

/* CONTACT FORM */

.contact-form {
  width: min(100%, 980px);
  margin: 95px auto 0;
}

.form-title {
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
}

.form-title h3 {
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* FORM GRID */

.form-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 170px 330px 1fr;
  grid-template-rows: 80px 80px 80px 138px;
  gap: 18px;
}

/* LABEL BOXES */

.form-label,
.form-message-label {
  border: 1px solid rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  text-transform: uppercase;
}

.form-label label,
.form-label span,
.form-message-label label {
  font-size: 13px;
  line-height: 1.1;
  font-weight: 800;
}

/* INPUT FIELDS */

.form-field {
  background: #d9d9d9;
}

.form-field input,
.form-message textarea {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #050505;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.form-field input::placeholder {
  color: rgba(5, 5, 5, 0.65);
}

/* MESSAGE AREA */

.form-message-label {
  grid-column: 3;
  grid-row: 1;
}

.form-message {
  grid-column: 3;
  grid-row: 2 / 4;
  border: 1px solid rgba(255, 255, 255, 0.95);
}

.form-message textarea {
  color: #f5f5f5;
  padding: 18px;
  text-align: left;
  resize: none;
}

/* CHECKBOX FIELD — FIXED */

.checkbox-field {
  padding: 24px 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
  align-items: start;
  overflow: hidden;
}

.checkbox-field label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 14px;

  color: #050505;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 800;
}

.checkbox-field input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #050505;
  flex-shrink: 0;
}

.checkbox-field span {
  display: block;
  max-width: 170px;
}

/* SUBMIT BUTTON */

.contact-submit {
  grid-column: 3;
  grid-row: 4;
  border: none;
  background: rgba(217, 217, 217, 0.65);
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.3px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.contact-submit:hover {
  background: #d9d9d9;
  color: #050505;
  transform: translateY(-3px);
}

/* CONTACT DETAILS */

.contact-details {
  width: min(100%, 980px);
  margin: 120px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}

.contact-details a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

/* INSTAGRAM ICON */

.contact-instagram {
  width: 32px;
  height: 32px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  position: relative;
}

.contact-instagram::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  top: 9px;
  left: 9px;
}

.contact-instagram::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
  top: 6px;
  right: 6px;
}

/* PORTFOLIO PROJECT PAGE */

.portfolio-project-page {
  min-height: 100vh;
  background: #090908;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
}

.project-intro {
  position: relative;
  min-height: 100vh;
  background: #090908;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-intro-bg {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: auto;
  transform: translateX(-50%);
  display: block;
  object-fit: cover;
  opacity: 0.72;
  z-index: 1;
}

.project-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(9, 9, 8, 0.05), rgba(9, 9, 8, 0.15) 45%, rgba(9, 9, 8, 0.35) 100%),
    linear-gradient(to right, rgba(9, 9, 8, 0.65), transparent 32%, transparent 68%, rgba(9, 9, 8, 0.65));
  z-index: 2;
  pointer-events: none;
}

.project-intro-content {
  position: relative;
  z-index: 3;
  width: min(90%, 560px);
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.project-kicker {
  margin-top: 210px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.project-mark {
  width: 210px;
  height: 52px;
  background: #d9d9d9;
  margin-top: 38px;
}

.project-description {
  max-width: 530px;
  margin-top: 92px;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 400;
}

.project-bottom-text {
  max-width: 520px;
  margin-top: auto;
  margin-bottom: 46px;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 400;
}

.project-scroll-arrow {
  position: fixed;
  right: 95px;
  bottom: 70px;
  z-index: 5;
  width: 36px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: arrowFloat 2.2s ease-in-out infinite;
}

.project-scroll-arrow img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

@keyframes arrowFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

.project-next-section {
  min-height: 100vh;
  background: #090908;
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-next-section h2 {
  font-size: 48px;
  text-transform: uppercase;
}

/* PROJECT STRATEGY SECTION */

.project-strategy-section {
  position: relative;
  min-height: 100vh;
  background: #090908;
  color: #f5f5f5;
  padding: 120px 95px;
  overflow: hidden;
}

.project-strategy-inner {
  width: min(100%, var(--page-max-width));
  min-height: calc(100vh - 240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 110px;
  align-items: center;
}

.project-strategy-image {
  width: 100%;
  height: 720px;
  overflow: hidden;
}

.project-strategy-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
 
}

.project-strategy-content {
  max-width: 720px;
}

.project-strategy-line {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  margin-bottom: 70px;
}

.strategy-block + .strategy-block {
  margin-top: 72px;
}

.strategy-block h3 {
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 24px;
  font-weight: 700;
 
  
}

.strategy-block p {
  font-size: 15px;
  line-height: 1.18;
  font-weight: 400;
}

/* placeholder for next section */

.project-gallery-placeholder {
  min-height: 100vh;
  background: #090908;
}

/* PROJECT BOARD SECTION */

.project-board-section {
  position: relative;
  background: #090908;
  padding: 120px 95px;
  overflow: hidden;
}

.project-board-inner {
  width: min(100%, var(--page-max-width));
  margin: 0 auto;
}

.project-board-image {
  width: 100%;
  height: auto;
  display: block;
}
/* PROJECT OUTCOME SECTION */

.project-outcome-section {
  position: relative;
  background: #090908;
  color: #f5f5f5;
  overflow: hidden;
}

.project-outcome-hero {
  position: relative;
  height: 620px;
  overflow: hidden;
}

.project-outcome-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

.project-outcome-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.project-outcome-content {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.project-outcome-kicker {
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.project-outcome-mark {
  width: 180px;
  height: 40px;
  background: #d9d9d9;
  margin: 34px auto 120px;
}

.project-outcome-list p {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 34px;
}

.project-outcome-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-outcome-list li {
  font-size: 15px;
  line-height: 1.12;
  font-weight: 500;
}

.project-outcome-bottom {
  min-height: 360px;
  background: #090908;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.project-outcome-static-arrow {
  width: 36px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 130px;
}

.project-outcome-static-arrow img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.project-outcome-bottom p {
  max-width: 760px;
  text-align: center;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
}

.external-project-link {
  color: inherit;
   color: #8C52FF;
  text-decoration: none;

  transition: opacity 0.25s ease;
}

.external-project-link:hover {
  opacity: 0.65;
 
}
.project-scroll-arrow {
  position: fixed;
  right: 95px;
  bottom: 70px;
  z-index: 20;
  width: 36px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-scroll-arrow img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  transition: transform 0.65s ease;
}

.project-scroll-arrow.is-up img {
  transform: rotate(180deg);
}
.project-scroll-arrow {
  position: fixed;
  right: 95px;
  bottom: 70px;
  z-index: 20;
  width: 36px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-scroll-arrow img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  transition: transform 0.65s ease;
}

.project-scroll-arrow.is-up img {
  transform: rotate(180deg);
}

.project-outcome-shape {
  width: 50px;
  height: 150px;
  background: #d9d9d9;
  margin-bottom: 30px;
}
/* PROJECT GALLERY GRID */

.project-gallery-grid-section {
  background: #090908;
  padding: 120px 95px;
  overflow: hidden;
}

.project-gallery-grid {
  width: min(100%, var(--page-max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.15fr 0.55fr 0.55fr 0.9fr;
  grid-template-rows: 310px 310px 300px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #111;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-item img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-item video {
  filter: grayscale(100%) brightness(1.15);
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: grayscale(40%);
}

/* GRID POSITIONS */

.gallery-item-mobile {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery-item-book {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.gallery-item-shirt {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.gallery-item-socks {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
}

.gallery-item-manual {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.gallery-item-video {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
}

.gallery-item-legs {
  grid-column: 3 / 5;
  grid-row: 3 / 4;
}

.gallery-item-logo {
  grid-column: 5 / 6;
  grid-row: 1 / 3;
}

.gallery-item-page {
  grid-column: 5 / 6;
  grid-row: 3 / 4;
}

.gallery-item-logo img {
  object-fit: contain;
  padding: 44px;
  background: #090908;
}

.gallery-item-page img {
  object-fit: contain;
  padding: 36px;
  background: #090908;
}

/* PROJECT PAGE NAV */

.project-page-nav {
  position: fixed;
  top: 48px;
  left: 70px;
  right: 70px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.project-home-link,
.project-switch-link {
  pointer-events: auto;
  color: #f5f5f5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  transition: opacity 0.25s ease;
}

.project-switcher {
  display: flex;
  align-items: center;
  gap: 38px;
}

.project-nav-arrow {
  width: 42px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 0;
  font-weight: 300;
  transform: translateY(-1px);
}

.project-home-link:hover,
.project-switch-link:hover {
  opacity: 0.65;
}
.project-nav-arrow {
  height: 15px;
  line-height: 0;
  transform: translateY(-1px);
}

/* PROJECT INTRO BLUR ON SCROLL */

.project-intro-bg {
  transition: filter 0.8s ease, opacity 0.8s ease, transform 0.8s ease !important;
  will-change: filter, opacity, transform;
}

.project-intro.is-blurred .project-intro-bg {
  filter: grayscale(100%) blur(14px) brightness(0.42) !important;
  opacity: 0.42 !important;
  transform: translateX(-50%) scale(1.06) !important;
}

.project-intro.is-blurred::after {
  background:
    linear-gradient(to bottom, rgba(9, 9, 8, 0.35), rgba(9, 9, 8, 0.62) 45%, rgba(9, 9, 8, 0.82) 100%),
    linear-gradient(to right, rgba(9, 9, 8, 0.78), transparent 32%, transparent 68%, rgba(9, 9, 8, 0.78));
}



/* ============================= */
/* LANDING HERO EDITORIAL REVEAL */
/* ============================= */

.hero {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero-content,
.hero-socials {
  position: relative;
  z-index: 2;
}

.hero-text {
  position: absolute;
  top: 40%;
  right: 320px;
  transform: translateY(-50%);
  width: 300px;
  max-width: 32vw;
  z-index: 3;
}

/* početno stanje animacije */
.hero [data-hero-reveal] {
  opacity: 0;
  transform: translateY(42px);
  filter: blur(14px);
  transition:
    opacity 1s ease,
    transform 1s ease,
    filter 1s ease;
}

/* finalno stanje animacije */
.hero.is-revealed [data-hero-reveal] {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* timing */
.hero.is-revealed [data-hero-reveal="1"] { transition-delay: 0.08s; }
.hero.is-revealed [data-hero-reveal="2"] { transition-delay: 0.14s; }
.hero.is-revealed [data-hero-reveal="3"] { transition-delay: 0.20s; }
.hero.is-revealed [data-hero-reveal="4"] { transition-delay: 0.26s; }
.hero.is-revealed [data-hero-reveal="5"] { transition-delay: 0.32s; }
.hero.is-revealed [data-hero-reveal="6"] { transition-delay: 0.38s; }
.hero.is-revealed [data-hero-reveal="7"] { transition-delay: 0.44s; }
.hero.is-revealed [data-hero-reveal="8"] { transition-delay: 0.50s; }
.hero.is-revealed [data-hero-reveal="9"] { transition-delay: 0.56s; }
.hero.is-revealed [data-hero-reveal="10"] { transition-delay: 0.62s; }
.hero.is-revealed [data-hero-reveal="11"] { transition-delay: 0.68s; }
.hero.is-revealed [data-hero-reveal="12"] { transition-delay: 0.74s; }

@media (prefers-reduced-motion: reduce) {
  .hero [data-hero-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ============================= */
/* LANDING FULL TOP VIDEO BG */
/* ============================= */

.landing-video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.landing-video-bg video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(100%) brightness(1.28) contrast(1.08);
  opacity: 0.72;
  transform: scale(1.08);
  animation: landingVideoSlowZoom 14s ease-in-out infinite alternate;
}

.landing-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(9, 9, 8, 0.68) 0%,
      rgba(9, 9, 8, 0.48) 42%,
      rgba(9, 9, 8, 0.28) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(9, 9, 8, 0.08) 0%,
      rgba(9, 9, 8, 0.48) 100%
    );
}

@keyframes landingVideoSlowZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.16);
  }
}

/* ============================= */
/* LAYER FIX */
/* ============================= */

.header {
  position: relative;
  z-index: 2;
}

main {
  position: relative;
  z-index: 1;
}

.selected-work,

.what-we-build,
.process-section,

.studio-section,
.testimonials-section,
.contact-section {
  position: relative;
  z-index: 3;
  background: #090908;
}
.clients-section {
  position: relative;
  z-index: 3;
}
/* ============================= */
/* PAGE PRELOADER */
/* ============================= */

.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #090908;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition:
    opacity 0.65s ease,
    visibility 0s linear 0.65s;
}

.page-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 80px;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(14px) scale(0.96);

  animation: preloaderLogoIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-logo img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes preloaderLogoIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

/* ============================= */
/* PAGE TRANSITION */
/* ============================= */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #090908;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.55s ease,
    visibility 0s linear 0.55s;
}

.page-transition span {
  color: #f5f5f5;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;

  opacity: 0;
  filter: blur(10px);
  transform: translateY(12px);

  transition:
    opacity 0.45s ease,
    filter 0.45s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-transition.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition:
    opacity 0.55s ease,
    visibility 0s linear 0s;
}

.page-transition.is-active span {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 0.12s;
}
/* ============================= */
/* SUBTLE GRAIN OVERLAY */
/* ============================= */

.site-grain {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;

  opacity: 0.045;
  mix-blend-mode: soft-light;

  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1px),
    radial-gradient(circle at 45% 55%, rgba(0, 0, 0, 0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 65% 20%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1px);

  background-size:
    38px 38px,
    54px 54px,
    42px 42px,
    68px 68px;

  animation: grainMove 1.2s steps(2) infinite;
}
.mobile-menu[hidden] {
  display: none !important;
}

.mobile-logo {
  display: none;
}

.mobile-logo {
  position: absolute !important;

}
@keyframes grainMove {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-2px, 1px);
  }

  50% {
    transform: translate(2px, -1px);
  }

  75% {
    transform: translate(1px, 2px);
  }

  100% {
    transform: translate(0, 0);
  }
}

