:root {
  --accent-color: #ffffff;
  --offwhite: #f5f5f0;
  --offblack: #0a0a0a;
  --text: #eaeaea;
  --muted: #bdbdbd;
  --bg: #0a0a0a;
  --bg-elev: #0e0e0e;
  --nav-height: 4rem;
}

.wrapper {
  transition: opacity 0.3s ease;
}

.wrapper.loaded {
  opacity: 1;
}

.loader {
  z-index: 100;
  color: #fff;
  width: 100%;
  height: 100dvh;
  position: fixed;
  inset: 0% 0% auto;
}

.loader__bg {
  background-color: #0a0a0a;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.loader__container {
  z-index: 2;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.loader__bg-bar {
  z-index: 1;
  transform-origin: 0%;
  transform-style: preserve-3d;
  background-color: #fff;
  width: 100%;
  height: .5em;
  position: absolute;
  inset: auto 0% 0%;
  transform: scale3d(0, 1, 1);
}

.loader__logo-wrap {
  justify-content: center;
  align-items: center;
  width: 10em;
  height: 10em;
  display: flex;
  position: relative;
  flex-direction: column;
}

.loader__logo-group {
  position: relative;
  width: 100%;
  height: 2em;
}

.loader__logo-group:first-child {
  margin-bottom: 6em;
  transform: scale(0.8);
}

.loader__logo-item {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.loader__logo-item.is--base {
  opacity: .2;
}

.loader__logo-item.is--top {
  -webkit-clip-path: inset(0% 100% 0% 0%);
  clip-path: inset(0% 100% 0% 0%);
}

.loader__logo-img {
  width: 100%;
  display: block;
  filter: invert(1);
}

.loader__text-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 3.5em;
}

.loader__text-el {
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: -.25em;
  padding-bottom: .25em;
  font-family: 'Haffer Mono', Arial, sans-serif;
  position: absolute;
  opacity: 0;
}

.loader__logo-group:last-child {
  display: none;
}

@font-face {
  font-family: 'PP Neue Montreal Medium';
  src: url('https://fonts.cdnfonts.com/s/100431/ppneuemontreal-medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GT Walsheim Bold';
  src: url('./gt-walsheim-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: calc(100vw / 1512 * 10);
  scrollbar-color: var(--accent-color) transparent;
  scrollbar-width: thin;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1024px) {
  html {
    -webkit-overflow-scrolling: touch;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 4px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  touch-action: pan-y;
  user-select: none;
}

@media (max-width: 1024px) {
  body {
    text-rendering: optimizeSpeed;
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url("http://assets.iceable.com/img/noise-transparent.png") repeat 0 0;
  background-size: 200px 200px;
  animation: noise-animation 0.5s steps(3) infinite;
  opacity: 0.25;
  will-change: transform;
  z-index: 100;
  pointer-events: none;
}

@media (max-width: 1024px) {
  body::before {
    opacity: 0.15;
    animation: noise-animation 0.8s steps(2) infinite;
  }
}

@-webkit-keyframes noise-animation {
  0% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-2%, -3%);
  }

  20% {
    transform: translate(-4%, 2%);
  }

  30% {
    transform: translate(2%, -4%);
  }

  40% {
    transform: translate(-2%, 5%);
  }

  50% {
    transform: translate(-4%, 2%);
  }

  60% {
    transform: translate(3%, 0);
  }

  70% {
    transform: translate(0, 3%);
  }

  80% {
    transform: translate(-3%, 0);
  }

  90% {
    transform: translate(2%, 2%);
  }

  100% {
    transform: translate(1%, 0);
  }
}

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-2%, -2%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  width: 100%;
}

.row-svg {
  margin-top: 10rem;
  margin-bottom: 4rem;
}

.design-navbar-container {
  margin-bottom: 4rem;
}

.flick-container {
  margin-top: 2rem;
}

.row-content {
  height: calc(100% - 14rem);
  align-items: end;
  margin-bottom: 2rem;
}

.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  padding: 2rem 0;
  transition: background-color 0.3s ease;
  mix-blend-mode: difference;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}

header * {
  color: white !important;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.nyc-time-display {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  color: var(--accent-color);
  opacity: 0.9;
  background-color: var(--bg);
  padding: 0 1rem;
  z-index: 20;
  pointer-events: none;
}

.time-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  gap: 2px;
}

.location-label {
  opacity: 0.6;
  font-size: 0.7em;
  letter-spacing: 0.1em;
}

.timezone-label {
  opacity: 0.4;
  font-size: 0.6em;
  letter-spacing: 0.05em;
}

.time-value {
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 1.1em;
}

@media (max-width: 1024px) {
  .nyc-time-display {
    display: none;
  }
}

.logo {
  font-size: 1.8rem;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo .logo-mark {
  height: 28px !important;
  width: auto !important;
  max-width: 100px !important;
  display: block !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: brightness(0) invert(1) !important;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .logo .logo-mark {
    height: 20px !important;
    max-width: 70px !important;
  }
}

@media (max-width: 768px) {
  .logo .logo-mark {
    height: 16px !important;
    max-width: 55px !important;
  }
}

.logo .wordmark {
  font-family: 'GT Walsheim Bold', sans-serif;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--accent-color);
}

.logo .wordmark-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-top: 3px;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .logo .wordmark-logo {
    height: 24px;
    margin-top: 2px;
  }
}

@media (max-width: 768px) {
  .logo .wordmark-logo {
    height: 16px;
    margin-top: 0;
  }

  .logo {
    gap: 4px;
  }
}

.get-in-touch {
  display: flex;
  align-items: center;
  margin-left: auto;
  position: relative;
}

.get-in-touch a {
  display: inline-block;
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.yellow-line-container {
  width: 40vw;
  height: 2px;
  margin-left: 1rem;
  background-color: rgba(34, 34, 32, 0.1);
}

.scroll-indicator {
  height: 100%;
  width: 0;
  background-color: var(--accent-color);
  transition: width 0.1s linear;
}

.vertical-line {
  width: 1px;
  height: 2.4rem;
  background-color: #333;
  margin: 0 2rem;
}

.nav-links {
  display: flex;
  gap: 3rem;
  text-align: right;
  margin-left: 2rem;
}

.nav-links a {
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--muted);
  text-transform: lowercase;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.25);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  margin-left: 1rem;
  transition: background-color 0.3s ease;
}

.hamburger-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background-color: var(--accent-color);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 2px;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .logo .wordmark-logo {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 40px;
    opacity: 1;
    transform: translateY(0);
  }

  .menu-open .logo .wordmark-logo {
    max-height: 0;
    opacity: 0;
    margin: 0;
    transform: translateY(-5px);
  }

  .start-project-btn {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--bg);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: 'PP Neue Montreal Medium', sans-serif;
  font-size: 4.5rem;
  color: var(--accent-color);
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-nav-link:hover {
  color: var(--muted);
  font-style: italic;
}

