/* --- Site Tips launcher (home page, lower-left corner) ---
   Lower-left is clear: tour button = top-left, What's New = bottom-center,
   feedback bubble = bottom-right. Links to the (link-gated) /tips/ page. */
.tips-launcher{
  position:fixed; left:20px; bottom:20px; z-index:60;
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-body); font-weight:600; font-size:14px; letter-spacing:.02em;
  padding:9px 16px; border-radius:999px;
  background:var(--accent-forest); color:var(--color-parchment-100);
  text-decoration:none; line-height:1; white-space:nowrap;
  box-shadow:0 2px 8px rgba(30,19,10,.28); transition:.18s ease;
}
.tips-launcher__icon{ color:var(--color-gold-500); font-size:15px; }
.tips-launcher:hover,.tips-launcher:focus-visible{
  background:var(--accent-forest-light); transform:translateY(-1px);
  box-shadow:0 4px 14px rgba(30,19,10,.34);
}
.tips-launcher__short{ display:none; }

/* Mobile: keep clear of the What's New peek (bottom-center) and shrink the label */
@media (max-width:640px){
  .tips-launcher{ left:14px; bottom:14px; font-size:13px; padding:8px 13px; }
  .tips-launcher__full{ display:none; }
  .tips-launcher__short{ display:inline; }
}
