/* ==========================================================================
   index2 — style2.css  (완전 독립 — reset.css + style2.css only)
   ========================================================================== */

html { scroll-behavior: smooth; }
em { font-style: normal; }

/* ==========================================================================
   MAIN VISUAL — 공통 구조
   ========================================================================== */
.main-visual {
  position: relative;
  width: 100%;
  height: 980px;
  overflow: hidden;
}
.mv-bg {
  position: absolute;
  inset: 0;
}
.mv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
}

/* 메인비주얼 슬라이드 — 활성 슬라이드 천천히 확대 */
.mv-bg .swiper-slide-active img {
  animation: mv-slide-zoom 7s ease-out forwards;
}
@keyframes mv-slide-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.mv-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,0.25);
}

/* 메인비주얼 슬라이더 페이지네이션 */
.mv-bg .swiper-pagination-bullet {
  background: var(--point-white);
  opacity: 0.5;
}
.mv-bg .swiper-pagination-bullet-active {
  opacity: 1;
}


/* mv2 텍스트 — w_custom 기반 수직 중앙 정렬 */
.main-visual.mv {
  display: flex;
  align-items: center;
}
.mv-txt {
  position: relative;
  z-index: 1;
  color: var(--point-white);
}
.mv-title {
  font-family: var(--font-ko);
  font-size: 70px;
  font-weight: 700;
  color: var(--point-white);
  line-height: 90px;
  letter-spacing: -0.02em;
}
.mv-desc {
  font-family: var(--font-ko);
  font-size: 24px;
  font-weight: 400;
  color: var(--point-white);
  line-height: 1.6;
  letter-spacing: -0.02em;
  margin-top: 48px;
}

/* 메인비주얼 슬라이드 컨트롤러 */
.mv-slide-ctrl {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 26px);
  margin-top: clamp(32px, 4.5vw, 64px);
}
.mv-slide-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--point-white);
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.25s;
}
.mv-slide-btn:hover {
  opacity: 1;
}
.mv-slide-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ko);
  font-size: 17px;
  font-weight: 600;
  color: var(--point-white);
  letter-spacing: 0.02em;
}
.mv-slide-sep,
.mv-slide-total {
  opacity: 0.55;
}
.mv-slide-toggle {
  margin-left: 4px;
}
.mv-slide-toggle .mv-slide-icon-play {
  display: none;
}
.mv-slide-toggle.is-paused .mv-slide-icon-pause {
  display: none;
}
.mv-slide-toggle.is-paused .mv-slide-icon-play {
  display: block;
}

@media (max-width: 1023px) {
  .main-visual { height: clamp(600px, 98vw, 980px); }
  .mv-title { font-size: clamp(36px, 7.5vw, 70px); line-height: 1.28; }
  .mv-desc  { font-size: clamp(16px, 2.6vw, 26px); margin-top: clamp(20px, 3vw, 48px); }
}
@media (max-width: 640px) {
  .main-visual { height: 100svh; min-height: 600px; }
}

/* ==========================================================================
   HEADER2
   ========================================================================== */
.site-header {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  pointer-events: none;
}
.header-nav {
  display: flex;
  align-items: center;
  background: var(--point-white);
  padding: 15px 40px 15px 20px;
  gap: 40px;
  pointer-events: auto;
  flex-shrink: 0;
}
.header-logo a {
  display: block;
  line-height: 0;
}
.header-logo img {
  height: 30px;
  width: auto;
}
.header-nav nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}
.header-nav nav ul li a {
  font-family: var(--font-ko);
  font-size: var(--title-17);
  font-weight: 600;
  color: var(--black-color01);
  letter-spacing: -0.04em;
  white-space: nowrap;
  transition: color 0.2s;
}
.header-nav nav ul li a:hover { color: var(--point-color01); }

.header-right {
  display: flex;
  align-items: stretch;
  gap: 0;
  pointer-events: auto;
}
.header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 320px;
  background: var(--point-color01);
  font-family: var(--font-ko);
  font-size: var(--title-17);
  font-weight: 500;
  color: var(--point-white);
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s;
}
.header-cta:hover { opacity: 0.88; }

