/* ============================================================
   EASY STAGE — style.css
   ============================================================ */

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

:root {
  --blk:  #111;
  --wht:  #fff;
  --g1:   #f5f5f3;
  --g2:   #e8e8e8;
  --g4:   #aaa;
  --g6:   #666;
  --hh:   100px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--wht);
  color: var(--blk);
  cursor: auto;
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; font: inherit; cursor: auto; }
figure { margin: 0; }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor { display: none; }
.cursor-ring { display: none; }
.cursor.hov   { width: 0; height: 0; }
.cursor-ring.hov { width: 44px; height: 44px; background: rgba(17,17,17,.04); border-color: transparent; }

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0; background: var(--wht);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  z-index: 9000;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-name { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400; letter-spacing: .28em; text-transform: uppercase; }
.loader-name b { font-weight: 600; }
.loader-logo { height: 40px; width: auto; margin-bottom: 4px; object-fit: contain; }
.loader-bar { width: 100px; height: 1px; background: var(--g2); overflow: hidden; }
.loader-fill { height: 100%; background: var(--blk); width: 0; animation: lf 1.5s var(--ease) forwards; }
@keyframes lf { to { width: 100%; } }

/* ============================================================
   HEADER
   ============================================================ */
/* ── MARQUEE ── */
.mq-wrap {
  width: 100%;
  overflow: hidden;
  height: 30px;
  pointer-events: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  position: relative;
  z-index: 0;
}
.mq-track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  -webkit-animation: mq-move 36s linear infinite;
  animation: mq-move 36s linear infinite;
  /* iOS에서 애니메이션 끊김 방지 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.mq-txt {
  display: inline;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c6ff00;
  padding: 0 20px;
}
.mq-sep {
  display: inline;
  color: #c6ff00;
  opacity: 0.4;
  font-size: 9px;
}
@-webkit-keyframes mq-move {
  from { -webkit-transform: translateX(0); transform: translateX(0); }
  to   { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}
@keyframes mq-move {
  from { -webkit-transform: translateX(0); transform: translateX(0); }
  to   { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}


.hd {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 700;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-bottom: none;
  transition: background .5s;
  overflow: visible;
  pointer-events: none;
  height: auto;
}
.hd-row {
  pointer-events: all;
}
.hd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  min-height: var(--hh);
  height: auto;
  padding-top: 12px;
  padding-bottom: 30px;
}
.hd.scrolled {
  background: transparent;
  border-color: transparent;
}

.hd-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  z-index: 10;
}
.logo-img {
  display: block;
  height: 110px;
  width: auto;
}

@media (max-width: 768px) {
  .logo-img {
    height: 48px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 48px;
    max-width: calc(100vw - 80px);
    object-fit: contain;
  }
}
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px; font-weight: 400;
  letter-spacing: .06em;
  color: var(--blk);
}
.logo-stage {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 300;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--blk);
  margin-left: 4px;
  align-self: center;
}
.logo-dot {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  color: var(--neon);
  line-height: 1;
}

/* 햄버거 — 가로줄 3개 */
.hd-ham {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; padding: 6px; cursor: auto;
}
.hd-ham span {
  display: block; width: 22px; height: 1.5px;
  background: var(--blk);
  transition: transform .35s var(--ease), opacity .25s, width .3s var(--ease);
  transform-origin: center;
}
/* X 변환 */
.hd-ham.on span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hd-ham.on span:nth-child(2) { opacity: 0; width: 0; }
.hd-ham.on span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   LIST OVERLAY — 풀스크린 리스트  (네온 그린 다크 테마)
   ============================================================ */
:root {
  --neon: #c6ff00;   /* 형광 라임 */
}

.list-overlay {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 800;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .5s var(--ease), visibility .5s;
  overflow-y: auto;
}
.list-overlay.on { opacity: 1; visibility: visible; pointer-events: all; }

/* 열릴 때 배경 컬러 플래시 */
.list-overlay.on::before {
  content: '';
  position: fixed; inset: 0;
  background: var(--neon);
  z-index: -1;
  animation: neon-flash .55s var(--ease) forwards;
  pointer-events: none;
}
@keyframes neon-flash {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

.lo-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: var(--hh);
  border-bottom: 1px solid rgba(0,0,0,.08);
  flex-shrink: 0;
  position: sticky; top: 0;
  background: #fff; z-index: 1;
}
.lo-head .hd-logo { color: var(--blk); }