.mobile-menu-overlay.active .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(5) {
  transition-delay: 0.5s;
}

@media (max-width: 1200px) {
  .header-container {
    padding: 0 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
    margin-left: 1rem;
  }

  .nav-links a {
    font-size: 1.1rem;
  }
}

@media (max-width: 1024px) {

  .nav-links,
  .nyc-time-display {
    display: none;
  }

  .hamburger-btn {
    display: flex;
    order: -1;
    margin: 0;
    transform: translateY(-3px);
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: auto;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }

  .start-project-btn {
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-left {
  position: relative;
}

.hero-image {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0);
  transform-origin: bottom;
  position: relative;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

@media (min-width: 1025px) {
  .hero-image {
    filter: blur(8px);
  }
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  filter: grayscale(100%);
  object-fit: cover;
  position: relative;
  z-index: 1;
  will-change: transform, filter;
  backface-visibility: hidden;
  transition: filter 0.1s linear;
}

.lottie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  overflow: hidden;
  display: none;
  border-radius: 20px;
}

.lottie-overlay>* {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 70% !important;
  height: 70% !important;
  max-width: 500px !important;
  max-height: 500px !important;
}

.lottie-overlay svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 768px) {
  .lottie-overlay>* {
    width: 85% !important;
    height: 85% !important;
    max-width: 350px !important;
    max-height: 350px !important;
  }
}

.texture-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/Francuis.png");
  background-position: top right;
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.2;
  z-index: 2;
}

.svg-container {
  position: relative;
  overflow: hidden;
}

.hero-right {
  padding-left: 2rem;
  text-align: right;
  overflow: hidden;
}

.about-text {
  font-size: 1.6rem;
  line-height: 1.6;
  text-transform: none;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  color: rgba(255, 255, 255, 0.9);
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

.hero-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 4rem;
  padding: 2rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

@media (max-width: 1024px) {
  .hero-marquee {
    margin-top: 6rem;
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .hero-marquee {
    margin-top: 8rem;
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .hero-marquee {
    margin-top: 10rem;
    padding: 5rem 0;
  }
}

.marquee-line {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 2rem;
}

.marquee-line:last-child {
  margin-bottom: 0;
}

.marquee-content {
  display: inline-block;
  padding-right: 2rem;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  will-change: transform;
  backface-visibility: hidden;
  line-height: 1.2;
}

.marquee-left .marquee-content {
  animation: marqueeLeft 25s linear infinite;
  color: rgba(247, 247, 247, 0.8);
  font-family: 'PP Neue Montreal Medium', 'Inter', sans-serif;
  position: relative;
  filter:
    drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.95)) drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.8)) drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.7)) drop-shadow(8px 8px 16px rgba(0, 0, 0, 0.6));
}

.marquee-right .marquee-content {
  animation: marqueeRight 25s linear infinite;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Freight Big Pro', 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  filter:
    drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.95)) drop-shadow(5px 5px 12px rgba(0, 0, 0, 0.8)) drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.6)) drop-shadow(7px 7px 14px rgba(0, 0, 0, 0.5));
}

@font-face {
  font-family: 'Freight Big Pro';
  src: url('../assets/fonts/freight-big-pro-medium-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@keyframes marqueeLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1024px) {
  .marquee-content {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .marquee-content {
    font-size: 3.2rem;
    padding-right: 1.5rem;
  }

  .marquee-line {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .marquee-content {
    font-size: 3.1rem;
    padding-right: 1rem;
  }

  .marquee-line {
    margin-bottom: 1.2rem;
  }
}

.work-section {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 10rem 0;
  overflow: visible;
  scroll-margin-top: 8rem;
}

.section-title {
  font-size: 3.6rem;
  font-weight: 700;
  font-family: 'PP Neue Montreal Medium', sans-serif;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--accent-color);
  text-shadow: none;
}

.section-title .line {
  display: block;
  overflow: hidden;
  padding: 0.2em 0;
}

.section-title .word {
  display: inline-block;
}

.work-disclosure-list {
  --gap: 8px;
  --base: clamp(2rem, 8cqi, 80px);
  --easing: linear(0 0%, 0.1538 4.09%, 0.2926 8.29%, 0.4173 12.63%, 0.5282 17.12%,
      0.6255 21.77%, 0.7099 26.61%, 0.782 31.67%, 0.8425 37%,
      0.8887 42.23%, 0.9257 47.79%, 0.9543 53.78%, 0.9752 60.32%,
      0.9883 67.11%, 0.9961 75%, 1 100%);
  --speed: 0.6s;
  display: grid;
  container-type: inline-size;
  grid-template-columns: 10fr 1fr 1fr 1fr;
  gap: var(--gap);
  list-style-type: none;
  justify-content: center;
  padding: 0;
  height: clamp(300px, 50vh, 500px);
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  transition: grid-template-columns var(--speed) var(--easing);
  contain: layout style;
}

@media (max-width: 1024px) {
  .work-disclosure-list {
    --speed: 0.4s;
  }
}

.work-disclosure-list li {
  background: var(--bg-elev);
  position: relative;
  overflow: hidden;
  min-width: var(--base);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: border-color 0.3s ease;
  contain: layout paint;
  will-change: contents;
}

@media (max-width: 1024px) {
  .work-disclosure-list li {
    touch-action: manipulation;
  }
}

.work-disclosure-list li:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.work-disclosure-list li article {
  width: calc(var(--article-width) * 1px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding-inline: calc(var(--base) * 0.5 - 9px);
  padding-bottom: 6rem;
  overflow: hidden;
}

.work-disclosure-list li h3 {
  position: absolute;
  top: 2rem;
  left: calc(var(--base) * 0.5);
  transform-origin: 0 50%;
  rotate: 90deg;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'PP Neue Montreal Medium', sans-serif;
  white-space: nowrap;
  margin: 0;
  color: var(--accent-color);
  opacity: 0.6;
  transition: opacity calc(var(--speed) * 1.2) var(--easing);
}

.work-disclosure-list li i {
  position: absolute;
  bottom: 2rem;
  left: 2.7rem;
  opacity: 0.6;
  transition: opacity calc(var(--speed) * 1.2) var(--easing);
}

.work-disclosure-list li p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  opacity: 0;
  transition: opacity calc(var(--speed) * 1.2) var(--easing);
  font-family: 'Inter', sans-serif;
  position: absolute;
  bottom: 1.8rem;
  left: 5rem;
  right: 2rem;
}

.visit-site-container {
  position: absolute;
  top: 2rem;
  bottom: auto;
  left: auto;
  right: 2rem;
  z-index: 10;
}

.visit-site-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.visit-site-btn:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  transform: none;
  box-shadow: none;
  text-decoration: underline;
}

.visit-site-btn svg {
  transition: transform 0.3s ease;
}

.visit-site-btn:hover svg {
  transform: translate(2px, 2px);
}

@media screen and (max-width: 768px) {
  .visit-site-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    gap: 0.4rem;
  }

  .visit-site-btn svg {
    width: 14px;
    height: 14px;
  }
}

