/* =========================================================
   CL LIGHT — MAIN SKIN
   구조: 0.RESET  1.NAV  2.HERO/SLIDER  3.ICON GROUP & LANG  4.FOOTER  5.BACK TO TOP  6.RESPONSIVE
   ========================================================= */

/* ---------- 0. RESET ---------- */
:root {
  --bg: #ffffff;
  --ink: #161513;
  --muted: #78746b;
  --accent: #bb9857;
  --accent-bright: #d9bc7c;
  --line: #e9e6de;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Pretendard', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.serif {
  font-family: 'Pretendard', -apple-system, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 1. NAV ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 5vw;
  transition: all .4s var(--ease);
}

nav.on-light {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 5vw;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo .mark {
  width: 120px;
  height: auto;
  flex: none;
}

.logo .mark--dark {
  display: block;
  filter: brightness(0) invert(1);
}

.logo .mark--light {
  display: none;
}

nav.on-light .logo .mark--dark {
  display: none;
}

nav.on-light .logo .mark--light {
  display: block;
}

.navlinks {
  display: flex;
  gap: 42px;
  height: 100%;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item>a {
  font-size: 14.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  opacity: .92;
  position: relative;
  padding: 24px 10px;
  margin: -24px -10px;
  cursor: pointer;
  transition: color .45s var(--ease), letter-spacing .45s var(--ease), opacity .45s var(--ease);
}

nav.on-light .nav-item>a {
  color: var(--ink);
}

.nav-item:hover>a {
  letter-spacing: .16em;
  opacity: 1;
  color: var(--accent);
}

nav.on-light .nav-item:hover>a {
  color: var(--accent);
}

.nav-item>a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 19px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  transition: width .5s var(--ease);
  transform: translateX(-50%);
}

.nav-item:hover>a::after {
  width: calc(100% - 4px);
}

.nav-item.has-sub .submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 260px;
  max-width: 320px;
  background: #fdfcfa;
  border-top: 2px solid var(--accent);
  box-shadow: 0 40px 70px -24px rgba(20, 18, 14, .32), 0 12px 26px rgba(20, 18, 14, .09);
  padding: 22px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  z-index: 10;
}

.nav-item.has-sub:hover .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.submenu a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 32px 12px 36px;
  margin: 0;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: #5a5546;
  white-space: normal;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), color .3s var(--ease), padding-left .3s var(--ease);
}

.nav-item.has-sub:hover .submenu a {
  opacity: 1;
  transform: translateY(0);
}

.nav-item.has-sub:hover .submenu a:nth-child(1) {
  transition-delay: .06s;
}

.nav-item.has-sub:hover .submenu a:nth-child(2) {
  transition-delay: .10s;
}

.nav-item.has-sub:hover .submenu a:nth-child(3) {
  transition-delay: .14s;
}

.nav-item.has-sub:hover .submenu a:nth-child(4) {
  transition-delay: .18s;
}

.nav-item.has-sub:hover .submenu a:nth-child(5) {
  transition-delay: .22s;
}

.nav-item.has-sub:hover .submenu a:nth-child(6) {
  transition-delay: .26s;
}

.submenu a::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 1px;
  height: 0;
  background: var(--accent);
  transform: translateY(-50%);
  transition: height .35s var(--ease);
}

.submenu a:hover {
  color: var(--accent);
  padding-left: 42px;
  background: transparent;
}

.submenu a:hover::before {
  height: 15px;
}

.submenu a::after {
  display: none;
}