.lo-close {
  display: flex; flex-direction: column; gap: 0; padding: 6px; cursor: auto;
  width: 34px; height: 34px; align-items: center; justify-content: center; position: relative;
  background: none; border: none;
}
.lo-close span {
  position: absolute;
  display: block; width: 18px; height: 1px; background: var(--blk);
  transition: transform .3s var(--ease);
}
.lo-close span:nth-child(1) { transform: rotate(45deg); }
.lo-close span:nth-child(2) { transform: rotate(-45deg); }

.lo-body { padding: 0 32px 80px; }

/* 리스트 헤더 */
.lo-body::before {
  content: 'Works';
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--g4);
  padding: 20px 0 14px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

/* 각 행 — 기본은 투명, .on 시 순서대로 슬라이드인 */
.lo-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  cursor: auto;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity .45s var(--ease),
    transform .45s var(--ease),
    background .2s;
}
/* 열릴 때 JS로 .vis 추가 → 순서 지연 */
.lo-row.vis { opacity: 1; transform: translateY(0); }

/* 호버 — 네온 그린 배경 */
.lo-row:hover {
  background: var(--neon);
  padding-left: 12px; padding-right: 12px;
  margin: 0 -12px;
  border-radius: 2px;
}
.lo-row:hover .lo-t   { color: #000; }
.lo-row:hover .lo-c   { color: rgba(0,0,0,.45); }
.lo-row:hover .lo-arr { opacity: 1; transform: translateX(0); color: #000; }

.lo-t   { font-family: 'Bebas Neue', sans-serif; font-size: 26px; font-weight: 400; letter-spacing: .04em; flex: 1; color: var(--blk); transition: color .15s; }
.lo-c   { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--g4); white-space: nowrap; transition: color .15s; }
.lo-arr { font-size: 14px; color: var(--g4); opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s, color .15s; flex-shrink: 0; }

/* ============================================================
   OVERVIEW — 그리드
   ============================================================ */
.ov {
  display: none;
}

/* ── 풀스크린 갤러리 래퍼 ── */
#pgWrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
}

#pgList {
  display: block;
  width: 100%;
}

.pg-item {
  display: block !important;
  width: 100vw !important;
  min-width: 100vw !important;
  max-width: 100vw !important;
  overflow: hidden !important;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
}
.pg-img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.wg {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
  padding: 3px;
}

.wc       { grid-column: span 4; }
.wc-wide  { grid-column: span 8; }
.wc-tall  { grid-row: span 2; }

.wc-a { display: block; }

.wc-fig {
  position: relative; overflow: hidden;
  width: 100%; aspect-ratio: 1/1;
  display: flex; flex-direction: column;
}
.wc-wide .wc-fig { aspect-ratio: 2/1; }
.wc-tall .wc-fig { aspect-ratio: 1/2; }

.wc-img {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: transform .8s var(--ease);
  position: relative;
}
.wc-a:hover .wc-img { transform: scale(1.04); }

/* Real photo inside cards */
.wc-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.wc-a:hover .wc-photo { transform: scale(1.06); }

