﻿/* #region?�역 리셋: 가�??�크�?방�? 기본 ?�팅 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;   /* 좌우 ?�크�?차단 */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
/* #endregion ===========================================*/
/* #region (기본 ?�정) */
@font-face {
  font-family: 'Pretendard';
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/Pretendard-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 500;
  src: url('./fonts/Pretendard-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 600;
  src: url('./fonts/Pretendard-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Pretendard';
  font-weight: 700;
  src: url('./fonts/Pretendard-Bold.woff2') format('woff2');
}

body {
  font-family: 'Pretendard', system-ui, -apple-system, sans-serif;
}
/* #endregion ===========================================*/
/* #region (로고) */
.logo img {
  height: 13px;      /* PC 기본 */
  width: auto;
  display: block;
}

.logo a,
.mobile-header .logo a,
.hamburger,
.mobile-nav a {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

.logo a:focus,
.logo a:active,
.mobile-header .logo a:focus,
.mobile-header .logo a:active,
.hamburger:focus,
.hamburger:active,
.mobile-nav a:focus,
.mobile-nav a:active {
  outline: none;
  box-shadow: none;
  background: transparent;
}

/* ?�블�?*/
@media (max-width: 900px) {
  .logo img {
    height: 12px;
  }
}

/* 모바?????�더 ?�로 ?�렬 + 로고/메뉴 가?�데 */
@media (max-width: 768px) {
  .header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo {
    margin-bottom: 12px;
  }

  .logo img {
    height: 11px;   /* 모바?�에?�는 ?�짝 ???�워???�뻤??거예??*/
  }

  nav {
    text-align: center;
  }
}
/* #region (푸터) */
  footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    width: 100%;
    background: #f5f5f7;
    color: #333;
    border-top: 1px solid #e2e2e5;
    font-size: 12px;
    text-align: center;
  }

  /* 푸터 로고 */
  .footer-logo img {
    height: 28px;
    width: auto;
    display: block;
  }

  /* 가로배치인 경우 */
  footer.horizontal {
    flex-direction: row;
    justify-content: space-between;
  }

  footer.horizontal p {
    margin: 0;
  }

  footer.horizontal .footer-logo img {
    margin: 0 0 0 10px;
    height: 28px;
  }

  footer a {
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.12);
  }
  footer a:hover {
    border-bottom-color: rgba(0,0,0,0.26);
  }

  /* Footer inner wrapper */
  .footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  /* 메인(index)만 다크 푸터 */
  body.index-page footer {
    background: #1d1d1e;
    color: #cfd2d6;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  body.index-page footer a {
    color: #e1e4e8;
    border-bottom-color: rgba(255,255,255,0.16);
  }
  body.index-page footer a:hover {
    border-bottom-color: rgba(255,255,255,0.32);
  }
/* #endregion ===========================================*/
/* #region (바디) */
  body {
  height: 100%;
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;   /* 가�??�크�?차단 */
}
 html {
  height: 100%;
  margin: 0;
  overflow-x: hidden;   /* flex ?�거 + 가�??�크�???�???차단 */
}
/* #endregion ===========================================*/
/* #region (?�더 & ?�비게이?? ???�리 버전 */

/* 공통 ?�더 ?�퍼 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.68);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(18px) saturate(1.18) contrast(1.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.18) contrast(1.04);
}

/* ====== ?�스?�톱 ?�더 ====== */
.desktop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px; /* ?�쪽 ?�딩????주어 로고�?중앙 쪽으�??�동 */
}

.desktop-header .logo img {
  height: 13px;
  width: auto;
}

/* ?�스?�톱 ?�비게이??*/
.desktop-nav {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
}

.desktop-nav a {
  padding: 4px 0;
  margin-left: 20px;
  color: #000;
  font-size: 15px;
  text-decoration: none;
}

.desktop-nav a.active {
  font-weight: 600;
  border-bottom: none;
  padding-bottom: 4px;
}

.desktop-nav a:hover:not(.nav-shop) {
  text-decoration: underline;
}

/* Shop pill 버튼 (?�스?�톱) */
.desktop-nav .nav-shop {
  margin-left: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #4a4a4a;
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.55),
    inset 0 -1px 2px rgba(0, 0, 0, 0.12);
  transition: all 0.22s ease;
}

.desktop-nav .nav-shop:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.7),
    inset 0 -1px 2px rgba(0, 0, 0, 0.14),
    0 6px 16px rgba(0, 0, 0, 0.07);
  transform: translateY(-1.5px);
  color: #3f3f3f;
}

.nav-shop-img {
  width: 14px;
  height: 14px;
  opacity: 0.86;
}

/* ====== 모바???�더 기본�? ?��? ====== */
.mobile-header,
.mobile-nav {
  display: none;
}

/* ====== 모바???�이?�웃 ====== */
@media (max-width: 768px) {

  /* ?�스?�톱 ?�더???��? */
  .desktop-header {
    display: none;
  }

    /* 모바???�더 */
   .mobile-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    height: 60px;
    padding: 12px 16px;
  }
 .mobile-header .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
    height: 32px;
    margin: 0 auto;
  }

   .mobile-header .logo img {
    display: block;
    height: 12px;
    transform: translateY(2px);
  }
   .mobile-header .hamburger {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

    /* 햄버거 버튼 */
  .hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 3px;
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2px;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

 
  .mobile-cart img { display: none; }

   /* ?�긴 ?�핑 ?�이�??�리 ?��???*/
  .mobile-header .mobile-cart {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}

  .hamburger span {
    display: block;
    width: 16px;
    height: 2px;
    background: #222;
    border-radius: 1px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* 모바??Shop ?�이�?*/
  .mobile-cart { display: none; }

  .mobile-cart img { display: none; }

  

  /* 모바???�?�크�?메뉴 */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 32px 20px 40px;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    overflow-y: auto;
    background: rgba(0,0,0,0.35); /* 배경 ?�짝 ?�둡�?*/
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #f3f3f3;
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .mobile-nav a:last-child {
    border-bottom: none;
    background: rgba(0,0,0,0.06);  /* Shop 링크�??�짝 ?�둡�?*/
    border-radius: 12px;
    padding: 12px 0;
  }
  .mobile-nav a:last-child:hover {
    background: rgba(0,0,0,0.12);
  }

  /* 본문?�??�더 ?�이만큼 ?�래�?*/
  body {
    padding-top: 64px;
  }

/* ?�스?�톱?�서 본문 ?�딩 (고정 ?�더 만큼) */
@media (min-width: 769px) {
  body {
    padding-top: 80px;
  }
}

/* Works ?�이지: 고정 ?�더??가?��????�터 ?�역 ?�려주기 */
@media (min-width: 769px) {
  .filters {
    margin-top: 110px; /* ?�더 ?�이(?�??80px) + ?�유 30px */
  }
}

/* #endregion (?�더 & ?�비게이?? */
/* #region (메인 ?�트�?*/
  .intro {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 70vh;
    text-align: center;
    padding: 0 20px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
  }
  
/* #endregion ===========================================*/
/* #region (메뉴??: Wroks(Masonry ?�이?�웃) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  column-gap: 12px;
  row-gap: 4px;
    width: min(100%, 1200px);
  margin: 0 auto;
  padding: 20px;
}

.page-works .grid {
  align-content: start;
}


.work-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  box-shadow: none;
  transition: opacity 0.2s ease;
}
  .work-item[hidden] {
  display: none !important;
}


 .work-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
 
.work-item:hover {
  transform: none;
  box-shadow: none;
  }

  .work-item-body {
  padding: 0;}

/* Works page: collapsed view shows only main folder card */
body.page-works.works-collapsed .grid .work-item.work-folder-feed {
  opacity: 0;
  transform: scale(0.92);
  max-height: 0;
  margin: 0;
  pointer-events: none;
  visibility: hidden;
}
body.page-works.works-collapsed .grid .work-item.work-folder-main {
  position: relative;
  isolation: isolate;
  overflow: visible;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
body.page-works.works-collapsed .grid .work-item.work-folder-main img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}
body.page-works.works-collapsed .grid .work-item.work-folder-main::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.42);
  box-shadow:
    10px -8px 0 rgba(255,255,255,0.9),
    20px -16px 0 rgba(255,255,255,0.75);
  transform: translate(0, 0) rotate(0deg);
  transition: transform 0.45s ease, box-shadow 0.45s ease, opacity 0.45s ease;
  opacity: 0.28;
}
body.page-works.works-collapsed .grid .work-item.work-folder-main::after {
  content: none;
  display: none;
}
body.page-works.works-collapsed .grid .work-item.work-folder-main:hover,
body.page-works.works-collapsed .grid .work-item.work-folder-main:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(0,0,0,0.16);
}
body.page-works.works-collapsed .grid .work-item.work-folder-main:hover img,
body.page-works.works-collapsed .grid .work-item.work-folder-main:focus-visible img {
  transform: scale(1.03);
  filter: contrast(1.02);
}
body.page-works.works-collapsed .grid .work-item.work-folder-main:hover::before,
body.page-works.works-collapsed .grid .work-item.work-folder-main:focus-visible::before {
  transform: translate(14px, -12px) rotate(3.2deg);
  box-shadow:
    14px -10px 0 rgba(255,255,255,0.92),
    28px -20px 0 rgba(255,255,255,0.8);
  opacity: 0.55;
}
body.page-works.works-collapsed .grid .work-item.work-folder-main:hover::after,
body.page-works.works-collapsed .grid .work-item.work-folder-main:focus-visible::after {
  content: none;
}

/* Works expand cue + back arrow */
body.page-works .grid .work-item.work-expand-source::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
body.page-works.works-expanded .grid .work-item.work-expand-source::before {
  opacity: 1;
}
body.page-works.works-expanded .grid .work-item.work-expand-source::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border-left: 2px solid rgba(255,255,255,0.92);
  border-bottom: 2px solid rgba(255,255,255,0.92);
  transform: translate(-45%, -50%) rotate(45deg);
  box-shadow: none;
  opacity: 0.96;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.35));
  pointer-events: none;
}
body.page-works.works-expanded .grid .work-item.work-expand-source img {
  filter: blur(2.5px) brightness(0.72) saturate(0.9);
  transform: scale(1.02);
}
body.page-works.works-expanded .grid .work-item.work-expand-source {
  cursor: pointer;
}
.works-back-arrow {
  display: none;
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
body.page-works.works-expanded .grid .work-item.work-expand-source .works-back-arrow {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.works-back-arrow:hover {
  transform: translateY(-1px);
}

/* Works 접힘/펼침 애니메이션 */
.page-works .work-item {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease, margin 0.4s ease;
  max-height: 1200px;
}

.page-works .work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.28s ease, transform 0.28s ease;
}


 /*.work-item:hover img { transform: scale(1.03); transition: transform 0.4s ease; 
  } */

 .work-item-body h4 {
  margin: 0;
  display: none;
 }

 .work-item p {
  margin: 0;
  display: none;
}



@media (max-width: 768px) {
  .grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 16px 12px 32px;
  }

  .work-item {
    width: 100%;
  }

  .page-works .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 12px 10px 24px;
  }
}

/* #endregion ===========================================*/
/* #region (메뉴??: Works(카테고리 ?�터 버튼 & ?��?) */

  /* #region ==카테고리 버튼== */
    .filters {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      margin: 32px auto 20px;
      padding: 0 16px 10px;
      border-bottom: 1px solid #ddd;
      gap: 18px; /* 버튼?�과 ?��? 간격 */
    }

    .filter-buttons {
      display: flex;
      gap: 18px;
      align-items: center;
    }

    /* #region ==(all/furniture/space/graphic/installation== */
      .filters button {
      background: none;
      border: none;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      color: #666;
      transition: all 0.3s ease;
      }

      .filters button:hover { color: #000; }
      .filters button.active {
      color: #000;
      font-weight: 600;
      }
    /* #endregion */

    
  /* #endregion */
  /* #region ==iOS ?��????��?== */
    .switch {
      position: relative;
        display: inline-flex;     /* 버튼?�과 같�? ?�에 배치 */
        width: 50px;
        height: 24px;
        margin-left: 24px;        /* 버튼 묶음�??�당??간격 */
        align-self: center;       /* 버튼 ?�인�??�평 맞춤 */
        flex-shrink: 0;
    }

    .switch input { display: none; }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: #ccc;
      border-radius: 24px;
      transition: .4s;
    }
    .slider:before {
      position: absolute;
      content: "";
      height: 18px; width: 18px;
      left: 3px; bottom: 3px;
      background: white;
      border-radius: 50%;
      transition: .4s;
    }
    input:checked + .slider {
      background-color: #000;
    }
    input:checked + .slider:before {
      transform: translateX(26px);
    }
    
  /* #endregion */
  /* #region ==?�품 ?�이???�환== */

  
  .work-item {
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .effects-fade .work-item.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
  }

  .effects-fade .work-item.is-fading-out {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
  }

  .effects-fade .work-item.is-fading-in {
    transition: opacity 0.42s ease, transform 0.42s ease;
  }

  .effects-transform .work-item.hidden {
    opacity: 0;
    transform: scale(0.8) rotate(5deg);
    pointer-events: none;
  }
  /* #endregion */
  @media (max-width: 768px) {
  .filters {
    width: 100%;
    display: flex;
    flex-wrap: wrap;          /* 가�??�크�??�거, ?�동 줄바�?*/
    justify-content: flex-start;
    align-items: center;
    gap: 12px 18px;
    padding: 16px 0;
  }

  .filter-buttons {
    display: flex;
    flex-wrap: wrap;          /* 버튼 줄바�?*/
    gap: 12px 18px;
    align-items: center;
  }

  .filters button {
    padding: 6px 0;
  }

  .switch {
    margin-left: 0;           /* 줄바�???좌측 ?�렬 */
    margin-top: 4px;
  }
  }

 /* Works ?�단 고정 ?�터 */
    .page-works {
      padding-top: 72px; /* ?�더 ?�이만큼�??�백 */
    }

    .page-works .filters {
      position: static;
      z-index: auto;
      max-width: 1200px;
      margin: 0 auto 16px;
      padding: 8px 12px;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 12px;
      background: #fff;
      border: 1px solid #e6e6e6;
      border-radius: 10px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.05);
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

  /* ?�크�????��? ?�태 */