/* ---------- 2. HERO / SLIDER ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: #0a0908;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.6s var(--ease);
}

.slide .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 9s ease-in-out infinite alternate;
}

.slide video.bg {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  animation: none;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 9, 7, .3) 0%, rgba(10, 9, 7, .1) 40%, rgba(10, 9, 7, .64) 100%);
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.slide-copy {
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 600px;
  color: #fff;
}

h1.headline {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

h1.headline .line {
  display: block;
  overflow: hidden;
}

h1.headline .line span {
  display: block;
  transform: translateY(115%);
  transition: transform .85s var(--ease);
}

.slide.play h1.headline .line:nth-child(1) span {
  transition-delay: .1s;
  transform: translateY(0);
}

.slide.play h1.headline .line:nth-child(2) span {
  transition-delay: .25s;
  transform: translateY(0);
}

.slide-copy p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, .82);
  font-weight: 300;
  line-height: 1.7;
  max-width: 420px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.slide.play .slide-copy p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .45s;
}

.slide-copy .cta {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding-bottom: 6px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.slide.play .slide-copy .cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .6s;
}

.slide-copy .cta:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

.dots {
  position: absolute;
  bottom: 38px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 2px;
}

.dots button {
  width: 26px;
  height: 26px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dots button::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  transition: all .35s var(--ease);
}

.dots button.active::after {
  background: var(--accent-bright);
  width: 22px;
  border-radius: 4px;
}

.arrow {
  position: absolute;
  top: 50%;
  right: 5vw;
  transform: translateY(-50%);
  z-index: 3;
  width: 64px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, .45);
  transition: color .3s var(--ease);
}

.arrow svg {
  width: 32px;
  height: 54px;
}

.arrow:hover {
  color: #fff;
}

.scrollcue {
  position: absolute;
  left: 5vw;
  bottom: 38px;
  z-index: 3;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .8;
}

.scrollcue .chev {
  animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob {

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

  50% {
    transform: translateY(5px);
  }
}

/* ---------- 3. ICON GROUP & LANGUAGE MENU ---------- */
.icon-group {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.icon-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color .35s var(--ease), color .25s var(--ease);
  background: transparent;
}

.icon-btn svg {
  width: 23px;
  height: 23px;
}

nav.on-light .icon-btn {
  color: var(--ink);
}

.icon-btn:hover {
  background: rgba(255, 255, 255, .12);
}

nav.on-light .icon-btn:hover {
  background: rgba(20, 18, 14, .055);
}

.naver-n {
  font-weight: 700;
  font-size: 19px;
  color: currentColor;
  line-height: 1;
}

.lang-menu {
  position: absolute;
  top: 54px;
  right: 0;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(20, 18, 14, .28);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all .25s var(--ease);
  z-index: 5;
}

.lang-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-menu button {
  display: block;
  width: 100%;
  padding: 11px 22px;
  text-align: left;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .75);
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
}

.lang-menu button:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--accent-bright);
}

.lang-menu button.selected {
  color: var(--accent-bright);
  font-weight: 500;
}

/* ---------- 3-0. 전체메뉴(우측 슬라이드 패널) ---------- */
.cl-menu-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  /* 전체메뉴 전용 다크 팔레트 — 사이트 기본(아이보리+골드)과 대비되는 프리미엄 톤 */
  --menu-bg: #1e1a16;
  --menu-text: #f5f0e6;
  --menu-text-dim: #a89d89;
  --menu-text-dimmer: #8a8071;
  --menu-line: rgba(245, 240, 230, .12);
  --menu-hover-bg: rgba(217, 188, 124, .16);
}

.cl-menu-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.cl-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 12, .55);
  backdrop-filter: blur(3px);
}

.cl-menu-panel {
  position: relative;
  width: min(420px, 90vw);
  height: 100%;
  background: var(--menu-bg);
  box-shadow: -20px 0 60px rgba(0, 0, 0, .35);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 70px 0 40px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}

.cl-menu-modal.open .cl-menu-panel {
  transform: translateX(0);
}

.cl-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: none;
  color: var(--menu-text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}

.cl-menu-close svg {
  width: 18px;
  height: 18px;
}

.cl-menu-close:hover {
  background: rgba(245, 240, 230, .1);
  color: var(--menu-text);
}

.cl-menu-nav {
  padding: 0 32px;
  font-family: 'Pretendard', -apple-system, sans-serif;
}

.cl-menu-group {
  border-bottom: 1px solid var(--menu-line);
}

.cl-menu-group:first-child {
  border-top: 1px solid var(--menu-line);
}

/* 1차(Company/Products/Projects/Download/Contact): 배경 하이라이트 없이
   글자색 + 화살표 회전만으로 열림을 표시 — 2차부터 배경바로 강조를 키움 */
.cl-menu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Pretendard', -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--menu-text);
  transition: color .22s var(--ease);
}

.cl-menu-group.open > .cl-menu-toggle,
.cl-menu-toggle:hover {
  color: var(--accent-bright);
}

.cl-menu-chevron {
  width: 16px;
  height: 16px;
  color: var(--menu-text-dim);
  transition: transform .3s var(--ease), color .22s var(--ease);
  flex: none;
}

.cl-menu-group.open > .cl-menu-toggle .cl-menu-chevron,
.cl-menu-toggle:hover .cl-menu-chevron {
  color: var(--accent-bright);
}

.cl-menu-group.open > .cl-menu-toggle .cl-menu-chevron {
  transform: rotate(90deg);
}