.wc-cap {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border-top: 1px solid rgba(0,0,0,.06);
  flex-shrink: 0;
}
.wc-n {
  font-family: 'Inter', sans-serif; font-size: 10px;
  color: var(--g4); flex-shrink: 0;
}
.wc-info { flex: 1; min-width: 0; }
.wc-info strong {
  display: block; font-size: 13px; font-weight: 500;
  letter-spacing: -.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wc-info em {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 10px; color: var(--g4); font-style: normal;
  letter-spacing: .02em; margin-top: 1px;
}
.wc-arr {
  font-size: 13px; color: var(--g4); flex-shrink: 0;
  opacity: 0; transform: translateX(-4px);
  transition: opacity .25s, transform .25s;
}
.wc-a:hover .wc-arr { opacity: 1; transform: translateX(0); }

/* ============================================================
   OVERVIEW PANEL — littlebylittle 스타일
   검정 배경 + 균일 썸네일 그리드
   ============================================================ */

/* wc-row : 사용 안 함 — 숨김 유지 */
.wc-row { display: none !important; }

/* ── 오버뷰 패널 (풀스크린 오버레이) ── */
.ov-panel {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 700;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s var(--ease), visibility .4s;
}
.ov-panel.on {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* 패널 상단 헤더 */
.ov-panel-head {
  position: sticky; top: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  height: var(--hh);
  background: #000;
  z-index: 1;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ov-panel-head .hd-logo { color: #fff; }
.ov-panel-title {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}
.ov-panel-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  position: relative; cursor: auto;
  background: none; border: none; padding: 0;
}
.ov-panel-close span {
  position: absolute;
  width: 18px; height: 1px;
  background: #fff;
  transition: transform .3s var(--ease);
}
.ov-panel-close span:nth-child(1) { transform: rotate(45deg); }
.ov-panel-close span:nth-child(2) { transform: rotate(-45deg); }

/* 썸네일 그리드 */
.ov-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 32px 24px;
  padding: 40px 28px 120px;
}

/* 카드 */
.ov-card {
  display: block;
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.ov-card.vis { opacity: 1; transform: translateY(0); }

.ov-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  background: #1a1a1a;
  transition: opacity .25s;
}
.ov-card:hover .ov-thumb { opacity: .8; }

.ov-label {
  margin-top: 8px;
}
.ov-label strong {
  display: block;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 11px; font-weight: 400;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -.01em;
}
.ov-label em {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-style: normal;
  color: rgba(255,255,255,.35);
  margin-top: 2px;
}

/* Overview 버튼 — 패널 열렸을 때 */
.fn-overview.panel-active { color: var(--blk) !important; }

/* ============================================================
   FLOAT NAV — 바 없이 텍스트만 화면에 고정
   좌하단: Overview   우하단: About
   ============================================================ */
.float-nav {
  position: fixed;
  bottom: 28px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 28px;
  pointer-events: none;   /* 링크만 클릭 가능 */
  z-index: 600;
}

.float-nav a,
.float-nav button {
  pointer-events: all;
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1;
  color: rgba(255,255,255,.4);
  transition: color .3s var(--ease);
  cursor: auto;
  background: none;
  border: none;
  padding: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,.18);
}
.float-nav a:hover,
.float-nav button:hover { color: rgba(255,255,255,.85); }
.float-nav a.fn-active,
.float-nav button.fn-active { color: var(--wht); }

/* About 섹션 진입 시 */
.about-active .fn-overview { color: rgba(255,255,255,.3); }
.about-active .fn-about    { color: var(--wht); }

/* ============================================================
   ABOUT + CONTACT  — 흰 배경 · 검정 글씨 · 형광 도형/라인
   ============================================================ */
.about {
  background: var(--wht);
  color: var(--blk);
  overflow: hidden;
  border-top: 3px solid var(--neon); /* 상단 형광 라인 */
}

/* ── 상단 라벨 바 ── */
.ab-topbar {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 32px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  font-family: 'Inter', sans-serif;
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(0,0,0,.35);
}
.ab-topbar-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--neon); flex-shrink: 0;
  outline: 1px solid rgba(0,0,0,.15);
}
.ab-topbar-fill { flex: 1; }
.ab-topbar-tag {
  background: var(--neon);
  color: var(--blk) !important;
  padding: 3px 10px; border-radius: 100px;
  font-weight: 600; letter-spacing: .1em;
}

/* ── 히어로 블록 ── */
.ab-hero {
  position: relative;
  padding: 80px 32px 72px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.ab-hero.vis { opacity: 1; transform: none; }

/* 형광 작은 사각 장식 */
.ab-deco-rect {
  position: absolute; bottom: 40px; right: 32px;
  width: 48px; height: 48px;
  background: var(--neon);
  pointer-events: none;
}

.ab-hero-inner { position: relative; z-index: 1; }

.ab-hero-label {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(0,0,0,.4); margin-bottom: 20px;
}

.ab-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 130px);
  font-weight: 400; line-height: .93;
  letter-spacing: .01em;
  color: var(--blk);
}
/* 아웃라인 텍스트 */
.ab-accent {
  font-style: normal;
  -webkit-text-stroke: 2.5px var(--blk);
  color: transparent;
}

/* 슬로건 부제 */
.ab-sub {
  margin-top: 20px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 400;
  color: rgba(17,17,17,.48);
  line-height: 1.75;
  letter-spacing: .01em;
  border-left: 3px solid var(--neon);
  padding-left: 14px;
}