.page-works .filters.hide-on-scroll {
    transform: none;
    opacity: 1;
    pointer-events: auto;
   }

   .page-works .filter-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  }
  .page-works .filters button {
  background: none;
  border: none;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
  }
  .page-works .filters button:hover { color: #000; }
.page-works .filters button.active { color: #000; font-weight: 600; }

  @media (max-width: 768px) {
  .page-works { padding-top: 68px; }

  .page-works .filters {
    top: 52px;
    margin: 0 auto 12px;   /* 좌우 ?�동 ?�백 */
    padding: 8px 10px;
    display: flex;
    justify-content: flex-start; /* ?�체 �?중앙 ?�렬 */
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .page-works .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* 버튼 묶음??중앙 */
    gap: 8px 10px;
  }

  .page-works .filters button {
    padding: 6px 8px;
    margin: 0;
    font-size: 14px;
  }
}
/* #endregion ===========================================*/
/* #region (메뉴??: About) */
  .about {
    max-width: 800px;
    margin: 32px auto 20px;
    padding: 20px;
    text-align: center;
  }

  .about-img {
    max-width: 800px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 20px;
  }
/* #endregion ===========================================*/
/* #region (메뉴??: Contact ) */
  .contact {
    max-width: 800px;
    margin: 32px auto 20px;
    padding: 20px;
    text-align: center;
  }
/* #endregion ===========================================*/
/* #region (메뉴??: Work Detail) */
.work-detail-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 104px 24px 120px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.work-intro {
  display: grid;
  gap: 8px;
  margin-bottom: 6px;
}

.work-intro h1 {
  margin: 0;
  font-size: clamp(0.98rem, 1.25vw, 1.24rem);
  line-height: 1.26;
  font-weight: 600;
  letter-spacing: -0.002em;
  color: #2f2f2f;
}

.work-intro-divider {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1;
  color: #9a9a9a;
}

/* 메인 ?��?지 + ?�네??*/
.work-hero {
  display: block;
}

.work-hero-media {
  min-height: 560px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #e9e9ec;
}

.work-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.work-hero-thumbs {
  display: none;
}

.work-hero-thumbs button {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 0px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.work-hero-thumbs button:hover,
.work-hero-thumbs button.active {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
}

.work-hero-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 본문 */
.work-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.work-detail-meta {
  display: block;
}

.work-description h1 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.005em;
  font-weight: 700;
}

.work-description p {
  margin: 0 0 6px;
  line-height: 1.5;
  font-size: 0.92rem;
  color: #707070;
}

.work-story {
  display: grid;
  gap: 2px;
  color: #6f6f6f;
}

.work-story p {
  margin: 0 0 4px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #737373;
}

.work-meta {
  margin-top: 2px;
  max-width: 320px;
}

.work-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.work-specs span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.62;
  letter-spacing: 0;
  text-transform: none;
  color: #707070;
}

.work-specs strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.62;
  margin-top: 2px;
  color: #707070;
  font-weight: 400;
}

.work-spec-plain {
  display: grid;
  gap: 2px;
}

.work-spec-plain p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.62;
  color: #707070;
}

.work-shop-link {
  display: inline-flex;
  margin-top: 18px;
  font-size: 0.9rem;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #222;
  padding-bottom: 2px;
}

.work-shop-link:hover,
.work-shop-link:focus-visible {
  opacity: 0.72;
}

/* 갤러�?*/
.work-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.work-gallery .gallery-item {
  border-radius: 0x;
  overflow: hidden;
  padding: 0;
}

.work-gallery .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ??�??�체�?차�??�고 ?�을 ??*/
.work-gallery .span-2 {
  grid-column: span 2;
}

/* 모바??*/
@media (max-width: 860px) {
  .work-detail-page {
    padding: 84px 16px 80px;
    gap: 16px;
  }

  .work-hero {
    display: block;
    margin-left: -16px;
    margin-right: -16px;
  }

  .work-hero-media {
    min-height: 0;
    background: transparent;
  }

  .work-hero-media img {
    height: auto;
    object-fit: initial;
  }

  .work-detail-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .work-description h1 {
    font-size: 1.55rem;
    margin-bottom: 8px;
  }

  .work-description p,
  .work-story p {
    font-size: 0.67rem;
    line-height: 1.52;
    color: #7f7f7f;
    letter-spacing: -0.01em;
  }

  .work-specs {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .work-specs strong {
    font-size: 0.67rem;
    line-height: 1.52;
  }

  .work-specs span {
    font-size: 0.67rem;
    line-height: 1.52;
    color: #7f7f7f;
  }

  .work-spec-plain p {
    font-size: 0.67rem;
    line-height: 1.52;
    color: #7f7f7f;
  }

  .work-shop-link {
    margin-top: 14px;
    font-size: 0.82rem;
  }

  .work-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .work-gallery .span-2 {
    grid-column: span 1;
  }

  .work-gallery .gallery-item {
    padding: 0;
  }

  .work-description {
    margin-top: 2px;
  }

  .work-description p {
    margin: 0 0 6px;
  }

  .work-story {
    gap: 6px;
  }

  .work-story p {
    margin: 0;
  }
}


/* #endregion ===========================================*/
/* #region (반응?? */
  @media (max-width: 1024px) {
    .filters button { font-size: 14px; margin: 0 5px; }
  }

 @media (max-width: 768px) {
  header { flex-direction: column; align-items: flex-start; }
  nav { margin-top: 10px; }

  /* ?�� ?�정??intro */
  .intro {
    height: auto;          /* 50vh 고정 ??�� */
    padding: 12px 20px;    /* ?�백�?조금 */
    font-size: 0.9rem;
    margin-bottom: 12px; 
    display: none;  /* ?�라?�드???�짝�??�우�?*/
  }

  .about-img { height: 300px; }
  .work-detail { flex-direction: column; }
  .work-info { text-align: center; }
}
/* #endregion ===========================================*/
/* #region (콘텐�? */
  .content {
    text-align: center;
    color: #000;
    font-family: 'Inter', sans-serif;
  }
  main {
    flex: 1; /* 메인???�는 공간??채�? */
    width: 100%;
    display: block;
  }
 
/* #endregion ===========================================*/
/* #region (?�덱???�라?�드 박스 (캐러?�?)*/
.carousel {
  position: relative;
  width: 100%;
  display: grid;
  justify-items: center;
  margin: 60px 0 40px;
  overflow: hidden;
  }

  .carousel-track {
  position: relative;
  width: 100%;
  height: 600px;  /* ?�라?�드 ?�이 */
  transition: transform 2s ease-in-out;
  }

  .carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 800px;
  height: 600px;
  border-radius: 0px;
  overflow: hidden;
  transition: all 2s ease-in-out;
  opacity: 0;
  }

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px;
  background: #f8f8f8;
  user-select: none;
  -webkit-user-drag: none;
}

  /* 중앙 메인 */
  .carousel-slide.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
  }

  /* ?�쪽 */
  .carousel-slide.prev {
  opacity: 0.6;
  width: 100px;
  height: 600px;
  transform: translate(calc(-50% - 480px), -50%) scale(0.9);
  z-index: 2;
  }

  /* ?�른�?*/
  .carousel-slide.next {
  opacity: 0.6;
  width: 400px;
  height: 600px;
  transform: translate(calc(-50% + 550px), -50%) scale(0.9);
  z-index: 2;
  }

  /* 진행�?컨테?�너 */
  .carousel-progress {
  display: none !important;
  }

  /* 진행 ?�니메이??�?*/
  .carousel-progress-bar {
  height: 100%;
  width: 0%;
  background: #a6a6ab;
  border-radius: inherit;
  transition: width linear;
  }

  .carousel-dots {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: auto;
  padding: 0 2px;
  margin: 0;
  z-index: 12;
  }
  .carousel-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #a9a9ae;
  opacity: 0.6;
  cursor: pointer;
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  }
  .carousel-dot.is-mid {
  width: 5px;
  height: 5px;
  opacity: 0.72;
  }
  .carousel-dot.is-near {
  width: 6px;
  height: 6px;
  opacity: 0.9;
  }
  .carousel-dot.is-far {
  width: 4px;
  height: 4px;
  opacity: 0.55;
  }
  .carousel-dot:hover {
  opacity: 1;
  }
  .carousel-dot.is-active {
  width: 6px;
  height: 6px;
  opacity: 1;
  border-radius: 50%;
  background: #6f7680;
  }

  .carousel-nav-btn {
  position: absolute;
  top: 50%;
  width: 84px;
  height: 84px;
  border: none;
  background: transparent;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 13;
  opacity: 0.9;
  transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .carousel-nav-btn.prev { left: 40px; }
  .carousel-nav-btn.next { right: 40px; }

  .carousel-nav-btn::before {
  content: '';
  width: 42px;
  height: 42px;
  border-top: 2px solid rgba(165, 165, 165, 0.92);
  border-right: 2px solid rgba(165, 165, 165, 0.92);
  transition: border-color 0.22s ease, transform 0.22s ease;
  }

  .carousel-nav-btn.prev::before { transform: rotate(-135deg); }
  .carousel-nav-btn.next::before { transform: rotate(45deg); }

  .carousel-nav-btn:hover::before {
  border-top-color: rgba(95, 95, 95, 0.98);
  border-right-color: rgba(95, 95, 95, 0.98);
  }

  .carousel-nav-btn.prev:hover::before { transform: rotate(-135deg) translate(1px, -1px); }
  .carousel-nav-btn.next:hover::before { transform: rotate(45deg) translate(1px, -1px); }

  .carousel-nav-btn:focus-visible {
  outline: none;
  opacity: 1;
  }

  /* 모바?�에?�만 캐러?�??�이?�웃 조정 */
@media (max-width: 860px) {
  /* 캐러?�?컨테?�너 ?�백/?�이 */
  body.index-page .carousel {
    position: relative;
    height: auto !important;
    margin: 48px auto 20px !important;
    padding: 0 12px;
    overflow: visible !important;
  }

  /* ?�랙 ?�이 ???�무 ?��? ?�게 줄이�?*/
  body.index-page .carousel-track {
    position: relative;
    height: clamp(420px, 72vh, 680px);
  }

  /* �??�라?�드�??�랙??"�?????붙이�? 가�?비율�?강제 */
  body.index-page .carousel-slide {
    position: absolute;
    top: 0 !important;                     /* ?�� ?�기�??�해 ?�에 ??붙음 */
    left: 50% !important;
    transform: translate(-50%, 0) scale(0.95) !important;

    aspect-ratio: 3 / 4 !important;
    width: min(78vw, 430px) !important;
    height: auto !important;
    overflow: hidden;
    border-radius: 0;
    opacity: 0;
  }

  body.index-page .carousel-slide.active {
    transform: translate(-50%, 0) scale(1) !important;
    opacity: 1 !important;
    z-index: 10;
  }

  body.index-page .carousel-slide.prev {
    transform: translate(calc(-50% - 46vw), 0) scale(0.9) !important;
    opacity: 0.5 !important;
    z-index: 5;
  }

  body.index-page .carousel-slide.next {
    transform: translate(calc(-50% + 46vw), 0) scale(0.9) !important;
    opacity: 0.5 !important;
    z-index: 5;
  }

  body.index-page .carousel-slide img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
  }

  .carousel-nav-btn {
    width: 60px;
    height: 60px;
  }
  .carousel-nav-btn::before {
    width: 30px;
    height: 30px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
  .carousel-nav-btn.prev { left: 16px; }
  .carousel-nav-btn.next { right: 16px; }

  /* 진행 바�? ?�라?�드 바로 ?�래쪽에 ?�치 */
  body.index-page .carousel-dots {
    left: 50%;
    bottom: 56px;
    transform: translateX(-50%);
    margin: 0;
  }

  body.index-page .carousel-dot {
    width: 3px;
    height: 3px;
    background: #bdbdc2;
    opacity: 0.8;
  }

  body.index-page .carousel-dot.is-active {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #737985;
    opacity: 0.95;
  }

  html, body {
    overflow-x: hidden !important;
  }
}

/* ?�라?�드 ?�장 ?�니메이?? ?�이?�웃 transform?�??��? */
.carousel-slide picture,
.carousel-slide img {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.carousel-slide.is-visible picture,
.carousel-slide.is-visible img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Home collection strip (horizontal drag gallery) */
.collection-block {
  width: min(86vw, 1400px);
  margin: 12px auto 64px;
  padding: 24px 24px 0;
  display: grid;
  gap: 22px;
}
.collection-header {
  display: grid;
  gap: 8px;
  margin: 0;
}
.collection-header .eyebrow {
  margin: 0;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: #666;
}
.collection-header h2 {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: -0.015em;
}
.collection-header .lede {
  margin: 6px 0 0;
  color: #444;
  line-height: 1.75;
  font-size: 1.12rem;
  max-width: 1200px;
}

.collection-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 0 8px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  cursor: grab;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scrollbar-color: transparent transparent;
}
.collection-strip::-webkit-scrollbar {
  display: none;
}
.collection-strip.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.collection-strip.dragging .collection-card {
  pointer-events: none;
}
.collection-card {
  flex: 0 0 380px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: none;
  transition: none;
}
.collection-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.collection-card[data-clone="true"] {
  pointer-events: none;
}
/* 카드 ???�스???�거 ??공간 ?�보 */
.collection-card__body { display: none; }

.collection-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 6px 0 2px;
  width: 100%;
}

/* Hide dots under the works collection strip */
.collection-block .collection-dots {
  display: none !important;
}
.collection-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8f8f8f;
  opacity: 0.75;
  border: none;
  padding: 0;
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.collection-dot:first-child,
.collection-dot:last-child {
  width: 4px;
  height: 4px;
  opacity: 0.6;
}
.collection-dot:nth-child(2),
.collection-dot:nth-last-child(2) {
  width: 5px;
  height: 5px;
  opacity: 0.72;
}
.collection-dot.is-active {
  width: 22px;
  height: 7px;
  border-radius: 999px;
  background: #111;
  opacity: 1;
}

/* Hero ?�래 ??비주??*/
.hero-break {
  padding: 0 0 10px;
}
.hero-break__inner {
  width: min(96vw, 1500px);
  margin: 0 auto 26px;
  overflow: hidden;
}
.hero-break__inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Credits */
.credits-section {
  padding: 30px 0 50px;
}
.credits-wrap {
  width: min(86vw, 1400px);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  display: grid;
  gap: 16px;
}
.credits-marquee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: start;
  align-content: start;
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}
.credits-column {
  display: grid;
  align-content: start;
  grid-auto-rows: min-content;
  gap: 10px;
}
.credits-column p {
  margin: 0;
}
.credits-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.credits-link:hover,
.credits-link:focus-visible {
  opacity: 0.7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .credits-section {
    padding: 20px 0 36px;
  }
  .credits-wrap {
    width: min(92vw, 1400px);
    padding: 0 12px;
    gap: 12px;
  }
  .credits-marquee {
    gap: 14px;
    font-size: 0.95rem;
  }
}

@media (max-width: 900px) {
  .collection-block {
    width: 93vw;
    gap: 10px;
    margin: 0 auto 36px;
    padding: 10px 12px 0;
  }
  .collection-header h2 {
    font-size: 1.9rem;
  }
  .collection-header .lede {
    font-size: 0.98rem;
  }
  .collection-strip {
    padding: 4px 0 4px;
    gap: 10px;
  }
  .collection-card {
    flex-basis: 75vw;
  }
  .collection-card img {
    height: 200px;
  }
}

