/* ============================================================
   roster.css — roster page styles only
   ============================================================ */

/* ── Page header ── */
.roster-header {
  padding: 80px 0 64px;
  border-bottom: 0.5px solid var(--rule);
}

.roster-header__eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.roster-header__eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 0.5px;
  background: var(--ink-faint);
}

.roster-header__headline {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 20px;
}
.roster-header__headline em {
  font-style: italic;
  color: var(--amber);
}

.roster-header__sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.75;
}

/* ── Roster grid ── */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border-bottom: 0.5px solid var(--rule);
}

/* ── Bartender card ── */
.bc {
  background: var(--cream);
  padding: 48px 40px;
  position: relative;
  transition: background 0.2s;
}

.bc--placeholder {
  background: var(--cream-mid);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 420px;
}

.bc--on-shift {
  background: var(--amber-pale);
}

/* ── On-shift tag ── */
.bc__shift-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5A7A3A;
  background: rgba(90,155,58,0.1);
  border: 0.5px solid rgba(90,155,58,0.2);
  border-radius: 100px;
  padding: 4px 10px 4px 7px;
  margin-bottom: 28px;
}

.bc__shift-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-shift);
  position: relative;
  flex-shrink: 0;
}
.bc__shift-tag-dot::after {
  content: '';
  position: absolute;
  top: -3px; left: -3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(90,155,90,0.2);
  animation: shift-pulse 2.2s ease-in-out infinite;
}

.bc__shift-tag--hidden {
  visibility: hidden;
}

/* ── Avatar ── */
.bc__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cream-mid);
  border: 0.5px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink-muted);
  margin-bottom: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.bc--on-shift .bc__avatar {
  background: rgba(196,134,42,0.15);
  border-color: rgba(196,134,42,0.25);
  color: var(--amber);
}

/* ── Name & credentials ── */
.bc__name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.1;
}

.bc__credentials {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

/* ── Divider ── */
.bc__rule {
  border: none;
  border-top: 0.5px solid var(--rule);
  margin-bottom: 24px;
}

/* ── Style tags ── */
.bc__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.bc__tag {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  border: 0.5px solid var(--ink-faint);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── Bio ── */
.bc__bio {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── Occasions ── */
.bc__occasions-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}

.bc__occasions {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── Placeholder card ── */
.bc__placeholder-icon {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--ink-faint);
  margin-bottom: 16px;
  line-height: 1;
}

.bc__placeholder-text {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-faint);
  margin-bottom: 8px;
}

.bc__placeholder-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-faint);
  max-width: 220px;
  line-height: 1.6;
}

/* ── Bottom note ── */
.roster-note {
  padding: 56px 0;
  border-bottom: 0.5px solid var(--rule);
}

.roster-note__inner {
  max-width: 560px;
}

.roster-note__headline {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 12px;
}

.roster-note__body {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ── CTA strip ── */
.roster-cta {
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.roster-cta__text {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: var(--ink);
}
.roster-cta__text em { font-style: italic; color: var(--amber); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.roster-header__eyebrow { animation: fadeUp 0.5s ease both; }
.roster-header__headline { animation: fadeUp 0.6s 0.06s ease both; }
.roster-header__sub { animation: fadeUp 0.6s 0.12s ease both; }

/* ── Mobile ── */
@media (max-width: 700px) {
  .roster-grid {
    grid-template-columns: 1fr;
  }

  .bc { padding: 40px 24px; }

  .roster-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}