/* 햄버거 버튼 — 기본 숨김 */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  flex-shrink: 0;
}
.header-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black-color01);
  transition: all 0.3s;
  transform-origin: center;
}
.header-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-hamburger.is-open span:nth-child(2) { opacity: 0; }
.header-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 메뉴 */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--point-white);
  z-index: 99;
  padding-top: 80px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.mobile-menu.is-open {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu ul {
  list-style: none;
  padding: 0 20px 24px;
}
.mobile-menu ul li {
  border-bottom: 1px solid var(--border-color03);
}
.mobile-menu ul li a {
  display: block;
  padding: 18px 4px;
  font-family: var(--font-ko);
  font-size: var(--title-16);
  font-weight: 600;
  color: var(--black-color01);
  letter-spacing: -0.03em;
}

@media (max-width: 1023px) {
  .site-header { top: 20px; }
  .header-nav { gap: clamp(24px, 4vw, 60px); padding: 12px clamp(24px, 5vw, 80px) 12px 20px; }
  .header-cta { width: clamp(160px, 22vw, 320px); font-size: clamp(14px, 1.6vw, 17px); }
  .header-nav nav ul { gap: clamp(20px, 3.5vw, 60px); }
  .header-nav nav ul li a { font-size: clamp(13px, 1.5vw, 17px); }
}
@media (max-width: 640px) {
  .site-header { top: 16px; }
  .header-inner { display: block; }
  .header-right { display: none; }
  .header-nav { width: 100%; justify-content: space-between; gap: 0; padding: 10px 12px; }
  .header-nav nav { display: none; }
  .header-hamburger { display: flex; margin-left: auto; }
  .mobile-menu { padding-top: 70px; }
}

/* MAIN VISUAL — mv2 variant */
.main-visual.mv .mv-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 100%);
  opacity: 0.2;
}

/* 버튼 시스템 — more_view (kossa-tokens 동일) */
.more_view {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: fit-content;
  min-width: clamp(120px, 17vw, 170px);
  padding: clamp(12px, 2.1vw, 16px) 20px;
  box-shadow: inset 0 0 0 1px var(--point-white);
  font-size: var(--title-20);
  font-weight: 500;
  color: var(--black-color00);
  line-height: 1.55;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.4s;
  text-decoration: none;
}
.more_view span {
  position: relative;
  font-size: max(15px, 90%);
  filter: var(--filter-white);
  transition: inherit;
}
.more_view::before {
  position: absolute;
  content: '';
  right: 0; bottom: 0;
  width: 12px; height: 12px;
  background: var(--point-white);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: inherit;
}
.more_view::after {
  display: inline-flex;
  content: '';
  width: 9px;
  aspect-ratio: 1;
  border: 1px solid var(--black-color00);
  border-radius: 1px;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  rotate: -45deg;
  margin-left: -9px;
  opacity: 0;
  box-sizing: border-box;
  transition: inherit;
}
@media (hover: hover) {
  .more_view:hover::before { width: 200%; height: 200%; }
  .more_view:hover::after  { opacity: 1; }
  .more_view:hover span    { filter: none; translate: -15px; }
}
.more_view.bgBk        { background: var(--black-color00); }
.more_view.bgBk::before,
.more_view.bgBk::after { display: none; }
.more_view.bgBk span   { filter: var(--filter-white); }
.more_view.bgBk:hover        { background: var(--point-color01); }
.more_view.bgBk:hover span   { filter: var(--filter-white); translate: 0; }

.more_view.bk  { box-shadow: inset 0 0 0 1px var(--black-color00); }
.more_view.bk span { filter: none; }
.more_view.bk::before { background: var(--black-color00); }
.more_view.bk::after  { filter: var(--filter-white); }
.more_view.bk:hover span { filter: var(--filter-white); }

.more_view.bdGr { background: var(--point-white); box-shadow: inset 0 0 0 1px var(--border-color01); }
.more_view.bdGr span { filter: none; }
.more_view.bdGr::before, .more_view.bdGr::after { display: none; }
.more_view.bdGr:hover      { background: var(--point-color01); box-shadow: inset 0 0 0 1px var(--point-color01); }
.more_view.bdGr:hover span { filter: var(--filter-white); translate: 0; }

.more_view.bdBl { background: var(--point-white); box-shadow: inset 0 0 0 1px var(--point-color01); color: var(--point-color01); }
.more_view.bdBl span { filter: none; }
.more_view.bdBl::before, .more_view.bdBl::after { display: none; }

.more_view.sm  { padding-block: 10px 9px; }
.more_view.sm span { font-size: max(14px, 80%); }
.more_view.md  { padding-block: 12px; min-width: 180px; }
.more_view.md span { font-size: max(14px, 85%); }
.more_view.lg  { min-width: 190px; }
.more_view.xlg { min-width: 200px; }
.more_view.auto{ min-width: auto; padding-inline: 28px; }

/* 스탯 — 하단 오른쪽 수평 배치 */
.mv-stats {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  bottom: 160px;
  left: 61.98vw; /* 1190/1920 */
  color: var(--point-white);
}

.mv-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.mv-stat-label {
  font-family: var(--font-ko);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  padding-top: 6px;
}

.mv-stat-num {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  line-height: 1;
}

.mv-stat-num .num {
  font-family: var(--font-num);
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
}

.mv-stat-num .plus {
  font-family: var(--font-ko);
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 4px;
}

.mv-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ==========================================================================
   공통 — 섹션 좌측 패널 (.about-left, .lounge-left 공유)
   ========================================================================== */