.cl-menu-sub {
  overflow: hidden;
  max-height: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease), opacity .22s var(--ease), visibility 0s linear .4s;
}

/* 2차 아코디언이 안에서 얼마나 펼쳐지든 안 잘리도록, 열렸을 때는 넉넉한 상한값만 두고
   실제 높이는 내용에 맞춰 자동으로 줄어듦(= max-height는 상한일 뿐 고정폭이 아님) */
.cl-menu-group.open > .cl-menu-sub {
  max-height: 1400px;
  padding: 8px 0 20px;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

/* 2차(All/Indoor/Outdoor 등): 하위분류가 있든(cl-menu-toggle2) 없든(cl-menu-l1-link)
   같은 줄높이·글자크기·색으로 통일. 열림/호버 시 패널 끝까지 번지는 배경바로 강조 */
.cl-menu-l1-link,
.cl-menu-toggle2 {
  /* width:100%을 쓰면 margin:0 -32px로 넓힌 만큼 폭이 못 따라가서(퍼센트는 부모 컨텐츠폭 기준)
     오른쪽이 64px 짧아짐 — width는 auto로 두고 margin 음수값만으로 끝까지 번지게 함 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -32px;
  padding: 13px 20px 13px 40px;
  border: none;
  border-left: 3px solid transparent;
  background: none;
  cursor: pointer;
  font-family: 'Pretendard', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--menu-text-dim);
  text-decoration: none;
  text-align: left;
  transition: background-color .22s var(--ease), color .22s var(--ease), border-left-color .22s var(--ease);
}

.cl-menu-toggle2 {
  width: calc(100% + 64px);
}

.cl-menu-l1-link:hover,
.cl-menu-toggle2:hover,
.cl-menu-l1.open > .cl-menu-toggle2 {
  background: var(--menu-hover-bg);
  border-left-color: var(--accent-bright);
  color: var(--menu-text);
}

.cl-menu-toggle2 .cl-menu-chevron {
  width: 13px;
  height: 13px;
}

.cl-menu-l1.open > .cl-menu-toggle2 .cl-menu-chevron,
.cl-menu-toggle2:hover .cl-menu-chevron {
  color: var(--accent-bright);
  transform: rotate(90deg);
}

.cl-menu-l2 {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--ease);
  padding-left: 16px;
}

/* 3차(Semi-recessed 등 최하단): 배경 없이 텍스트 상태만으로 선택 표시 —
   평소엔 흐릿하게, 호버 시 볼드 + 밝은 색으로만 반응 */
.cl-menu-l2 a {
  display: flex;
  align-items: center;
  padding: 10px 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--menu-text-dimmer);
  text-decoration: none;
  transition: color .2s var(--ease), font-weight .2s var(--ease);
}

.cl-menu-l2 a:hover {
  color: var(--menu-text);
  font-weight: 700;
}

.cl-menu-flat {
  display: flex;
  align-items: center;
  padding: 22px 6px;
  border-bottom: 1px solid var(--menu-line);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--menu-text);
  text-decoration: none;
  font-family: 'Pretendard', -apple-system, sans-serif;
  transition: color .22s var(--ease);
}

.cl-menu-flat:hover {
  color: var(--accent-bright);
}

@media (max-width:480px) {
  .cl-menu-panel {
    padding-top: 60px;
  }

  .cl-menu-nav {
    padding: 0 20px;
  }

  .cl-menu-l1-link,
  .cl-menu-toggle2 {
    margin-inline: -20px;
    padding-left: 28px;
  }

  .cl-menu-toggle2 {
    width: calc(100% + 40px);
  }

  .cl-menu-flat {
    padding: 18px 20px;
  }
}

/* ---------- 3-1. 헤더 통합검색 모달 ---------- */
.cl-search-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}

.cl-search-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.cl-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 12, .55);
  backdrop-filter: blur(3px);
}

/* 패널(흰 박스)과 닫기버튼(박스 바깥, 어두운 백드롭 위)을 한 폭으로 같이 묶는 래퍼 */
.cl-search-shell {
  position: relative;
  width: min(920px, 94vw);
  margin-top: min(9vh, 90px);
}

.cl-search-panel {
  position: relative;
  width: 100%;
  height: fit-content;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  overflow: hidden;
  transform: translateY(-16px);
  transition: transform .35s var(--ease);
}

.cl-search-modal.open .cl-search-panel {
  transform: translateY(0);
}

/* 닫기버튼: 입력창 안이 아니라 패널 바깥(어두운 백드롭 위)에 떠 있게 — 더 크고 굵게 */
.cl-search-close {
  position: absolute;
  top: -54px;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}

