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

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

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;
}

/* ?�블�?*/
@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;
  }
}
/* #endregion ===========================================*/
/* #region (?�터) */
  footer {
    margin-top: auto;
    display: flex;
    flex-direction: row;     /* ???�로(column) ??가�?row) */
    justify-content: center; /* 중앙 ?�렬 */
    align-items: center;
    gap: 12px;               /* 로고?�??�스???�이 간격 */
    padding: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #777;
    
  }

  /* ?�볼 로고 */
  .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;
  }
/* #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: #fff;
  border-bottom: 1px solid #eee;
}

/* ====== ?�스?�톱 ?�더 ====== */
.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: 20px;
  justify-content: center;
  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: 2px solid #000;
  padding-bottom: 6px;
}

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

/* Shop pill 버튼 (?�스?�톱) */
.desktop-nav .nav-shop {
  margin-left: 32px;
  padding: 8px 20px 8px 18px;
  border-radius: 999px;
  background: #f5f5f7;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
  color: #555;
  border: 1px solid transparent;
  transition: all 0.22s ease;
}

.desktop-nav .nav-shop:hover {
  background: #fff;
  border-color: #e0e0e0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  transform: translateY(-1.5px);
  color: #222;
}

.nav-shop-img {
  width: 17px;
  height: 17px;
}

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

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

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

    /* 모바일 헤더 */
   .mobile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 56px;
    padding: 12px 16px;
  }
 .mobile-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    height: 32px;
  }

   .mobile-header .logo img {
    display: block;
    height: 11px;
  }
   .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: center;
    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: 1.8px;
    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: center;
    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));
  gap: 26px;
  width: min(100%, 1400px);   /* ?�면보다 ?�어지지 ?�도�?*/
  margin: 0 auto;
  padding: 20px;
}


 .work-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.6s ease;
}
  .work-item[hidden] {
  display: none !important;
}


 .work-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
 
  .work-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 10px rgba(0, 0, 0, 0.12);
  }

  .work-item-body {
  padding:  12px 28px 24px;}


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

 .work-item-body h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
 }

 .work-item p {
  margin: 0;
  font-size: 0.75rem;  /* 본문 글???�기 축소 */
  color: #777;
  line-height: 1.55;
}



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

  .work-item {
    width: 100%;
  }
}

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

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

    .filter-buttons {
      display: flex;
      gap: 20px;
      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-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: sticky;
      top: 56px;            /* ?�더 바로 ?�래 */
      z-index: 900;
      max-width: 1200px;
      margin: 0 auto 16px;
      padding: 8px 12px;
      display: flex;
      justify-content: center;
      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: 0;
    pointer-events: none;
   }

   .page-works .filter-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  }
  .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: center; /* ?�체 �?중앙 ?�렬 */
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
  }

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

  .page-works .filters button {
    padding: 6px 8px;
    margin: 0;
    font-size: 14px;
  }
}
/* #endregion ===========================================*/
/* #region (메뉴??: About) */
  .about {
    max-width: 800px;
    margin: 40px auto;
    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: 40px auto;
    padding: 20px;
    text-align: center;
  }
/* #endregion ===========================================*/
/* #region (메뉴??: Work Detail) */
  .work-detail-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* 메인 ?��?지 + ?�네??*/
.work-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 24px;
  align-items: start;
}

.work-hero-media {
  height: 650px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.work-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.work-hero-thumbs {
  display: grid;
  gap: 16px;
}

.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, 1.4fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: start;
}

.work-description h1 {
  margin: 0 0 24px;
  font-size: 2.4rem;
}

.work-description p {
  margin: 0 0 24px;
  line-height: 1.7;
  color: #444;
}

.work-story {
  display: grid;
  gap: 20px;
  color: #555;
}

.work-meta {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.work-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.work-specs span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #868686;
}

.work-specs strong {
  display: block;
  font-size: 1rem;
  margin-top: 4px;
  color: #222;
}

/* 갤러�?*/
.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

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

.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: 60px 16px 80px;
    gap: 40px;
  }

  .work-hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-hero-media {
    height: 520px;
  }

  .work-hero-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 10px;
  }

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

  .work-description h1 {
    font-size: 2rem;
  }

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

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


/* #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: flex;
  justify-content: 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;
  }

  /* 중앙 메인 */
  .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 {
  position: absolute;
  bottom: 0px; /* ?��?지 ?�래�?*/
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 4px;
  background: #ddd;   /* 기본 ?�색 */
  border-radius: 2px;
  overflow: hidden;
  z-index: 10;   /* ?�라?�드보다 ?�에 보이?�록 */
  }

  /* 진행 ?�니메이??�?*/
  .carousel-progress-bar {
  height: 100%;
  width: 0%;
  background: #adadad;   /* 진한 ?�색 */
  transition: width linear;
  }

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

  /* ?�랙 ?�이 ???�무 ?��? ?�게 줄이�?*/
  .carousel-track {
    position: relative;
    height: 260px;   /* ?�요?�면 240~280 ?�이?�서 조절 가??*/
  }

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

    aspect-ratio: 16 / 11 !important;      /* 가�?비율 고정 */
    width: 72vw !important;
    max-width: 450px !important;
    height: auto !important;
    overflow: hidden;
    border-radius: 20px;
    opacity: 0;
  }

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

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

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

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

  /* 진행 바�? ?�라?�드 바로 ?�래쪽에 ?�치 */
  .carousel-progress {
    bottom: 60px !important;
    width: 110px !important;
  }

  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);
}

/* ?�션 콘텐�??�이?�업 */
.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 */
/* #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: center;   /* ?�는 공간?�?좌우�?분배 */
  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: center;
    gap: 20px;
  }
}

/* #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: 20px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

@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: 80px;
  background: #f9f9fb;
  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: 20px;
  }
  .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: center;
  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.95);
    backdrop-filter: blur(10px);
  }
  
  .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: center;
}

.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: center;
  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;
}
main, footer {
    transition: opacity 1.6s ease; /* ���� ���̵� ������ */
}
body.content-fade-out main,
body.content-fade-out footer {
  opacity: 0;
}

/* 모바일 네비/헤더 보정 */
@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: center;
    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: center;
    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: center;
    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: center;
    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: #fafafa;
  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;
}
.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: 1800;
}
.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: 1900;
  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 {
  justify-self: end;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 6px;
  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 0 4px;
  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: 1800;
}
.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: 1900;
  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-bottom: 10px; }
  .news-tabs button { padding: 8px 0; font-size: 14px; }
  .news-grid { gap: 18px; }
  .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 ===========================================*/