@media screen and (max-width: 480px) {
  .visit-site-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    gap: 0.3rem;
  }

  .visit-site-btn svg {
    width: 12px;
    height: 12px;
  }
}

.work-disclosure-list li img {
  position: absolute;
  pointer-events: none;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask: radial-gradient(100% 100% at 100% 0, #fff, transparent);
  -webkit-mask: radial-gradient(100% 100% at 100% 0, #fff, transparent);
  filter: grayscale(1) brightness(0.6);
  transform: scale(1.1);
  transition: filter calc(var(--speed) * 1.2) var(--easing), transform calc(var(--speed) * 1.2) var(--easing);
  will-change: transform, filter;
  backface-visibility: hidden;
}

.work-disclosure-list li[data-active='true'] :is(a, p, h3, svg, i) {
  opacity: 1;
}

.work-disclosure-list li[data-active='true'] :is(a, p) {
  transition-delay: calc(var(--speed) * 0.25);
}

.work-disclosure-list li[data-active='true'] img {
  filter: grayscale(0) brightness(1);
  transform: scale(1);
  transition-delay: calc(var(--speed) * 0.25);
}

.sticky-tab-group__nav-bg {
  z-index: 2;
  height: var(--nav-height);
  background-color: #000;
  border-bottom: 1px solid #ffffff26;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
}

.sticky-tab {
  background-color: #131313;
  position: relative;
  overflow: clip;
}

.sticky-tab__sticky {
  z-index: 1;
  top: var(--nav-height);
  flex-flow: column;
  margin-top: -1px;
  display: flex;
  position: sticky;
  box-shadow: 0 .25em .5em 0 #00000040;
}

.sticky-tab__inner {
  background-color: #000;
  border-top: 1px solid #ffffff26;
  border-bottom: 1px solid #ffffff26;
  justify-content: space-between;
  align-items: center;
  padding-top: 2em;
  padding-bottom: 2em;
}

.sticky-tab__content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.sticky-tab__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.25em;
  font-weight: 500;
  line-height: 1;
}

.sticky-tab__placeholder-content {
  justify-content: center;
  align-items: center;
  height: 66vh;
  display: flex;
}

.sticky-tab__before-bg {
  height: calc(var(--nav-height) + 2px);
  background-color: #000;
  width: 100%;
  position: absolute;
  bottom: 100%;
}

.graphic-design-section {
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.8) 0%,
      rgba(10, 10, 10, 0.9) 100%);
}

@media (max-width: 768px) {
  .graphic-design-section {
    padding: 3rem 0 1rem;
  }

  .flick-controls {
    margin: 2rem 0 1rem;
  }
}

.design-intro {
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: center;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 4rem;
  opacity: 0;
  transform: translateY(20px);
}

.design-intro.reveal-text {
  font-size: 1.4rem !important;
}

.mobile-design-slider {
  display: none;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

@media (max-width: 768px) {
  .mobile-design-slider {
    display: block;
  }
}

.mobile-slider-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2rem calc(50% - 140px) 4rem calc(50% - 140px);
  justify-content: flex-start;
  align-items: center;
}

.mobile-slider-track::-webkit-scrollbar {
  display: none;
}

.mobile-slide-card {
  flex: 0 0 auto;
  width: 280px;
  height: 380px;
  background: #2a2a2a;
  border-radius: 24px;
  position: relative;
  scroll-snap-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 0 60px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0.5;
  transform: scale(0.9);
  cursor: pointer;
}

.mobile-slide-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.mobile-slide-label {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'PP Neue Montreal Medium', 'Inter', sans-serif;
  z-index: 2;
}

.mobile-slide-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-color: #2a2a2a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-slide-image::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='1.5'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='1.5'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  z-index: 1;
}

.mobile-slide-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.mobile-slide-card.active-card .mobile-slide-image::after {
  opacity: 0;
}

.mobile-slide-card.active-card {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), inset 0 0 60px rgba(0, 0, 0, 0.2);
}

.mobile-slider-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mobile-slider-btn {
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mobile-slider-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-slider-btn:active {
  transform: translateY(0);
}

.expand-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 2rem auto;
  justify-content: center;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .expand-indicator {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .graphic-design-section {
    padding: 6rem 0;
  }

  .design-intro {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
  }

  .design-intro.reveal-text {
    font-size: 1.3rem !important;
  }

  .mobile-slider-track {
    padding: 2rem calc(50% - 120px) 4rem calc(50% - 120px);
  }

  .mobile-slide-card {
    width: 240px;
    height: 340px;
  }

  .mobile-slide-label {
    font-size: 1.6rem;
    top: 1.5rem;
    left: 1.5rem;
  }

  .mobile-slider-btn {
    padding: 0.9rem 2.2rem;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 480px) {
  .graphic-design-section {
    padding: 4rem 0;
  }

  .design-intro {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }

  .design-intro.reveal-text {
    font-size: 1.2rem !important;
  }

  .mobile-design-slider {
    padding: 0 1rem;
  }

  .mobile-slider-track {
    padding: 2rem calc(50% - 110px) 4rem calc(50% - 110px);
  }

  .mobile-slide-card {
    width: 220px;
    height: 320px;
  }

  .mobile-slide-label {
    font-size: 1.5rem;
    top: 1.5rem;
    left: 1.5rem;
  }

  .mobile-slider-controls {
    gap: 1rem;
  }

  .mobile-slider-btn {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
  }
}

.mobile-image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-image-modal.active {
  display: flex;
  opacity: 1;
}

.mobile-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 10001;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-modal-content.show {
  opacity: 1;
  transform: scale(1);
}

.mobile-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .mobile-modal-content img {
    max-height: 80vh;
    border-radius: 16px;
  }
}

@media screen and (max-width: 480px) {
  .mobile-modal-content {
    max-width: 95%;
  }

  .mobile-modal-content img {
    max-height: 75vh;
    border-radius: 12px;
  }
}

.footer {
  min-height: 75vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--bg);
  z-index: 10;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  position: relative;
  z-index: 3;
}

.footer-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  padding: 4rem 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-column-title {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'PP Neue Montreal Medium', 'Inter', sans-serif;
  line-height: 1.2;
}

.footer-nav a:hover {
  opacity: 0.7;
  transform: translateX(5px);
}

.coordinates-link {
  font-size: 2rem !important;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding: 4rem 0 2rem;
}

@media (min-width: 1025px) {
  .footer-brand {
    flex-direction: column-reverse;
  }
}

.footer-svg-container {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 15vh;
  overflow: visible;
}

.footer-svg-container svg {
  width: 100%;
  height: auto;
}

.footer-svg-paths path {
  opacity: 1;
}

