/* site-extra.css — small additional components for the my247employees.com
   3-branch site rebuild (hub + About + Testimonials + Contact + branch landings).
   Built ONLY from Default Base kit tokens/variables — no new visual language,
   just a few extra layout primitives base.css didn't already have.
   Load order: tokens.css -> base.css -> site-extra.css */

/* ---------- Cross-link strip (Lindsay-Gonzales-failure fix: every page
   links to the hub + every other branch, so no page is a dead end) ---------- */
.branch-switcher {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 12px 0;
}
.branch-switcher .wrap { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.branch-switcher .lbl { font-weight: 700; color: var(--color-text); }
.branch-switcher a { color: var(--color-secondary-deep); font-weight: 600; }
.branch-switcher a:hover { text-decoration: underline; }

/* ---------- Small status badges (reuses secondary tokens, same pattern
   as the .week-badge already used ad hoc in sales.html) ---------- */
.badge-soon {
  display: inline-block; font-family: var(--font-heading); font-weight: 800; font-size: 12px;
  color: var(--color-secondary-deep); background: var(--color-secondary-tint);
  padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 14px;
}

/* ---------- Dashed placeholder / disclosure box (legal disclaimers,
   "case study pending" placeholders, "booking link pending" notices) ---------- */
.note-box {
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-size: 13.5px;
  padding: 16px 20px;
}

/* ---------- Offer list (5 priced offers per branch) ---------- */
.offer-list { display: flex; flex-direction: column; gap: 18px; }
.offer-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 26px 30px;
  display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; flex-wrap: wrap;
}
.offer-item .offer-name { font-family: var(--font-heading); font-weight: 800; font-size: 18px; margin-bottom: 6px; }
.offer-item .offer-desc { color: var(--color-text-muted); font-size: 15px; max-width: 520px; }
.offer-item .offer-price { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--color-primary); white-space: nowrap; text-align: right; }
.offer-item .offer-price small { display: block; font-weight: 500; font-size: 12px; color: var(--color-text-muted); }

/* ---------- Footer, stacked columns (nav footer needs more links now:
   hub + 3 branches + trust pages + legal, per the cross-link mandate) ---------- */
.footer-cols { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; width: 100%; }
.footer-cols .row { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; }
.footer-cols .row a { color: var(--color-text-muted); }
.footer-cols .row a:hover { color: var(--color-primary); }
.footer-cols .note { font-size: 12.5px; color: var(--color-text-muted); max-width: 680px; }

@media (max-width: 860px) {
  .offer-item { flex-direction: column; }
  .offer-item .offer-price { text-align: left; }
  .branch-switcher .wrap { font-size: 12px; }
}
