/* THE VIBE TIMES — the salon + masthead's own sheet (finch-usher
 * BP-2026-08-18-504).
 *
 * Layers over tower.css's generic .vt-prop / .vt-gallery / .vt-alcove /
 * .vt-founders / .vt-partnership / .vt-referral boxes — those already set
 * position, size and background; this file styles the CONTENT this build
 * mounts inside them: the class ladder, the alcove's video + honest state,
 * the slick sheet link, the booking card, founder cards, the partnership
 * shelf/visitor-log/poster, and the referral link-out.
 */

.vt-class-ladder {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px;
}
.vt-class-card {
  font-family: inherit; font-size: 10px; letter-spacing: .04em;
  padding: 6px 9px; border-radius: 5px; cursor: pointer;
  background: #23201B; color: #F4F1EA; border: 1px solid #C8A15B55;
  transition: background .16s ease, border-color .16s ease;
}
.vt-class-card:hover { border-color: #C8A15B; }
.vt-class-card[aria-selected="true"] {
  background: #C8A15B; color: #23201B; border-color: #23201B;
}

.vt-alcove-video { position: relative; width: 100%; height: 100%; }
.vt-alcove-player {
  width: 100%; height: 72%; object-fit: cover; background: #000;
  display: none;
}
.vt-alcove-empty-state, .vt-alcove-soon-state {
  font-family: var(--disp, inherit); font-size: 10px; letter-spacing: .18em;
  color: #B9A0E8; text-align: center; padding-top: 10%;
}
.vt-alcove-video[data-state="playing"] .vt-alcove-player { display: block; }
.vt-alcove-video[data-state="playing"] .vt-alcove-empty-state,
.vt-alcove-video[data-state="playing"] .vt-alcove-soon-state { display: none; }
.vt-alcove-video:not([data-state="playing"]) .vt-alcove-empty-state { display: none; }
.vt-alcove-video[data-state="empty"] .vt-alcove-soon-state,
.vt-alcove-video[data-state="soon"] .vt-alcove-empty-state { display: none; }
.vt-alcove-video[data-state="empty"] .vt-alcove-empty-state,
.vt-alcove-video[data-state="soon"] .vt-alcove-soon-state { display: block; }

.vt-sheet-link {
  display: block; font-size: 9px; letter-spacing: .1em; text-decoration: none;
  color: #23201B; text-align: center; padding-top: 4px;
}
.vt-sheet-empty-state {
  font-size: 9px; letter-spacing: .1em; color: #8A6C36; text-align: center; padding-top: 4px;
}
.vt-sheet-slot[data-state="ready"] .vt-sheet-empty-state { display: none; }
.vt-sheet-slot:not([data-state="ready"]) .vt-sheet-link { display: none; }

.vt-booking-card { font-size: 10px; line-height: 1.5; }
.vt-booking-name { font-weight: 600; }
.vt-booking-email, .vt-booking-site {
  display: block; color: #F2E9D8; text-decoration: none; opacity: .9;
}
.vt-booking-email:hover, .vt-booking-site:hover { opacity: 1; text-decoration: underline; }

.vt-founder-cards { display: flex; flex-wrap: wrap; gap: 10px; }
.vt-founder-card {
  flex: 1 1 28%; min-width: 120px; padding: 6px 8px; border-radius: 5px;
  background: #1A1108AA; border: 1px solid #C8A15B33;
}
.vt-founder-card h4 {
  margin: 0 0 4px; font-size: 10px; letter-spacing: .08em; color: #C8A15B;
}
.vt-founder-bio { margin: 0; font-size: 9.5px; line-height: 1.4; color: #F2E9D8; }
.vt-founder-owed { margin: 0; font-size: 9px; letter-spacing: .1em; color: #8A7358; font-style: italic; }

.vt-shelf { list-style: none; margin: 4px 0; padding: 0; font-size: 9.5px; }
.vt-shelf li { padding: 2px 0; color: #F2E9D8; }
.vt-visitor-log {
  margin-top: 8px; padding-top: 6px; border-top: 1px solid #C8A15B33; font-size: 9px;
}
.vt-visitor-log i { display: block; letter-spacing: .16em; color: #8A7358; }
.vt-visitor-log b { display: block; font-weight: 500; color: #F2E9D8; margin-top: 2px; }
.vt-poster { margin-top: 8px; font-size: 9px; letter-spacing: .08em; color: #8A7358; text-align: center; }

.vt-referral-link {
  display: inline-block; margin-top: 4px; font-size: 10px; letter-spacing: .08em;
  color: #C8A15B; text-decoration: none; border-bottom: 1px solid #C8A15B66;
}
.vt-referral-link:hover { color: #F2E9D8; border-color: #F2E9D8; }

.vt-empty { font-size: 9px; letter-spacing: .1em; color: #8A7358; }
