/* ============================================================
   ART-SHOP-122 · 에디션 프레스 · NEO 다크·네온 테크 · 다크 지면
   에디션 판화 쇼핑몰 6p
   ============================================================ */

/* 암묵 그리드 트랙이 max-content 로 부풀어 페이지를 밀어내는 것을 원천 차단 */
* { grid-auto-columns: minmax(0, 1fr); }
/* 그리드/플렉스 자식이 내재 폭을 주장하지 못하게 한다 (중간 래퍼까지 커버) */
:where([style*="grid"], .grid, [class*="__grid"], [class*="__list"], [class*="__inner"],
       .hero, .stats, .prods, .cartline, .steps, .pdp) > * { min-width: 0; }

:root {
  --brand:       #2CDD61;
  --brand-ink:   #04170B;
  --accent:      #6BE8FF;
  --accent-ink:  #04141A;
  --surface:     #0B0F0C;
  --surface-alt: #131A15;
  --font-display: var(--font-sans);
  --r: var(--r-md);

  /* SPEC 4절 v1.2 — 다크 지면 작품에만 허용되는 중립색 5개 */
  --ink:         #E9F3EB;
  --ink-2:       #AABDAF;
  --ink-3:       #7D8F82;
  --line:        #1F2921;
  --line-strong: #2F3E32;
}

body { background: var(--surface); }
::selection { background: var(--brand); color: var(--brand-ink); }

/* ── 공통 타입 ─────────────────────────────────────────────── */

.kicker, .label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--brand);
}
.label--mute { color: var(--ink-3); }
/* --surface-alt 위에서는 --ink-3 대신 --ink-2 (SPEC v1.6 2번) */
.section--alt .label--mute,
.card .label--mute { color: var(--ink-2); }

.h2 { font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); line-height: 1.12; }
.body-lg { font-size: var(--fs-md); color: var(--ink-2); max-width: 46ch; }

/* ── 버튼 ──────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--r);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn--sm { padding: var(--sp-3) var(--sp-5); font-size: var(--fs-xs); }
.btn--lg { padding: var(--sp-5) var(--sp-8); font-size: var(--fs-md); }

/* 브랜드 컬러 배경 위 라벨은 반드시 --brand-ink (실측 10.26:1) */
.btn--solid { background: var(--brand); color: var(--brand-ink); box-shadow: 0 0 0 rgba(44,221,97,0); }
.btn--solid:hover { box-shadow: 0 0 24px rgba(44, 221, 97, .45); }

.btn--cyan { background: var(--accent); color: var(--accent-ink); }
.btn--cyan:hover { box-shadow: 0 0 24px rgba(107, 232, 255, .4); }

.btn--line { border: 1px solid var(--line-strong); color: var(--ink); }
.btn--line:hover { border-color: var(--brand); color: var(--brand); }

/* ── 헤더 — 2줄 접힘 + 가로 스크롤 메뉴 ────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3) var(--sp-5);
  padding-block: var(--sp-3);
  padding-inline: max(var(--gutter), calc((100vw - var(--container-wide)) / 2));
}
.nav__logo {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-mono);
  font-size: var(--fs-sm); font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest); text-transform: uppercase;
}
.nav__mark {
  width: 10px; height: 10px; flex: none;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(44, 221, 97, .9);
  border-radius: 2px;
}
.nav__menu {
  display: flex; order: 3; width: 100%;
  gap: var(--sp-5);
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding-bottom: var(--sp-1);
}
.nav__menu::-webkit-scrollbar { display: none; }
.nav__menu a {
  font-size: var(--fs-sm); color: var(--ink-2); white-space: nowrap;
  padding-block: var(--sp-1);
  border-bottom: 1px solid transparent;
}
.nav__menu a:hover { color: var(--brand); }
.nav__menu a.is-current { color: var(--ink); border-bottom-color: var(--brand); }
.nav__side { display: flex; align-items: center; gap: var(--sp-4); }
.nav__cart { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-2); }
.nav__cart b { color: var(--brand); }

@media (min-width: 1024px) {
  .nav__inner { flex-wrap: nowrap; padding-block: var(--sp-4); }
  .nav__menu { order: 0; width: auto; overflow: visible; padding-bottom: 0; }
}

/* ── 히어로 ────────────────────────────────────────────────── */