.svg-footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/Francuis.png");
  background-position: center;
  background-size: contain;
  mix-blend-mode: screen;
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}

.start-project-btn {
  display: inline-block;
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.start-project-btn:hover {
  background-color: #ffffff;
  color: #0a0a0a !important;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.cal-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cal-modal.active {
  display: flex;
  opacity: 1;
}

.cal-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.3);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.cal-modal-content {
  position: relative;
  background: #111;
  border-radius: 16px;
  width: 90%;
  max-width: 900px;
  height: auto;
  max-height: 90vh;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 20px 0;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cal-modal.active .cal-modal-content {
  opacity: 1;
}

.cal-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10002;
}

.cal-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.cal-pricing-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 400px;
  margin: 20px auto 0;
  padding: 18px 32px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1001;
  overflow: hidden;
}

.cal-pricing-link span,
.cal-pricing-link svg {
  position: relative;
  z-index: 2;
}

.cal-pricing-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

.cal-pricing-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.cal-pricing-link:hover {
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cal-pricing-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cal-pricing-link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .cal-pricing-link {
    margin-top: 16px;
    padding: 14px 28px;
    font-size: 1rem;
  }
}

.cal-embed-container {
  width: 100%;
  height: 600px;
  max-height: calc(90vh - 120px);
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.cal-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cal-embed-container iframe {
  border-radius: 20px;
}

@media (min-width: 769px) {
  .cal-modal-close {
    left: 20px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .cal-modal-content {
    width: 95%;
    height: auto;
    max-height: 95vh;
    padding: 0 0 16px 0;
  }

  .cal-embed-container {
    height: 500px;
    max-height: calc(95vh - 100px);
  }

  .cal-pricing-link {
    margin-top: 16px;
    padding: 14px 28px;
    font-size: 1rem;
    max-width: 90%;
  }
}

.footer-cta {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(20px);
  margin-top: 0;
}

.footer-button {
  padding: 0.5rem 0;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--accent-color);
}

.footer-email {
  color: var(--text);
  text-decoration: none;
}

.about-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.5) 0%,
      rgba(10, 10, 10, 0.8) 100%);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-intro {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
  color: var(white);
  max-width: 800px;
  opacity: 0;
  transform: translateY(20px);
}

.about-badges-wrapper {
  width: 100%;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.about-badges-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.about-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  animation: ticker 25s linear infinite;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

.about-badges:hover {
  animation-play-state: paused;
}

.badge {
  padding: 0.8rem 1.5rem;
  font-size: 1.3rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.about-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-color);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.stat-label {
  font-size: 1.4rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3rem;
  width: 100%;
  margin: 2rem 0;
  max-width: 1000px;
}

@media screen and (min-width: 1400px) {
  .about-values {
    max-width: 1200px;
    gap: 4rem;
  }
}

.value-item {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.value-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  font-family: 'PP Neue Montreal Medium', sans-serif;
}

.value-item p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--muted);
  font-family: 'PP Neue Montreal Medium', sans-serif;
}

.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.6) 0%,
      rgba(10, 10, 10, 0.9) 100%);
}

.design-navbar {
  display: none;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 2rem auto 3rem;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(20px);
}

@media (max-width: 768px) {
  .design-navbar {
    display: flex;
  }
}

.design-navbar span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  cursor: pointer;
}

.design-navbar span:hover {
  color: var(--accent-color);
}

.design-navbar span.active {
  color: var(--accent-color);
  font-weight: 600;
}

.gallery-overlay-container {
  width: 100%;
  margin: 4rem 0;
  font-size: 1vw;
  color: var(--accent-color);
}

@media (max-width: 1024px) {
  .gallery-overlay-container {
    display: none;
  }
}

.gallery-page {
  position: relative;
  min-height: 550px;
}

.gallery-main {
  opacity: 1;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 6rem;
  padding: 3rem 0;
  align-items: center;
}

.gallery-main-col {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gallery-tech-specs {
  display: none;
  width: 18em;
  margin-top: 2rem;
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .graphic-design-section .section-title {
    transform: translateY(4rem);
  }

  .graphic-design-section .design-intro {
    transform: translateY(4rem);
    margin-top: 4.5rem;
  }
}

.specs-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}

.specs-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 4px;
}

.specs-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.specs-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.barcode {
  font-family: 'Libre Barcode 39 Text', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0.5;
}

@media (min-width: 1024px) {
  .gallery-tech-specs {
    display: block;
  }
}

.gallery-main-img__list {
  width: 18em;
  height: 24em;
  position: relative;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-main-img__item {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.spread-container {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.spread-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  backface-visibility: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
}

.spread-item.main {
  z-index: 10;
  position: relative;
}

.spread-item.extra {
  display: none;
  z-index: 5;
  opacity: 0;
  filter: grayscale(100%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .spread-item.extra {
    display: block;
    opacity: 0.5;
  }

  .spread-item.extra-1 {
    transform: translateX(-15%) rotate(-6deg) scale(0.9) translateY(2%);
    z-index: 5;
  }

  .spread-item.extra-2 {
    transform: translateX(15%) rotate(6deg) scale(0.9) translateY(2%);
    z-index: 4;
  }

  .gallery-main-img__list:hover .gallery-main-img__item[style*="opacity: 1"] .spread-item.extra-1,
  .gallery-main-img__list:hover .gallery-main-img__item.active .spread-item.extra-1 {
    transform: translateX(-22%) rotate(-9deg) scale(0.92) translateY(2%);
    opacity: 0.7;
  }

  .gallery-main-img__list:hover .gallery-main-img__item[style*="opacity: 1"] .spread-item.extra-2,
  .gallery-main-img__list:hover .gallery-main-img__item.active .spread-item.extra-2 {
    transform: translateX(22%) rotate(9deg) scale(0.92) translateY(2%);
    opacity: 0.7;
  }
}

.gallery-main-img__item:first-child {
  opacity: 1;
}

.gallery-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gallery-main-title__list {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 0;
  list-style: none;
  display: flex;
  position: relative;
  gap: 1rem;
  margin-top: 14rem;
}

.gallery-main-title__item {
  justify-content: flex-start;
  align-items: center;
  font-size: 4.5em;
  transition: all 0.3s ease;
  display: flex;
  position: relative;
}

.gallery-main-title {
  letter-spacing: -0.03em;
  white-space: nowrap;
  margin: 0;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.gallery-main-title__list:hover:has(.gallery-main-title__item:hover) .gallery-main-title__item:not(:hover) {
  opacity: 0.35;
  transform: translateX(-10px);
}

.gallery-main-title__item:hover {
  transform: translateX(10px);
}

.gallery-main-title::after {
  position: absolute;
  content: '';
  top: 50%;
  right: -0.5em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transition: all 0.525s cubic-bezier(0.625, 0.05, 0, 1);
  transform: translate(100%, -50%) scale(0);
}

.gallery-main-title__item:hover .gallery-main-title::after {
  transform: translate(0%, -50%) scale(1);
  opacity: 1;
}

.gallery-button {
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: inherit;
  cursor: pointer;
  color: inherit;
}

.gallery-overlay-wrap {
  z-index: 2;
  pointer-events: none;
  position: absolute;
  inset: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay-wrap.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-overlay-item {
  display: none;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.gallery-overlay-item.active {
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-close-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--accent-color);
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2.5rem;
  font-family: inherit;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
}

.gallery-close-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(-5px);
}

.gallery-close-btn svg {
  transition: transform 0.3s ease;
}

.gallery-close-btn:hover svg {
  transform: translateX(-3px);
}

.gallery-overlay-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  flex: 1;
}

.gallery-overlay-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  max-width: 900px;
}

.gallery-overlay-title__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  min-height: 90px;
}

.gallery-overlay-title__wrap [data-overlay="text-target"] {
  font-size: 3.5rem;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.gallery-overlay-title__wrap [data-overlay="text-target"] .gallery-main-title {
  font-size: 3.5rem;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gallery-slider-container {
  width: 100%;
  position: relative;
}

.gallery-slider-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  background: rgba(20, 20, 20, 0.5);
  max-width: 900px;
  margin: 0 auto;
}

.gallery-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}

.gallery-slide {
  width: 900px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  padding: 20px;
}

.gallery-slide-img {
  max-width: 100%;
  max-height: 50vh;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

.gallery-slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-dot:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.2);
}

