/* =============================================================================
 * woosungjung.com — pages/holding.css
 * 준비중 페이지 전용. nav·footer 없이 단독으로 서는 화면이라
 * layout.css / components.css 를 로드하지 않는다. 필요한 조각은 여기 직접 둔다.
 * ========================================================================== */

.page-holding { min-height: 100vh; }

.hold {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
}
/* 사진 위 가독성 확보 — 아래로 갈수록 어둡게 */
.hold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(14, 14, 16, .70) 0%,
    rgba(14, 14, 16, .58) 40%,
    rgba(14, 14, 16, .92) 100%);
}
.hold-in {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hold-mark {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dan-lt);
  margin-bottom: 26px;
}
.hold-mark::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--dan-lt);
  vertical-align: 4px;
  margin-right: 12px;
}

.hold h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 9vw, 108px);
  line-height: .96;
  letter-spacing: -.015em;
}
.hold-role {
  margin-top: 22px;
  font-size: 15px;
  color: var(--hanji);
}

/* 악기 칩 — components.css 의 .tag 와 같은 모양 */
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--cheong-lt);
  border: 1px solid rgba(90, 165, 149, .45);
  border-radius: 12px;
  padding: 4px 13px;
}
.hold-tags { margin-top: 20px; }

.hold-note {
  margin-top: 34px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--sub);
  max-width: 620px;
}

/* ---------- 연락처 ---------- */
.hold-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 860px;
}
.hc {
  display: block;
  background: rgba(26, 26, 29, .78);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  transition: border-color .18s, background .18s;
}
.hc:hover {
  border-color: rgba(217, 96, 74, .55);
  background: rgba(26, 26, 29, .95);
}
.hc .k {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 7px;
}
.hc .v {
  display: block;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--hanji);
  word-break: break-all;
}
.hc:hover .v { color: var(--dan-lt); }

.hold-where {
  margin-top: 34px;
  font-size: 13px;
  color: var(--sub);
}

@media (max-width: 780px) {
  .hold { align-items: flex-start; }
  .hold-in { padding-top: 56px; padding-bottom: 56px; }
  .hold-note { margin-top: 26px; }
  .hold-contact { grid-template-columns: 1fr; margin-top: 26px; }
}