.hero {
  --header-h: 104px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;              /* 글로우 의사요소를 가둔다 */
  /* ★ align-items:end 는 .hero__media 를 콘텐츠 높이(=0, 자식이 absolute)로 줄여
     375px 에서 히어로 사진을 없앤다. 트랙은 stretch, 카드 하단 정렬은 .hero__text flex 담당. */
  align-items: stretch;
}
.hero::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 46% 40% at 18% 12%, rgba(44,221,97,.20), transparent 62%),
    radial-gradient(ellipse 40% 46% at 88% 78%, rgba(107,232,255,.16), transparent 64%);
}
.hero__media { grid-area: 1 / 1 / 2 / 2; position: relative; align-self: stretch; }
.hero__media .img-slot { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; }
.hero__pic--d { display: none; }
@media (min-width: 768px) { .hero__pic--m { display: none; } .hero__pic--d { display: block; } }

.hero__text {
  grid-area: 1 / 1 / 2 / 2;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-6) var(--gutter) var(--sp-7);
}
/* SPEC 8절 해법 C — 사진 위 불투명 카드. 대비가 구조적으로 보장된다. */
.hero__card {
  width: 100%;
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  display: grid;
  gap: var(--sp-4);
}
.hero__title { font-size: var(--fs-4xl); line-height: 1.02; letter-spacing: var(--ls-tighter); }
.hero__title em { font-style: normal; color: var(--brand); }
.hero__lead { font-size: var(--fs-md); color: var(--ink-2); max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

@media (min-width: 768px) { .hero__card { max-width: 36rem; padding: var(--sp-7); } }
@media (min-width: 1024px) {
  .hero { --header-h: 72px; grid-template-columns: minmax(0, 1fr) minmax(0, 50%); align-items: stretch; }
  /* ★ 미디어가 DOM 앞이므로 행까지 못박는다 (SPEC 8절 2번) */
  .hero__media { grid-area: 1 / 2 / 2 / 3; }
  .hero__text  { grid-area: 1 / 1 / 2 / 2; align-items: center;
                 padding-left: max(var(--gutter), calc((100vw - var(--container-wide)) / 2));
                 padding-right: var(--sp-8); }
  .hero__card { background: none; border: 0; padding: 0; max-width: 32rem; gap: var(--sp-5); }
}

/* ── 지표 ──────────────────────────────────────────────────── */

.stats { border-bottom: 1px solid var(--line); }
.stats__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-inline: max(var(--gutter), calc((100vw - var(--container-wide)) / 2));
}
.stat { padding-block: var(--sp-6); padding-right: var(--sp-5); border-bottom: 1px solid var(--line); }
.stat:nth-child(odd) { border-right: 1px solid var(--line); }
.stat:nth-last-child(-n+2) { border-bottom: 0; }
.stat dt { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: var(--ls-wide); color: var(--ink-3); margin-bottom: var(--sp-3); }
.stat dd { font-size: var(--fs-2xl); font-weight: var(--fw-bold); letter-spacing: var(--ls-tight); line-height: 1; color: var(--brand); }
.stat dd span { font-size: var(--fs-sm); color: var(--ink-2); margin-left: 3px; }

@media (min-width: 768px) {
  .stats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stat { border-bottom: 0; border-right: 1px solid var(--line); padding-inline: var(--sp-5); }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { border-right: 0; }
}

/* ── 상품 그리드 ───────────────────────────────────────────── */

.section--alt { background: var(--surface-alt); }

.sec__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: var(--sp-4); margin-bottom: var(--sp-6);
}
.sec__head h2 { max-width: 20ch; }