.gallery-dot.active {
  background: var(--accent-color);
  width: 32px;
  border-radius: 5px;
  border-color: var(--accent-color);
}

.gallery-close-text {
  background: transparent;
  border: none;
  color: var(--accent-color);
  font-size: 1rem;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: 1rem;
  font-family: inherit;
  text-decoration: none;
  display: block;
  text-align: center;
}

.gallery-close-text:hover {
  opacity: 0.7;
}

.gallery-nav-btn {
  background: transparent;
  border: none;
  color: var(--accent-color);
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.gallery-nav-btn:hover {
  color: var(--muted);
  transform: scale(1.1);
}

.gallery-nav-btn:active {
  transform: scale(0.95);
}

.gallery-nav-btn svg {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
}

.gallery-nav-btn svg path {
  fill: var(--accent-color);
  transition: fill 0.3s ease;
}

.gallery-nav-btn:hover svg path {
  fill: var(--muted);
}

.gallery-next-section-btn {
  background: transparent;
  border: none;
  color: var(--accent-color);
  cursor: pointer;
  padding: 0.25rem;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gallery-next-section-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.gallery-next-section-btn:active {
  transform: scale(0.95);
}

.gallery-next-section-btn svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 1025px) {
  .gallery-overlay-content {
    display: block;
    position: relative;
  }

  .gallery-nav-btn.gallery-prev-btn {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .gallery-nav-btn.gallery-next-btn {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .gallery-overlay-center {
    max-width: 100%;
  }

  .gallery-nav-btn .btn-animate-chars__bg {
    display: none;
  }

  .gallery-slide {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .gallery-slider-wrapper {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .gallery-slide-img {
    border-radius: 16px;
  }
}

@media (max-width: 1400px) {
  .gallery-main-title__item {
    font-size: 3.5em;
  }

  .gallery-overlay-title__wrap .gallery-overlay-title__wrap {
    font-size: 2.8rem;
  }

  .gallery-nav-btn {
    font-size: 1.5rem;
    padding: 0.75rem;
  }

  .gallery-nav-btn svg {
    width: 28px;
    height: 28px;
  }

  .gallery-slide-img {
    max-height: 60vh;
  }

  .gallery-slide {
    padding: 16px;
  }
}

@media (max-width: 1200px) {
  .gallery-main {
    gap: 4rem;
  }

  .gallery-main-img__list {
    width: 16em;
    height: 21em;
  }

  .gallery-main-title__item {
    font-size: 3em;
  }

  .gallery-slide {
    width: 600px;
  }

  .gallery-slide-img {
    max-height: 50vh;
  }

  .gallery-slide {
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .gallery-slide {
    width: 90vw;
  }

  .gallery-slide-img {
    max-height: 40vh;
  }

  .gallery-slide {
    padding: 8px;
  }
}

.contact-subtitle {
  text-align: center;
  font-size: 1.6rem;
  color: var(--muted);
  margin-bottom: 4rem;
  margin-top: -0.5rem;
  opacity: 0;
  transform: translateY(20px);
  font-family: 'PP Neue Montreal Medium', sans-serif;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.contact-form::before {
  display: none;
}

.contact-form>* {
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  color: var(--accent-color);
  font-size: 2rem;
  font-family: 'PP Neue Montreal Medium', 'Inter', sans-serif;
  font-weight: 400;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: transparent;
  border-bottom-color: var(--accent-color);
  box-shadow: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.4;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23eaeaea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 3rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.checkbox-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--text);
  transition: color 0.3s ease;
}

.checkbox-label:hover {
  color: var(--accent-color);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent-color);
}

.submit-btn {
  width: auto;
  padding: 1.5rem 4rem;
  margin-top: 3rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: var(--accent-color);
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  font-family: 'PP Neue Montreal Medium', 'Inter', sans-serif;
}

@media (max-width: 1024px) {
  .submit-btn {
    box-shadow: none;
  }
}

.submit-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-color);
  box-shadow: none;
  transform: translateX(5px);
}

.submit-btn:active {
  transform: translateX(3px);
}

.footer {
  min-height: 40vh;
  padding: 4rem 0 2rem;
}

.footer-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.footer-copyright {
  font-size: 1.3rem;
  color: var(--muted);
  opacity: 0.7;
  font-family: 'PP Neue Montreal Medium', sans-serif;
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 55%;
  }

  .container {
    padding: 0 3rem;
  }

  header {
    padding: 1rem 0;
  }

  .header-container {
    padding: 0 3rem;
  }

  .nav-links {
    gap: 2rem;
    margin-left: 2rem;
  }

  .hero {
    padding-top: 0;
    padding-top: 12rem;
    min-height: 105vh;
    padding-bottom: 3rem;
  }

  .row-svg {
    margin-bottom: 1.5rem;
    margin-top: 0;
  }

  .hero .row-content {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
    gap: 3rem;
  }

  .hero-left {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    width: 100%;
  }

  .hero-image {
    width: 85%;
    max-width: 600px;
    min-width: 350px;
    transition: all 0.3s ease;
  }

  .hero-right {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .about-text {
    font-size: 1.7rem;
    line-height: 1.6;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
  }

  .section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
  }

  .work-section {
    padding: 6rem 0;
  }

  .work-disclosure-list {
    max-width: 95%;
    height: clamp(280px, 45vh, 450px);
  }

  .work-disclosure-list li h3 {
    font-size: 1.2rem;
    top: 1.5rem;
  }

  .work-disclosure-list li p {
    font-size: 1.3rem;
  }

  .work-disclosure-list li a span {
    font-size: 1.3rem;
  }

  .work-disclosure-list li svg {
    width: 20px;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
  }

  .contact-form {
    padding: 0 2rem;
  }

  .footer {
    padding: 4rem 4rem 2rem;
  }

  .footer-nav a {
    font-size: 2rem;
  }

  .coordinates-link {
    font-size: 1.6rem !important;
  }

  .footer-brand {
    gap: 1.5rem;
    padding: 3rem 0 1rem;
  }

  .svg-footer-overlay {
    display: none;
  }

  .footer-content-grid {
    padding: 6rem 0;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }

  .container {
    padding: 0 2rem;
  }

  header {
    padding: 2.5rem 0;
  }

  .header-container {
    padding: 0 2rem;
    flex-wrap: nowrap;
    gap: 0;
    align-items: center;
  }

  .logo {
    font-size: 1.6rem;
    margin-right: 1rem;
  }

  .logo .logo-mark {
    width: 28px;
    height: 28px;
  }

  .nav-links {
    gap: 1.5rem;
    margin-left: auto;
    margin-right: 1rem;
  }

  .get-in-touch {
    order: 2;
    width: auto;
    margin-left: 0;
    margin-top: 0;
  }

  .yellow-line-container {
    display: none;
  }

  .hero {
    padding-top: 0;
    padding-top: 12rem;
    min-height: 110vh;
    padding-bottom: 2rem;
  }

  .row-svg {
    margin-bottom: -8rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
  }

  .svg-container svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  }

  .svg-container svg text {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  }

  .hero .row-content {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
    gap: 0;
  }

  .hero-left {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: -2rem;
  }

  .hero-image {
    width: 95%;
    max-width: 650px;
    min-width: 350px;
    transition: all 0.3s ease;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 15rem;
  }

  .hero-right {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    text-align: center;
    width: 100%;
  }

  .about-text {
    font-size: 2.0rem;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
  }

  .svg-container svg {
    max-width: 100%;
  }

  .section-title {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }

  .work-section {
    padding: 2rem 0 4rem 0;
  }

  .work-disclosure-list {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    height: auto;
    gap: 1rem;
    padding: 0 1rem;
  }

  .work-disclosure-list li {
    border-radius: 12px;
    height: 80px;
    transition: height 0.5s var(--easing), border-color 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .work-disclosure-list li[data-active='true'] {
    height: 420px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  }

  .work-disclosure-list li h3 {
    font-size: 1.8rem;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    rotate: 0deg;
    transform-origin: center;
    white-space: normal;
    opacity: 1;
    transition: all var(--speed) var(--easing);
  }

  .work-disclosure-list li[data-active='true'] h3 {
    top: 2rem;
    transform: translateY(0);
  }

  .work-disclosure-list li article {
    width: 100%;
    padding: 2rem;
    padding-bottom: 2rem;
    justify-content: flex-start;
    gap: 1rem;
  }

  .work-disclosure-list li p {
    font-size: 1.4rem;
    line-height: 1.5;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0;
    margin-top: 2rem;
    opacity: 0;
    transition: opacity var(--speed) var(--easing);
  }

  .work-disclosure-list li[data-active='true'] p {
    opacity: 1;
    transition-delay: calc(var(--speed) * 0.3);
  }

  .work-disclosure-list li i {
    left: auto;
    right: 2rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(0deg);
    opacity: 1;
    font-size: 2rem;
    transition: all var(--speed) var(--easing);
  }

  .work-disclosure-list li[data-active='true'] i {
    opacity: 0;
    transform: translateY(-50%) rotate(180deg);
  }

  .work-disclosure-list li::after {
    content: '›';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--speed) var(--easing);
    pointer-events: none;
    font-weight: 300;
    line-height: 1;
  }

  .work-disclosure-list li[data-active='true']::after {
    transform: translateY(-50%) rotate(-90deg);
    opacity: 0;
  }

  .visit-site-container {
    top: auto;
    bottom: 2rem;
    left: 2rem;
    right: auto;
    opacity: 0;
    transition: opacity var(--speed) var(--easing);
  }

  .work-disclosure-list li[data-active='true'] .visit-site-container {
    opacity: 1;
    transition-delay: calc(var(--speed) * 0.3);
  }

  .work-disclosure-list li img {
    mask: radial-gradient(100% 100% at 50% 100%, #fff, transparent);
    -webkit-mask: radial-gradient(100% 100% at 50% 100%, #fff, transparent);
  }

  .about-intro {
    font-size: 1.6rem;
  }

  .about-stats {
    gap: 3rem;
  }

  .stat-num {
    font-size: 3.5rem;
  }

  .about-values {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    max-width: none;
  }

  .value-item {
    padding: 2rem;
  }

  .value-item h3 {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 0 1.5rem;
  }

  .form-group label {
    font-size: 1.1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1.2rem 0;
    font-size: 1.6rem;
  }

  .submit-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
  }

  .contact-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
  }

  .footer {
    padding: 4rem 2rem 2rem;
  }

  .footer-content-grid {
    padding: 6rem 0;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 45%;
  }

  .container {
    padding: 0 1.5rem;
  }

  .header-container {
    padding: 0 1.5rem;
    flex-wrap: nowrap;
  }

  .logo {
    font-size: 1.4rem;
  }

  .logo .logo-mark {
    width: 28px;
    height: 28px;
  }

  .nav-links {
    gap: 1rem;
    margin-left: auto;
    margin-right: 0.5rem;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .get-in-touch {
    margin-left: 0;
  }

  .get-in-touch a {
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
    background-color: #0a0a0a;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  }

  .get-in-touch a:hover {
    box-shadow: 0 0 25px rgba(29, 29, 29, 0.3);
    transform: translateY(-1px);
    background-color: #1a1a1a;
  }

  .hero {
    padding-top: 2rem;
    padding-top: 12rem;
    min-height: 115vh;
    padding-bottom: 0;
  }

  .row-svg {
    margin-top: 0;
    margin-bottom: -7rem;
    position: relative;
    z-index: 1;
  }

  .svg-container svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  }

  .svg-container svg text {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  }

  .section-title {
    font-size: 2.8rem;
  }

  .hero .row-content {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
    gap: 0;
  }

  .hero-left {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-top: -0.5rem;
  }

  .hero-image {
    width: 95%;
    max-width: 600px;
    min-width: 320px;
    transition: all 0.3s ease;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 15rem;
  }

  .hero-right {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    width: 100%;
    text-align: center;
  }

  .about-text {
    font-size: 1.7rem;
    line-height: 1.6;
    padding: 0 1rem;
    text-align: center;
    max-width: 90%;
  }

  .section-title {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
  }

  .work-section {
    padding: 1rem 0 3rem 0;
  }

  .work-disclosure-list {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0.8rem;
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .work-disclosure-list li {
    border-radius: 10px;
    height: 70px;
    min-width: auto;
    transition: height 0.5s var(--easing), border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  }

  .work-disclosure-list li[data-active='true'] {
    height: 400px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  }

  .work-disclosure-list li h3 {
    font-size: 1.6rem;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    rotate: 0deg;
  }

  .work-disclosure-list li[data-active='true'] h3 {
    top: 1.5rem;
    transform: translateY(0);
  }

  .work-disclosure-list li p {
    font-size: 1.3rem;
    line-height: 1.4;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0;
    margin-top: 1.8rem;
  }

  .work-disclosure-list li i {
    left: auto;
    right: 1.5rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(0deg);
    font-size: 1.8rem;
    transition: all var(--speed) var(--easing);
  }

  .work-disclosure-list li[data-active='true'] i {
    opacity: 0;
    transform: translateY(-50%) rotate(180deg);
  }

  .work-disclosure-list li::after {
    content: '›';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--speed) var(--easing);
    pointer-events: none;
    font-weight: 300;
    line-height: 1;
  }

  .work-disclosure-list li[data-active='true']::after {
    transform: translateY(-50%) rotate(-90deg);
    opacity: 0;
  }

  .visit-site-container {
    top: auto;
    bottom: 1.5rem;
    left: 1.5rem;
    right: auto;
  }

  .work-disclosure-list li article {
    padding: 1.5rem;
    padding-bottom: 1.5rem;
    gap: 0.6rem;
  }

  .about-stats {
    gap: 2rem;
  }

  .stat-num {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1.2rem;
  }

  .value-item {
    padding: 1.5rem;
  }

  .value-item h3 {
    font-size: 1.6rem;
  }

  .value-item p {
    font-size: 1.3rem;
  }

  .contact-subtitle {
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 0 0.5rem;
  }

  .form-group label {
    font-size: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1rem 0;
    font-size: 1.3rem;
  }

  .submit-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
  }

  .footer-nav a {
    font-size: 1.8rem;
  }

  .coordinates-link {
    font-size: 1.5rem !important;
  }

  .footer-content-grid {
    padding: 6rem 0;
  }

  @media screen and (max-width: 360px) {
    .logo {
      font-size: 1.2rem;
    }

    .logo .logo-mark {
      width: 20px;
      height: 24px;
    }

    .work-disclosure-list li p {
      font-size: 0.8rem;
      line-height: 1.2;
      position: absolute;
      bottom: 2rem;
      left: 3.5rem;
      right: 2rem;
      margin: 0;
    }
  }

  @media screen and (max-height: 600px) and (orientation: landscape) {
    .hero {
      min-height: auto;
      padding: 4rem 0;
    }

    .gallery {
      min-height: auto;
      padding: 4rem 0;
    }

    .about-section {
      min-height: auto;
      padding: 4rem 0;
    }

    .contact-section {
      min-height: auto;
      padding: 4rem 0;
    }
  }
}

.about-values {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  position: relative;
  margin-top: 0rem;
  transform: translate(78px, 60px);
}

@media (max-width: 1024px) and (min-width: 769px) {
  .about-values {
    transform: translate(120px, 180px);
  }
}

@media (min-width: 1200px) {
  .about-values {
    margin-top: 8rem;
    transform: translate(150px, 140px);
  }
}

@media (min-width: 1500px) {
  .about-values {
    margin-top: 12rem;
    transform: translate(200px, 100px);
  }
}

.about-values .card-swap-container {
  position: relative;
  width: 450px;
  height: 300px;
  perspective: 900px;
  perspective-origin: 50% 50%;
  overflow: visible;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-values .card {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 300px;
  background: linear-gradient(135deg, #0a0a0a 0%, #0b0b0b 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  contain: layout style paint;
  touch-action: manipulation;
}

@media (max-width: 1024px) {
  .about-values .card {
    box-shadow:
      0 15px 40px rgba(0, 0, 0, 0.6),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

.about-values .card:hover {
  transform: translate(-50%, -50%) scale(1.02);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.about-values .card-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 25px 30px;
  color: white;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
}

.about-values .icon-text {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.about-values .icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.about-values .title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.about-values .divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  margin-top: 15px;
  border-radius: 1px;
}

.about-values .visual {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.about-values .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  color: #ffffff;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-values .number svg {
  width: 100px;
  height: 100px;
  stroke: currentColor;
  fill: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.about-values .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.3;
  transition: all 0.6s ease;
  will-change: transform;
  backface-visibility: hidden;
}

@media (max-width: 1024px) {
  .about-values .blob {
    filter: blur(25px);
    opacity: 0.2;
  }
}

.about-values .blob1 {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), rgba(147, 51, 234, 0.4));
  left: 5%;
  bottom: 10%;
  animation: float1 8s ease-in-out infinite;
}

.about-values .blob2 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.5), rgba(168, 85, 247, 0.3));
  right: 8%;
  bottom: 5%;
  animation: float2 10s ease-in-out infinite;
}