.sec-left {
  flex: 0 0 29.17%; /* 560/1920 */
  min-width: 0;
  border-right: 1px solid var(--border-color03);
  padding: clamp(32px, 4vw, 70px) clamp(20px, 4vw, 70px);
}
@media (max-width: 1300px) {
  .sec-left { flex-basis: 35%; }
}
@media (max-width: 1023px) {
  .sec-left {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ==========================================================================
   SECTION — ABOUT
   ========================================================================== */
.sec-about {
  display: flex;
  border-top: 1px solid var(--border-color03);
}
.about-left {
  background: #f9f9f9;
  display: flex;
  align-items: flex-start;
}
.about-tit {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-en {
  font-family: var(--font-num);
  font-size: clamp(28px, 2.5vw + 2px, 40px);
  font-weight: 600;
  color: var(--black-color00);
  letter-spacing: -0.02em;
  line-height: 1;
}
.about-desc {
  font-family: var(--font-ko);
  font-size: var(--title-20);
  font-weight: 400;
  color: var(--black-color03);
  letter-spacing: -0.02em;
  line-height: 1.6;
}
.about-right {
  flex: 1;
  background: #f9f9f9;
  padding: clamp(32px, 4vw, 70px) clamp(20px, 4vw, 70px);
  display: flex;
  align-items: center;
}
.about-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 30px);
  width: 100%;
}
.about-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-ico {
  flex-shrink: 0;
  width: clamp(48px, 5vw, 60px);
  height: clamp(48px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-ico img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.about-txt {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-txt strong::before {
  content: '';
  flex-shrink: 0;
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--point-color01);
}
.about-txt strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ko);
  font-size: var(--title-20);
  font-weight: 600;
  color: var(--black-color01);
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.about-txt span {
  font-family: var(--font-ko);
  font-size: var(--title-17);
  font-weight: 400;
  color: rgba(17,17,17,0.7);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

@media (max-width: 1300px) {
  .about-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1023px) {
  .sec-about { flex-direction: column; }
}
@media (max-width: 640px) {
  .about-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SECTION — 파트너사 로고 슬라이더
   ========================================================================== */
.sec-partner {
  background: var(--point-white);
  padding: 80px 0;
  overflow: hidden;
}
.sec-partner .logoSwiper .swiper-wrapper {
  transition-timing-function: linear;
}
.sec-partner .logoSwiper .swiper-slide {
  width: 160px;
  height: auto;
  aspect-ratio: auto 2.28;
  margin-right: 10px;
  overflow: hidden;
  box-sizing: border-box;
  background: var(--point-white);
}
.sec-partner .logoSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1023px) {
  .sec-partner .logoSwiper .swiper-slide { width: clamp(100px, 17vw, 160px); }
}
@media (max-width: 640px) {
  .sec-partner { padding: 40px 0; }
  .sec-partner .logoSwiper .swiper-slide { width: clamp(80px, 22vw, 120px); }
}

/* ==========================================================================
   LAYOUT — 컨테이너 래퍼 (index2 전용)
   ========================================================================== */
.w_custom {
  position: relative;
  width: calc(100% - 80px);
  max-width: 1780px;
  margin-inline: auto;
  box-sizing: border-box;
}
@media (max-width: 860px) { .w_custom { width: calc(100% - 40px); } }
@media (max-width: 479px) { .w_custom { width: calc(100% - 32px); } }

/* ==========================================================================
   SECTION — PARTNERS (회원사 현황)
   ========================================================================== */
.sec-lounge {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border-color03);
}
.lounge-left {
  min-height: 100%;
}
.lounge-tit {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(20px, 3vw, 40px);
}
.lounge-en {
  font-family: var(--font-num);
  font-size: clamp(26px, 2.5vw + 2px, 40px);
  font-weight: 600;
  color: var(--black-color00);
  letter-spacing: -0.02em;
  line-height: 1;
}
.lounge-desc {
  font-family: var(--font-ko);
  font-size: var(--title-20);
  font-weight: 400;
  color: var(--black-color03);
  letter-spacing: -0.02em;
  line-height: 1.6;
}
.lounge-filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 탭 */
.filter-tab {
  display: flex;
  align-items: center;
  border: 1px solid var(--black-color00);
  padding: 10px;
  height: 60px;
  gap: 10px;
  width: 100%;
  max-width: min(430px, 100%);
  box-sizing: border-box;
}
.tab-btn {
  flex: 1 0 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ko);
  font-size: var(--title-16);
  font-weight: 500;
  color: var(--black-color06);
  letter-spacing: -0.03em;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.tab-btn.active {
  background: var(--black-color00);
  color: var(--point-white);
  font-weight: 600;
}

/* 검색 */
.search-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color01);
  height: 60px;
  width: 100%;
  max-width: min(430px, 100%);
  box-sizing: border-box;
  background: var(--point-white);
  padding: 0 16px;
  gap: 12px;
}
.search-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loungeSearch {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-ko);
  font-size: var(--title-18);
  font-weight: 400;
  color: var(--black-color01);
  letter-spacing: -0.03em;
  background: transparent;
}
#loungeSearch::placeholder { color: var(--black-color09); }