.prods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-4); }
.prod { display: grid; gap: var(--sp-3); }
.prod__media { position: relative; overflow: hidden; border-radius: var(--r); }
.prod__media .img-slot { border-radius: var(--r); transition: transform var(--dur-slow) var(--ease); }
.prod:hover .img-slot { transform: scale(1.03); }
.prod__tag {
  position: absolute; top: var(--sp-3); left: var(--sp-3); z-index: 4;
  padding: 2px var(--sp-3);
  border-radius: var(--r-full);
  background: var(--brand); color: var(--brand-ink);
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: var(--ls-wide);
}
.prod__tag--sold { background: var(--line-strong); color: var(--ink); }
.prod__artist { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-3); }
.prod__name { font-size: var(--fs-md); font-weight: var(--fw-semibold); letter-spacing: var(--ls-tight); }
.prod__meta { font-size: var(--fs-xs); color: var(--ink-2); }
.prod__price { font-size: var(--fs-md); font-weight: var(--fw-bold); color: var(--brand); }

@media (min-width: 768px) { .prods { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-5); } }
@media (min-width: 1280px) { .prods--wide { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ── 필터 바 ───────────────────────────────────────────────── */

.filters {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.chip {
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-full);
  background: transparent;
  font-size: var(--fs-xs);
  color: var(--ink);
}
.chip[aria-pressed="true"] { background: var(--brand); color: var(--brand-ink); border-color: var(--brand); }
.search { flex: 1 1 200px; min-width: 0; display: flex; }
.search input {
  width: 100%;
  padding: var(--sp-2) var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-full);
  color: var(--ink);
  font-size: var(--fs-xs);
}
.search input::placeholder { color: var(--ink-3); }

/* ── 상품 상세 (PDP) ───────────────────────────────────────── */

.pdp { display: grid; gap: var(--sp-6); }
.pdp__gallery { display: grid; gap: var(--sp-3); }
.pdp__thumbs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-3); }
.pdp__body { display: grid; gap: var(--sp-4); align-content: start; }
.pdp__title { font-size: var(--fs-2xl); letter-spacing: var(--ls-tight); line-height: 1.1; }
.pdp__price { font-size: var(--fs-2xl); letter-spacing: var(--ls-tight); font-weight: var(--fw-bold); color: var(--brand); }
.pdp__ed {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--brand);
  border-radius: var(--r-full);
  font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--brand);
  justify-self: start;
}
.pdp__opt { display: grid; gap: var(--sp-2); }
.pdp__opt label { font-size: var(--fs-xs); letter-spacing: var(--ls-wide); color: var(--ink-2); }
.pdp__opt select {
  padding: var(--sp-4);
  background: var(--surface-alt);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  color: var(--ink); font-size: var(--fs-sm);
}
.pdp__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

@media (min-width: 1024px) { .pdp { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: var(--sp-8); } }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: var(--sp-3) 0; text-align: left; font-size: var(--fs-sm); border-bottom: 1px solid var(--line); }
.spec-table th { width: 36%; color: var(--ink-2); font-weight: var(--fw-normal); }

/* ── 작가 카드 ─────────────────────────────────────────────── */

.artists { display: grid; gap: var(--sp-5); }
.artist {
  display: grid; gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--r);
  align-content: start;
}
.artist h3 { font-size: var(--fs-lg); letter-spacing: var(--ls-tight); }
.artist__meta { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-2); }
.artist p { font-size: var(--fs-sm); color: var(--ink-2); }
@media (min-width: 768px) { .artists { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .artists { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ── 단계 ──────────────────────────────────────────────────── */

.steps { display: grid; gap: var(--sp-6); counter-reset: s; }
.step { display: grid; gap: var(--sp-3); padding-top: var(--sp-5); border-top: 1px solid var(--line-strong); }
.step__n { font-size: var(--fs-2xl); letter-spacing: var(--ls-tight); font-weight: var(--fw-bold); line-height: 1; color: var(--brand); }
.step h3 { font-size: var(--fs-lg); letter-spacing: var(--ls-tight); }
.step p { font-size: var(--fs-sm); color: var(--ink-2); max-width: 52ch; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-6); } }

/* ── 장바구니 ──────────────────────────────────────────────── */

.cartline {
  display: grid;
  grid-template-columns: minmax(0, 96px) minmax(0, 1fr);
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cartline__body { display: grid; gap: var(--sp-2); }
.cartline__name { font-size: var(--fs-md); font-weight: var(--fw-semibold); }
.cartline__meta { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--ink-2); }
.cartline__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-4); margin-top: var(--sp-2); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: var(--r-full); overflow: hidden; }
.qty button { width: 34px; height: 34px; color: var(--ink); font-size: var(--fs-md); }
.qty button:hover { background: var(--surface-alt); color: var(--brand); }
.qty span { min-width: 2.4rem; text-align: center; font-family: var(--font-mono); font-size: var(--fs-sm); }
.cartline__price { font-size: var(--fs-md); font-weight: var(--fw-bold); color: var(--brand); }

