/* ============================================================
   공연 초청·협업 안내 (booking.html) 전용
   공통 토큰·컴포넌트(subhero·section·collab-card·contact-band)는 styles.css 재사용
   ※ 미공개 검토용 페이지 — 공개 전환 절차는 HANDOVER.md 레시피 ⑦
   ============================================================ */

/* 좁은 컨테이너 (styles.css엔 없어 이 페이지에서만 정의) */
.container--narrow { max-width: calc(var(--maxw-narrow) + 2 * clamp(20px, 5vw, 72px)); }

/* 인트로 */
.bk-lead { padding-block: clamp(56px, 8vw, 96px) clamp(20px, 3vw, 36px); }
.bk-lead__body p {
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.85;
  color: var(--charcoal);
  word-break: keep-all;
  text-wrap: pretty;
}
.bk-lead__body p + p { margin-top: 1.1em; }

/* 초청 가능한 무대 — 표 (모바일에선 카드형으로 전환) */
.bk-table-wrap { margin-top: clamp(36px, 5vw, 52px); }
.bk-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); }
.bk-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--burgundy);
  text-align: left;
  padding: 14px 18px;
  border-bottom: 2px solid var(--line-gold);
  background: var(--cream);
  white-space: nowrap;
}
.bk-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--charcoal);
  word-break: keep-all;
}
.bk-table tbody tr:last-child td { border-bottom: 0; }
.bk-table td a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  box-shadow: inset 0 -1px 0 var(--gold-soft);
  transition: color .3s var(--ease);
}
.bk-table td a:hover,
.bk-table td a:focus-visible { color: var(--burgundy); }
.bk-works__note { margin-top: 18px; color: var(--muted); font-size: .9rem; }

@media (max-width: 820px) {
  .bk-table thead { display: none; }
  .bk-table, .bk-table tbody, .bk-table tr, .bk-table td { display: block; }
  .bk-table { border: 0; background: none; }
  .bk-table tr {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 10px 4px;
    margin-bottom: 14px;
  }
  .bk-table td { border-bottom: 0; padding: 9px 18px; }
  .bk-table td::before {
    content: attr(data-label);
    display: block;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--gold);
    margin-bottom: 3px;
  }
}

/* 함께하는 방법 — 4카드 */
.bk-types { background: var(--ivory); }
.bk-types__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.6vw, 28px);
  margin-top: clamp(36px, 5vw, 52px);
}
@media (max-width: 860px) { .bk-types__grid { grid-template-columns: 1fr; } }

/* 자선·나눔 스트립 */
.bk-charity {
  background: var(--cream);
  border-block: 1px solid var(--line-gold);
  padding-block: clamp(52px, 8vw, 88px);
}
.bk-charity__inner { text-align: center; }
.bk-charity__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--burgundy);
  text-wrap: pretty;
}
.bk-charity__body {
  margin: 16px auto 26px;
  max-width: 560px;
  color: var(--charcoal);
  line-height: 1.8;
  word-break: keep-all;
  text-wrap: pretty;
}

/* ============================================================
   1:1 문의 폼 (booking.html .bk-form — mailto 조립은 main.js)
   ============================================================ */
.bk-form { background: var(--cream); }
.inq { margin-top: clamp(26px, 4vw, 38px); }
.inq__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px clamp(18px, 2.4vw, 28px); }
.inq__field { display: grid; gap: 8px; }
.inq__field--wide { grid-column: 1 / -1; }
.inq__label { font-size: .78rem; font-weight: 700; letter-spacing: .06em; color: var(--charcoal); }
.inq__label .req { color: var(--burgundy); }
.inq__input {
  appearance: none; width: 100%;
  font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line-strong); border-radius: 0;
  padding: 13px 15px; transition: border-color .25s var(--ease);
}
.inq__input:focus { outline: none; border-color: var(--burgundy); }
.inq__input::placeholder { color: var(--muted-soft); }
select.inq__input { cursor: pointer; }
.inq__textarea { resize: vertical; min-height: 150px; line-height: 1.7; }
.inq__consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 20px; font-size: .88rem; color: var(--muted); cursor: pointer; }
.inq__consent input { margin-top: 4px; accent-color: var(--burgundy); }
.inq__actions { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.inq__alt { font-size: .86rem; color: var(--muted); }
.inq__alt a { color: var(--burgundy); font-weight: 600; }
.inq__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; } /* 허니팟 — 봇 차단용 숨김 필드 */
.inq__status { margin-top: 16px; font-size: .92rem; font-weight: 600; color: var(--muted); }
.inq__status--ok { color: var(--burgundy); }
.inq__status--err { color: var(--red); }
.inq__status a { text-decoration: underline; text-underline-offset: 3px; } /* 전송 실패 시 mailto·전화 폴백 링크 */
@media (max-width: 640px) { .inq__grid { grid-template-columns: 1fr; } }

/* 문의 안내 체크리스트 */
.bk-ask { padding-bottom: clamp(40px, 5vw, 64px); }
.bk-ask__list { margin-top: clamp(28px, 4vw, 40px); border-top: 1px solid var(--line-gold); }
.bk-ask__list li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 10px 24px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}
.bk-ask__q { font-family: var(--font-display); font-weight: 600; color: var(--ink); position: relative; padding-left: 18px; }
.bk-ask__q::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.bk-ask__d { color: var(--muted); font-size: .95rem; line-height: 1.6; word-break: keep-all; }
@media (max-width: 640px) { .bk-ask__list li { grid-template-columns: 1fr; gap: 4px; } }
