/* ── BAR DETAIL PAGE ───────────────────────────────── */

.bar-detail-hero {
  height: 420px;
  background: var(--photo-bg);
  position: relative;
  overflow: hidden;
}

.bar-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bar-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.55));
}

/* ── BACK LINK ─────────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 28px 48px 0;
  text-decoration: none;
  transition: color 0.2s;
}

.back-link:hover { color: var(--black); }

/* ── BAR INFO ──────────────────────────────────────── */
.bar-detail-body {
  padding: 40px 48px 72px;
  max-width: 860px;
}

.bar-detail-type {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: lowercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bar-detail-name {
  font-size: clamp(42px, 7vw, 80px);
  font-family: var(--font-impact);
  font-weight: 900;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 24px;
}

.bar-detail-name .outline {
  -webkit-text-stroke: 2px var(--black);
  color: transparent;
}

/* ── WEEKLY SCHEDULE ───────────────────────────────── */
.schedule-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: var(--rule);
  padding-bottom: 12px;
  margin-bottom: 0;
}

.schedule-list {
  list-style: none;
  border-bottom: 1px solid #e0ddd7;
}

.schedule-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid #e0ddd7;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

.schedule-row.tonight {
  color: var(--black);
  font-weight: 700;
}

.schedule-day {
  width: 100px;
  color: var(--text-muted);
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: lowercase;
}

.schedule-row.tonight .schedule-day {
  color: var(--black);
}

.schedule-event {
  flex: 1;
}

.schedule-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-dot);
  flex-shrink: 0;
}

.schedule-week {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: lowercase;
  margin-left: 4px;
}

.schedule-row.tonight .schedule-week {
  color: #888;
}