.summary {
  display: grid; gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.summary__row { display: flex; justify-content: space-between; gap: var(--sp-4); font-size: var(--fs-sm); color: var(--ink-2); }
.summary__row b { color: var(--ink); }
.summary__total { display: flex; justify-content: space-between; gap: var(--sp-4); padding-top: var(--sp-4); border-top: 1px solid var(--line-strong); font-size: var(--fs-lg); font-weight: var(--fw-bold); }
.summary__total b { color: var(--brand); }

@media (min-width: 1024px) {
  .cart__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 360px); gap: var(--sp-8); align-items: start; }
  .cart__side { position: sticky; top: calc(var(--sp-9) + var(--sp-4)); }
}

/* ── 페이지 헤드 ───────────────────────────────────────────── */

.page-head { padding-block: var(--sp-8) var(--sp-7); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 160%;
  background: radial-gradient(ellipse 40% 60% at 76% 30%, rgba(44,221,97,.14), transparent 66%);
  pointer-events: none;
}
.page-head__inner { position: relative; display: grid; gap: var(--sp-4); }
.page-head h1 { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.06; }
.page-head p { font-size: var(--fs-md); color: var(--ink-2); max-width: 52ch; }
@media (min-width: 1024px) {
  .page-head { padding-block: var(--sp-9) var(--sp-8); }
  .page-head__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--sp-8); align-items: end; }
}

/* ── 풀블리드 + 겹침 카드 ──────────────────────────────────── */

.press { position: relative; padding-bottom: var(--section-y); }
.press__media { border-radius: 0; aspect-ratio: 4 / 5; }
.press__card {
  position: relative;
  margin-top: calc(var(--sp-8) * -1);
  padding: var(--sp-6);
  background: var(--surface-alt);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  display: grid; gap: var(--sp-4);
}
@media (min-width: 768px) {
  .press__media { aspect-ratio: 21 / 9; }
  .press__card { margin-top: calc(var(--sp-10) * -1); max-width: 620px; padding: var(--sp-8); }
}

/* ── 티커 ──────────────────────────────────────────────────── */

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--surface-alt); padding-block: var(--sp-4); }
.ticker__track { display: flex; align-items: center; gap: var(--sp-6); width: max-content; animation: ticker 34s linear infinite; }
.ticker__track span { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: var(--ls-widest); text-transform: uppercase; color: var(--ink-2); white-space: nowrap; }
.ticker__track i { width: 6px; height: 6px; background: var(--brand); flex: none; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── CTA 밴드 ──────────────────────────────────────────────── */

.cta { position: relative; overflow: hidden; padding-block: var(--section-y); }
.cta__bg { position: absolute; inset: 0; z-index: 0; aspect-ratio: auto; border-radius: 0; }
.cta__bg::after {
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--surface) 92%, transparent) 0%,
    color-mix(in oklab, var(--surface) 88%, transparent) 60%,
    color-mix(in oklab, var(--surface) 36%, transparent) 100%);
}
.cta__inner { position: relative; z-index: 1; display: grid; gap: var(--sp-4); justify-items: start; }
.cta__title { font-size: var(--fs-3xl); letter-spacing: var(--ls-tighter); line-height: 1.08; }
.cta__lead { font-size: var(--fs-md); color: var(--ink-2); max-width: 44ch; }

/* ── FAQ ───────────────────────────────────────────────────── */

.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
  padding-block: var(--sp-5); font-size: var(--fs-md); font-weight: var(--fw-semibold);
  cursor: pointer; list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--brand); }