/* ?�션 콘텐�??�이?�업 */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* #endregion */

/* Simple About layout */
.page-about {
  padding-top: 82px;
}

.about-simple {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 28px 110px;
  display: grid;
  gap: 72px;
}

.about-simple-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.about-simple-copy h1 {
  margin: 0 0 32px;
  font-size: clamp(54px, 8.6vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.about-simple-copy p {
  margin: 0 0 14px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.about-simple-visual {
  margin: 0;
}

.about-simple-visual img {
  width: 100%;
  display: block;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about-staff {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 34px;
  border-top: 1px solid #e5e5e8;
  padding-top: 28px;
}

.about-staff h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: #3f4f62;
}

.about-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 28px 54px;
}

.about-staff-group h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #2f3e51;
}

.about-staff-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.about-staff-group li {
  font-size: 15px;
  color: #2f3e51;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .about-simple {
    padding: 34px 18px 80px;
    gap: 44px;
  }

  .about-simple-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-simple-copy h1 {
    font-size: clamp(38px, 10vw, 64px);
  }

  .about-simple-copy p {
    max-width: none;
    font-size: 17px;
  }

  .about-staff {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-staff h2 {
    font-size: 28px;
  }

  .about-staff-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* #region (메뉴??: Polaroids)*/
  .polaroids {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  text-align: center;
  color: #111;
}

.polaroids-hero {
  margin-bottom: 40px;
}

.polaroids-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.polaroids h1 {
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.polaroids-meta {
  font-size: 0.95rem;
  color: #666;
}

.polaroids-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px,340px));
  justify-content: flex-start;   /* ?�는 공간?�?좌우�?분배 */
  gap: 1px;
  margin-top: 40px;
}

.polaroid-card {
  position: relative;
  background: #f8f8f8;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  aspect-ratio: 2.5 / 3.5
}
.polaroid-card:hover img {
  transform: scale(1.03); transition: transform 0.4s ease;
}

.polaroid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* 가�??�로 변???�레??*/
.polaroid-card.wide {
  aspect-ratio: 4 / 3;
}

.polaroid-card.tall {
  aspect-ratio: 2 / 3;
}


.polaroid-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  background: #fff;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: width 0.4s ease;
  z-index: 3000;
  display: flex;
  flex-direction: column;
}

.polaroid-panel.open {
  width: min(50vw, 640px);
}

.polaroid-panel__inner {
  position: relative;
  flex: 1;
  overflow-y: auto;
  padding: 48px 36px 60px;
}

.polaroid-panel__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  z-index: 1;
}

.polaroid-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.15), rgba(0,0,0,0));
  opacity: 0;
  pointer-events: none;
    transition: opacity 1.6s ease; /* ���� ���̵� ������ */
  z-index: 2900;
}

.polaroid-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.polaroid-panel__header {
  margin-bottom: 32px;
}

.polaroid-panel__header h2 {
  margin: 0 0 12px;
  font-size: 1.6rem;
}

.polaroid-panel__header p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

.polaroid-panel__gallery {
  display: grid;
  gap: 24px;
}

.polaroid-panel__gallery img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

/* 모바?�에?�는 가???�용 */
@media (max-width: 860px) {
  .polaroid-panel.open {
    width: 100vw;
  }

  .polaroid-panel__inner {
    padding: 40px 24px 60px;
  }
}













@media (max-width: 768px) {
  .polaroids {
    padding: 60px 20px 80px;
  }
   .polaroids-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    justify-content: flex-start;
    gap: 18px;
  }
}

/* #endregion ===========================================*/
/* #region (메뉴??: Contact)*/
.contact-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px 48px 140px; /* ?�백 ?�장 */
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 440px);
  gap: 72px;
  align-items: start;
}

.contact-form h1 {
  margin: 0 0 20px;
  font-size: 2.4rem;
}

.contact-intro {
  margin-bottom: 32px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #777;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 12px 4px;
  font-size: 1rem;
  font-family: inherit;
  background: transparent;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: #000;
}

.contact-form button {
  margin-top: 10px;
  align-self: flex-start;
  padding: 12px 36px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-form button:hover {
  background: #fff;
  color: #111;
}

.contact-social {
  margin-top: 26px;
  font-size: 0.95rem;
}

.contact-social a {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-social a:hover {
  border-bottom-color: #111;
}

.contact-visual img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 860px) {
  .contact-page {
    grid-template-columns: 1fr;
    padding: 90px 28px 110px; /* 모바?�도 ?�백 ?�짝 추�? */
    gap: 50px;
  }
  .contact-visual img {
    max-height: 520px;
  }
}


/* #endregion ===========================================*/

/* #region (메뉴??: Blog)*/
.page-blog {
  padding-top: 74px;
  background: #fff;
  color: #111;
}

.blog-wrap {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 36px;
  align-items: center;
  margin: 40px 0 32px;
}

.blog-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  color: #777;
  margin: 0 0 12px;
}
.blog-hero h1 {
  margin: 0 0 14px;
  font-size: 2.1rem;
  line-height: 1.3;
}
.blog-hero .lede {
  margin: 0 0 18px;
  color: #555;
  line-height: 1.6;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-tags .tag {
  border: 1px solid #e3e3e3;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-tags .tag.active,
.blog-tags .tag:hover {
  border-color: #111;
  color: #111;
}

.hero-visual img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
  object-fit: cover;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.blog-card .card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card .card-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 16px 18px 18px;
  display: grid;
  gap: 10px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: #777;
}
.card-meta .pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f1f3;
  color: #444;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
.card-meta .date { color: #888; }

.blog-card h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.4;
}
.card-desc {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
}
.card-tags span {
  background: #f4f4f6;
  border-radius: 10px;
  padding: 4px 8px;
}

@media (max-width: 900px) {
  .blog-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .blog-hero h1 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero .lede { font-size: 0.95rem; }
}

/* #endregion ===========================================*/


/* ?�?�크�??�션 ?�크�??��???*/
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  position: relative;
}

.section .container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

/* �??�션 ?�상 */
.home-section {
  background: #fff;
  padding-top: 100px; /* ?�더 ?�이만큼 ?�백 */
}

.red-section {
  background: #d41818;
  color: white;
}

.yellow-section {
  background: #ffd43a;
  color: #000;
}

.blue-section {
  background: #003366;
  color: white;
}

/* ?�스?�탑?�서�??�용 (모바?��? 기존 ?�크�??��?) */
@media (min-width: 769px) {
  .section {
    min-height: 100vh;
    scroll-snap-align: start;
  }
  
  body {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
  }
  
  .site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.62);
    backdrop-filter: blur(12px) saturate(1.05);
  }
  
  .home-section {
    padding-top: 120px; /* ?�더 고정 보정 */
  }
}


/* #region 반응??2분할*/
/* 반응??좌우 2분할 ?�이?�웃 ??모든 ?�이지?�서 ?�유�?�� ?�용 가??*/
.split-layout {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 100px 5% 120px;
  box-sizing: border-box;
  background: #fff;
}

.split-left,
.split-right {
  flex: 1 1 50%;
  min-width: 300px;
  padding: 40px;
  box-sizing: border-box;
}

.split-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.split-right img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ?�스???��???*/
.split-left .ceo-label {
  font-size: 0.9rem;
  letter-spacing: 4px;
  margin-bottom: 12px;
  opacity: 0.7;
}
.split-left h1 {
  font-size: 4.5rem;
  margin: 0 0 40px;
  line-height: 1.1;
  font-weight: 800;
}
.split-left .text-content {
  font-size: 1.25rem;
  line-height: 2;
  max-width: 600px;
}
.split-left .text-content p {
  margin-bottom: 1.8rem;
  opacity: 0.9;
}

/* ?�쪽�??�용????�?채우�?*/
.split-layout.left-only  .split-left  { flex: 1 1 100%; max-width: 100%; padding: 0 10%; }
.split-layout.right-only .split-right { flex: 1 1 100%; max-width: 100%; padding: 0 10%; text-align: center; }

/* 모바?�에?�는 무조�??�아?�로 ?�이�?*/
@media (max-width: 868px) {
  .split-layout { flex-direction: column; padding: 80px 5%; }
  .split-left, .split-right { flex: 1 1 100%; padding: 30px 0; }
  .split-left h1 { font-size: 3.5rem; }
  .split-right img { border-radius: 8px; }
}
/* #endregion ===========================================*/

/* ?�진 ?�나�?중앙 + 좌우 ?�백 ?�넉?�게 ???�신???�하??바로 �??�낌 */
.single-image-padded {
  width: 100%;
  min-height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 5vw;           /* ?�하 ?�백 + 좌우 ?�백 기본 */
  box-sizing: border-box;
}

.single-image-inner {
  width: 100%;
  max-width: 1240px;            /* ?�진 최�? ?�비 ?�한 ??좌우 ?�백 ?��? */
  margin: 0 auto;
  text-align: center;
}

.single-image-padded img {
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
}



/* ?�스?�탑?�서 좌우 ?�백 ???�넉?�게 */
@media (min-width: 1200px) {
  .single-image-inner {
    max-width: 1300px;   /* ??좁�???좌우 ?�백 ???�게! */
  }
}

/* 모바??*/
@media (max-width: 768px) {
  .single-image-padded {
    padding: 80px 5vw;
  }
  .single-image-inner {
    max-width: 100%;
  }
}


/* #region  메인 ?�라?�드 ?�크�??��????�과??*/
.hero-scale-wrapper {
  width: 100%;
  padding: 80px 0 60px;   /* ?�백 축소�??�단 공간 줄이�?*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-scale-target {
  width: 100%;
  display: flex;
  justify-content: center;
  will-change: transform, opacity;
  transform-origin: top center;
}
/* #endregion ===========================================*/










.mobile-header .mobile-cart { display: none; }
.mobile-header .mobile-cart img { display: none; }
.mobile-header 

/* ?�이지 ?�이??(기본?�?보임, 본문�??�환) */
body {
  opacity: 1;
}
body {
  transition: opacity 0.42s ease;
}
html.nav-fade-pending body {
  opacity: 0;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: #f9f9fb;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
  z-index: 20000;
}
body.content-fade-ready {
  opacity: 0;
}
body.content-fade-ready.content-fade-in {
  opacity: 1;
}
body.content-fade-in {
  opacity: 1;
}
body.content-fade-out {
  opacity: 0;
}
body.content-fade-out::after {
  opacity: 1;
}

/* 모바???�비/?�더 보정 */
@media (max-width: 768px) {
  .mobile-nav {
    background: rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(8px);
  }
  .mobile-nav a:last-child {
    background: #f7f7f7 !important;
    border-radius: 12px;
    padding: 12px 0;
    width: 100%;
    max-width: 260px;
  }
  .mobile-nav a:last-child:hover {
    background: #f0f0f0 !important;
  }
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    height: 60px;
    padding: 12px 16px;
  }
  .mobile-header .hamburger {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-header .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
  }
  .mobile-header .logo img {
    display: block;
    height: 16px;
    transform: translateY(2px);
  }
  .mobile-header .mobile-cart {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}
/* 로고 ?�버?�이 ?�생 ???�더/모바???�더 ?��? */
body.overlay-playing .site-header,
body.overlay-playing .mobile-header {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ?�버?�이 ?�생 �?진행�??��? */
body.overlay-playing .carousel-progress {
  opacity: 0;
  pointer-events: none;
  display: none !important;
}

/* 모바???�비 좌측 ?�라?�드 ?�널 ?��???*/
@media (max-width: 768px) {
  .mobile-nav {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 65vw;
    max-width: 280px;
    padding: 64px 16px 36px;
    background: #1b1b1b;
    color: #f2f2f2;
    gap: 12px;
    overflow-y: auto;
    transform: translateX(-105%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s ease, opacity 0.45s ease, visibility 0.45s ease;
    z-index: 1100;
    pointer-events: none;
    backdrop-filter: blur(6px);
  }
  /* 메뉴 ?�스???�기/간격 축소 */
  .mobile-nav a {
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 8px 0 !important;
  }
  .mobile-nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-nav a {
    color: #f1f1f1;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-nav a:last-child {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    border: none;
  }
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
  }
}

/* 모바???�비 ?�스??가?�성 강화 */
@media (max-width: 768px) {
  .mobile-nav a {
    color: #222 !important;
    font-weight: 600;
  }
  .mobile-nav a:last-child {
    background: transparent !important;
    border: none !important;
    color: #222 !important;
  }
}

/* 로고 ?�버?�이 */
.logo-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #fff;
  z-index: 4000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease 0.2s;
}
.logo-overlay.active { opacity: 1; }
.logo-overlay.hide { opacity: 0; }
.logo-overlay img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.logo-overlay.active img {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* 모바???�비 ?�스??버튼 가?�성 보정 */
@media (max-width: 768px) {
  .mobile-nav a {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #222 !important;
  }
  .mobile-nav a:last-child {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #222 !important;
  }
}

/* �������� ���� ĳ���� �����?���� */
body.overlay-playing .carousel-progress { opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }

/* 모바???�비게이???�커버 + ?�로???�픈 override */
@media (max-width: 768px) {
  .mobile-header { position: relative; z-index: 1200; }
  .mobile-nav {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 80px 20px 40px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
    pointer-events: none;
  }
  .mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}







/* 모바???�더 로고 ?�직 ?�렬 보정 */
@media (max-width: 768px) {
  .mobile-header {
    height: 60px;
    padding: 12px 16px;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  .mobile-header .hamburger {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-header .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
  }
  .mobile-header .logo img {
    display: block;
    height: 11px;
    transform: translateY(5px); /* ?�짝 ?�래�?보정 */
  }
  .mobile-header .mobile-cart {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}



/* #region  news */
.page-news {
  padding-top: 90px;
  background: #fff;
  color: #111;
}
.news-wrap {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 20px;
}
.news-hero {
  margin: 18px 0 18px;
}
.news-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  color: #777;
  margin: 0 0 10px;
}
.news-hero h1 {
  margin: 0 0 12px;
  font-size: 1.9rem;
  line-height: 1.3;
}
.news-hero .lede {
  margin: 0;
  color: #555;
  line-height: 1.6;
}
.news-tabs {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin: 18px 0 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9e9e9;
}
.news-tabs button {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #777;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
  border-bottom: 2px solid transparent;
}
.news-tabs button.active {
  color: #000;
  border-color: #000;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
@media (min-width: 960px) {
  .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.news-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}
.news-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 70 / 99; /* 420x594mm 비율 */
  object-fit: cover;
}
.news-thumb a {
  display: block;
}
.news-card a {
  color: inherit;
  text-decoration: none;
}
.news-body {
  padding: 16px 18px 20px;
  display: grid;
  gap: 10px;
}
.news-meta {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  font-weight: 600;
}
.news-card h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.4;
}
.news-desc {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}
.news-card[hidden] {
  display: none !important;
}
.news-card.is-filter-hidden {
  display: none !important;
}
.press-card { cursor: pointer; }
.press-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 30000;
}
.press-panel-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.press-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(90vw, 1100px);
  max-width: 1100px;
  background: #fff;
  box-shadow: -16px 0 32px rgba(0,0,0,0.12);
  transform: translateX(105%);
  transition: transform 0.4s ease;
  z-index: 30010;
  display: flex;
  flex-direction: column;
}
.press-panel.open {
  transform: translateX(0);
}
.press-panel__inner {
  padding: 10px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  overflow-y: auto;
}
.press-panel__close {
  align-self: flex-end;
  position: sticky;
  top: 0;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 0;
  background: #111;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.press-panel__eyebrow {
  margin: 0;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #777;
}
.press-panel h2 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.35;
}
.press-panel__lede {
  margin: 0;
  color: #555;
  line-height: 1.6;
}
.press-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.press-panel__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  background: #000;
}
.press-panel__frame-wrap {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 70vh;
}
.press-panel__frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.press-panel__inner::-webkit-scrollbar {
  width: 10px;
}
.press-panel__inner::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.press-panel__inner::-webkit-scrollbar-track {
  background: #f4f4f4;
}
body.press-panel-open {
  overflow: hidden;
}