.about-values .blob3 {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(59, 130, 246, 0.3));
  right: 30%;
  top: 50%;
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -20px, 0);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -15px, 0);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -25px, 0);
  }
}

@media (max-width: 1024px) {
  @keyframes float1 {

    0%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    50% {
      transform: translate3d(0, -10px, 0);
    }
  }

  @keyframes float2 {

    0%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    50% {
      transform: translate3d(0, -8px, 0);
    }
  }

  @keyframes float3 {

    0%,
    100% {
      transform: translate3d(0, 0, 0);
    }

    50% {
      transform: translate3d(0, -12px, 0);
    }
  }
}

@media (max-width: 1200px) {
  .about-values .card-swap-container {
    transform: scale(0.9);
  }
}

@media (max-width: 900px) {
  .about-values .card-swap-container {
    transform: scale(0.75);
  }
}

@media (max-width: 768px) {
  .about-values .card-swap-container {
    transform: scale(0.7) translateX(10px);
  }
}

@media (max-width: 600px) {
  .about-values .card-swap-container {
    transform: scale(0.6) translateX(8px);
  }
}

@media (max-width: 480px) {
  .about-values .card-swap-container {
    transform: scale(0.5) translateX(6px);
  }
}

@media (max-width: 360px) {
  .about-values .card-swap-container {
    transform: scale(0.45) translateX(5px);
  }
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  position: relative;
  overflow: visible;
}