.qa summary::after {
  content: ""; width: 12px; height: 12px; flex: none;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 100% 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 1px 100% no-repeat;
  transition: transform var(--dur) var(--ease);
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { padding-bottom: var(--sp-5); font-size: var(--fs-sm); color: var(--ink-2); max-width: 62ch; }

/* ── 푸터 ──────────────────────────────────────────────────── */

.foot { padding-block: var(--sp-8) var(--sp-6); border-top: 1px solid var(--line); }
.foot__inner { display: grid; gap: var(--sp-5); }
.foot__brand { display: inline-flex; align-items: center; gap: var(--sp-3); font-family: var(--font-mono); font-size: var(--fs-sm); font-weight: var(--fw-bold); letter-spacing: var(--ls-widest); text-transform: uppercase; }
.foot__addr { font-style: normal; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.9; }
.foot__nav { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.foot__nav a { font-size: var(--fs-sm); color: var(--ink-2); }
.foot__nav a:hover { color: var(--brand); }
.foot__copy { grid-column: 1 / -1; padding-top: var(--sp-5); border-top: 1px solid var(--line); font-size: var(--fs-xs); color: var(--ink-2); }
@media (min-width: 768px) { .foot__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-7); } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .ticker__track { animation: none; }
}

/* ============================================================
   ★ SPEC 4-C 보강 — 브랜드 마크 · 아이콘 · 인터랙션
   레이아웃·색·타이포는 건드리지 않는다. 반응만 더한다.
   ============================================================ */

/* base.css 가 svg 를 display:block 으로 리셋하므로 inline-block 으로 되돌린다. */
.ico { width: 1em; height: 1em; flex: none; display: inline-block; vertical-align: -0.125em; }

/* ── 브랜드 마크 ────────────────────────────────────────────
   인쇄 견당 마크(레지스트레이션 타깃). 판을 겹칠 때 도수를 맞추는 그 표시.
   마우스를 올리면 타깃이 90° 돌며 도수를 다시 맞춘다. */

.bmark {
  flex: none; align-self: center; color: var(--brand);
  filter: drop-shadow(0 0 8px color-mix(in oklab, var(--brand) 55%, transparent));
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur) var(--ease);
}
.bmark__ring, .bmark__core { transform-box: fill-box; transform-origin: 50% 50%;
                             transition: transform var(--dur-slow) var(--ease-out); }
.nav__logo:hover .bmark, .nav__logo:focus-visible .bmark {
  transform: rotate(90deg);
  filter: drop-shadow(0 0 16px color-mix(in oklab, var(--brand) 80%, transparent));
}
.foot__brand:hover .bmark { transform: rotate(90deg); }
.nav__logo:hover .bmark__core { animation: bmarkReg var(--dur-slow) var(--ease-out); }
@keyframes bmarkReg {
  0%   { transform: scale(.4); opacity: .4; }
  100% { transform: scale(1); opacity: 1; }
}

.nav__logo { transition: letter-spacing var(--dur) var(--ease); }
.nav__logo:hover { letter-spacing: var(--ls-wide); }

/* ── 아이콘이 붙는 자리 ─────────────────────────────────────── */

.prod__meta, .cartline__meta, .artist__meta, .pdp__ed {
  display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap;
}
.prod__meta .ico, .cartline__meta .ico, .artist__meta .ico, .pdp__ed .ico {
  color: var(--brand); flex: none;
  transition: transform var(--dur) var(--ease-out);
}
.prod:hover .prod__meta .ico { transform: translateY(-2px); }
.artist:hover .artist__meta .ico { transform: scale(1.14); }

.prod__tag { display: inline-flex; align-items: center; gap: var(--sp-2); }
.prod__tag .ico { transition: transform var(--dur) var(--ease-out); }
.prod:hover .prod__tag .ico { transform: rotate(-10deg); }

.search { position: relative; align-items: center; }
.search .ico { position: absolute; left: var(--sp-4); color: var(--ink-2); pointer-events: none;
               transition: color var(--dur) var(--ease); }
.search input { padding-left: calc(var(--sp-5) + 1.35em); }
.search:hover .ico, .search:focus-within .ico { color: var(--brand); }

.foot__lines { display: grid; gap: 0; }
.foot__lines span { display: flex; align-items: center; gap: var(--sp-3); }
.foot__lines .ico { color: var(--brand); font-size: var(--fs-lg);
                    transition: transform var(--dur) var(--ease-out); }