.exhibit-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 30000;
}
.exhibit-panel-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.exhibit-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(90vw, 1100px);
  max-width: 1100px;
  background: #fff;
  box-shadow: -16px 0 32px rgba(0,0,0,0.12);
  transform: translateX(105%);
  transition: transform 0.4s ease;
  z-index: 30010;
  display: flex;
  flex-direction: column;
}
.exhibit-panel.open { transform: translateX(0); }
.exhibit-panel__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.exhibit-panel__gallery img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}


@media (max-width: 768px) {
  .page-news { padding-top: 78px; }
  .news-wrap { padding: 0 14px 80px; }
  .news-hero { margin: 14px 0 14px; }
  .news-hero h1 { font-size: 1.6rem; }
  .news-tabs { gap: 12px; margin: 14px 0 6px; padding: 0 16px 10px; }
  .news-tabs button { padding: 8px 0; font-size: 14px; }
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .news-body {
    padding: 10px 10px 12px;
    gap: 6px;
  }
  .news-meta {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }
  .news-card h2 {
    font-size: 0.62rem;
    line-height: 1.3;
  }
  .news-desc {
    font-size: 0.50rem;
    line-height: 1.45;
  }
  .news-thumb img { aspect-ratio: 70 / 99; }
  .press-panel {
    width: 100vw;
  }
  .press-panel__inner {
    padding: 10px 14px 16px;
  }
  .press-panel__frame-wrap {
    min-height: 320px;
  }
}
/* #endregion ===========================================*/






/* Header and filter alignment adjustments */
.site-header .desktop-header {
  padding: 18px 24px 10px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 24px;
}
.site-header .desktop-header .logo img {
  height: 13px;
}
.desktop-header .desktop-nav {
  flex: 1;
  gap: 24px;
  justify-content: flex-end;
  margin-left: auto;
}
.desktop-header .desktop-nav a {
  margin-left: 0;
}
.desktop-header .desktop-nav .nav-shop {
  margin-left: 32px;
}
.page-works .filters {
  top: 68px;
  margin-top: 12px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .site-header .desktop-header {
    gap: 26px;
    padding: 15px 18px 9px;
  }
}

@media (max-width: 768px) {
  .desktop-header { display: none !important; }
  .mobile-header {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    position: relative !important;
    height: 60px !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
  }
  .mobile-header .logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    line-height: 0 !important;
    margin: 0 auto !important;
    height: 32px !important;
  }
  .mobile-header .logo img {
    height: 12px !important;
    transform: translateY(2px) !important;
  }
  .mobile-header .hamburger {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  .mobile-header .mobile-cart {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  .page-works .filters {
    top: 64px;
    margin-top: 8px;
    padding: 10px 14px;
    justify-content: center;
  }
}
/* Home news preview */
.home-news-section {
  padding: 40px 0 20px;
}
.home-news {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.home-news__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.home-news__more {
  font-size: 14px;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
}
.home-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.home-news__card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.home-news__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}
.home-news__thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.home-news__body {
  padding: 10px 12px 14px;
  display: grid;
  gap: 6px;
}
.home-news__meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}
.home-news__body h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}
.home-news__desc {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.45;
}

/* Home combined feed (News + Blog) */
.home-feed-section {
  padding: 12px 0 28px;
}
.home-feed-wrap {
  width: min(86vw, 1400px);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 18px;
}
.home-feed__more {
  font-size: 13px;
  color: #777;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
}
.home-feed {
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 14px;
}
.home-feed__section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.home-feed__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  color: #666;
  text-transform: uppercase;
}
.home-feed__title {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 18px;
}
.home-feed__lede {
  margin: 0;
  color: #555;
  font-size: 14px;
}
.home-feed__grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0 0 6px;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scrollbar-color: transparent transparent;
}
.home-feed__grid.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.home-feed__grid::-webkit-scrollbar {
  display: none;
}
.home-feed__grid.dragging .home-feed__card {
  pointer-events: none;
}
.home-feed__card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 0;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  min-width: 380px;
  max-width: 380px;
  flex: 0 0 auto;
  scroll-snap-align: center;
  opacity: 0;
  transform: translateY(12px);
}
.home-feed__card[data-clone="true"] {
  pointer-events: none;
}
.home-feed__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}
.home-feed__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 70 / 99;
  object-fit: cover;
  display: block;
}
.home-feed__body {
  padding: 8px 12px 12px;
  display: grid;
  gap: 4px;
}
.home-feed__meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
}
.home-feed__body h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}
.home-feed__desc {
  margin: 0;
  display: none;
}

.home-feed__card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.16s ease, transform 0.16s ease;
}
.home-feed__empty {
  margin: 0;
  color: #777;
  font-size: 14px;
}
.home-feed__dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 6px 0 0;
  width: 100%;
}
.home-feed__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: #8f8f8f;
  opacity: 0.75;
  cursor: pointer;
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.home-feed__dot:first-child,
.home-feed__dot:last-child {
  width: 4px;
  height: 4px;
  opacity: 0.6;
}
.home-feed__dot:nth-child(2),
.home-feed__dot:nth-last-child(2) {
  width: 5px;
  height: 5px;
  opacity: 0.72;
}
.home-feed__dot.is-active {
  width: 22px;
  height: 7px;
  border-radius: 999px;
  background: #111;
  opacity: 1;
}

/* Works filter: minimal tab row (reference style) */
.page-works .filters {
  position: static;
  top: auto;
  max-width: 1200px;
  margin: 0 auto 10px;
  padding: 0 4px 8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0;
  box-shadow: none;
}

.page-works .filter-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1px;
  scrollbar-width: none;
}

.page-works .filter-buttons::-webkit-scrollbar {
  display: none;
}

.page-works .filters button {
  border: none;
  background: transparent;
  padding: 0 0 7px;
  margin: 0;
  color: #9a9a9a;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  border-bottom: 1px solid transparent;
}

.page-works .filters button:hover {
  color: #3a3a3a;
}

.page-works .filters button.active {
  color: #111;
  font-weight: 400;
  border-bottom-color: #111;
}

@media (max-width: 900px) {
  .page-works .filters {
    margin: 0 auto 10px;
    padding: 0 6px 8px;
  }

  .page-works .filter-buttons {
    gap: 13px;
  }

  .page-works .filters button {
    font-size: 16px;
    padding-bottom: 7px;
  }
}

@media (max-width: 768px) {
  .page-works .filters {
    top: auto;
    margin: 8px auto 4px;
    padding: 0 6px 4px;
    justify-content: flex-start;
  }

  .page-works .grid {
    margin-top: 0;
  }

  .page-works .filter-buttons {
    width: 100%;
    gap: 11px;
  }

  .page-works .filters button {
    font-size: 15px;
    padding: 0 0 6px;
  }
}

@media (max-width: 768px) {
  .home-feed-section { padding: 20px 0 10px; }
  .home-feed-wrap { gap: 12px; padding: 0 12px; }
  .home-feed { padding: 0; }
  .home-feed__grid {
    gap: 12px;
    padding: 0 max(12px, 10vw) 6px;
  }
  .home-feed__card {
    min-width: 72vw;
    max-width: 72vw;
    grid-template-rows: auto auto;
  }
  .home-feed__thumb img {
    height: auto;
    aspect-ratio: 70 / 99;
  }
}

/* Mobile nav overlay layering fix */
@media (max-width: 768px) {
  .site-header {
    z-index: 14000 !important;
  }
  .mobile-header {
    position: relative;
    z-index: 14020 !important;
  }
  .mobile-nav {
    position: fixed;
    inset: 0;
    width: 100vw !important;
    max-width: none !important;
    min-height: 100dvh;
    padding: 84px 20px 40px !important;
    z-index: 14010 !important;
    background: rgba(255, 255, 255, 0.97) !important;
    display: none !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
    overflow-y: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .mobile-nav.active {
    display: flex !important;
    pointer-events: auto !important;
  }
  .mobile-nav a {
    display: block !important;
    width: 100% !important;
    max-width: 280px !important;
    padding: 10px 0 !important;
    text-align: center !important;
    color: #111 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  body.menu-open .mobile-nav {
    pointer-events: auto;
  }
  body.menu-open .page-works .filters,
  body.menu-open .page-works .grid {
    pointer-events: none;
  }
}

/* #region (블로그 새 레이아웃) */
.blog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 12px auto 80px;
  padding: 0 16px;
}
.blog-sidebar {
  padding: 12px 0 0;
  border-right: 1px solid #e9e9e9;
}
.blog-sidebar__title {
  margin: 0 0 12px;
  font-weight: 700;
  text-transform: lowercase;
}
.blog-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.blog-sidebar a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.blog-sidebar a.active {
  font-weight: 700;
}
.blog-sidebar a[data-category="all"] {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid #d8d8de;
  margin-bottom: 2px;
}
.blog-content {
  display: grid;
  gap: 18px;
  align-self: flex-start;
  margin-top: 0;
}
.blog-header .eyebrow {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #666;
}
.blog-header h1 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}
.blog-header .lede {
  margin: 0 0 12px;
  color: #555;
}
.blog-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-pills .pill {
  border: 1px solid #e3e3e3;
  background: #f9f9f9;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}
.blog-pills .pill.active {
  border-color: #333;
  color: #111;
}
.blog-list-panel {
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  display: grid;
  gap: 10px;
}
.blog-list__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.blog-list-panel.is-collapsed {
  padding: 12px;
}
.blog-list-panel.is-collapsed .blog-list__table,
.blog-list-panel.is-collapsed .blog-list__pager {
  display: none;
}
.list-count {
  font-weight: 400;
  color: #777;
  margin-left: 6px;
  font-size: 14px;
}
.blog-list__toggle {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
}
.blog-list__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.blog-list__table th,
.blog-list__table td {
  border-bottom: 1px solid #e5e5e5;
  padding: 6px;
  text-align: left;
}
.blog-list__pager {
  font-size: 14px;
  color: #777;
  display: flex;
  gap: 8px;
  align-items: center;
}
.blog-list__page-btn {
  border: none;
  background: transparent;
  color: #777;
  cursor: pointer;
  padding: 0;
  font: inherit;
}
.blog-list__page-btn.is-active {
  color: #111;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.minimal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  transition: opacity 0.22s ease;
}
.minimal-grid.is-switching {
  opacity: 0;
}
.blog-list-panel {
  transition: opacity 0.22s ease;
}
.blog-list-panel.is-switching {
  opacity: 0;
}
.minimal-grid.is-book-view {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 2px;
  justify-content: flex-start;
}
.minimal-grid.is-book-view .blog-card:not([data-category="book"]) {
  display: none !important;
}
.minimal-grid.is-book-view .blog-card[data-category="book"] {
  width: var(--book-button-w, 36px);
  height: var(--book-button-h, 300px);
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  transition: none;
  transform: none;
  box-shadow: none;
}
.minimal-grid.is-book-view .blog-card[data-category="book"]:hover {
  transform: none !important;
  box-shadow: none !important;
}
.minimal-grid.is-book-view .blog-card[data-category="book"] .card-link {
  width: 100%;
  height: auto;
  display: block;
}
.minimal-grid.is-book-view .blog-card[data-category="book"] .minimal-thumb {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  background: transparent;
  border: 0;
  overflow: visible;
  display: block;
}
.minimal-grid.is-book-view .blog-card[data-category="book"] .minimal-thumb img {
  width: 100%;
  height: var(--book-image-h, 220px);
  max-width: none;
  aspect-ratio: auto;
  object-fit: fill;
  object-position: bottom center;
  display: block;
  cursor: pointer;
  transition: filter 0.18s ease, opacity 0.18s ease;
}
.minimal-grid.is-book-view .blog-card[data-category="book"] .minimal-thumb img:hover {
  filter: brightness(1.04) contrast(1.02);
}
.minimal-grid .blog-card {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: block;
  box-shadow: none;
}
.minimal-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #e9e9ec;
  border-radius: 0;
  overflow: hidden;
}
.minimal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.book-spine-thumb {
  position: relative;
  background: linear-gradient(180deg, #e0e0e4 0%, #d8d8de 100%);
  overflow: hidden;
}
.book-spine-stack {
  height: 100%;
  display: flex;
  gap: 6px;
  padding: 10px;
}
.book-spine-stack .spine {
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: linear-gradient(180deg, #f1f1f3 0%, #e1e1e6 100%);
  color: rgba(17, 17, 17, 0.72);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 2px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.book-spine-stack .spine:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.35);
  background: linear-gradient(180deg, #f7f7f9 0%, #e8e8ee 100%);
}
.book-spine-stack.dark .spine {
  background: linear-gradient(180deg, #d6d6dc 0%, #c9c9d1 100%);
}
.book-spine-stack .s2,
.book-spine-stack .s4,
.book-spine-stack .s7 {
  transform: translateY(8px);
}
.book-spine-stack .s3,
.book-spine-stack .s6,
.book-spine-stack .s8 {
  transform: translateY(-6px);
}
.book-spine-card .book-spine-single {
  background: transparent;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
.minimal-grid.is-book-view .book-spine-card .book-spine-single {
  aspect-ratio: 1 / 3.4;
}
.book-spine-card .book-spine-single .spine {
  width: clamp(44px, 24%, 72px);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: linear-gradient(180deg, #f1f1f4 0%, #e3e3e8 100%);
  color: rgba(17, 17, 17, 0.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.minimal-grid.is-book-view .book-spine-card .book-spine-single .spine {
  width: 100%;
}
.book-spine-card .book-spine-single .spine:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.35);
}
.minimal-grid .card-body {
  display: none;
}
.minimal-grid .card-meta {
  display: none;
}
.minimal-grid h2 {
  display: none;
}
@media (max-width: 900px) {
  .page-blog {
    padding-top: 66px;
  }
  .blog-layout {
    grid-template-columns: 1fr;
    margin: 8px auto 44px;
    padding: 0 12px;
    gap: 14px;
  }
  .blog-sidebar {
    border-right: none;
    border-bottom: 1px solid #e9e9e9;
    padding: 0 0 10px;
  }
}

@media (max-width: 768px) {
  .page-blog {
    padding-top: 58px;
  }
  .blog-layout {
    margin: 6px auto 34px;
    padding: 0 10px;
    gap: 12px;
  }
  .blog-sidebar__title {
    margin-bottom: 10px;
  }
  .blog-sidebar ul {
    gap: 4px;
    padding-left: 2px;
  }
  .blog-sidebar a {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0.005em;
    color: #9a9aa0;
  }
  .blog-sidebar a.active,
  .blog-sidebar a[data-category="all"] {
    color: #2a2a2a;
    font-weight: 500;
  }
  .blog-list-panel {
    padding: 10px;
  }
  .blog-list__head {
    font-size: 13px;
  }
  .minimal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .blog-list-panel .blog-list__head {
    display: none;
  }
}
/* #endregion */


/* Home featured video */
.home-video-section {
  padding: 6px 0 18px;
}
.home-video-wrap {
  width: min(86vw, 1400px);
  margin: 0 auto;
  padding: 0 24px;
}
.home-video-frame {
  border-top: none;
  padding-top: 10px;
}
.home-video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}

@media (max-width: 768px) {
  .home-video-section { padding: 8px 0 16px; }
  .home-video-wrap { padding: 0 12px; }
  .home-video-frame { padding-top: 8px; }
}

@media (max-width: 768px) {
  .mobile-nav a:last-child {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 200px !important;
    margin-top: 10px !important;
    background: #2e2d33 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 !important;
    color: #f3f0ee !important;
    padding: 13px 24px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.12) !important;
    letter-spacing: 0.02em !important;
  }
}

@media (max-width: 768px) {
  body.index-page {
    padding-top: 0 !important;
  }

  body.index-page .fullpage-container {
    height: auto !important;
    min-height: 0 !important;
  }

  body.index-page #section-home {
    height: calc(100dvh - 60px) !important;
    min-height: calc(100dvh - 60px) !important;
  }

  body.index-page .hero-scale-wrapper {
    height: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
    align-items: stretch !important;
  }

  body.index-page .hero-scale-target {
    height: 100% !important;
    min-height: 0 !important;
    align-items: stretch !important;
  }

  body.index-page .carousel {
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  body.index-page .carousel-track {
    height: 100% !important;
  }

  body.index-page .carousel-slide {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
  }

  body.index-page .carousel-slide.active {
    transform: translate3d(0, 0, 0) !important;
  }

  body.index-page .carousel-slide.prev {
    transform: translate3d(-100%, 0, 0) !important;
  }

  body.index-page .carousel-slide.next {
    transform: translate3d(100%, 0, 0) !important;
  }

  body.index-page .carousel-slide picture,
  body.index-page .carousel-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  body.index-page .carousel-dots {
    bottom: 22px !important;
  }
}

@media (max-width: 768px) {
  body.index-page {
    display: block !important;
  }

  body.index-page .fullpage-container {
    display: block !important;
    overflow: visible !important;
  }

  body.index-page footer {
    position: static !important;
    z-index: auto !important;
    width: 100% !important;
    margin-top: 0 !important;
    display: flex !important;
  }

  body.index-page .footer-inner {
    padding: 0 16px !important;
  }
}

@media (max-width: 768px) {
  body.index-page #section-home {
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
  }

  body.index-page .hero-scale-wrapper,
  body.index-page .hero-scale-target,
  body.index-page .carousel,
  body.index-page .carousel-track {
    display: block !important;
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
  }

  body.index-page .carousel-slide {
    margin: 0 !important;
  }

  body.index-page .carousel-dots {
    bottom: 16px !important;
  }
}

@media (max-width: 768px) {
  body.index-page #section-home {
    height: var(--app-height, 100dvh) !important;
    min-height: var(--app-height, 100dvh) !important;
  }

  body.index-page .hero-scale-wrapper,
  body.index-page .hero-scale-target,
  body.index-page .carousel,
  body.index-page .carousel-track {
    height: var(--app-height, 100dvh) !important;
    min-height: var(--app-height, 100dvh) !important;
  }
}

@media (max-width: 768px) {
  body.index-page #section-home {
    width: 100vw !important;
    height: var(--app-height, 100dvh) !important;
    min-height: var(--app-height, 100dvh) !important;
    max-height: var(--app-height, 100dvh) !important;
    overflow: hidden !important;
  }

  body.index-page .hero-scale-wrapper,
  body.index-page .hero-scale-target,
  body.index-page .carousel,
  body.index-page .carousel-track,
  body.index-page .carousel-slide,
  body.index-page .carousel-slide picture,
  body.index-page .carousel-slide img {
    width: 100vw !important;
    max-width: none !important;
    height: var(--app-height, 100dvh) !important;
    min-height: var(--app-height, 100dvh) !important;
    max-height: var(--app-height, 100dvh) !important;
  }

  body.index-page .carousel {
    justify-items: stretch !important;
  }

  body.index-page .carousel-slide {
    inset: 0 !important;
  }

  body.index-page .carousel-dots {
    bottom: 18px !important;
    z-index: 20 !important;
  }
}