.contact-form::before {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1.5rem 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  background: transparent;
  color: var(--accent-color);
  font-size: 2rem;
  font-family: 'PP Neue Montreal Medium', 'Inter', sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
  background: transparent;
  box-shadow: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.4;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
}

.checkbox-label:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-label::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  background: transparent;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+&::before {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.submit-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: var(--accent-color);
  font-size: 1.4rem;
  font-weight: 400;
  padding: 1.5rem 4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: none;
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  width: auto;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: 'PP Neue Montreal Medium', 'Inter', sans-serif;
}

.submit-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-color);
  transform: translateX(5px);
  box-shadow: none;
}

.submit-btn:active {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 2rem 0 6rem;
  }

  .contact-form {
    padding: 0 1.5rem;
    margin: 0;
    border-radius: 0;
    max-width: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .form-group {
    gap: 0.8rem;
  }

  .form-group label {
    font-size: 1.1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1.2rem 0;
    font-size: 1.6rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .submit-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    width: 100%;
  }

  .contact-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
  }

  .section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 4rem 0;
  }

  .contact-form {
    margin: 0;
    padding: 0 1rem;
  }

  .form-row {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .form-group {
    gap: 0.8rem;
  }

  .form-group label {
    font-size: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1rem 0;
    font-size: 1.4rem;
  }

  .form-group textarea {
    min-height: 80px;
  }

  .submit-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
  }

  .contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    padding: 0 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}