.foot__lines span:hover .ico { transform: scale(1.14); }

.btn__arrow { font-size: 1.25em; transition: transform var(--dur) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ── 버튼 ──────────────────────────────────────────────────── */

.btn { transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
                   border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
                   transform var(--dur-fast) var(--ease-out); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }

/* ── 내비 ──────────────────────────────────────────────────── */

.nav__menu a { position: relative; padding-block: 3px; }
.nav__menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--brand); box-shadow: 0 0 10px var(--brand);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cart { transition: color var(--dur) var(--ease); }
.nav__cart:hover { color: var(--brand); }
.nav__cart b { transition: transform var(--dur) var(--ease-out); }
.nav__cart:hover b { transform: scale(1.16); }

/* ── 지표 ──────────────────────────────────────────────────── */

.stat { transition: background var(--dur) var(--ease); }
.stat:hover { background: var(--surface-alt); }
.stat dd { transition: transform var(--dur) var(--ease-out), text-shadow var(--dur) var(--ease); }
.stat:hover dd { transform: translateY(-3px); text-shadow: 0 0 22px color-mix(in oklab, var(--brand) 70%, transparent); }
.stat dt { transition: color var(--dur) var(--ease); }
.stat:hover dt { color: var(--brand); }

/* ── 상품 카드: 들어올려지고 사진이 당겨진다 ────────────────── */

.prod { transition: transform var(--dur) var(--ease-out); }
.prod .img-slot { overflow: hidden; }
.prod .img-slot img { transition: transform var(--dur-slow) var(--ease-out); }
.prod:hover { transform: translateY(-6px); }
.prod:hover .img-slot img { transform: scale(1.06); }
.prod__name { transition: color var(--dur) var(--ease); }
.prod:hover .prod__name { color: var(--brand); }
.prod__price { transition: color var(--dur) var(--ease); }
.prod:hover .prod__price { color: var(--brand); }

/* ── 작가 · 공정 · 언론 ────────────────────────────────────── */

.artist { transition: transform var(--dur) var(--ease-out); }
.artist .img-slot { overflow: hidden; }
.artist .img-slot img { transition: transform var(--dur-slow) var(--ease-out); }
.artist:hover { transform: translateY(-4px); }
.artist:hover .img-slot img { transform: scale(1.05); }
.artist h3 { transition: color var(--dur) var(--ease); }
.artist:hover h3 { color: var(--brand); }

.step { position: relative; transition: transform var(--dur) var(--ease-out); }
.step::before {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0;
  background: var(--brand); box-shadow: 0 0 10px var(--brand);
  transition: width var(--dur-slow) var(--ease-out);
}
.step:hover { transform: translateY(-4px); }
.step:hover::before { width: 100%; }
.step__n { transition: color var(--dur) var(--ease), letter-spacing var(--dur) var(--ease); }
.step:hover .step__n { letter-spacing: var(--ls-widest); }

.press__card { transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease-out); }
.press__card:hover { transform: translateY(-4px); }

/* ── 필터 칩 · 수량 ────────────────────────────────────────── */

.chip { transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
                    border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease-out); }
.chip:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand); }
.qty button { transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }

/* ── 장바구니 · 주문 요약 ──────────────────────────────────── */

.cartline { transition: background var(--dur) var(--ease); }
.cartline:hover { background: var(--surface-alt); }
.cartline__name { transition: color var(--dur) var(--ease); }
.cartline:hover .cartline__name { color: var(--brand); }
.summary__row { transition: color var(--dur) var(--ease); }
.summary__row:hover { color: var(--brand); }

/* ── 티커: 올리면 멈춘다 ────────────────────────────────────── */

.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track i { transition: transform var(--dur) var(--ease-out); }
.ticker:hover .ticker__track i { transform: scale(1.7); }

/* ── PDP 썸네일 · FAQ ──────────────────────────────────────── */

.pdp__thumbs .img-slot { transition: border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease-out); }
.pdp__thumbs .img-slot:hover { transform: translateY(-2px); }