/* 우측 카드 영역 */
.lounge-right {
  flex: 1;
  padding: clamp(32px, 4vw, 70px) clamp(20px, 4vw, 70px);
  padding-bottom: clamp(40px, 6vw, 120px);
  min-width: 0;
}
.lounge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 3.5vw, 60px) clamp(16px, 2.5vw, 36px);
  list-style: none;
}

/* 카드 */
.lounge-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.lc-img {
  position: relative;
  width: 100%;
  height: clamp(180px, 16vw, 240px);
  overflow: hidden;
  background: var(--gray-bg02);
}
.lc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .lounge-card:hover .lc-img img { transform: scale(1.04); }
}
.lc-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  font-family: var(--font-ko);
  font-size: var(--title-16);
  font-weight: 500;
  color: var(--point-white);
  letter-spacing: -0.03em;
  line-height: 1;
  background: #26a100; /* 다단계 기본 */
}
.lounge-card[data-type="후원방문판매"] .lc-badge { background: var(--point-color01); }
.lc-body {
  background: var(--point-white);
  padding-top: clamp(16px, 1.8vw, 24px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 30px);
}
.lc-txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lc-name {
  font-family: var(--font-ko);
  font-size: var(--title-20);
  font-weight: 500;
  color: var(--black-color00);
  letter-spacing: -0.03em;
  line-height: 1.5;
}
.lc-addr {
  font-family: var(--font-ko);
  font-size: var(--title-16);
  font-weight: 400;
  color: var(--black-color05);
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.lc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ko);
  font-size: var(--title-16);
  font-weight: 500;
  color: var(--point-color01);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.lounge-empty {
  padding: 60px 0;
  text-align: center;
  font-family: var(--font-ko);
  font-size: var(--title-18);
  color: var(--black-color09);
}

/* ==========================================================================
   MODAL — 5탭 회원사 상세 팝업
   ========================================================================== */
body.modal-open { overflow: hidden; }

.lounge-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.lounge-modal[hidden] { display: none; }

.modal-inner {
  --modal-px: 30px;
  position: relative;
  background: var(--point-white);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* 헤더 */
.modal-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px var(--modal-px);
  border-bottom: 1px solid var(--border-color01);
  flex-shrink: 0;
}
.modal-head-logo {
  flex-shrink: 0;
  width: 100px;
  height: 60px;
  background: var(--gray-bg02);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}
.modal-head-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.modal-head-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.modal-name {
  font-family: var(--font-ko);
  font-size: var(--title-20);
  font-weight: 700;
  color: var(--black-color01);
  letter-spacing: -0.03em;
  line-height: 1.3;
}
.modal-type {
  font-family: var(--font-ko);
  font-size: var(--title-15);
  font-weight: 400;
  color: var(--black-color07);
  letter-spacing: -0.01em;
}
.modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black-color05);
  margin-left: auto;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--black-color01); }

