/* ---------- STATION NAV (place-card tabs) ---------- */
.station-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 0 1rem;
  background: linear-gradient(180deg, var(--bg) 60%, rgba(26,20,16,0.96));
  border-bottom: 1px solid rgba(138, 117, 72, 0.3);
  backdrop-filter: blur(6px);
}

.station-tab {
  position: relative;
  font-family: var(--font-utility);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--parchment-dim);
  background: transparent;
  border: none;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  transition: color 0.3s var(--ease-soft);
}

.station-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.35s var(--ease-soft);
}

.station-tab:hover {
  color: var(--parchment);
}

.station-tab.is-active {
  color: var(--gold);
}

.station-tab.is-active::after {
  width: 60%;
}

.station-tab__label {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .station-nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .station-nav::-webkit-scrollbar { display: none; }
  .station-tab {
    padding: 1rem 1rem;
    flex: 0 0 auto;
  }
}

/* board panels: only the active one shows */
.board {
  display: none;
}
.board.is-active {
  display: block;
  animation: board-in 0.5s var(--ease-soft);
}

@keyframes board-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