@keyframes qaOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.qa[open] p { animation: qaOpen var(--dur) var(--ease-out) both; }
.qa summary { transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease-out); }
.qa summary:hover { padding-left: var(--sp-3); }

/* ── 재고 신호 ─────────────────────────────────────────────── */

.prod__tag { animation: edGlow 5s var(--ease) infinite; }
@keyframes edGlow {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--brand) 0%, transparent); }
  50%      { box-shadow: 0 0 14px color-mix(in oklab, var(--brand) 34%, transparent); }
}

/* ── 푸터 링크 ─────────────────────────────────────────────── */

.foot__nav a { position: relative; display: inline-block; transition: color var(--dur) var(--ease); }
.foot__nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--brand); transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.foot__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── 형제 계단식 지연 ───────────────────────────────────────── */

html.js .stats__grid .reveal:nth-child(2) { transition-delay: 70ms; }
html.js .stats__grid .reveal:nth-child(3) { transition-delay: 140ms; }
html.js .stats__grid .reveal:nth-child(4) { transition-delay: 210ms; }
html.js .prods .reveal:nth-child(2) { transition-delay: 80ms; }
html.js .prods .reveal:nth-child(3) { transition-delay: 160ms; }
html.js .prods .reveal:nth-child(4) { transition-delay: 240ms; }
html.js .steps .reveal:nth-child(2) { transition-delay: 90ms; }
html.js .steps .reveal:nth-child(3) { transition-delay: 180ms; }
html.js .artists .reveal:nth-child(2) { transition-delay: 90ms; }
html.js .artists .reveal:nth-child(3) { transition-delay: 180ms; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { transition-delay: 0s !important; }
  .nav__logo:hover .bmark, .foot__brand:hover .bmark,
  .btn:hover, .prod:hover, .prod:hover .img-slot img, .artist:hover,
  .artist:hover .img-slot img, .step:hover, .chip:hover, .press__card:hover,
  .prod:hover .prod__meta .ico, .prod:hover .prod__tag .ico,
  .artist:hover .artist__meta .ico, .stat:hover dd, .nav__cart:hover b,
  .ticker:hover .ticker__track i, .pdp__thumbs .img-slot:hover,
  .foot__lines span:hover .ico { transform: none; }
  .prod__tag { animation: none; }
}


/* ===== 획일성 제거 — NEO 무드 어휘 =====================================
   160작품이 레퍼런스의 밑줄 draw·카드 리프트·대문자 킥커를 그대로 복사해
   같은 사이트 리스킨으로 보였다. 반응 방식을 무드에 맞게 갈아끼운다.
   ==================================================================== */
/* 세로 카덴스를 작품마다 다르게 — 전부 같은 --section-y 를 쓰는 게 구조적 tell 이었다 */
:root { --section-y: clamp(3.89rem, 2.4171rem + 6.3055vw, 7.78rem); }

/* 다크네온 — 글자 자체가 발광한다. */
.nav__menu a::after, .foot__nav a::after { display: none !important; }
.foot__nav a, .nav__menu a:hover { text-shadow: 0 0 14px currentColor, 0 0 4px currentColor; }
.prod:hover .prod__meta .ico, .btn:hover, .stat:hover dd, .prod:hover, .artist:hover, .step:hover, .press__card:hover, .chip:hover, .pdp__thumbs .img-slot:hover { transform: none; }
.prod:hover .prod__meta .ico, .btn:hover, .stat:hover dd, .prod:hover, .artist:hover, .step:hover, .press__card:hover, .chip:hover, .pdp__thumbs .img-slot:hover { box-shadow: 0 0 0 1px color-mix(in oklab, var(--brand) 55%, transparent),
                      0 0 26px color-mix(in oklab, var(--brand) 22%, transparent); }

/* webit-touch */
@media (max-width: 767px) {
  .nav__inner { flex-wrap: wrap; overflow: visible; }
  .hero__actions, .hero__acts { flex-wrap: wrap; }
}
html.tier-premium .pm-progress { box-shadow: 0 0 18px var(--brand); }
html.tier-premium .btn--solid { text-shadow: 0 0 18px color-mix(in oklab, var(--brand) 45%, transparent); }