@media (max-width: 768px) {
  body.index-page {
    padding-top: 0 !important;
  }

  body.index-page .fullpage-container {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  body.index-page #section-home {
    position: relative !important;
    width: 100% !important;
    height: var(--app-height, 100dvh) !important;
    min-height: var(--app-height, 100dvh) !important;
    max-height: var(--app-height, 100dvh) !important;
    overflow: hidden !important;
  }

  body.index-page .hero-scale-wrapper,
  body.index-page .hero-scale-target,
  body.index-page .carousel,
  body.index-page .carousel-track {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  body.index-page .carousel-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
  }

  body.index-page .carousel-slide.active {
    transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
  }

  body.index-page .carousel-slide.prev {
    transform: translate3d(-100%, 0, 0) !important;
  }

  body.index-page .carousel-slide.next {
    transform: translate3d(100%, 0, 0) !important;
  }

  body.index-page .carousel-slide picture,
  body.index-page .carousel-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover !important;
  }

  body.index-page .carousel-dots {
    bottom: 16px !important;
    z-index: 20 !important;
  }

  .collection-block {
    width: 100vw !important;
    max-width: none !important;
    margin: 0 0 36px !important;
    padding: 10px 0 0 !important;
    gap: 10px !important;
  }

  .collection-header,
  .collection-dots,
  .credits-wrap,
  .home-video-wrap {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
  }

  .collection-strip {
    gap: 10px !important;
    padding: 4px max(12px, 12.5vw) !important;
  }

  .collection-card {
    flex-basis: 75vw !important;
  }
}

/* Restored mobile/about/contact/works/index adjustments */
.about-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.about-links a {
  color: #2f3e51;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
}

.contact-social {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 54px;
  align-items: start;
}

.contact-social a,
.contact-social span {
  color: #2f3e51;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-social a:hover {
  border-bottom-color: #111;
}

@media (max-width: 860px) {
  .contact-page {
    grid-template-columns: 1fr;
    padding: 90px 28px 110px;
    gap: 50px;
  }

  .contact-form {
    order: 2;
  }

  .contact-visual {
    order: 1;
  }

  .contact-visual img {
    max-height: 520px;
  }
}

@media (max-width: 768px) {
  body:not(.index-page) {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }

  body:not(.index-page) main {
    flex: 1 0 auto;
  }

  body:not(.index-page) footer {
    margin-top: auto !important;
    position: static !important;
    z-index: auto !important;
    padding: 14px 0 !important;
  }

  .page-works .filters {
    margin: 0 auto 8px !important;
    padding: 0 10px 7px !important;
    justify-content: center !important;
  }

  .page-works .filter-buttons {
    width: auto !important;
    max-width: 100% !important;
    gap: 11px !important;
    justify-content: center !important;
  }

  .page-works .filters button {
    font-size: 15px !important;
    padding-bottom: 6px !important;
  }

  .page-works .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 0 !important;
    column-gap: 6px !important;
    padding: 12px 10px 24px !important;
  }

  body.page-works.works-expanded .grid .work-item:nth-of-type(n + 3) {
    margin-top: -92px !important;
  }

  body.page-works.works-expanded .grid .work-item:nth-of-type(n + 4) {
    margin-top: -92px !important;
  }

  body.page-works footer {
    margin-top: auto !important;
  }

  footer {
    padding: 14px 0 !important;
  }

  .footer-inner {
    padding: 0 16px !important;
  }

  body.index-page {
    padding-top: 0 !important;
  }

  body.index-page .fullpage-container {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  body.index-page #section-home {
    position: relative !important;
    width: 100% !important;
    height: var(--app-height, 100dvh) !important;
    min-height: var(--app-height, 100dvh) !important;
    max-height: var(--app-height, 100dvh) !important;
    overflow: hidden !important;
  }

  body.index-page .hero-scale-wrapper,
  body.index-page .hero-scale-target,
  body.index-page .carousel,
  body.index-page .carousel-track {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  body.index-page .carousel-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
  }

  body.index-page .carousel-slide.active {
    transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
  }

  body.index-page .carousel-slide.prev {
    transform: translate3d(-100%, 0, 0) !important;
  }

  body.index-page .carousel-slide.next {
    transform: translate3d(100%, 0, 0) !important;
  }

  body.index-page .carousel-slide picture,
  body.index-page .carousel-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover !important;
  }

  body.index-page .carousel-dots {
    bottom: 16px !important;
    z-index: 20 !important;
  }

  .collection-block {
    width: 100vw !important;
    max-width: none !important;
    margin: 0 0 36px !important;
    padding: 10px 0 0 !important;
    gap: 10px !important;
  }

  .collection-header,
  .collection-dots,
  .credits-wrap,
  .home-video-wrap {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
  }

  .collection-strip {
    gap: 10px !important;
    padding: 4px 0 4px 12px !important;
  }

  .collection-card {
    flex-basis: 75vw !important;
  }
}

@media (max-width: 768px) {
  body.index-page .home-video-wrap {
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.index-page .home-video-frame {
    padding-top: 8px !important;
  }

  body.index-page .credits-wrap {
    width: 100% !important;
    padding: 0 12px !important;
  }

  body.index-page .credits-marquee {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 24px !important;
    font-size: 0.78rem !important;
    line-height: 1.5 !important;
  }

  body.index-page .credits-column {
    gap: 8px !important;
  }
}

@media (max-width: 768px) {
  .mobile-nav {
    padding: 56px 20px 40px !important;
  }

  .mobile-nav .mobile-nav-close,
  .mobile-nav > .logo,
  .mobile-nav > .logo-link {
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .mobile-nav {
    justify-content: flex-start !important;
    align-items: center !important;
    padding-top: 28px !important;
    gap: 10px !important;
  }

  .mobile-nav a:first-of-type {
    margin-top: 18px !important;
  }
}

@media (max-width: 768px) {
  .mobile-header .hamburger {
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 768px) {
  .mobile-header .hamburger {
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

@media (max-width: 768px) {
  .mobile-nav {
    display: flex !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-10px) scale(0.985) !important;
    transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.38s ease !important;
    will-change: opacity, transform;
  }

  .mobile-nav.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }

  .mobile-nav a {
    opacity: 0 !important;
    transform: translateY(12px) !important;
    transition: opacity 0.34s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .mobile-nav.active a {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .mobile-nav.active a:nth-child(1) { transition-delay: 0.04s !important; }
  .mobile-nav.active a:nth-child(2) { transition-delay: 0.07s !important; }
  .mobile-nav.active a:nth-child(3) { transition-delay: 0.10s !important; }
  .mobile-nav.active a:nth-child(4) { transition-delay: 0.13s !important; }
  .mobile-nav.active a:nth-child(5) { transition-delay: 0.16s !important; }
  .mobile-nav.active a:nth-child(6) { transition-delay: 0.19s !important; }
}

@media (max-width: 768px) {
  .mobile-nav {
    transition: opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1), transform 0.66s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.52s ease !important;
  }

  .mobile-nav a {
    transition: opacity 0.46s ease, transform 0.58s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }

  .mobile-nav.active a:nth-child(1) { transition-delay: 0.06s !important; }
  .mobile-nav.active a:nth-child(2) { transition-delay: 0.10s !important; }
  .mobile-nav.active a:nth-child(3) { transition-delay: 0.14s !important; }
  .mobile-nav.active a:nth-child(4) { transition-delay: 0.18s !important; }
  .mobile-nav.active a:nth-child(5) { transition-delay: 0.22s !important; }
  .mobile-nav.active a:nth-child(6) { transition-delay: 0.26s !important; }
}

.site-header,
.mobile-header {
  transition: opacity 0.42s ease !important;
}

html.nav-fade-pending .site-header,
html.nav-fade-pending .mobile-header,
body.content-fade-ready .site-header,
body.content-fade-ready .mobile-header {
  opacity: 0 !important;
}

/* Prevent transient header divider during page transition */
html.nav-fade-pending .site-header,
html.nav-fade-pending .mobile-header,
body.content-fade-ready .site-header,
body.content-fade-ready .mobile-header,
body.content-fade-out .site-header,
body.content-fade-out .mobile-header,
body.page-content-fade-ready .site-header,
body.page-content-fade-ready .mobile-header,
body.page-content-fade-out .site-header,
body.page-content-fade-out .mobile-header {
  border-bottom: 0 !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}

body.content-fade-in .site-header,
body.content-fade-in .mobile-header {
  opacity: 1 !important;
}

html.nav-fade-pending body.index-page .site-header,
html.nav-fade-pending body.index-page .mobile-header,
html.nav-fade-pending body.index-page #section-home,
body.content-fade-ready.index-page .site-header,
body.content-fade-ready.index-page .mobile-header,
body.content-fade-ready.index-page #section-home {
  opacity: 0 !important;
}

body.index-page .site-header,
body.index-page .mobile-header,
body.index-page #section-home {
  transition: opacity 0.48s ease !important;
}

body.content-fade-in.index-page .site-header,
body.content-fade-in.index-page .mobile-header,
body.content-fade-in.index-page #section-home {
  opacity: 1 !important;
}

body.page-content-fade-in.index-page .site-header,
body.page-content-fade-in.index-page .mobile-header,
body.page-content-fade-in.index-page #section-home {
  opacity: 1 !important;
}