.cl-search-close svg {
  width: 20px;
  height: 20px;
}

.cl-search-close:hover {
  background: rgba(255, 255, 255, .24);
  transform: rotate(90deg);
}

.cl-search-form {
  flex: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 22px 22px 28px;
  border-bottom: 1px solid var(--line);
}

.cl-search-input {
  flex: 1;
  min-width: 0;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
  font-family: 'Pretendard', -apple-system, sans-serif;
  font-size: 18px;
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
}

/* 진짜 원인: default.css/default_shop.css의 input[type=text]:focus{border:1px solid #558ab7 !important}
   가 이미 !important라서, 같은 !important끼리는 시(specificity)로 승부가 나는데
   그 규칙(속성+가상클래스+타입 선택자, 0-2-1)이 .cl-search-input:focus(0-2-0)보다 더 셌음 —
   그래서 outline만 안 없어지고 파란/회색 테두리가 계속 남아있었음.
   #searchInput은 id 선택자(1-0-0)라 저 규칙보다 무조건 세서 확실히 이김 */
#searchInput:focus,
#searchInput:focus-visible,
#searchInput:-webkit-autofill {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.cl-search-input::placeholder {
  color: var(--muted);
}

/* 검색(제출) 버튼: 입력창 왼쪽의 장식용 아이콘이 아니라, 실제로 누르면 전체 결과 페이지로 이동하는
   버튼이라 뒤(입력창 오른쪽 끝)로 옮김 */
.cl-search-go {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}

.cl-search-go svg {
  width: 19px;
  height: 19px;
}

.cl-search-go:hover {
  background: #f2f0eb;
  color: var(--accent);
}

.cl-search-results {
  overflow-y: auto;
  padding: 6px 0 20px;
}

.cl-search-hint,
.cl-search-empty {
  padding: 46px 26px;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
}

.cl-search-group {
  padding: 22px 26px 6px;
}

.cl-search-group + .cl-search-group {
  border-top: 1px solid var(--line);
}

.cl-search-group-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 14px;
}

/* 검색결과를 리스트가 아니라 실제 상품/프로젝트 화면과 같은 이미지 갤러리(그리드)로 보여줌 */
.cl-search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 22px 16px;
  padding-bottom: 6px;
}

.cl-search-card {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-decoration: none;
  color: var(--ink);
}

.cl-search-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 3px;
  overflow: hidden;
  background: #f1efe9;
}

.cl-search-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}

.cl-search-card:hover .cl-search-card-thumb img {
  transform: scale(1.06);
}

/* 외부링크(다른 사이트) 상품 카드 배지 — 목록 페이지의 .cl-product-ext와 같은 톤 */
.cl-search-card-ext {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
}

.cl-search-card-ext svg {
  width: 13px;
  height: 13px;
}

.cl-search-card-name {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.005em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color .25s var(--ease);
}

.cl-search-card:hover .cl-search-card-name {
  color: var(--accent);
}

@media (max-width:560px) {
  .cl-search-shell {
    width: 94vw;
    margin-top: 6vh;
  }

  .cl-search-close {
    top: -48px;
    width: 38px;
    height: 38px;
  }

  .cl-search-form {
    padding: 20px 16px 16px 20px;
  }

  .cl-search-group {
    padding: 18px 20px 4px;
  }

  .cl-search-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 18px 12px;
  }
}

/* ---------- 4. LIGHTING STORIES ---------- */
.cl-story {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: 96px 5vw 120px;
  background: #f6f5f2;
  color: var(--ink);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.cl-story-head {
  margin-bottom: 40px;
}

.cl-story-head h2 {
  font-size: clamp(36px, 3.6vw, 58px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
}

.cl-story-feature {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 2fr) minmax(360px, .72fr);
  min-height: 0;
  background: #1b1916;
  color: #fff;
}

.cl-story-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #111;
}

.cl-story-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cl-story-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .36));
  transition: background .4s var(--ease);
}

.cl-story-media:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .44));
}

.cl-story-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease), background .4s var(--ease);
}

.cl-story-play svg {
  width: 24px;
  fill: #fff;
}

.cl-story-media:hover .cl-story-play {
  background: rgba(255, 255, 255, .16);
  transform: translate(-50%, -50%) scale(1.08);
}

.cl-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 4vw, 64px);
}

