/*
  Project: neonnuri.com portfolio
  Designer & Publisher: Nahyun Kim
  Copyright: © 2026 neonnuri.com / Nahyun Kim. Unauthorized copying is prohibited.
*/

/* =========================================================
   PANIC ROOM Releases - clean style.css
   Main areas:
   1) Header: nav.top
   2) Hero: .hero-release / .hero-flow-area
   3) Releases: .grid / .card / .modal
   ========================================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #f5f3ef;
  --fg: #171717;
  --muted: #817b73;
  --line: #d9d3ca;
  --paper: #fffdf8;
}
html { scroll-behavior: smooth; scroll-padding-top: 180px; scrollbar-gutter: stable; overflow-y: scroll; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Archivo', 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ===== PANIC ROOM INTRO ===== */
/* Intro quick edit: change these values only. */
.panic-intro {
  --intro-bg-center: #171717;
  --intro-bg-edge: #020202;
  --intro-text: #f4f1ea;
  --intro-progress-opacity: 0.58;
}
body.panic-intro-open {
  overflow: hidden;
}
.panic-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  color: var(--intro-text);
  isolation: isolate;
  cursor: pointer;
  touch-action: manipulation;
}
.panic-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 9;
  background: var(--intro-bg-edge);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.42s ease;
}
.panic-intro.is-ready::before {
  opacity: 0;
}
.panic-intro-noise {
  position: absolute;
  inset: -50%;
  z-index: 4;
  opacity: 0.09;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
  animation: panic-noise 0.18s steps(2) infinite;
}
.panic-intro-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72), transparent 22%, transparent 78%, rgba(0,0,0,0.72)),
    linear-gradient(180deg, rgba(0,0,0,0.72), transparent 26%, transparent 74%, rgba(0,0,0,0.72));
}
.panic-intro-axis {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 1px;
  background: rgba(244, 241, 234, 0.22);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform, opacity;
}
.panic-intro-flash {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: #f4f1ea;
  opacity: 0;
  pointer-events: none;
}
.panic-intro-center {
  position: relative;
  z-index: 5;
  width: min(92vw, 1500px);
  text-align: center;
  will-change: transform, opacity, filter;
}
.panic-intro-kicker,
.panic-intro-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.72);
}
.panic-intro-kicker {
  margin-bottom: clamp(24px, 4vh, 52px);
}
.panic-intro-index {
  margin-top: clamp(28px, 5vh, 64px);
  opacity: 0.48;
}
.panic-intro-slogan {
  font-size: clamp(44px, 7.8vw, 144px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: 0 0 72px rgba(255, 255, 255, 0.1);
}
.panic-intro-line {
  display: block;
  overflow: hidden;
  padding: 0.08em 0;
  will-change: transform, opacity, filter;
}
.panic-intro-char {
  display: inline-block;
  will-change: transform, opacity;
}
.panic-intro-word {
  display: inline-block;
  white-space: nowrap;
}
.panic-intro-word + .panic-intro-word {
  margin-left: 0.38em;
}
.panic-intro-counts {
  width: min(440px, 78vw);
  margin: clamp(26px, 4vh, 48px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(244, 241, 234, 0.34);
  border-bottom: 1px solid rgba(244, 241, 234, 0.18);
  will-change: transform, opacity, filter;
}
.panic-intro-counts > div {
  padding: 12px 18px 14px;
  text-align: left;
}
.panic-intro-counts > div + div {
  border-left: 1px solid rgba(244, 241, 234, 0.18);
}
.panic-intro-count-label,
.panic-intro-counts strong {
  display: block;
}
.panic-intro-count-label {
  color: rgba(244, 241, 234, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.panic-intro-counts strong {
  position: relative;
  height: 1.15em;
  margin-top: 6px;
  color: var(--intro-text);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  overflow: hidden;
  will-change: transform, opacity;
}
.panic-intro-count-value {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 100%;
  will-change: transform, opacity;
}
.panic-intro-year-prefix {
  position: absolute;
  inset: 0 auto auto 0;
}
.panic-intro-counts > div:first-child .panic-intro-count-value {
  left: 1.68em;
  width: auto;
}
.panic-intro-skip {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 8;
  border: 0;
  border-bottom: 1px solid rgba(244, 241, 234, 0.38);
  padding: 6px 0;
  background: transparent;
  color: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.panic-intro-progress {
  position: absolute;
  left: 28px;
  right: 132px;
  bottom: 25px;
  z-index: 8;
  display: grid;
  grid-template-columns: auto minmax(80px, 220px) 18px;
  align-items: center;
  gap: 12px;
  color: var(--intro-text);
  opacity: var(--intro-progress-opacity);
}
.panic-intro-progress-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}
.panic-intro-progress-track {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(244, 241, 234, 0.24);
}
.panic-intro-progress-fill {
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
.panic-intro-progress-orbit {
  position: relative;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(244, 241, 234, 0.48);
  border-radius: 50%;
  overflow: hidden;
}
.panic-intro-progress-disc {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: currentColor;
  transform: scale(0);
  will-change: transform;
}
.panic-intro-shutter {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 50.1%;
  height: 100%;
  background:
    radial-gradient(circle at center, var(--intro-bg-center) 0%, #0a0a0a 54%, var(--intro-bg-edge) 100%);
  pointer-events: none;
  will-change: transform;
}
.panic-intro-shutter-top {
  left: 0;
  transform-origin: left center;
  box-shadow: 16px 0 42px rgba(0, 0, 0, 0.48);
}
.panic-intro-shutter-bottom {
  right: 0;
  transform-origin: right center;
  box-shadow: -16px 0 42px rgba(0, 0, 0, 0.48);
}
@keyframes panic-noise {
  0% { transform: translate3d(-2%, 1%, 0); }
  25% { transform: translate3d(1%, -2%, 0); }
  50% { transform: translate3d(2%, 2%, 0); }
  75% { transform: translate3d(-1%, -1%, 0); }
  100% { transform: translate3d(-2%, 1%, 0); }
}
@media (max-width: 700px) {
  .panic-intro-slogan {
    font-size: clamp(34px, 10.5vw, 58px);
    line-height: 0.92;
  }
  .panic-intro-counts {
    margin-top: 22px;
  }
  .panic-intro-skip {
    right: 18px;
    bottom: 18px;
  }
  .panic-intro-progress {
    left: 18px;
    right: 116px;
    bottom: 20px;
    grid-template-columns: minmax(64px, 1fr) 16px;
    gap: 9px;
  }
  .panic-intro-progress-label {
    display: none;
  }
  .panic-intro-progress-orbit {
    width: 15px;
    height: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .panic-intro-noise { animation: none; }
}

/* ===== HEADER ===== */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: auto;
  height: 160px;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(245, 243, 239, 0.88);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
}
.brand-mark {
  position: relative;
  width: 124px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: brand-spin 55s linear infinite;
  color: var(--fg);
}
.brand-ring text {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  fill: currentColor;
  text-transform: uppercase;
}
.brand-logo {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  object-fit: contain;
}
@keyframes brand-spin {
  to { transform: rotate(360deg); }
}
nav.top .menu {
  /* 콘텐츠 폭에 자연스럽게 맞도록 flex (grid의 고정 폭과 영문 길이 불일치 문제 해소) */
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 0;
}
nav.top .menu > a,
nav.top .menu > .menu-shop {
  white-space: nowrap;
}
/* 햄버거 토글 — 모바일에서만 보임 (미디어쿼리에서 display 재정의) */
.menu-toggle { display: none; }
.menu-backdrop { display: none; }
@media (max-width: 900px) {
  .menu-backdrop { display: block; }
}
nav.top .menu a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
nav.top .menu a:hover { opacity: 0.55; }
nav.top .menu a[aria-current="page"] { text-decoration: underline; text-underline-offset: 4px; }

/* Shop 메뉴 — 평소 텍스트, 호버 시 로고로 cross-fade 전환 */
nav.top .menu .menu-shop {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 32px;
  padding: 0 6px;
  line-height: 1;
}
nav.top .menu .menu-shop span,
nav.top .menu .menu-shop .menu-shop-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: opacity 0.32s ease, transform 0.4s cubic-bezier(0.2, 0.85, 0.3, 1.1);
}
nav.top .menu .menu-shop span {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  line-height: 1;
  white-space: nowrap;
}
nav.top .menu .menu-shop .menu-shop-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(0.6) rotate(-12deg);
  opacity: 0;
}
nav.top .menu .menu-shop:hover span,
nav.top .menu .menu-shop:focus-visible span {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
}
nav.top .menu .menu-shop:hover .menu-shop-logo,
nav.top .menu .menu-shop:focus-visible .menu-shop-logo {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0);
}
.header-search {
  position: relative;
  width: clamp(140px, 14vw, 200px);
  min-width: 0;
  flex: 0 0 auto;
}
.header-search input {
  width: 100%;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--fg);
  padding: 0 34px 0 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.header-search input::placeholder {
  color: var(--muted);
  opacity: 0.82;
  text-transform: uppercase;
}
.header-search input:focus {
  border-color: var(--fg);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.search-clear {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
.header-search.has-value .search-clear {
  opacity: 1;
  pointer-events: auto;
}
.search-clear::before,
.search-clear::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}
.search-clear::before { transform: translate(-50%, -50%) rotate(45deg); }
.search-clear::after { transform: translate(-50%, -50%) rotate(-45deg); }
.search-clear:hover { color: var(--fg); }
.lang-toggle { display: inline-flex; align-items: center; gap: 6px; }
.lang-btn { border: 0; background: none; color: var(--muted); font-size: 12px; font-weight: 800; cursor: pointer; opacity: 1; text-decoration: none; text-underline-offset: 3px; }
.lang-btn.active { color: var(--fg); text-decoration: underline; }
.lang-sep { color: var(--muted); opacity: 0.7; }

/* ===== HERO: TEXT + TWO-LINE KEYFRAME ALBUM FLOW ===== */
.hero-release {
  position: relative;
  min-height: 920px;
  padding: 210px 4vw 76px;
  display: grid;
  grid-template-columns: minmax(280px, 32%) minmax(0, 68%);
  align-items: center;
  gap: 34px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 15%, rgba(0, 0, 0, 0.07), transparent 32%),
    linear-gradient(135deg, #faf8f3 0%, #ebe5da 100%);
  transition: background-position 0.8s ease, filter 0.45s ease;
}
.hero-release::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 72% 38%, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(120deg, transparent 0%, rgba(0, 0, 0, 0.055) 100%);
  transition: opacity 0.45s ease;
}
.hero-release:hover::before {
  opacity: 1;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 480px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.hero-copy h1 {
  font-size: clamp(54px, 6.2vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 900;
}
.hero-desc {
  margin-top: 26px;
  max-width: 430px;
  color: #5c554e;
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-main, .btn-text {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.btn-main { padding: 0 20px; background: var(--fg); color: var(--bg); border: 1px solid var(--fg); }
.btn-main:hover { background: transparent; color: var(--fg); }
.btn-text { opacity: 0.62; }
.btn-text:hover { opacity: 1; }

.hero-flow-area {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  --flow-card-size: clamp(160px, 14vw, 220px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: calc((var(--flow-card-size) * 2) + 16px);
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.album-flow-row {
  width: 100%;
  overflow: hidden;
}
.album-flow-track {
  width: max-content;
  display: flex;
  gap: 14px;
  will-change: transform;
}
.flow-left {
  animation: album-flow-left 62s linear infinite;
}
.flow-right {
  animation: album-flow-right 62s linear infinite;
}
.album-flow-track:has(.flow-album-card:hover) {
  animation-play-state: paused;
}
.flow-album-card {
  position: relative;
  width: var(--flow-card-size);
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.07),
    0 10px 26px rgba(0,0,0,0.12);
  transform: translateY(0) scale(1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}
.flow-album-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.3s ease;
}
.hero-release:hover .flow-album-card {
  filter: saturate(1.03);
}
.hero-release:hover .hero-copy h1 {
  transform: none;
}
.hero-copy h1 {
  transition: transform 0.35s ease;
}
.flow-album-card:hover img {
  transform: scale(1.075);
  filter: brightness(0.9);
}
.hero-release:hover .flow-album-card:hover {
  transform: none;
  filter: saturate(1.1) contrast(1.04);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.12),
    0 24px 46px rgba(0,0,0,0.22);
}
.flow-album-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 34px 12px 12px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.78) 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
.flow-album-card:hover .flow-album-info {
  opacity: 1;
  transform: translateY(0);
}
.flow-album-title {
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.flow-album-artist {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.25;
  opacity: 0.78;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@keyframes album-flow-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes album-flow-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ===== BROWSE ===== */
.browse-panel { padding: 56px 48px; display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; border-bottom: 1px solid var(--line); }
.browse-panel-line { padding-top: 40px; padding-bottom: 40px; }
.browse-title p { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 8px; }
.browse-title h2 { font-size: clamp(30px, 4.5vw, 58px); line-height: 0.95; letter-spacing: -0.04em; }
.browse-list { display: flex; flex-wrap: wrap; gap: 8px; }
.browse-chip, .chip { border: 1px solid var(--line); background: transparent; padding: 9px 15px; font-size: 12px; cursor: pointer; transition: 0.2s; color: var(--fg); }
.browse-chip:hover, .chip:hover { border-color: var(--fg); background: rgba(0,0,0,0.04); }
.chip.active { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.browse-chip span { color: var(--muted); margin-left: 4px; }
.history-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--fg);
}
.history-item {
  position: relative;
  min-height: 172px;
  padding: 24px 20px 22px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  text-align: left;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}
.history-item:first-child {
  border-left: 1px solid var(--line);
}
.history-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--fg);
  transition: transform 0.22s ease, background 0.22s ease;
}
.history-item:hover {
  background: var(--fg);
  color: var(--bg);
}
.history-item:hover::before {
  transform: scale(1.45);
  background: var(--bg);
}
.history-year {
  display: block;
  margin-bottom: 42px;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.history-copy {
  display: block;
}
.history-copy strong,
.history-copy em {
  display: block;
}
.history-copy strong {
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.history-copy em {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-style: normal;
  word-break: keep-all;
}
.history-item:hover .history-copy em {
  color: rgba(245, 243, 239, 0.72);
}

/* ===== PRODUCER ===== */
.producer-section {
  padding: 32px 48px 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.producer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.producer-card {
  min-height: 220px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.38);
}
.producer-toggle {
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.producer-toggle:hover,
.producer-toggle:focus-visible {
  border-color: #c8c1b8;
  background: rgba(255, 253, 248, 0.78);
  outline: none;
}
.producer-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.75), rgba(217, 211, 202, 0.46)),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.035) 0 1px, transparent 1px 12px);
}
.producer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;     /* 기본값 */
  filter: grayscale(0.08);
  transition: transform 0.45s ease, filter 0.3s ease;
}
/* 인물별 개별 보정 — 머리가 잘려서 사진 아래로 내림(=y값 작게) */
.producer-card[data-producer="drsimpson"] .producer-photo img { object-position: center 0%; }
.producer-card[data-producer="joohyo"]    .producer-photo img { object-position: center 8%; }
.producer-card[data-producer="seungjae"]  .producer-photo img { object-position: center 14%; }
.producer-card[data-producer="bomi"]      .producer-photo img { object-position: center 5%; }

/* unlocktheroom 마스터 카드 — 중앙정렬 (사람 사진 producer 소개와 같은 톤) */
#masters .producer-info {
  text-align: center;
  padding: 14px 10px 10px;
}
#masters .producer-info .producer-role {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
  font-weight: 700;
}
#masters .producer-info h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  text-align: center;
}
#masters .producer-info .producer-alias {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  letter-spacing: -0.005em;
}
#masters .producer-info .producer-alias:empty { display: none; }
.producer-toggle:hover .producer-photo img,
.producer-toggle:focus-visible .producer-photo img {
  transform: scale(1.045);
  filter: grayscale(0) contrast(1.03);
}
.producer-photo span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.producer-copy {
  padding: 18px 20px 22px;
}
.producer-role {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.producer-card h3 {
  margin-top: 20px;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.producer-card h3 span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.48em;
  letter-spacing: 0;
}
.producer-card p:last-child {
  margin-top: 12px;
  color: #5c554e;
  font-size: 13px;
  line-height: 1.65;
  word-break: keep-all;
}
.empty-producer-card {
  min-height: 260px;
  background: rgba(255, 253, 248, 0.38);
}
.empty-producer-card h3,
.empty-producer-card p:last-child {
  color: var(--muted);
}
.producer-modal {
  top: 160px;
}
.producer-modal .close {
  top: 184px;
}
.producer-modal .producer-modal-content {
  padding-top: 64px;
}
.producer-modal-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 64px;
}
.producer-modal-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.84), rgba(217, 211, 202, 0.52)),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 12px);
}
.producer-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;  /* 기본값 — 송승근 · 김승재 */
}
.producer-modal-photo[data-producer="drsimpson"] img { object-position: center 0%; }
.producer-modal-photo[data-producer="bomi"] img      { object-position: center 3%; }
.producer-modal-photo span {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  padding: 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.producer-modal-kicker {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.producer-modal-lead {
  max-width: 560px;
  color: #5c554e;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.005em;
  word-break: keep-all;
}
.producer-modal-content h2 {
  letter-spacing: -0.025em;
  line-height: 1.2;
  word-break: keep-all;
}
.producer-modal-section {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.producer-modal-section h3 {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.producer-modal-section p,
.producer-modal-section li {
  color: #2f2b27;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: -0.005em;
  word-break: keep-all;
}
.producer-modal-section ul {
  list-style: none;
}
.producer-modal-section li + li {
  margin-top: 6px;
}

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}
.stats .item {
  min-height: 168px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.42);
}
.stats .item:first-child {
  border-left: 1px solid var(--line);
}
.stats .label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.stats .value {
  margin-top: 28px;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.stats .desc {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* ===== RELEASES HEADER / FILTER ===== */
.section-head { padding: 80px 48px 40px; display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid var(--line); }
.section-head h2 { font-size: clamp(44px, 7vw, 92px); font-weight: 900; letter-spacing: -0.055em; line-height: 0.9; }
.head-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.meta { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; text-align: right; }
.meta-small { font-size: 11px; margin-top: 4px; }
.view-toggle { display: inline-flex; gap: 4px; border: 1px solid var(--line); padding: 4px; }
.view-toggle button { padding: 6px 14px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; border: 0; background: transparent; cursor: pointer; }
.view-toggle button.active { background: var(--fg); color: var(--bg); }
.filters { padding: 32px 48px; display: flex; flex-direction: column; gap: 22px; border-bottom: 1px solid var(--line); }
.filters .group { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.filters .label { display: block; width: 100%; font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 8px; }

/* ===== INDEX VIEW ===== */
.index-view { padding: 0 48px; display: none; }
.index-view.active { display: block; }
.index-row { display: grid; grid-template-columns: 60px 1fr 2fr 2fr 1fr 80px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; cursor: pointer; transition: padding 0.25s, background 0.2s; }
.index-row:hover { padding-left: 16px; background: rgba(0,0,0,0.025); }
.index-row .year { font-size: 12px; color: var(--muted); }
.index-row .artist { font-size: 14px; font-weight: 700; }
.index-row .album { font-size: 16px; }
.index-row .album-en, .index-row .type { font-size: 12px; color: var(--muted); }
.index-row .arrow { text-align: right; font-size: 18px; }
.year-header { padding: 64px 0 20px; border-bottom: 1px solid var(--fg); margin-bottom: 12px; }
.year-header:first-child { padding-top: 24px; }
.year-header .y { font-size: clamp(44px, 8vw, 120px); font-weight: 900; line-height: 0.85; letter-spacing: -0.04em; }
.year-header .count { font-size: 12px; color: var(--muted); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.empty-state {
  padding: 72px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.grid .empty-state { grid-column: 1 / -1; }

/* ===== GRID VIEW ===== */
.grid-view { padding: 32px 48px; display: none; }
.grid-view.active { display: block; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 32px 20px; padding-bottom: 96px; }
.card { cursor: pointer; }
.card .cover { aspect-ratio: 1; background: white; overflow: hidden; border-radius: 6px; box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 12px 28px -14px rgba(0,0,0,0.22); }
.card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s; }
.card:hover .cover img { transform: scale(1.08); }
.card .info { padding-top: 12px; }
.card .info .year { font-size: 10px; color: var(--muted); letter-spacing: 0.08em; }
.card .info .album { font-size: 13px; font-weight: 600; margin-top: 4px; line-height: 1.3; }
.card .info .artist { font-size: 11px; color: var(--muted); margin-top: 2px; }
.paren { font-weight: 400; opacity: 0.72; }

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(245,243,239,0.97);
  backdrop-filter: blur(10px);
  z-index: 2000;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}
.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.5s ease, visibility 0s linear 0s;
}
.modal-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 48px;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.modal.active .modal-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.modal .close { position: fixed; top: 24px; right: 48px; width: 48px; height: 48px; border: 0; border-radius: 50%; cursor: pointer; background: var(--fg); color: var(--bg); z-index: 2001; opacity: 0; transform: translateY(-10px) rotate(-12deg); transition: opacity 0.35s ease, transform 0.5s ease, background 0.2s ease; }
.modal.active .close {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}
.modal .close:hover {
  transform: translateY(0) rotate(90deg);
}
.modal .close::before,
.modal .close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}
.modal .close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.modal .cover-large { aspect-ratio: 1; background: var(--line); overflow: hidden; border-radius: 8px; }
.modal .cover-large img { width: 100%; height: 100%; object-fit: cover; }
.modal h2 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; line-height: 0.95; margin-bottom: 16px; letter-spacing: -0.04em; }
.modal .album-en { font-size: 18px; color: var(--muted); font-style: italic; margin-bottom: 28px; }
.modal .info-row { padding: 14px 0; border-bottom: 1px solid var(--line); }
.modal .info-row .key { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }
.modal .info-row .val { font-size: 15px; }
.modal .tracks, .modal .credits { margin-top: 32px; }
.modal .tracks h3, .modal .credits h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; color: var(--muted); }
.modal .tracks ol { list-style: none; counter-reset: tr; }
.modal .tracks li { padding: 10px 0; border-bottom: 1px solid var(--line); counter-increment: tr; display: flex; align-items: center; font-size: 14px; }
.modal .tracks li::before { content: counter(tr, decimal-leading-zero); font-family: monospace; font-size: 10px; color: var(--muted); margin-right: 24px; width: 24px; }
.modal .desc { font-size: 14.5px; line-height: 1.78; color: #2a2a2a; word-break: keep-all; overflow-wrap: break-word; }
.modal .desc p { margin-bottom: 1em; }
.modal .desc p.lead { font-size: 15.5px; line-height: 1.65; color: #111; font-weight: 500; }
.credit-card { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13px; line-height: 1.55; }
.song-name { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.credit-row { display: flex; gap: 10px; }
.credit-row .role { flex-shrink: 0; width: 80px; color: var(--muted); text-transform: uppercase; font-size: 10px; letter-spacing: 0.08em; padding-top: 3px; }
.credit-row .people { flex: 1; }
.streaming { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.stream-card { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--line); color: var(--fg); font-size: 13px; font-weight: 700; transition: 0.18s; }
.stream-card .logo { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #111; }
.stream-card .logo img { width: 18px; height: 18px; object-fit: contain; border-radius: 4px; }
.stream-card .logo svg { width: 16px; height: 16px; color: white; }
.stream-card:hover { background: var(--fg); color: var(--bg); transform: translateY(-1px); }

/* ===== ABOUT / FOOTER ===== */
.about-section {
  padding: 112px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.58), rgba(232, 225, 214, 0.62)),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.026) 0 1px, transparent 1px 96px);
}
.about-kicker { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); }
.about-section h2 { font-size: clamp(30px, 4.4vw, 62px); line-height: 1; letter-spacing: -0.045em; max-width: 900px; }
.about-section p { margin-top: 26px; color: #5f5a55; line-height: 1.7; max-width: 760px; word-break: keep-all; font-size: clamp(16px, 1.4vw, 20px); }
.about-links {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(23, 23, 23, 0.2);
  padding: 0 14px;
  color: var(--fg);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.about-links a:hover {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
}
footer { padding: 72px 48px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; font-size: 12px; color: var(--muted); background: #171717; }
footer h4 { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg); margin-bottom: 16px; }
footer ul { list-style: none; }
footer li { padding: 4px 0; }
footer h4,
footer a:hover {
  color: var(--paper);
}
.footer-brand p {
  max-width: 360px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 14px;
  line-height: 1.7;
  word-break: keep-all;
}

/* ===== PLAIN SUBPAGE ===== */
.plain-subpage {
  min-height: 530px;
  padding: 190px 48px 56px;
  display: grid;
  align-content: end;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #faf8f3 0%, #e8e1d6 100%);
}
.plain-subpage h1 {
  max-width: 980px;
  font-size: clamp(68px, 10vw, 154px);
  line-height: 0.82;
  letter-spacing: -0.07em;
  font-weight: 900;
}
.plain-subpage p:not(.hero-eyebrow) {
  margin-top: 26px;
  max-width: 430px;
  color: #5c554e;
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}
.plain-subpage p:not(.hero-eyebrow),
.project-hero .hero-desc {
  min-height: 3.5em;
}
.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 10px;
  max-width: 500px;
}
.hero-stats div {
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(23, 23, 23, 0.22);
}
.hero-stats strong,
.hero-stats span {
  display: block;
}
.hero-stats strong {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.hero-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
/* ===== PROJECT PAGE ===== */
.sub-hero {
  min-height: 530px;
  padding: 190px 48px 56px;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #faf8f3 0%, #e8e1d6 100%);
}
.project-hero {
  grid-template-columns: 1fr;
  align-items: end;
}
.sub-hero-copy h1 {
  font-size: clamp(68px, 10vw, 154px);
  line-height: 0.82;
  letter-spacing: -0.07em;
  font-weight: 900;
}
.project-list {
  padding: 40px 48px 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.48);
}
.project-toggle {
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.project-toggle:hover,
.project-toggle:focus-visible {
  border-color: var(--fg);
  background: rgba(255, 253, 248, 0.78);
  outline: none;
}
.empty-project-card {
  min-height: 260px;
}
.empty-project-card h2,
.empty-project-card p:not(.project-kicker) {
  color: var(--muted);
}
.project-copy {
  padding: 26px;
}
.project-kicker {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.project-copy h2 {
  margin-top: 28px;
  font-size: clamp(30px, 4.2vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.05em;
}
.project-copy p:not(.project-kicker) {
  margin-top: 18px;
  max-width: 620px;
  color: #5c554e;
  font-size: 14px;
  line-height: 1.7;
}
.project-modal-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1fr);
  gap: 64px;
}
.project-modal-kicker {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.project-modal-lead {
  max-width: 480px;
  color: #5c554e;
  font-size: 16px;
  line-height: 1.7;
}
.project-modal-section {
  padding-top: 6px;
}
.project-modal-section h3 {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.project-modal-section p {
  color: #2f2b27;
  font-size: 15px;
  line-height: 1.85;
}
.project-modal {
  top: 160px;
}
.project-modal .close {
  top: 184px;
}
.project-modal .project-modal-content {
  padding-top: 64px;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .browse-panel, .producer-section, .about-section { padding-left: 20px; padding-right: 20px; grid-template-columns: 1fr; gap: 22px; }
  .history-list { grid-template-columns: 1fr; border-top-color: var(--line); }
  .producer-grid { grid-template-columns: 1fr; }
  .producer-card {
    min-height: auto;
  }
  .producer-card h3 {
    margin-top: 18px;
  }
  .producer-photo {
    aspect-ratio: 16 / 9;
  }
  .history-item {
    min-height: auto;
    padding: 20px 0 20px 28px;
    border-right: 0;
    border-left: 1px solid var(--line);
  }
  .history-item:first-child { border-left: 1px solid var(--line); }
  .history-item::before {
    top: 28px;
    left: -5px;
  }
  .history-year {
    margin-bottom: 18px;
    font-size: 34px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stats .item {
    min-height: 138px;
    padding: 22px 20px;
  }
  .stats .item:nth-child(odd) {
    border-left: 1px solid var(--line);
  }
  .stats .value {
    margin-top: 22px;
    font-size: 34px;
  }
  .section-head { padding: 56px 20px 28px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .head-right { align-items: flex-start; }
  .filters, .index-view, .grid-view { padding-left: 20px; padding-right: 20px; }
  .index-row { grid-template-columns: 52px 1fr 1.4fr 32px; }
  .index-row .album-en, .index-row .type { display: none; }
  .modal-content { padding: 76px 20px 48px; }
  .modal .close { top: 18px; right: 20px; }
  .modal-grid { grid-template-columns: 1fr; gap: 32px; }
  .streaming { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr; padding: 56px 20px 32px; gap: 30px; }
  .plain-subpage {
    min-height: clamp(400px, calc(48vh + 10px), 530px);
    padding: 148px 20px 56px;
  }
  .plain-subpage h1 {
    font-size: 62px;
  }
  .plain-subpage p:not(.hero-eyebrow),
  .project-hero .hero-desc {
    min-height: auto;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: none;
  }
  .hero-stats div {
    padding: 12px 10px 14px 0;
  }
  .hero-stats strong {
    font-size: 32px;
  }
  .sub-hero {
    min-height: clamp(400px, calc(48vh + 10px), 530px);
    padding: 148px 20px 56px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sub-hero-copy h1 {
    font-size: 62px;
  }
  .project-list {
    padding: 32px 20px;
    grid-template-columns: 1fr;
  }
  .project-modal-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .producer-modal-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .producer-modal-photo {
    aspect-ratio: 4 / 5;
    max-width: 360px;
    margin: 0 auto;
  }
  html { scroll-padding-top: 120px; }
  nav.top {
    height: 112px;
    padding: 14px 20px;
  }
  .brand-mark { width: 82px; height: 82px; }
  .brand-logo { width: 48px; height: 48px; }
  .brand-ring text { font-size: 8px; }
  /* ── 모바일 햄버거 메뉴 ─────────────────────────── */
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    border: 0; background: transparent;
    cursor: pointer; padding: 0;
    flex-shrink: 0;
    z-index: 1002;
  }
  .menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--fg);
    transition: transform 0.24s ease, opacity 0.18s ease;
  }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* 메뉴를 전체화면 반투명 페이드 오버레이로 */
  nav.top .menu {
    position: fixed;
    top: 112px; left: 0; right: 0; bottom: 0;
    height: calc(100vh - 112px);
    width: 100vw;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;       /* 세로 가운데 정렬 */
    grid-template-columns: none;   /* 데스크탑 grid 흔적 제거 */
    max-width: none;
    max-height: none;
    overflow: hidden;
    background: rgba(245, 243, 239, 0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 24px;
    gap: 20px;
    font-size: 16px;
    border-left: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: opacity 0.26s ease, visibility 0s linear 0.26s;
    justify-items: stretch;
    z-index: 1001;
  }
  nav.top .menu.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.26s ease;
  }
  /* 메뉴 모든 직계 자식: 압축 금지, 가운데 정렬 */
  nav.top .menu > * {
    flex: 0 0 auto;
    margin: 0;
  }
  nav.top .menu a {
    width: auto;
    justify-content: center;
    text-align: center;
    padding: 8px 12px;
    display: inline-flex;
  }
  /* Shop 메뉴: 모바일에선 텍스트로만 표시 (호버 전환 비활성) */
  nav.top .menu .menu-shop {
    justify-content: center;
    height: auto;
    padding: 6px 0;
  }
  nav.top .menu .menu-shop span {
    position: static;
    transform: none;
    opacity: 1;
  }
  nav.top .menu .menu-shop .menu-shop-logo {
    display: none;
  }
  .header-search {
    width: min(280px, 80vw); flex: 0 0 auto;
  }
  .lang-toggle { margin-top: 4px; align-self: center; }

  /* 백드롭은 더 이상 필요 없음 (메뉴 자체가 전체화면 덮음) */
  .menu-backdrop { display: none !important; }
  .project-modal {
    top: 112px;
  }
  .project-modal .close {
    top: 130px;
  }
  .project-modal .project-modal-content {
    padding-top: 48px;
  }
  .producer-modal {
    top: 112px;
  }
  .producer-modal .close {
    top: 130px;
  }
  .producer-modal .producer-modal-content {
    padding-top: 48px;
  }
  .hero-release {
    min-height: auto;
    padding: 148px 20px 56px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-copy h1 { font-size: 46px; }
  .hero-desc { font-size: 14px; }
  .hero-flow-area { gap: 10px; }
  .hero-flow-area {
    --flow-card-size: 136px;
    height: calc((var(--flow-card-size) * 2) + 10px);
  }
  .album-flow-track { gap: 10px; }
}

/* ===========================================================
 * Shop 모달 — 같은 창 위에 iframe 으로 panicbutton.co.kr 띄우기
 * =========================================================== */
.shop-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.24s ease;
}
.shop-modal-overlay.active {
  opacity: 1; pointer-events: auto;
}
.shop-modal {
  width: min(1480px, calc(100vw - 32px));
  height: min(940px, calc(100vh - 32px));
  background: #0d0d0d;
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(12px) scale(0.985);
  transition: transform 0.32s cubic-bezier(0.2, 0.85, 0.3, 1.05);
}
.shop-modal-overlay.active .shop-modal {
  transform: translateY(0) scale(1);
}
.shop-modal-bar {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 10px 14px 10px 18px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.shop-modal-host {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.shop-modal-actions {
  display: flex; align-items: center; gap: 6px;
}
.shop-modal-open {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.16s ease, color 0.16s ease;
}
.shop-modal-open:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.shop-modal-close {
  width: 30px; height: 30px;
  border: none; background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px; line-height: 1;
  cursor: pointer; border-radius: 6px;
  transition: background 0.16s ease, color 0.16s ease;
}
.shop-modal-close:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.shop-modal-frame-wrap {
  flex: 1 1 auto;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.shop-modal-frame {
  width: 100%; height: 100%;
  border: 0; display: block;
  transform-origin: 0 0;
}

@media (max-width: 768px) {
  .shop-modal-overlay { padding: 0; }
  .shop-modal {
    width: 100%; height: 100%;
    border-radius: 0;
    max-height: 100vh;
  }
}

/* ===== FEATURED PROJECT NOTICE ===== */
.unlock-notice {
  position: fixed;
  inset: 0;
  z-index: 4100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(18, 18, 18, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.unlock-notice.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.unlock-notice-panel {
  position: relative;
  width: min(580px, 100%);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
  transform: translateY(24px) scale(0.985);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.unlock-notice.is-open .unlock-notice-panel { transform: translateY(0) scale(1); }
.unlock-notice-creative {
  padding: 46px 48px 38px;
  text-align: center;
  background: #fff;
}
.unlock-notice-logo {
  display: block;
  width: 142px;
  height: 35px;
  margin: 0 auto 24px;
  background-image: url('../assets/unlock/unlock-the-room-recruitment.jpeg');
  background-repeat: no-repeat;
  background-size: 400px 571px;
  background-position: -129px -28px;
}
.unlock-notice-season {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.unlock-notice-creative h2 {
  margin-top: 22px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  word-break: keep-all;
}
.unlock-notice-creative h2 em {
  color: #c69a45;
  font-style: normal;
}
.unlock-notice-summary {
  max-width: 470px;
  margin: 22px auto 0;
  padding: 0;
  color: #5c554e;
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
  word-break: keep-all;
}
.unlock-notice-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
}
.unlock-notice-footer p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.unlock-notice-footer p i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d3aa57;
  box-shadow: 0 0 0 4px rgba(211, 170, 87, 0.14);
  animation: unlock-notice-pulse 1.8s ease-in-out infinite;
}
.unlock-notice-footer strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.unlock-notice-footer > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 252px;
  padding: 14px 16px;
  color: #fff;
  background: #171717;
  font-size: 11px;
  font-weight: 800;
  transition: background 0.2s ease;
}
.unlock-notice-footer > a:hover { background: #b48b38; }
.unlock-notice-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}
.unlock-notice-close::before,
.unlock-notice-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  background: var(--fg);
}
.unlock-notice-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.unlock-notice-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.unlock-notice-tab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 3900;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 1px 22px;
  min-width: 238px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 13px 16px 12px;
  color: #171717;
  background: #fff;
  text-align: left;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}
.unlock-notice-tab.is-visible { display: grid; }
.unlock-notice-tab span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.unlock-notice-tab-logo {
  display: block;
  width: 142px;
  height: 35px;
  margin-top: 2px;
  background-image: url('../assets/unlock/unlock-the-room-recruitment.jpeg');
  background-repeat: no-repeat;
  background-size: 400px 571px;
  background-position: -129px -28px;
}
.unlock-notice-tab i { grid-column: 2; grid-row: 1 / 3; align-self: center; font-style: normal; }
@keyframes unlock-notice-pulse {
  50% { opacity: 0.52; transform: scale(0.84); }
}
@media (max-width: 700px) {
  .unlock-notice { align-items: end; padding: 0; }
  .unlock-notice-panel {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: calc(100dvh - 18px);
    overflow-y: auto;
  }
  .unlock-notice-creative { padding: 38px 22px 28px; }
  .unlock-notice-logo { margin-bottom: 20px; transform: scale(0.9); }
  .unlock-notice-creative h2 { font-size: clamp(34px, 10.5vw, 46px); }
  .unlock-notice-summary { margin-top: 18px; padding: 0 4px; font-size: 13px; }
  .unlock-notice-footer { align-items: stretch; flex-direction: column; gap: 16px; padding: 18px; }
  .unlock-notice-footer > a { width: 100%; min-width: 0; }
  .unlock-notice-close { top: 12px; right: 12px; }
  .unlock-notice-tab { right: 12px; bottom: 12px; min-width: 205px; }
}
@media (prefers-reduced-motion: reduce) {
  .unlock-notice-panel { transition: none; }
}