html.nav-fade-pending body.index-page .site-header,
html.nav-fade-pending body.index-page .mobile-header,
html.nav-fade-pending body.index-page #section-home,
body.content-fade-ready.index-page .site-header,
body.content-fade-ready.index-page .mobile-header,
body.content-fade-ready.index-page #section-home {
  opacity: 0 !important;
  visibility: hidden !important;
}

body.content-fade-in.index-page .site-header,
body.content-fade-in.index-page .mobile-header,
body.content-fade-in.index-page #section-home {
  opacity: 1 !important;
  visibility: visible !important;
}

body.page-content-fade-in.index-page .site-header,
body.page-content-fade-in.index-page .mobile-header,
body.page-content-fade-in.index-page #section-home {
  opacity: 1 !important;
  visibility: visible !important;
}

body.index-page:not(.content-fade-in) .site-header,
body.index-page:not(.content-fade-in) .mobile-header,
body.index-page:not(.content-fade-in) #section-home {
  opacity: 0 !important;
  visibility: hidden !important;
}

body.index-page.content-fade-in .site-header,
body.index-page.content-fade-in .mobile-header,
body.index-page.content-fade-in #section-home {
  opacity: 1 !important;
  visibility: visible !important;
}

body.index-page.page-content-fade-in .site-header,
body.index-page.page-content-fade-in .mobile-header,
body.index-page.page-content-fade-in #section-home {
  opacity: 1 !important;
  visibility: visible !important;
}

body:not(.index-page) .site-header,
body:not(.index-page) .mobile-header,
html.nav-fade-pending body:not(.index-page) .site-header,
html.nav-fade-pending body:not(.index-page) .mobile-header,
body:not(.index-page).content-fade-ready .site-header,
body:not(.index-page).content-fade-ready .mobile-header,
body:not(.index-page).content-fade-out .site-header,
body:not(.index-page).content-fade-out .mobile-header,
body:not(.index-page).content-fade-in .site-header,
body:not(.index-page).content-fade-in .mobile-header,
body:not(.index-page).page-content-fade-ready .site-header,
body:not(.index-page).page-content-fade-ready .mobile-header,
body:not(.index-page).page-content-fade-out .site-header,
body:not(.index-page).page-content-fade-out .mobile-header,
body:not(.index-page).page-content-fade-in .site-header,
body:not(.index-page).page-content-fade-in .mobile-header {
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
  animation: none !important;
}

.logo-overlay {
  transition: opacity 0.82s ease 0.08s !important;
}

.logo-overlay img {
  transition: transform 0.9s ease, opacity 0.9s ease !important;
}

body,
body::after,
.site-header,
.mobile-header,
body.index-page #section-home {
  transition-duration: 0.72s !important;
}

body {
  transition: opacity 1.05s ease !important;
}

body::after {
  transition: opacity 1.05s ease !important;
}

.logo-overlay {
  transition: opacity 1.15s ease 0s !important;
}

.logo-overlay img {
  transition: transform 1.2s ease, opacity 1.2s ease !important;
}

.site-header,
.mobile-header,
body.index-page #section-home {
  transition: opacity 0.95s ease, visibility 0.95s ease !important;
}

.logo-overlay {
  transition: opacity 0.42s ease 0s !important;
}

.logo-overlay img {
  transition: transform 0.48s ease, opacity 0.48s ease !important;
}

.logo-overlay.hide {
  transition: opacity 1.18s ease !important;
}

.logo-overlay.hide img,
.logo-overlay.hide .logo-overlay img {
  transition: transform 1.18s ease, opacity 1.18s ease !important;
}

html.index-transition-pending body.index-page .site-header,
html.index-transition-pending body.index-page .mobile-header,
html.index-transition-pending body.index-page #section-home,
html.index-transition-pending body.index-page #section-red,
html.index-transition-pending body.index-page .home-feed-section,
html.index-transition-pending body.index-page .home-video-section,
html.index-transition-pending body.index-page .credits-section,
html.index-transition-pending body.index-page footer {
  opacity: 0 !important;
  visibility: hidden !important;
}

body.content-fade-out,
body.content-fade-out::after {
  transition-duration: 1.18s !important;
}

.logo-overlay.hide {
  transition: opacity 0.78s ease !important;
}

.logo-overlay.hide img,
.logo-overlay.hide .logo-overlay img {
  transition: transform 0.78s ease, opacity 0.78s ease !important;
}

body.content-fade-out,
body.content-fade-out::after {
  transition-duration: 0.72s !important;
}

.logo-overlay.hide {
  transition: opacity 1.02s ease !important;
}

.logo-overlay.hide img,
.logo-overlay.hide .logo-overlay img {
  transition: transform 1.02s ease, opacity 1.02s ease !important;
}

body.index-page .site-header,
body.index-page .mobile-header,
body.index-page #section-home,
body.index-page #section-red,
body.index-page .home-feed-section,
body.index-page .home-video-section,
body.index-page .credits-section,
body.index-page footer {
  opacity: 1 !important;
  visibility: visible !important;
}

body {
  transition: opacity 0.72s ease !important;
}

body::after {
  transition: opacity 0.72s ease !important;
}

body.content-fade-out,
body.content-fade-out::after {
  transition-duration: 0.72s !important;
}

body {
  transition: opacity 0.9s ease !important;
}

body::after {
  transition: opacity 0.9s ease !important;
}

body.content-fade-out,
body.content-fade-out::after {
  transition-duration: 0.9s !important;
}

@media (max-width: 768px) {
  body.page-works.works-expanded .grid .work-item:nth-of-type(n + 3) {
    margin-top: -92px !important;
  }

  body.page-works.works-expanded .grid .work-item:nth-of-type(n + 4) {
    margin-top: -92px !important;
  }
}

@media (max-width: 768px) {
  body.page-works.works-expanded .grid .work-item:nth-of-type(n + 3),
  body.page-works.works-expanded .grid .work-item:nth-of-type(n + 4) {
    margin-top: -135px !important;
  }
}

@media (max-width: 768px) {
  body.page-works.works-collapsed .grid .work-item.work-folder-main::before {
    box-shadow:
      6px -5px 0 rgba(255,255,255,0.88),
      12px -10px 0 rgba(255,255,255,0.7) !important;
    opacity: 0.22 !important;
  }

  body.page-works.works-collapsed .grid .work-item.work-folder-main:hover::before,
  body.page-works.works-collapsed .grid .work-item.work-folder-main:focus-visible::before {
    transform: translate(9px, -8px) rotate(2.2deg) !important;
    box-shadow:
      9px -7px 0 rgba(255,255,255,0.9),
      18px -14px 0 rgba(255,255,255,0.76) !important;
    opacity: 0.42 !important;
  }
}

@media (max-width: 768px) {
  .mobile-nav {
    padding-top: 52px !important;
  }

  .mobile-nav a:first-of-type {
    margin-top: 36px !important;
  }
}

@media (min-width: 769px) {
  html.desktop-content-transition body,
  html.desktop-content-transition.nav-fade-pending body,
  body.desktop-content-transition.content-fade-ready,
  body.desktop-content-transition.content-fade-in,
  body.desktop-content-transition.content-fade-out {
    opacity: 1 !important;
  }

  html.desktop-content-transition body::after {
    opacity: 0 !important;
  }

  html.desktop-content-transition .site-header,
  html.desktop-content-transition .desktop-header,
  html.desktop-content-transition .mobile-header {
    opacity: 1 !important;
    visibility: visible !important;
  }

  html.desktop-content-transition main,
  html.desktop-content-transition footer,
  html.desktop-content-transition .page-works .filters {
    transition: opacity 0.72s ease !important;
  }

  body.desktop-content-transition.content-fade-ready main,
  body.desktop-content-transition.content-fade-ready footer,
  body.desktop-content-transition.content-fade-ready.page-works .filters,
  body.desktop-content-transition.content-fade-out main,
  body.desktop-content-transition.content-fade-out footer,
  body.desktop-content-transition.content-fade-out.page-works .filters {
    opacity: 0 !important;
  }

  body.desktop-content-transition.content-fade-in main,
  body.desktop-content-transition.content-fade-in footer,
  body.desktop-content-transition.content-fade-in.page-works .filters {
    opacity: 1 !important;
  }
}