.cl-story-copy h3 {
  margin-bottom: 32px;
  font-size: clamp(29px, 2.35vw, 42px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.04em;
}

.cl-story-desc {
  max-width: 410px;
  color: rgba(255, 255, 255, .64);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: -.025em;
}

.cl-story-line {
  display: block;
  overflow: hidden;
}

.cl-story-line > span {
  display: block;
}

.cl-story.is-motion-ready .cl-story-line > span,
.cl-story.is-motion-ready .cl-story-desc,
.cl-story.is-motion-ready .cl-story-link {
  opacity: 0;
  transform: translateY(24px);
}

.cl-story.is-visible .cl-story-line > span,
.cl-story.is-visible .cl-story-desc,
.cl-story.is-visible .cl-story-link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.cl-story.is-visible .cl-story-head .cl-story-line > span {
  transition-delay: .05s;
}

.cl-story.is-visible .cl-story-copy h3 .cl-story-line:nth-child(1) > span {
  transition-delay: .18s;
}

.cl-story.is-visible .cl-story-copy h3 .cl-story-line:nth-child(2) > span {
  transition-delay: .28s;
}

.cl-story.is-visible .cl-story-desc {
  transition-delay: .4s;
}

.cl-story.is-visible .cl-story-link {
  transition-delay: .52s;
}

.cl-story-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin-top: 48px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}

.cl-story-link svg {
  width: 18px;
  stroke: currentColor;
  stroke-width: 1.4;
}

.cl-story-link:hover {
  color: #d5ab65;
  border-color: #d5ab65;
}

/* ---------- 4.1 NEW PRODUCTS FULL SCREEN ---------- */
.cl-new-products {
  height: 100svh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 5vw 30px;
  overflow: hidden;
  background: #f6f5f2;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.cl-new-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  text-align: center;
}

.cl-new-head h2 {
  font-family: 'Pretendard', -apple-system, sans-serif;
  font-size: clamp(16px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .055em;
}

.cl-new-controls {
  position: absolute;
  right: 0;
  top: 50%;
  display: flex;
  gap: 9px;
  transform: translateY(-50%);
}

.cl-new-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid #d8d4cb;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}

.cl-new-controls button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.cl-new-controls svg {
  width: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
}

.cl-new-viewport {
  flex: none;
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.cl-new-track {
  height: auto;
  display: flex;
  gap: 28px;
  transition: transform .9s cubic-bezier(.19, 1, .22, 1);
  will-change: transform;
}

.cl-new-card {
  flex: 0 0 calc((100% - 84px) / 4);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cl-new-image {
  position: relative;
  flex: none;
  min-height: 0;
  display: block;
  overflow: hidden;
  background: #ebe9e4;
  aspect-ratio: 4 / 5;
  max-height: 54vh;
}

.cl-new-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .55s var(--ease), transform .7s var(--ease);
}

.cl-new-img2 {
  opacity: 0;
}

.cl-new-card:hover .cl-new-img1 {
  opacity: 0;
  transform: scale(1.025);
}

.cl-new-card:hover .cl-new-img2 {
  opacity: 1;
  transform: scale(1.025);
}

.cl-new-view {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 14px;
  background: rgba(20, 19, 17, .88);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}

.cl-new-card:hover .cl-new-view {
  opacity: 1;
  transform: translateY(0);
}

.cl-new-meta {
  display: block;
  padding-top: 17px;
}

.cl-new-meta strong {
  display: block;
}

.cl-new-meta strong {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.015em;
}

/* ---------- 4.2 FORMALIGHTING FULL SCREEN FILM ---------- */
.cl-story.cl-story-film {
  position: relative;
  display: block;
  height: 100svh;
  min-height: 640px;
  padding: 0;
  overflow: hidden;
  background: #0d0c0a;
}

.cl-story-film-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cl-story-film-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 7, 6, .7) 0%, rgba(8, 7, 6, .34) 48%, rgba(8, 7, 6, .08) 78%);
}

.cl-story-film-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 5vw;
  width: min(620px, 56vw);
  color: #fff;
  transform: translateY(-50%);
}

.cl-story-film-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.01em;
}

.cl-story-film-copy .cl-story-desc {
  max-width: 500px;
  color: rgba(255, 255, 255, .76);
}

.cl-story-film-copy .cl-story-link {
  margin-top: 36px;
}

.cl-story-film.is-motion-ready .cl-story-line > span {
  opacity: 1;
  transform: translateY(115%);
}

.cl-story-film.is-visible .cl-story-line > span {
  opacity: 1;
  transform: translateY(0);
  transition: transform .85s var(--ease);
}