/* 우측 수직 라벨 */
.ab-hero-side {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  flex-shrink: 0; position: relative; z-index: 1;
  padding-bottom: 10px;
}
.ab-side-line {
  display: block; width: 2px; height: 80px;
  background: var(--neon);
}
.ab-side-txt {
  font-family: 'Inter', sans-serif;
  font-size: 8px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(0,0,0,.35);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ── 본문 그리드 ── */
.about-in {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: start;
}

.ab-l {
  padding: 56px 32px;
  border-right: 1px solid rgba(0,0,0,.08);
}

.ab-txt {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s .15s var(--ease), transform .8s .15s var(--ease);
}
.ab-txt.vis { opacity: 1; transform: none; }
.ab-txt p { font-size: clamp(15px, 1.5vw, 19px); color: rgba(0,0,0,.55); line-height: 2.0; word-break: keep-all; }

.ab-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s .3s var(--ease), transform .8s .3s var(--ease);
}
.ab-tags.vis { opacity: 1; transform: none; }
.ab-tags span {
  font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: .05em;
  padding: 5px 13px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 100px;
  color: rgba(0,0,0,.55);
  transition: background .2s, color .2s, border-color .2s;
}
.ab-tags span:hover {
  background: var(--neon);
  color: var(--blk);
  border-color: var(--neon);
}

/* ── 컨택 블록 ── */
.ab-r { padding: 56px 32px; }

.ct-block {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s .1s var(--ease), transform .8s .1s var(--ease);
}
.ct-block.vis { opacity: 1; transform: none; }

/* 형광 가로선 */
.ct-neon-line {
  width: 48px; height: 4px;
  background: var(--neon);
  margin-bottom: 28px;
}

.ct-ttl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: .01em;
  color: var(--blk);
  margin-bottom: 32px;
}

.ct-dtl {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 40px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.ct-dtl a, .ct-dtl span {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: rgba(0,0,0,.45);
  transition: color .25s;
}
.ct-dtl a:hover { color: var(--blk); }

/* CTA 버튼 */
.ct-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: .08em;
  color: var(--blk);
  padding: 13px 24px 13px 0;
  border-bottom: 2px solid var(--neon);
  transition: gap .3s var(--ease), padding .3s var(--ease);
}
.ct-cta:hover { gap: 20px; }
.ct-cta-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--neon);
  font-size: 13px;
  transition: transform .3s var(--ease);
}
.ct-cta:hover .ct-cta-arrow { transform: translateX(4px); }

/* ============================================================
   FOOTER
   ============================================================ */