.reveal-text {
  font-size: clamp(32px, 5vw, 80px);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
}

.reveal-text span {
  display: inline-block;
  opacity: 0.15;
  transition: opacity 0.3s ease;
}

.reveal-text span.active {
  opacity: 1;
}

.about-intro.reveal-text {
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

@media (max-width: 768px) {
  .about-intro.reveal-text {
    font-size: 1.6rem;
    padding: 0 2rem;
  }
}

.work-intro.reveal-text {
  font-size: 1.6rem;
  line-height: 1.6;
  max-width: 750px;
  margin: 2rem auto 4rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .work-intro.reveal-text {
    font-size: 1.4rem;
    padding: 0 2rem;
    margin: 1.5rem auto 3rem;
  }
}

.contact-subtitle.reveal-text {
  font-size: 1.4rem;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.hero-right .about-text.reveal-text {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 500px;
  margin-top: 2rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
}

.hero-right .about-text.reveal-text strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .hero-right .about-text.reveal-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 90%;
    margin: 2rem auto 0;
  }
}

.btn-animate-chars {
  position: relative;
}

.btn-animate-chars__text {
  white-space: nowrap;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.btn-animate-chars [data-button-animate-chars] {
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.btn-animate-chars [data-button-animate-chars] span {
  display: inline-block;
  position: relative;
  text-shadow: 0px 1.3em currentColor;
  transform: translateY(0em) rotate(0.001deg);
  transition: transform 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}

.btn-animate-chars:hover [data-button-animate-chars] span {
  transform: translateY(-1.3em) rotate(0.001deg);
}

.btn-animate-chars__bg {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0;
  position: absolute;
  inset: 0;
  transition: inset 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}

.btn-animate-chars:hover .btn-animate-chars__bg {
  inset: 0.0625em;
}

.mobile-slider-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 400;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: none;
  position: relative;
  overflow: hidden;
  margin: 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'PP Neue Montreal Medium', 'Inter', sans-serif;
  min-width: 80px;
}

.mobile-slider-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-slider-btn:active {
  transform: translateY(0px);
}

@media screen and (max-width: 767px) {
  .sticky-tab__title {
    font-size: 2em;
  }
}

.flick-group {
  position: relative;
}

@media (min-width: 769px) {
  .flick-group {
    display: none !important;
  }

  .flick-controls {
    display: none !important;
  }
}

@media (min-width: 770px) and (max-width: 1024px) {
  .flick-group {
    display: flex !important;
  }

  .flick-controls {
    display: flex !important;
  }
}

.flick-group__relative-object {
  opacity: 0;
  pointer-events: none;
  width: 30em;
  position: relative;
}

.flick-group__relative-object-before {
  padding-top: 75%;
}

.flick-group__collection {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.flick-group__list {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.flick-group__item {
  position: absolute;
}

.flick-card {
  color: #fff;
  -webkit-user-select: none;
  user-select: none;
  background-color: #000;
  border-radius: 1em;
  justify-content: center;
  align-items: center;
  width: 15em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.flick-card__before {
  padding-top: 150%;
}

.flick-card__media {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.cover-image {
  pointer-events: none;
  object-fit: cover;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: auto;
}

.flick-card__h3 {
  letter-spacing: -.025em;
  font-size: 4em;
  font-weight: 500;
  line-height: 1;
  position: absolute;
}

.flick-card__btn {
  background-color: #000;
  border-radius: .375em;
  justify-content: center;
  align-items: center;
  width: calc(100% - 4em);
  height: 3.25em;
  text-decoration: none;
  display: flex;
  position: absolute;
  bottom: 2em;
  left: 2em;
}

.flick-card__btn-span {
  color: #fff;
  font-size: 1em;
  font-weight: 500;
}

[data-flick-cards-dragger] {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
  touch-action: pan-y;
}

[data-flick-cards-item-status] .flick-card__media {
  transition: opacity 0.2s ease;
  opacity: 0.5;
}

[data-flick-cards-item-status="2-before"] .flick-card__media,
[data-flick-cards-item-status="2-after"] .flick-card__media {
  transition: opacity 0.2s ease;
  opacity: 0.75;
}

[data-flick-cards-item-status="active"] .flick-card__media {
  opacity: 1;
}

[data-flick-cards-item-status] .flick-card__btn {
  transition: opacity 0.4s cubic-bezier(0.625, 0.05, 0, 1), 1s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translate(0%, 50%) rotate(0.001deg);
}

[data-flick-cards-item-status="active"] .flick-card__btn {
  opacity: 1;
  transform: translate(0%, 0%) rotate(0.001deg);
}

.flick-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 4rem 0 2rem;
}

.swipe-indicator {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-left: -1.5rem;
  padding: 0.8rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  pointer-events: none;
}

.swipe-indicator svg {
  width: 1.4rem;
  height: 1.4rem;
  transition: transform 0.3s ease;
  animation: swipeHint 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes swipeHint {
  0% {
    transform: translateX(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(5px);
    opacity: 1;
  }

  100% {
    transform: translateX(0);
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .flick-container {
    margin-top: 3rem;
  }
}

@media (max-width: 480px) {
  .flick-container {
    margin-top: 2rem;
  }
}

.cursor {
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  background-color: #000;
  border: none;
  border-radius: .25em;
  padding: .1em .3em .15em;
  font-size: 0.7em;
  transition: opacity .2s;
  position: fixed;
  inset: 0% auto auto 0%;
}

.cursor-paragraph {
  margin-top: 0;
  margin-bottom: 0;
}

body:has([data-cursor]:hover) .cursor {
  opacity: 1;
}

@media (max-width: 1200px) {
  .start-project-btn {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 1024px) {
  .start-project-btn {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
    white-space: nowrap;
  }

  .yellow-line-container {
    display: none;
  }

  .logo {
    z-index: 20;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 480px) {
  .start-project-btn {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 1600px) {
  .footer {
    padding-top: 12rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .logo {
    top: 75%;
  }

  .hamburger-btn {
    top: 60%;
    transform: translateY(20%);
  }
}