.cl-story-film.is-visible .cl-story-film-copy h2 .cl-story-line:nth-child(1) > span {
  transition-delay: .1s;
}

.cl-story-film.is-visible .cl-story-film-copy h2 .cl-story-line:nth-child(2) > span {
  transition-delay: .25s;
}

.cl-story-film.is-motion-ready .cl-story-desc,
.cl-story-film.is-motion-ready .cl-story-link {
  transform: translateY(14px);
}

.cl-story-film.is-visible .cl-story-desc,
.cl-story-film.is-visible .cl-story-link {
  transform: translateY(0);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.cl-story-film.is-visible .cl-story-desc {
  transition-delay: .45s;
}

.cl-story-film.is-visible .cl-story-link {
  transition-delay: .6s;
}

/* ---------- 5. FOOTER ---------- */
footer {
  background: #fff;
  padding: 70px 5vw 34px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.foot-contact {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.fc-col h4 {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}

.fc-col p,
.fc-col a {
  display: block;
  font-size: 13.5px;
  color: #4a463c;
  line-height: 2;
}

.fc-col a:hover {
  color: var(--accent);
}

.foot-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 24px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 12px;
}

.foot-bottom .info {
  font-size: 11.5px;
  color: var(--muted);
}

.foot-auth-group {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* 헤더에 있던 인스타/네이버 아이콘을 여기(푸터 우측 끝)로 옮김 —
   margin-left:auto로 같은 줄(.foot-bottom) 안에서 오른쪽 끝까지 밀어냄 */
.foot-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.foot-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: transparent;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}

.foot-social-btn svg {
  width: 18px;
  height: 18px;
}

.foot-social-btn .naver-n {
  font-size: 15px;
}

.foot-social-btn:hover {
  background: #f2f0eb;
  color: var(--accent);
}

.foot-auth {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  opacity: .8;
  transition: opacity .3s var(--ease), color .3s var(--ease);
}

.foot-auth svg {
  width: 24px;
  height: 24px;
}

.foot-auth span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.foot-auth:hover {
  opacity: 1;
  color: var(--accent);
}

.foot-admin-home {
  gap: 6px;
}

.foot-admin-home svg {
  width: 18px;
  height: 18px;
}

.foot-admin-home span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
}

/* ---------- 6. BACK TO TOP ---------- */
.to-top {
  position: fixed;
  /* 푸터 우측 끝(.foot-social, 5vw 인셋)과 세로로 겹치지 않게 더 바깥(우측)으로 밀어냄 */
  right: 24px;
  bottom: 32px;
  z-index: 45;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #f2f0eb;
  color: #a6a196;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s var(--ease);
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:hover {
  background: #e8e4d9;
  color: #8a8577;
}

.to-top svg {
  width: 16px;
  height: 16px;
}

/* ---------- 7. RESPONSIVE ---------- */
@media (max-width:940px) {
  .navlinks {
    display: none;
  }
}

@media (max-width:700px) {
  html {
    scroll-snap-type: none;
  }

  .scrollcue {
    display: none;
  }

  .cl-story {
    display: block;
    min-height: 0;
    padding: 78px 20px 84px;
  }

  .cl-new-products {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    padding: 86px 20px 72px;
    overflow: hidden;
  }

  .cl-new-head {
    align-items: flex-end;
    margin-bottom: 26px;
    justify-content: flex-start;
    text-align: left;
  }

  .cl-new-controls {
    position: static;
    margin-left: auto;
    transform: none;
  }

  .cl-new-controls button {
    width: 38px;
    height: 38px;
  }

  .cl-new-viewport,
  .cl-new-track {
    height: auto;
  }

  .cl-new-viewport {
    padding: 0;
  }

  .cl-new-card {
    flex-basis: 82%;
  }

  .cl-new-image {
    flex: none;
    aspect-ratio: 3 / 4;
  }

  .cl-story.cl-story-film {
    height: 100svh;
    min-height: 620px;
    padding: 0;
  }

  .cl-story-film-copy {
    left: 20px;
    width: calc(100% - 40px);
  }

  .cl-story-film-copy h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .cl-story-head {
    display: block;
    margin-bottom: 28px;
  }

  .cl-story-feature {
    display: block;
    min-height: 0;
  }

  .cl-story-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .cl-story-play {
    width: 58px;
    height: 58px;
  }

  .cl-story-copy {
    padding: 42px 24px 48px;
  }

  .cl-story-copy h3 {
    margin-bottom: 24px;
  }

  .cl-story-link {
    margin-top: 34px;
  }
}
