/* ═══════════════════════════════════════════════════════════
   M-Make Global Polish (v2 - minimal)

   Minimal shared styles that don't override individual page layouts.
   Only includes:
   - cross-nav-section (links to other businesses, appears before <footer>)
   - back-to-main-bar  (small "back to top" bar)

   Previous version included automatic punctuation-break and density
   adjustments — both were removed because they caused unintended
   line breaks in hero copy. Each page now keeps its own layout.
   ═══════════════════════════════════════════════════════════ */

/* small CTA bar at the bottom of cross-nav-section */
.back-to-main-bar {
  margin-top: 32px;
  padding: 20px 0;
  text-align: center;
}
.back-to-main-bar a {
  display: inline-block;
  font-family: var(--mono, monospace);
  font-size: 12px;
  color: rgba(232, 167, 60, 0.9);
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid rgba(232, 167, 60, 0.4);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.back-to-main-bar a:hover {
  background: rgba(232, 167, 60, 0.9);
  color: #46413a;
}