@media (min-width: 769px) {
  html.desktop-content-transition .site-header,
  html.desktop-content-transition .desktop-header,
  html.desktop-content-transition .desktop-nav,
  html.desktop-content-transition .desktop-header .logo,
  html.desktop-content-transition .desktop-header .logo a,
  html.desktop-content-transition .desktop-header .logo img {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
  }

  body.desktop-content-transition.content-fade-ready .site-header,
  body.desktop-content-transition.content-fade-out .site-header,
  html.desktop-content-transition.nav-fade-pending .site-header,
  body.desktop-content-transition.overlay-playing .site-header {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

@media (min-width: 769px) {
  html:not(.full-page-transition).nav-fade-pending .site-header,
  html:not(.full-page-transition).nav-fade-pending .desktop-header,
  html:not(.full-page-transition).nav-fade-pending .desktop-nav,
  html:not(.full-page-transition).nav-fade-pending body.index-page .site-header,
  body:not(.full-page-transition).content-fade-ready .site-header,
  body:not(.full-page-transition).content-fade-ready .desktop-header,
  body:not(.full-page-transition).content-fade-ready .desktop-nav,
  body:not(.full-page-transition).content-fade-ready.index-page .site-header,
  body:not(.full-page-transition).content-fade-ready.index-page .desktop-header {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

.page-works .filters,
.page-works .grid {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.page-works .filters.is-filter-fading-out,
.page-works .grid.is-filter-fading-out {
  opacity: 0;
  transform: translateY(8px);
}

.page-works .filters.is-filter-fading-in,
.page-works .grid.is-filter-fading-in {
  opacity: 1;
  transform: translateY(0);
}

body.page-works.content-fade-ready .filters,
body.page-works.content-fade-ready .grid,
body.page-works.content-fade-ready .work-item,
body.page-works.content-fade-ready .work-item img,
body.page-works.content-fade-out .filters,
body.page-works.content-fade-out .grid,
body.page-works.content-fade-out .work-item,
body.page-works.content-fade-out .work-item img,
body.page-works.content-fade-in .filters,
body.page-works.content-fade-in .grid,
body.page-works.content-fade-in .work-item,
body.page-works.content-fade-in .work-item img,
body.page-works.page-content-fade-ready .filters,
body.page-works.page-content-fade-ready .grid,
body.page-works.page-content-fade-ready .work-item,
body.page-works.page-content-fade-ready .work-item img,
body.page-works.page-content-fade-out .filters,
body.page-works.page-content-fade-out .grid,
body.page-works.page-content-fade-out .work-item,
body.page-works.page-content-fade-out .work-item img,
body.page-works.page-content-fade-in .filters,
body.page-works.page-content-fade-in .grid,
body.page-works.page-content-fade-in .work-item,
body.page-works.page-content-fade-in .work-item img,
body.page-works.desktop-content-transition .filters,
body.page-works.desktop-content-transition .grid,
body.page-works.desktop-content-transition .work-item,
body.page-works.desktop-content-transition .work-item img,
body.page-works.mobile-content-transition .filters,
body.page-works.mobile-content-transition .grid,
body.page-works.mobile-content-transition .work-item,
body.page-works.mobile-content-transition .work-item img,
body.page-works.desktop-header-locked .filters,
body.page-works.desktop-header-locked .grid,
body.page-works.desktop-header-locked .work-item,
body.page-works.desktop-header-locked .work-item img,
body.page-works.mobile-header-locked .filters,
body.page-works.mobile-header-locked .grid,
body.page-works.mobile-header-locked .work-item,
body.page-works.mobile-header-locked .work-item img {
  transform: none !important;
  transition-property: opacity !important;
  animation: none !important;
}

@media (min-width: 769px) {
  html.desktop-content-transition body,
  html.desktop-content-transition.nav-fade-pending body,
  body.desktop-content-transition,
  body.desktop-content-transition.content-fade-ready,
  body.desktop-content-transition.content-fade-out,
  body.desktop-content-transition.content-fade-in {
    opacity: 1 !important;
  }

  html.desktop-content-transition body::after,
  body.desktop-content-transition::after,
  body.desktop-content-transition.content-fade-ready::after,
  body.desktop-content-transition.content-fade-out::after,
  body.desktop-content-transition.content-fade-in::after {
    opacity: 0 !important;
  }

  html.desktop-content-transition main,
  html.desktop-content-transition footer,
  html.desktop-content-transition .page-works .filters {
    opacity: 0 !important;
  }

  html.desktop-content-transition .site-header,
  html.desktop-content-transition .desktop-header,
  html.desktop-content-transition .desktop-nav,
  html.desktop-content-transition .desktop-header .logo,
  html.desktop-content-transition .desktop-header .logo a,
  html.desktop-content-transition .desktop-header .logo img {
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.desktop-content-transition.content-fade-in main,
  body.desktop-content-transition.content-fade-in footer,
  body.desktop-content-transition.content-fade-in.page-works .filters {
    opacity: 1 !important;
    transition: opacity 0.72s ease !important;
  }

  html.desktop-content-transition .site-header,
  html.desktop-content-transition .site-header *,
  body.desktop-content-transition .site-header,
  body.desktop-content-transition .site-header *,
  html:not(.full-page-transition).nav-fade-pending .site-header,
  html:not(.full-page-transition).nav-fade-pending .site-header *,
  body.desktop-content-transition.content-fade-ready .site-header,
  body.desktop-content-transition.content-fade-ready .site-header *,
  body.desktop-content-transition.content-fade-out .site-header,
  body.desktop-content-transition.content-fade-out .site-header *,
  body.desktop-content-transition.content-fade-in .site-header,
  body.desktop-content-transition.content-fade-in .site-header * {
    opacity: 1 !important;
    visibility: visible !important;
    transition-property: none !important;
  }

  html.desktop-content-transition .site-header {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    z-index: 10000 !important;
    transform: none !important;
    filter: none !important;
  }

  html.desktop-content-transition .desktop-header,
  html.desktop-content-transition .desktop-nav,
  html.desktop-content-transition .desktop-header .logo,
  html.desktop-content-transition .desktop-header .logo a,
  html.desktop-content-transition .desktop-header .logo img,
  html.desktop-content-transition .desktop-nav a,
  body.desktop-content-transition .desktop-header,
  body.desktop-content-transition .desktop-nav,
  body.desktop-content-transition .desktop-header .logo,
  body.desktop-content-transition .desktop-header .logo a,
  body.desktop-content-transition .desktop-header .logo img,
  body.desktop-content-transition .desktop-nav a {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (min-width: 769px) {
  html:not(.full-page-transition) .site-header,
  html:not(.full-page-transition) .site-header *,
  body:not(.full-page-transition) .site-header,
  body:not(.full-page-transition) .site-header * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }

  html:not(.full-page-transition) .site-header {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    z-index: 10000 !important;
    background: rgba(255,255,255,0.78) !important;
    backdrop-filter: blur(18px) saturate(1.1) !important;
  }
}

@media (min-width: 769px) {
  html.desktop-header-locked .site-header,
  html.desktop-header-locked .site-header *,
  body.desktop-header-locked .site-header,
  body.desktop-header-locked .site-header * {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  html.desktop-header-locked .site-header,
  body.desktop-header-locked .site-header {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    z-index: 10000 !important;
    pointer-events: auto !important;
    border-bottom-color: rgba(0,0,0,0.08) !important;
  }

  html.desktop-header-locked .page-works .filters,
  body.desktop-header-locked.page-works .filters {
    border-top-color: rgba(0,0,0,0.08) !important;
    border-bottom-color: rgba(0,0,0,0.08) !important;
  }
}

@media (max-width: 768px) {
  html.desktop-header-locked,
  body.desktop-header-locked,
  html.desktop-content-transition body,
  html.desktop-content-transition.nav-fade-pending body,
  body.desktop-content-transition,
  body.desktop-content-transition.content-fade-ready,
  body.desktop-content-transition.content-fade-out,
  body.desktop-content-transition.content-fade-in {
    opacity: 1 !important;
    transition: none !important;
  }

  html.desktop-content-transition body::after,
  body.desktop-content-transition::after,
  body.desktop-content-transition.content-fade-ready::after,
  body.desktop-content-transition.content-fade-out::after,
  body.desktop-content-transition.content-fade-in::after {
    opacity: 0 !important;
  }

  html.desktop-content-transition main,
  html.desktop-content-transition footer {
    opacity: 0 !important;
  }

  body.desktop-content-transition.content-fade-in main,
  body.desktop-content-transition.content-fade-in footer {
    opacity: 1 !important;
    transition: opacity 0.72s ease !important;
  }

  html.desktop-header-locked .site-header,
  html.desktop-header-locked .site-header *,
  html.desktop-header-locked .mobile-header,
  html.desktop-header-locked .mobile-header *,
  html.desktop-header-locked .page-works .filters,
  html.desktop-header-locked .page-works .filters *,
  body.desktop-header-locked .site-header,
  body.desktop-header-locked .site-header *,
  body.desktop-header-locked .mobile-header,
  body.desktop-header-locked .mobile-header *,
  body.desktop-header-locked.page-works .filters,
  body.desktop-header-locked.page-works .filters * {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  html.desktop-header-locked .site-header,
  body.desktop-header-locked .site-header {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    z-index: 10000 !important;
    pointer-events: auto !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    transform: translateZ(0) !important;
    will-change: transform, opacity !important;
    contain: paint !important;
  }

  html.desktop-header-locked .mobile-header,
  body.desktop-header-locked .mobile-header {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    z-index: 10001 !important;
    pointer-events: auto !important;
    background: rgba(255,255,255,0.78) !important;
    backdrop-filter: blur(18px) saturate(1.1) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.1) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    transform: translateZ(0) !important;
    will-change: transform, opacity !important;
    contain: paint !important;
  }

  .mobile-nav.nav-fading-out,
  .mobile-nav.nav-fading-out.active {
    opacity: 0 !important;
    visibility: visible !important;
    pointer-events: none !important;
    transform: translateY(0) scale(1) !important;
    transition: opacity 0.72s ease !important;
  }

  .mobile-nav.nav-fading-out a,
  .mobile-nav.nav-fading-out.active a {
    opacity: 0 !important;
    transform: translateY(6px) !important;
    transition: opacity 0.42s ease, transform 0.42s ease !important;
  }

  .mobile-nav {
    border-top: 1px solid rgba(0,0,0,0.08) !important;
  }

  html.desktop-content-transition .mobile-nav:not(.nav-fading-out),
  body.desktop-content-transition .mobile-nav:not(.nav-fading-out) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.desktop-header-locked.content-fade-out main,
  body.desktop-header-locked.content-fade-out footer,
  body.desktop-header-locked.content-fade-out .mobile-nav.nav-fading-out,
  body.desktop-header-locked.content-fade-ready main,
  body.desktop-header-locked.content-fade-ready footer {
    opacity: 0 !important;
    transition: opacity 0.72s ease !important;
  }

  body.desktop-header-locked.content-fade-in main,
  body.desktop-header-locked.content-fade-in footer {
    opacity: 1 !important;
    transition: opacity 0.72s ease !important;
  }

  body.desktop-header-locked.page-content-fade-ready main,
  body.desktop-header-locked.page-content-fade-ready footer,
  body.desktop-header-locked.page-content-fade-out main,
  body.desktop-header-locked.page-content-fade-out footer,
  body.desktop-header-locked.page-content-fade-out .mobile-nav.nav-fading-out {
    opacity: 0 !important;
    transition: opacity 0.72s ease !important;
  }

  body.desktop-header-locked.page-content-fade-in main,
  body.desktop-header-locked.page-content-fade-in footer {
    opacity: 1 !important;
    transition: opacity 0.72s ease !important;
  }

  .mobile-nav.instant-hide,
  .mobile-nav.instant-hide.active {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(0) scale(1) !important;
    transition: none !important;
  }

  .mobile-nav.instant-hide a,
  .mobile-nav.instant-hide.active a {
    opacity: 0 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 768px) {
  html.desktop-header-locked.nav-fade-pending .site-header,
  html.desktop-header-locked.nav-fade-pending .site-header *,
  html.desktop-header-locked.nav-fade-pending .mobile-header,
  html.desktop-header-locked.nav-fade-pending .mobile-header *,
  body.desktop-header-locked.page-content-fade-ready .site-header,
  body.desktop-header-locked.page-content-fade-ready .site-header *,
  body.desktop-header-locked.page-content-fade-ready .mobile-header,
  body.desktop-header-locked.page-content-fade-ready .mobile-header *,
  body.desktop-header-locked.page-content-fade-out .site-header,
  body.desktop-header-locked.page-content-fade-out .site-header *,
  body.desktop-header-locked.page-content-fade-out .mobile-header,
  body.desktop-header-locked.page-content-fade-out .mobile-header *,
  body.desktop-header-locked.page-content-fade-in .site-header,
  body.desktop-header-locked.page-content-fade-in .site-header *,
  body.desktop-header-locked.page-content-fade-in .mobile-header,
  body.desktop-header-locked.page-content-fade-in .mobile-header * {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  html.desktop-header-locked.nav-fade-pending .site-header,
  html.desktop-header-locked.nav-fade-pending .mobile-header,
  body.desktop-header-locked.page-content-fade-ready .site-header,
  body.desktop-header-locked.page-content-fade-ready .mobile-header,
  body.desktop-header-locked.page-content-fade-out .site-header,
  body.desktop-header-locked.page-content-fade-out .mobile-header,
  body.desktop-header-locked.page-content-fade-in .site-header,
  body.desktop-header-locked.page-content-fade-in .mobile-header {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    z-index: 10001 !important;
    background: rgba(255,255,255,0.78) !important;
    backdrop-filter: blur(18px) saturate(1.1) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.1) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    pointer-events: auto !important;
  }

  html.desktop-header-locked.nav-fade-pending .page-works .filters,
  html.desktop-header-locked.nav-fade-pending .page-works .filters *,
  body.desktop-header-locked.page-content-fade-ready.page-works .filters,
  body.desktop-header-locked.page-content-fade-ready.page-works .filters *,
  body.desktop-header-locked.page-content-fade-out.page-works .filters,
  body.desktop-header-locked.page-content-fade-out.page-works .filters *,
  body.desktop-header-locked.page-content-fade-in.page-works .filters,
  body.desktop-header-locked.page-content-fade-in.page-works .filters * {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 768px) {
  body.desktop-header-locked main,
  body.desktop-header-locked footer {
    transition: opacity 0.72s ease !important;
  }

  body.desktop-header-locked.page-content-fade-ready main,
  body.desktop-header-locked.page-content-fade-ready footer,
  body.desktop-header-locked.page-content-fade-out main,
  body.desktop-header-locked.page-content-fade-out footer {
    opacity: 0 !important;
  }

  body.desktop-header-locked.page-content-fade-in main,
  body.desktop-header-locked.page-content-fade-in footer {
    opacity: 1 !important;
  }

  body.desktop-header-locked.page-content-fade-ready .page-works .filters,
  body.desktop-header-locked.page-content-fade-out .page-works .filters,
  body.desktop-header-locked.page-content-fade-in .page-works .filters {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
  }

  body.desktop-header-locked .site-header,
  body.desktop-header-locked .mobile-header,
  body.desktop-header-locked .site-header *,
  body.desktop-header-locked .mobile-header * {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
  }

  body.desktop-header-locked.page-works .filters,
  body.desktop-header-locked.page-works .filters *,
  body.desktop-header-locked.page-content-fade-ready.page-works .filters,
  body.desktop-header-locked.page-content-fade-ready.page-works .filters *,
  body.desktop-header-locked.page-content-fade-out.page-works .filters,
  body.desktop-header-locked.page-content-fade-out.page-works .filters *,
  body.desktop-header-locked.page-content-fade-in.page-works .filters,
  body.desktop-header-locked.page-content-fade-in.page-works .filters * {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  body.desktop-header-locked .mobile-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 20000 !important;
    background: rgba(255,255,255,0.78) !important;
    backdrop-filter: blur(18px) saturate(1.1) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.1) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  }

  body.desktop-header-locked.page-works .filters {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 19999 !important;
    background: rgba(255,255,255,0.96) !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    margin: 0 !important;
  }

  body.desktop-header-locked.page-works main {
    padding-top: 48px !important;
  }
}
@media (max-width: 768px) {
  html.desktop-header-locked .site-header,
  html.desktop-header-locked .site-header *,
  html.desktop-header-locked .mobile-header,
  html.desktop-header-locked .mobile-header * {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  html.desktop-header-locked .mobile-header {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 40000 !important;
    background: rgba(255,255,255,0.78) !important;
    backdrop-filter: blur(18px) saturate(1.1) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.1) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    pointer-events: auto !important;
  }

  html.desktop-header-locked.page-works .filters,
  html.desktop-header-locked.page-works .filters * {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  html.desktop-header-locked.page-works .filters {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 39999 !important;
    background: rgba(255,255,255,0.96) !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    margin: 0 !important;
  }
}
@media (max-width: 768px) {
  html:not(.full-page-transition) .site-header,
  html:not(.full-page-transition) .site-header *,
  html:not(.full-page-transition) .mobile-header,
  html:not(.full-page-transition) .mobile-header *,
  body:not(.full-page-transition) .site-header,
  body:not(.full-page-transition) .site-header *,
  body:not(.full-page-transition) .mobile-header,
  body:not(.full-page-transition) .mobile-header * {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  html:not(.full-page-transition) .mobile-header,
  body:not(.full-page-transition) .mobile-header {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 50000 !important;
    background: rgba(255,255,255,0.78) !important;
    backdrop-filter: blur(18px) saturate(1.1) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.1) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    pointer-events: auto !important;
  }

  html:not(.full-page-transition) .mobile-header .hamburger,
  body:not(.full-page-transition) .mobile-header .hamburger,
  html:not(.full-page-transition) .mobile-header .mobile-cart,
  body:not(.full-page-transition) .mobile-header .mobile-cart {
    transform: translateY(-50%) !important;
  }

  html:not(.full-page-transition) .mobile-header .logo img,
  body:not(.full-page-transition) .mobile-header .logo img {
    transform: translateY(2px) !important;
  }

  html:not(.full-page-transition) .page-works .filters,
  html:not(.full-page-transition) .page-works .filters *,
  body:not(.full-page-transition).page-works .filters,
  body:not(.full-page-transition).page-works .filters * {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  html:not(.full-page-transition) .page-works .filters,
  body:not(.full-page-transition).page-works .filters {
    position: fixed !important;
    top: 56px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 49999 !important;
    background: rgba(255,255,255,0.96) !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    margin: 0 !important;
  }

  html.desktop-header-locked .mobile-nav,
  html.desktop-header-locked .mobile-nav *,
  body.desktop-header-locked .mobile-nav,
  body.desktop-header-locked .mobile-nav *,
  html.desktop-content-transition .mobile-nav,
  html.desktop-content-transition .mobile-nav *,
  body.desktop-content-transition .mobile-nav,
  body.desktop-content-transition .mobile-nav * {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: none !important;
  }

  html.desktop-header-locked .mobile-nav,
  body.desktop-header-locked .mobile-nav,
  html.desktop-content-transition .mobile-nav,
  body.desktop-content-transition .mobile-nav {
    transform: translateY(0) scale(1) !important;
  }

  .mobile-nav:not(.active):not(.nav-fading-out) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .mobile-nav.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 768px) {
  body.menu-open.page-works .filters,
  body.menu-open.page-works .filters *,
  .mobile-nav.active ~ .filters,
  .mobile-nav.active ~ .filters * {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  html.desktop-header-locked .mobile-header,
  body.desktop-header-locked .mobile-header {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 65000 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    pointer-events: auto !important;
  }

  html.desktop-header-locked .mobile-header *,
  body.desktop-header-locked .mobile-header * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  html.desktop-header-locked .page-works .filters,
  body.desktop-header-locked.page-works .filters {
    position: fixed !important;
    top: 56px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 64999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    margin: 0 !important;
    padding: 0 10px 4px !important;
    background: rgba(255,255,255,0.96) !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  html.desktop-header-locked .page-works .filter-buttons,
  body.desktop-header-locked.page-works .filter-buttons {
    width: 100% !important;
    gap: 11px !important;
    justify-content: center !important;
  }

  html.desktop-header-locked .page-works .filters button,
  body.desktop-header-locked.page-works .filters button {
    padding: 0 0 4px !important;
  }

  body.desktop-header-locked.page-works main {
    padding-top: 58px !important;
  }

  body.desktop-header-locked.page-works .grid {
    margin-top: 0 !important;
  }

  html.desktop-header-locked .mobile-nav,
  body.desktop-header-locked .mobile-nav,
  html.desktop-content-transition .mobile-nav,
  body.desktop-content-transition .mobile-nav {
    display: flex !important;
  }

  html.desktop-header-locked .mobile-nav:not(.active):not(.nav-fading-out),
  body.desktop-header-locked .mobile-nav:not(.active):not(.nav-fading-out),
  html.desktop-content-transition .mobile-nav:not(.active):not(.nav-fading-out),
  body.desktop-content-transition .mobile-nav:not(.active):not(.nav-fading-out),
  .mobile-nav.instant-hide,
  .mobile-nav.instant-hide.active {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(0) scale(1) !important;
    transition: none !important;
  }

  html.desktop-header-locked .mobile-nav.active,
  body.desktop-header-locked .mobile-nav.active,
  html.desktop-content-transition .mobile-nav.active,
  body.desktop-content-transition .mobile-nav.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }
}

@media (max-width: 768px) {
  body.page-works .filters {
    margin: 16px auto 8px !important;
    padding: 10px 18px 8px !important;
  }

  body.page-works .filter-buttons {
    width: 100% !important;
    justify-content: center !important;
    padding-left: 8px !important;
  }

  body.page-works .filters button {
    padding: 4px 0 8px !important;
  }

  body.page-works .grid {
    margin-top: -6px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  body.page-works .work-item:first-child {
    margin-left: 0 !important;
    margin-top: 40px !important;
  }

  body.page-works .work-item:nth-child(2) {
    margin-top: 40px !important;
  }

  body.desktop-header-locked.page-works .filters {
    top: 72px !important;
    padding: 10px 18px 8px !important;
  }

  body.desktop-header-locked.page-works main {
    padding-top: 82px !important;
  }

  body.desktop-header-locked.page-works .grid {
    margin-top: -6px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media (max-width: 768px) {
  .mobile-header {
    height: 60px !important;
    min-height: 60px !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
  }

  .mobile-header .hamburger {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
  }

  .mobile-header .logo {
    margin: 0 auto !important;
  }

  .mobile-header .logo img {
    height: 12px !important;
    transform: translateY(2px) !important;
  }

  html.mobile-content-transition .mobile-header,
  body.mobile-header-locked .mobile-header {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
  }

  html.mobile-content-transition .mobile-header,
  body.mobile-header-locked .mobile-header {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 65000 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  html.mobile-content-transition .mobile-header *,
  body.mobile-header-locked .mobile-header * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  html.mobile-content-transition .mobile-header .hamburger,
  body.mobile-header-locked .mobile-header .hamburger {
    transform: translateY(-50%) !important;
    transition: none !important;
  }

  html.mobile-content-transition .mobile-header .mobile-cart,
  body.mobile-header-locked .mobile-header .mobile-cart {
    transform: translateY(-50%) !important;
    transition: none !important;
  }

  html.mobile-content-transition .mobile-header .logo img,
  body.mobile-header-locked .mobile-header .logo img {
    transform: translateY(2px) !important;
    transition: none !important;
  }

  html.mobile-content-transition .mobile-header .hamburger span,
  body.mobile-header-locked .mobile-header .hamburger span {
    transition: all 0.3s ease !important;
  }

  html.mobile-content-transition .mobile-header .hamburger.active span:nth-child(1),
  body.mobile-header-locked .mobile-header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px) !important;
  }

  html.mobile-content-transition .mobile-header .hamburger.active span:nth-child(2),
  body.mobile-header-locked .mobile-header .hamburger.active span:nth-child(2) {
    opacity: 0 !important;
  }

  html.mobile-content-transition .mobile-header .hamburger.active span:nth-child(3),
  body.mobile-header-locked .mobile-header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
  }

  body.mobile-header-locked.page-content-fade-ready main,
  body.mobile-header-locked.page-content-fade-ready footer,
  body.mobile-header-locked.page-content-fade-out main,
  body.mobile-header-locked.page-content-fade-out footer {
    opacity: 0 !important;
    transition: opacity 0.56s ease !important;
  }

  body.mobile-header-locked.page-content-fade-in main,
  body.mobile-header-locked.page-content-fade-in footer {
    opacity: 1 !important;
    transition: opacity 0.56s ease !important;
  }

  html.mobile-content-transition .mobile-nav,
  html.mobile-content-transition .mobile-nav *,
  body.mobile-header-locked .mobile-nav.instant-hide,
  body.mobile-header-locked .mobile-nav.instant-hide * {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: none !important;
  }

  body.mobile-header-locked.page-works .filters,
  html.mobile-content-transition .page-works .filters {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 64999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    margin: 8px auto 4px !important;
    padding: 0 6px 4px !important;
  }

  .mobile-header .hamburger {
    transform: translateY(-50%) !important;
  }

  .mobile-header .hamburger span {
    transition: all 0.3s ease !important;
  }

  .mobile-header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px) !important;
  }

  .mobile-header .hamburger.active span:nth-child(2) {
    opacity: 0 !important;
  }

  .mobile-header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px) !important;
  }
}

@media (max-width: 768px) {
  body.page-works.works-collapsed .grid .work-item.work-folder-main::before,
  body.page-works.works-collapsed .grid .work-item.work-folder-main::after {
    content: none !important;
    display: none !important;
  }

  body.page-works.works-collapsed .grid .work-item.work-folder-main,
  body.page-works.works-collapsed .grid .work-item.work-folder-main:hover,
  body.page-works.works-collapsed .grid .work-item.work-folder-main:focus-visible {
    transform: none !important;
    box-shadow: none !important;
  }

  body.page-works.works-collapsed .grid .work-item.work-folder-main img,
  body.page-works.works-collapsed .grid .work-item.work-folder-main:hover img,
  body.page-works.works-collapsed .grid .work-item.work-folder-main:focus-visible img {
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 768px) {
  body.content-fade-out.full-page-transition .mobile-header,
  body.content-fade-out.full-page-transition .mobile-header *,
  body.content-fade-out.full-page-transition.page-works .filters,
  body.content-fade-out.full-page-transition.page-works .filters * {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: none !important;
    animation: none !important;
    pointer-events: none !important;
  }

  body.full-page-transition.page-works main,
  body.full-page-transition.page-works footer,
  body.full-page-transition.page-works .filters,
  body.full-page-transition.page-works .grid,
  body.full-page-transition.page-works .work-item,
  body.full-page-transition.page-works .work-item img,
  body.full-page-transition.page-works .filters *,
  body.full-page-transition.page-works .grid * {
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  html.full-page-transition .mobile-header,
  html.full-page-transition .mobile-header *,
  body.full-page-transition .mobile-header,
  body.full-page-transition .mobile-header *,
  body.full-page-transition.content-fade-in .mobile-header,
  body.full-page-transition.content-fade-in .mobile-header *,
  html.full-page-transition.page-works .filters,
  html.full-page-transition.page-works .filters *,
  body.full-page-transition.page-works .filters,
  body.full-page-transition.page-works .filters *,
  body.full-page-transition.content-fade-in.page-works .filters,
  body.full-page-transition.content-fade-in.page-works .filters * {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 768px) {
  body.page-works .filters,
  body.mobile-header-locked.page-works .filters,
  html.mobile-content-transition .page-works .filters,
  body.desktop-header-locked.page-works .filters,
  html.desktop-header-locked .page-works .filters,
  body.page-works.page-content-fade-ready .filters,
  body.page-works.page-content-fade-out .filters,
  body.page-works.page-content-fade-in .filters {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    margin: 14px auto 16px !important;
    padding: 8px 10px 10px !important;
    justify-content: center !important;
    border-top: none !important;
    background: transparent !important;
  }

  body.page-works .filter-buttons,
  body.mobile-header-locked.page-works .filter-buttons,
  body.desktop-header-locked.page-works .filter-buttons {
    width: auto !important;
    max-width: 100% !important;
    gap: 11px !important;
    justify-content: center !important;
    padding-left: 0 !important;
  }

  body.page-works .filters button,
  body.mobile-header-locked.page-works .filters button,
  body.desktop-header-locked.page-works .filters button {
    font-size: 15px !important;
    padding: 0 0 6px !important;
  }

  body.page-works .grid,
  body.mobile-header-locked.page-works .grid,
  body.desktop-header-locked.page-works .grid,
  body.page-works.page-content-fade-ready .grid,
  body.page-works.page-content-fade-out .grid,
  body.page-works.page-content-fade-in .grid {
    margin-top: 18px !important;
    padding: 12px 10px 24px !important;
    row-gap: 0 !important;
    column-gap: 6px !important;
  }

  body.page-works main.grid,
  body.mobile-header-locked.page-works main.grid,
  body.desktop-header-locked.page-works main.grid {
    padding-top: 18px !important;
  }

  body.page-works .work-item:first-child,
  body.page-works .work-item:nth-child(2),
  body.mobile-header-locked.page-works .work-item:first-child,
  body.mobile-header-locked.page-works .work-item:nth-child(2),
  body.desktop-header-locked.page-works .work-item:first-child,
  body.desktop-header-locked.page-works .work-item:nth-child(2) {
    margin-top: 0 !important;
  }

  /* Keep expanded folder rows tight on mobile */
  body.page-works.works-expanded .grid,
  body.mobile-header-locked.page-works.works-expanded .grid,
  body.desktop-header-locked.page-works.works-expanded .grid {
    row-gap: 0px !important;
    column-gap: 15px !important;
  }

  body.page-works.works-expanded .grid .work-item,
  body.mobile-header-locked.page-works.works-expanded .grid .work-item,
  body.desktop-header-locked.page-works.works-expanded .grid .work-item {
    margin-top: 0px !important;
  }

  body.page-works.works-expanded .grid .work-item:nth-of-type(n + 3),
  body.mobile-header-locked.page-works.works-expanded .grid .work-item:nth-of-type(n + 3),
  body.desktop-header-locked.page-works.works-expanded .grid .work-item:nth-of-type(n + 3) {
    margin-top: 0 !important;
  }
}

/* Final mobile override: keep expanded works cards evenly spaced with no overlap */
@media (max-width: 768px) {
  body.page-works.works-expanded main.grid,
  body.mobile-header-locked.page-works.works-expanded main.grid,
  body.desktop-header-locked.page-works.works-expanded main.grid {
    gap: 4px !important; /* row-gap == column-gap */
  }

  body.page-works.works-expanded main.grid .work-item,
  body.mobile-header-locked.page-works.works-expanded main.grid .work-item,
  body.desktop-header-locked.page-works.works-expanded main.grid .work-item {
    margin-top: 0 !important;
  }
}

/* Final desktop override: keep expanded works cards evenly spaced */
@media (min-width: 769px) {
  body.page-works.works-expanded main.grid {
    gap: 8px !important; /* row-gap == column-gap */
    align-content: start !important;
  }

  body.page-works.works-expanded main.grid .work-item,
  body.page-works.works-expanded main.grid .work-item:nth-of-type(n + 3),
  body.page-works.works-expanded main.grid .work-item:nth-of-type(n + 4) {
    margin-top: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    will-change: auto !important;
  }
}

/* Mobile header translucency tune */
@media (max-width: 768px) {
  .site-header,
  .mobile-header,
  html:not(.full-page-transition) .mobile-header,
  body:not(.full-page-transition) .mobile-header,
  html.desktop-header-locked .mobile-header,
  body.desktop-header-locked .mobile-header,
  html.mobile-content-transition .mobile-header,
  body.mobile-header-locked .mobile-header {
    background: rgba(255,255,255,0.62) !important;
  }
}

/* Desktop index carousel motion: soft cross-fade */
@media (min-width: 769px) {
  body.index-page {
    padding-top: 0 !important;
  }

  body.index-page #section-home {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
  }

  body.index-page .hero-scale-wrapper,
  body.index-page .hero-scale-target,
  body.index-page .carousel,
  body.index-page .carousel-track {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  body.index-page .carousel-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    transition: opacity 1.45s ease, transform 1.45s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
    transform: scale(1.018) !important;
    opacity: 0 !important;
  }

  body.index-page .carousel-slide.active {
    transform: scale(1) !important;
    opacity: 1 !important;
    z-index: 3 !important;
  }

  body.index-page .carousel-slide.prev {
    transform: scale(1.018) !important;
    opacity: 0 !important;
    z-index: 2 !important;
  }

  body.index-page .carousel-slide.next {
    transform: scale(1.018) !important;
    opacity: 0 !important;
    z-index: 2 !important;
  }

  body.index-page .carousel-slide picture,
  body.index-page .carousel-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover !important;
    transform: none !important;
    transition: none !important;
  }

  body.index-page .carousel-dots {
    bottom: 42px !important;
    z-index: 20 !important;
  }
}

/* Mobile index carousel motion: soft cross-fade */
@media (max-width: 768px) {
  body.index-page .carousel-slide {
    transition: opacity 1.45s ease, transform 1.45s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
    transform: scale(1.015) !important;
    opacity: 0 !important;
  }

  body.index-page .carousel-slide.active {
    transform: scale(1) !important;
    opacity: 1 !important;
    z-index: 3 !important;
  }

  body.index-page .carousel-slide.prev {
    transform: scale(1.015) !important;
    opacity: 0 !important;
    z-index: 2 !important;
  }

  body.index-page .carousel-slide.next {
    transform: scale(1.015) !important;
    opacity: 0 !important;
    z-index: 2 !important;
  }

  body.index-page .carousel-slide picture,
  body.index-page .carousel-slide img {
    transform: none !important;
    transition: none !important;
  }

  body.index-page .carousel-dot.is-active {
    width: 5px !important;
  }
}

@media (min-width: 769px) {
  body.index-page .carousel-dot.is-active {
    width: 6px !important;
  }
}

body.index-page .carousel-dot.is-active {
  height: 6px !important;
  border-radius: 50% !important;
  background: #737985 !important;
}

/* Fully transparent header */
.site-header,
.mobile-header {
  background: transparent !important;
  border-bottom-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

/* Remove any top white gap between header and hero on index */
body.index-page,
body.index-page main,
body.index-page .fullpage-container,
body.index-page #section-home,
body.index-page .hero-scale-wrapper,
body.index-page .hero-scale-target,
body.index-page .carousel,
body.index-page .carousel-track {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Index: never show header bar area, keep only floating nav/logo */
body.index-page .site-header,
html.nav-fade-pending body.index-page .site-header,
body.index-page.content-fade-ready .site-header,
body.index-page.content-fade-in .site-header,
body.index-page.page-content-fade-ready .site-header,
body.index-page.page-content-fade-in .site-header,
body.index-page .desktop-header,
body.index-page .mobile-header {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Final override: never show header divider while page-transition classes are active */
html.nav-fade-pending .site-header,
html.nav-fade-pending .mobile-header,
body.content-fade-ready .site-header,
body.content-fade-ready .mobile-header,
body.content-fade-out .site-header,
body.content-fade-out .mobile-header,
body.page-content-fade-ready .site-header,
body.page-content-fade-ready .mobile-header,
body.page-content-fade-out .site-header,
body.page-content-fade-out .mobile-header {
  border: 0 !important;
  border-bottom: 0 !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Blog/About: keep header divider fully disabled (including locked transition states) */
body.page-blog .site-header,
body.page-blog .mobile-header,
body.page-about .site-header,
body.page-about .mobile-header,
body.page-news .site-header,
body.page-news .mobile-header,
body.page-contact .site-header,
body.page-contact .mobile-header {
  border: 0 !important;
  border-bottom: 0 !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}
