/* Shared Talvo logo component — single source of truth for every header & footer.
   Canonical form (from the homepage header): wordmark + green tick dot.
   Markup: <a class="logo" href="/" aria-label="Talvo home">Talvo<span class="tick"></span></a> */
.logo {
  display: flex;
  gap: 2px;
  width: max-content;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -.04em;
  color: var(--pure, #f4f3ef);
  text-decoration: none;
}
.logo .tick {
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 11px;
  border-radius: 50%;
  background: var(--green, #0e9f63);
}
.nav .logo { margin-right: 18px; }