.ft {
  background: var(--blk); padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.ft .hd-logo { color: rgba(255,255,255,.5); }
.ft .hd-logo b { color: var(--neon); }
.ft p { font-family: 'Inter', sans-serif; font-size: 10px; color: rgba(255,255,255,.2); letter-spacing: .04em; }

/* ============================================================
   CSS MOCKS
   ============================================================ */
.mk { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

.mk-hp { position: relative; width: 80px; height: 80px; }
.mk-hp-band { position: absolute; top: 0; left: 12px; right: 12px; height: 36px; border: 2.5px solid #888; border-bottom: none; border-radius: 40px 40px 0 0; }
.mk-hp-l, .mk-hp-r { position: absolute; bottom: 0; width: 22px; height: 30px; background: #888; border-radius: 6px; }
.mk-hp-l { left: 0; } .mk-hp-r { right: 0; }

.mk-brand { text-align: center; }
.mk-b-l { width: 56px; height: 1px; background: #fff; margin: 8px auto; }
.mk-b-l.mk-b-s { width: 28px; }
.mk-b-t { font-family: 'Inter', sans-serif; font-size: 26px; font-weight: 700; color: #fff; letter-spacing: .2em; }

.mk-pur { display: flex; flex-direction: column; align-items: center; }
.mk-pur-t { width: 36px; height: 10px; background: #6fa87e; border-radius: 4px 4px 0 0; }
.mk-pur-b { width: 52px; height: 70px; background: #84bb93; border-radius: 6px; }
.mk-pur-base { width: 62px; height: 8px; background: #6fa87e; border-radius: 0 0 4px 4px; }

.mk-phone { width: 60px; height: 96px; background: #fff; border-radius: 10px; padding: 12px 8px; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.mk-ph-s { display: flex; flex-direction: column; gap: 6px; }
.mk-row { height: 5px; background: #c4b8e8; border-radius: 3px; }
.mk-row.s { width: 55%; } .mk-row.m { width: 75%; }

.mk-chair { display: flex; flex-direction: column; align-items: center; }
.mk-ch-bk { width: 48px; height: 58px; background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.35); border-radius: 7px 7px 0 0; }
.mk-ch-st { width: 60px; height: 11px; background: rgba(255,255,255,.2); border-radius: 3px; }
.mk-ch-lg { width: 1.5px; height: 28px; background: rgba(255,255,255,.25); margin-top: 2px; }

.mk-box { display: flex; flex-direction: column; }
.mk-bx-lid { width: 60px; height: 15px; background: #d4c49a; border-radius: 3px 3px 0 0; margin-left: 4px; }
.mk-bx-bd { width: 68px; height: 60px; background: #c8b48c; border-radius: 0 0 3px 3px; display: flex; align-items: center; justify-content: center; }
.mk-bx-bd span { font-family: 'Inter', sans-serif; font-size: 10px; font-style: italic; color: #fff; letter-spacing: .04em; }

.mk-bloom { display: flex; align-items: center; justify-content: center; }
.mk-bl-c { width: 76px; height: 76px; border-radius: 50%; border: 1.5px solid #f0a0b0; display: flex; align-items: center; justify-content: center; }
.mk-bl-c span { font-family: 'Inter', sans-serif; font-size: 13px; color: #c06070; letter-spacing: .04em; }

.mk-dash { width: 100px; }
.mk-ds-r { display: flex; gap: 6px; margin-bottom: 7px; }
.mk-ds-c { flex: 1; height: 24px; background: rgba(100,150,200,.3); border-radius: 4px; }
.mk-ds-ch { height: 42px; background: rgba(100,150,200,.2); border-radius: 4px; }

.mk-lamp { display: flex; flex-direction: column; align-items: center; }
.mk-lp-h { width: 42px; height: 28px; background: #8aaa88; border-radius: 20px 20px 0 0; }
.mk-lp-a { width: 2px; height: 52px; background: #7a9a78; }
.mk-lp-b { width: 54px; height: 7px; background: #6a8a68; border-radius: 3px; }

.mk-necoa { display: flex; align-items: center; justify-content: center; }
.mk-nc-o { width: 84px; height: 84px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; }
.mk-nc-i { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.65); letter-spacing: .2em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .wc      { grid-column: span 6; }
  .wc-wide { grid-column: span 12; }
  .wc-wide .wc-fig { aspect-ratio: 3/1; }
  .about-in { grid-template-columns: 1fr; gap: 60px; }
  .lo-row { grid-template-columns: 36px 1fr 120px 44px 18px; }
}

@media (max-width: 768px) {
  .wg { grid-template-columns: 1fr 1fr; gap: 2px; padding: 2px; }
  .wc      { grid-column: span 1; }
  .wc-wide { grid-column: span 2; }
  .wc-tall { grid-row: span 1; }
  .wc-tall .wc-fig { aspect-ratio: 1/1; }
  .wc-wide .wc-fig { aspect-ratio: 2/1; }

  /* 풀와이드 갤러리 모바일 */
  .pg-item { width: 100vw !important; }
  .pg-img { width: 100vw !important; height: auto !important; }

  .float-nav { bottom: 20px; padding: 0 20px; }
  .float-nav a { font-size: clamp(22px, 6vw, 36px); }

  .lo-row { grid-template-columns: 32px 1fr 16px; }
  .lo-c, .lo-y { display: none; }
  .lo-row:hover { padding-left: 8px; padding-right: 8px; margin: 0 -8px; }

  .about { padding: 80px 20px 70px; }
  .ft { padding: 22px 20px; }
}

@media (max-width: 480px) {
  .wg { grid-template-columns: 1fr; }
  .wc      { grid-column: span 1; }
  .wc-wide { grid-column: span 1; }
  .wc-wide .wc-fig { aspect-ratio: 3/2; }
  .float-nav a { font-size: clamp(20px, 8vw, 30px); }

  /* 풀와이드 갤러리 소형 폰 */
  .pg-item { width: 100vw !important; }
  .pg-img { width: 100vw !important; height: auto !important; }
}