/* 탭 */
.modal-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color01);
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.modal-tabs::-webkit-scrollbar { display: none; }
.modal-tab {
  flex: 1;
  min-width: 80px;
  padding: 14px 10px;
  font-family: var(--font-ko);
  font-size: var(--title-17);
  font-weight: 500;
  color: var(--black-color06);
  letter-spacing: -0.02em;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.modal-tab:hover { color: var(--black-color01); }
.modal-tab.active {
  color: var(--point-color01);
  font-weight: 700;
  border-bottom-color: var(--point-color01);
}

/* 콘텐츠 영역 */
.modal-content {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
.modal-pane {
  display: none;
  padding: 32px var(--modal-px);
}
.modal-pane.active { display: block; }

/* 공통 섹션 레이블 */
.mp-section-label {
  font-family: var(--font-ko);
  font-size: 11px;
  font-weight: 600;
  color: var(--black-color08);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* 대표 이미지 */
.mp-rep-img {
  margin: 0 0 24px;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: var(--gray-bg02);
}
.mp-rep-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 기본 정보 탭 */
.mp-intro {
  font-family: var(--font-ko);
  font-size: var(--title-18);
  font-weight: 400;
  color: var(--black-color03);
  line-height: 1.7;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.mp-info-cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 32px;
  border: 1px solid var(--border-color01);
  padding: 20px;
  box-sizing: border-box;
}
.mp-desc {
  display: flex;
  align-items: baseline;
  font-size: var(--title-18);
}
.mp-desc dt,
.mp-desc dd {
  font-size: 90%;
  font-weight: 400;
  color: var(--black-color05);
}
.mp-desc dt {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-shrink: 0;
  font-weight: 500;
  color: var(--black-color02);
  font-family: var(--font-ko);
  min-width: 150px;
  padding-right: 10px;
  box-sizing: border-box;
}
.mp-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gray-bg01);
  border-radius: 100%;
  padding: 10px;
  box-sizing: border-box;
  flex-shrink: 0;
  color: var(--black-color02);
}
@media (max-width: 1023px) {
  .mp-ico { width: clamp(32px, 4vw, 40px); height: clamp(32px, 4vw, 40px); }
}
.mp-info-link {
  font-size: 90%;
  font-weight: 400;
  color: var(--point-color01);
  text-decoration: underline;
  word-break: break-all;
}

/* 제품 카테고리 필터 버튼 폰트 */

/* 고정 하단 버튼 */
.modal-footer {
  display: flex;
  gap: 12px;
  padding: 16px var(--modal-px);
  border-top: 1px solid var(--border-color01);
  background: var(--point-white);
  flex-shrink: 0;
}
.modal-footer.is-hidden { display: none; }
.modal-footer .more_view {
  flex: 1;
  min-width: 0;
  justify-content: center;
  font-size: var(--title-20);
  letter-spacing: -0.03em;
}
.modal-footer .more_view.bgBk {
  background: var(--point-color01);
}
.modal-footer .more_view.bdGr {
  background: var(--point-color02);
  box-shadow: none;
  color: var(--point-white);
}
.modal-footer .more_view.bdGr span { color: var(--point-white); filter: none; }

/* 카테고리 필터 */
.mp-cat-filter {
  display: flex;
  align-items: center;
  background: var(--gray-bg01);
  padding: 8px;
  gap: 8px;
  height: 52px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.mp-cat-btn {
  flex: 1 0 0;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--font-ko);
  font-size: var(--title-15);
  font-weight: 500;
  color: var(--black-color06);
  letter-spacing: -0.03em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.mp-cat-btn.active { background: var(--black-color00); color: var(--point-white); font-weight: 600; }
.mp-cat-btn:not(.active):hover { background: rgba(0,0,0,0.05); color: var(--black-color01); }
.mp-product-intro {
  font-family: var(--font-ko);
  font-size: var(--title-18);
  font-weight: 400;
  color: var(--black-color03);
  line-height: 1.7;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

/* 공통 empty */
.mp-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 0;
  font-family: var(--font-ko);
  font-size: var(--title-17);
  color: var(--black-color09);
  text-align: center;
}

/* 제품 탭 */
.mp-product-list { display: flex; flex-direction: column; }
.mp-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-color03);
}
.mp-product-item:last-child { border-bottom: none; }
.mp-product-item[hidden] { display: none; }
.mp-product-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  overflow: hidden;
  background: var(--gray-bg02);
  border: 1px solid var(--border-color03);
}
.mp-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mp-product-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.mp-product-cat { font-family: var(--font-ko); font-size: var(--title-15); font-weight: 600; color: var(--point-color01); letter-spacing: 0.01em; }
.mp-product-name { font-family: var(--font-ko); font-size: var(--title-18); font-weight: 600; color: var(--black-color01); letter-spacing: -0.02em; }
.mp-product-desc { font-family: var(--font-ko); font-size: var(--title-16); color: var(--black-color06); letter-spacing: -0.01em; line-height: 1.5; }
.mp-product-links { display: flex; gap: 8px; flex-shrink: 0; }
.mp-product-link {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  box-shadow: inset 0 0 0 1px var(--border-color01);
  font-family: var(--font-ko);
  font-size: var(--title-14);
  font-weight: 500;
  color: var(--black-color03);
  text-decoration: none;
  transition: all 0.2s;
}
.mp-product-link:hover { background: var(--gray-bg01); }
.mp-product-link.buy { box-shadow: inset 0 0 0 1px var(--black-color00); color: var(--black-color00); }
.mp-product-link.buy:hover { background: var(--black-color00); color: var(--point-white); }

/* 영상 탭 */
/* 영상 탭 - 인라인 플레이어 */
.mp-video-player { margin-bottom: 24px; }
.mp-video-player-ratio { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--black-color00); }
.mp-video-player-ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* 영상 목록 */
.mp-video-list { display: flex; flex-direction: column; gap: 10px; }
.mp-video-item { list-style: none; border: 1px solid var(--border-color01); }
.mp-video-item.active { border-color: var(--black-color00); }
.mp-video-btn {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  padding: 14px 16px; display: flex; align-items: center; gap: 16px;
}
.mp-video-btn:hover .mp-video-thumb img { opacity: 0.8; }
.mp-video-item.active .mp-video-btn { cursor: default; }
.mp-video-thumb {
  position: relative; flex-shrink: 0;
  width: 120px; aspect-ratio: 16/9;
  overflow: hidden; background: var(--black-color00);
}
.mp-video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.2s; display: block; }
.mp-video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.mp-video-item.active .mp-video-play { display: none; }
.mp-video-title {
  flex: 1; font-family: var(--font-ko); font-size: var(--title-16); font-weight: 500;
  color: var(--black-color03); letter-spacing: -0.02em; line-height: 1.5;
}
.mp-video-item.active .mp-video-title { color: var(--black-color00); font-weight: 700; }

/* 이미지 탭 - Swiper 갤러리 */
.mp-img-main { width: 100%; margin-bottom: 10px; background: var(--gray-bg02); }
.mp-img-main .swiper-slide { overflow: hidden; }
.mp-img-main-btn {
  display: block; width: 100%; padding: 0; border: none; background: none;
  cursor: zoom-in; overflow: hidden;
}
.mp-img-main-btn img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
}
.mp-img-main .swiper-button-prev,
.mp-img-main .swiper-button-next {
  color: var(--point-white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.mp-img-main .swiper-button-prev::after,
.mp-img-main .swiper-button-next::after { font-size: 20px; }

.mp-img-thumbs { padding: 4px 0; }
.mp-img-thumbs .swiper-slide {
  aspect-ratio: 4/3; overflow: hidden; cursor: pointer;
  opacity: 0.5; transition: opacity 0.2s;
  border: 2px solid transparent; box-sizing: border-box;
}
.mp-img-thumbs .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mp-img-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--black-color00);
}

/* 자료 탭 */
.mp-file-list { display: flex; flex-direction: column; }
.mp-file-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-color03); }
.mp-file-item:last-child { border-bottom: none; }
.mp-file-ext {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 30px;
  font-family: var(--font-en); font-size: var(--title-14); font-weight: 700;
  color: var(--point-white); letter-spacing: 0.04em;
  background: var(--black-color08);
}
.mp-file-ext--pdf  { background: #e53935; }
.mp-file-ext--hwp, .mp-file-ext--hwpx { background: #1e88e5; }
.mp-file-ext--docx { background: #1565c0; }
.mp-file-ext--xlsx { background: #2e7d32; }
.mp-file-ext--pptx { background: #e65100; }
.mp-file-ext--zip  { background: #6d4c41; }
.mp-file-name { flex: 1; font-family: var(--font-ko); font-size: var(--title-17); font-weight: 400; color: var(--black-color02); letter-spacing: -0.02em; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mp-file-dl {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  box-shadow: inset 0 0 0 1px var(--black-color00);
  font-family: var(--font-ko); font-size: var(--title-15); font-weight: 500;
  color: var(--black-color00); text-decoration: none;
  transition: all 0.2s;
}
.mp-file-dl svg { flex-shrink: 0; transition: inherit; }
.mp-file-dl:hover { background: var(--black-color00); color: var(--point-white); }
.mp-file-dl:hover svg { filter: var(--filter-white); }


/* 이미지 라이트박스 */
.mp-lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; box-sizing: border-box;
}
.mp-lightbox-overlay[hidden] { display: none; }
.mp-lb-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; color: var(--point-white);
}
.mp-lightbox-overlay img { max-width: 100%; max-height: calc(100vh - 80px); object-fit: contain; }

/* 모달 반응형 */
@media (max-width: 860px) {
  .modal-inner { --modal-px: 20px; }
}
@media (max-width: 479px) {
  .modal-inner { --modal-px: 16px; }
}
@media (max-width: 640px) {
  .lounge-modal { padding: 0; align-items: flex-end; }
  .modal-inner { max-height: 92vh; }
  .modal-head-logo { width: 80px; height: 48px; }
  .modal-tab { font-size: var(--title-15); padding: 12px 8px; min-width: 60px; }
  .mp-video-thumb { width: 80px; }
  .mp-img-thumbs .swiper-slide { opacity: 0.6; }
  .mp-product-item { flex-wrap: wrap; align-items: center; gap: 12px; }
  .mp-product-thumb { flex-shrink: 0; }
  .mp-product-info { flex: 1; min-width: 0; }
  .mp-product-links { width: 100%; flex-basis: 100%; }
  .mp-product-links .mp-product-link { flex: 1; justify-content: center; }
  .mp-actions { flex-direction: column; }
}

/* 반응형 */
@media (max-width: 1300px) {
  .lounge-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1023px) {
  .sec-lounge { flex-direction: column; }
  .lounge-desc { font-size: clamp(16px, 2vw, 20px); }
}
@media (max-width: 640px) {
  .lounge-grid { grid-template-columns: 1fr; }
  .lc-badge { font-size: 13px; padding: 4px 8px; top: 12px; left: 12px; }
  .filter-tab { height: 50px; padding: 6px; }
  .tab-btn { height: 36px; }
  .search-wrap { height: 50px; }
}

/* ==========================================================================
   SECTION — CLOSING BANNER
   ========================================================================== */
.sec-closing {
  width: 100%;
}
.closing-inner {
  position: relative;
  height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.closing-bg {
  position: absolute;
  inset: 0;
}
.closing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.closing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.closing-cont {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.closing-logo img {
  width: 386px;
  height: 70px;
  object-fit: contain;
}
.closing-txt {
  font-family: var(--font-ko);
  font-size: 24px;
  font-weight: 400;
  color: var(--point-white);
  letter-spacing: -0.03em;
  line-height: 1.6;
  white-space: nowrap;
}

@media (max-width: 1023px) {
  .closing-inner { height: clamp(400px, 50vw, 580px); }
  .closing-logo img { width: clamp(240px, 30vw, 386px); height: auto; }
  .closing-txt { font-size: clamp(16px, 2.2vw, 24px); white-space: normal; }
}
@media (max-width: 640px) {
  .closing-inner { height: clamp(320px, 65vw, 450px); }
  .closing-cont { gap: 24px; padding: 0 24px; }
  .closing-logo img { width: clamp(180px, 55vw, 280px); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1023px) {
  .mv-stats { left: auto; right: 40px; bottom: 100px; gap: clamp(30px, 5vw, 60px); }
  .mv-stat-item { gap: clamp(20px, 4vw, 60px); }
  .mv-stat-label { font-size: clamp(16px, 2.2vw, 24px); }
  .mv-stat-num .num { font-size: clamp(36px, 5.5vw, 60px); }
  .mv-stat-num .plus { font-size: clamp(14px, 2vw, 22px); }
}

/* ==========================================================================
   QUICK WRAP — 우하단 고정 버튼
   ========================================================================== */
.quick_wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 80px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 11vh, 100px);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
body.scrolled .quick_wrap { opacity: 1; }
body.scrolled .quick_wrap .scr_top { pointer-events: all; }
.quick_wrap .scr_top {
  position: relative;
  display: block;
  width: 100%;
  max-width: 68px;
  aspect-ratio: 1;
  background: var(--point-color01);
  clip-path: var(--poly-path03);
}
.quick_wrap .scr_top::before {
  position: absolute;
  content: '';
  width: 20%;
  max-width: 13px;
  aspect-ratio: 1;
  border: 2px solid var(--point-white);
  box-sizing: border-box;
  top: 55%;
  left: 50%;
  translate: -50% -50%;
  rotate: -135deg;
  border-radius: 2px;
  clip-path: var(--poly-path01);
}
@media (max-width: 1023px) {
  .quick_wrap { width: clamp(50px, 8vw, 80px); gap: clamp(10px, 1.5vw, 15px); }
}
@media (max-width: 860px) {
  .quick_wrap { right: 15px; }
}

@media (max-width: 640px) {
  .mv-stats { flex-direction: column; gap: 16px; right: 24px; bottom: 80px; align-items: flex-end; }
  .mv-stat-divider { display: none; }
  .mv-stat-item { gap: 12px; }
  .mv-stat-num .num { font-size: clamp(28px, 8vw, 40px); }
}

/* ==========================================================================
   FOOTER — 라이트 버전
   ========================================================================== */
#footer { position: relative; background: var(--point-white); color: var(--black-color03); font-weight: 300; box-sizing: border-box; }
#footer .top_sec { position: relative; padding-block: 80px 76px; display: grid; gap: 60px; }
#footer .info { display: flex; align-items: center; gap: 25px 60px; flex-wrap: wrap; }
#footer .logo { font-size: 0; max-width: 245px; }
#footer .sns_list { display: flex; flex-wrap: wrap; gap: 30px; }
#footer .sns_list a { display: flex; align-items: center; justify-content: center; width: 28px; aspect-ratio: auto 1; }
#footer .cont { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
#footer .cont .item { display: grid; gap: 27px; }
#footer address { font-style: normal; display: flex; flex-wrap: wrap; gap: 10px 42px; }
#footer address .desc { display: flex; gap: 20px; font-size: var(--title-20); }
#footer address .desc :where(dt, dd) { font-size: 90%; font-weight: 400; color: var(--black-color03); letter-spacing: -0.015em; }
#footer address .desc dt { font-weight: 600; flex-shrink: 0; font-family: var(--font-en); letter-spacing: 0.02em; }
#footer address .desc dd a { color: inherit; }
#footer .copy { display: flex; flex-wrap: wrap; font-size: var(--title-20); gap: 5px 20px; }
#footer .copy :where(dt, dd) { font-size: 90%; font-weight: 300; color: rgba(0,0,0,0.5); letter-spacing: -0.035em; }
#footer .copy dd a { color: inherit; }
#footer .certi_list { display: flex; align-items: center; flex-wrap: wrap; gap: 15px 30px; flex-shrink: 0; }
#footer .certi_list > li { display: flex; align-items: center; justify-content: center; height: 60px; }
#footer .certi_list img { max-height: 100%; }
#footer .btm_sec { position: relative; background: var(--gray-bg01); padding-block: 30px; }
#footer .btm_sec .w_custom { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
#footer .link_list { display: flex; flex-wrap: wrap; font-size: var(--title-20); color: var(--black-color03); gap: 10px 0; }
#footer .link_list > li { display: flex; align-items: center; font-size: 90%; font-weight: 400; letter-spacing: -0.03em; }
#footer .link_list > li:not(:last-child):after { display: inline-flex; content: ''; width: 1px; height: 12px; background: rgba(0,0,0,0.2); margin-inline: 30px; }
#footer .link_list em { font-weight: 600; }
#footer .family_site { position: relative; font-size: var(--title-20); box-sizing: border-box; }
#footer .family_site dt { position: relative; display: flex; align-items: center; font-size: 85%; font-weight: 400; color: var(--black-color03); padding-block: 13px 12px; padding-inline: 20px 50px; min-width: 230px; box-sizing: border-box; border: 1px solid var(--border-color01); letter-spacing: -0.035em; cursor: pointer; }
#footer .family_site dt:before { position: absolute; content: ''; width: 12px; aspect-ratio: auto 1; box-sizing: border-box; border: 2px solid #333; clip-path: var(--poly-path01); top: 57%; right: 20px; translate: 0 -50%; rotate: 45deg; scale: -1 -1; transition: all 0.4s; }
#footer .family_site dt.on:before { top: 43%; scale: 1; }
#footer .family_site dd { position: absolute; left: 0; bottom: calc(100% - 1px); width: 100%; padding-block: 12px; font-size: 80%; font-weight: 400; color: var(--black-color05); background: var(--point-white); border: 1px solid var(--border-color01); box-sizing: border-box; opacity: 0; pointer-events: none; overflow: hidden; transition: all 0.4s; }
#footer .family_site:has(dt.on) dd { opacity: 1; pointer-events: all; }
#footer .family_site dd a { display: block; padding: 7px 20px; color: inherit; }
#footer .family_site dd a:hover { color: var(--black-color01); }

@media (max-width: 1023px) {
  #footer .top_sec { padding-block: clamp(50px, 8vw, 80px) clamp(50px, 7.6vw, 76px); gap: clamp(35px, 6vw, 60px); }
  #footer .cont { flex-wrap: wrap; gap: clamp(30px, 5vw, 50px); }
  #footer .cont .item { gap: clamp(23px, 2.7vw, 27px); }
  #footer .info { column-gap: clamp(40px, 6vw, 60px); }
  #footer .logo { max-width: clamp(180px, 25vw, 245px); }
  #footer .sns_list { gap: clamp(25px, 3vw, 30px); }
  #footer .sns_list a { width: clamp(22px, 3.3vw, 28px); }
  #footer address { column-gap: clamp(25px, 4.2vw, 42px); }
  #footer .certi_list { column-gap: clamp(25px, 3vw, 30px); }
  #footer .certi_list > li { height: clamp(40px, 6.5vw, 60px); }
  #footer .link_list > li:not(:last-child):after { margin-inline: clamp(20px, 3vw, 30px); height: clamp(10px, 1.7vw, 12px); }
  #footer .family_site dt { min-width: clamp(200px, 23.5vw, 230px); padding-block: clamp(11px, 1.8vw, 13px); padding-left: clamp(15px, 2.5vw, 20px); }
  #footer .family_site dd a { padding-inline: clamp(15px, 2.5vw, 20px); }
  #footer .family_site dt:before { right: clamp(15px, 2.5vw, 20px); width: clamp(10px, 1.7vw, 12px); }
}
@media (max-width: 640px) {
  #footer .top_sec { padding-block: clamp(40px, 6vw, 50px); }
  #footer .cont { gap: clamp(24px, 4vw, 30px); }
  #footer .btm_sec .w_custom { flex-direction: column; align-items: flex-start; gap: 20px; }
  #footer .family_site dt { min-width: 100%; }
  #footer .family_site { width: 100%; }
  #footer .link_list { gap: 8px 0; }
  #footer .link_list > li:not(:last-child):after { margin-inline: 16px; }
}
@media (max-width: 479px) {
  #footer .info { gap: 20px 40px; }
  #footer .logo { max-width: 160px; }
  #footer address .desc { gap: 10px; }
  #footer .link_list > li:not(:last-child):after { margin-inline: 10px; }
  #footer .certi_list > li { height: 36px; }
}
